/* Navbar Styling */
.navbar {
    background: #1E3A8A; /* Professional Dark Blue */
    padding: 12px 0;
    font-family: 'Poppins', sans-serif;
}

/* Left Section: Logo */
.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-brand {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

/* Center Section: Navbar Menu */
.navbar-center {
    flex: 1;
    text-align: center;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.navbar-nav .nav-link {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    padding: 12px 18px;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.navbar-nav .nav-link:hover {
    color: #FFC107;
}

/* Active Link */
.navbar-nav .nav-item.active .nav-link {
    color: #FFC107 !important;
    font-weight: 600;
}

/* Right Section: Clock & Flag */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Digital Clock */
.digital-clock {
    background: #f58220;
    padding: 8px 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* Flag Styling */
.flag-container img {
    height: 30px;
    width: auto;
    border-radius: 5px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .navbar-center {
        text-align: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }

    .navbar-right {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .navbar-right {
        display: none;
    }
    .digital-clock{
        display: none;
    }
        .logo-text {
        font-size: 0.7rem;
    }
        .hero h1 {
        font-size: 1rem;
    }
    .navbar-brand img {
    height: 30px;
    width: auto;
}
}
