/* ---------- NAVBAR ---------- */
.modern-navbar {
    background: linear-gradient(190deg, #0b3d91, #d23636);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
    padding: 12px 0;
}

.logo-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffc107;
    color: #061a40;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Links */
.nav-modern {
    position: relative;
    font-weight: 500;
    padding: 8px 14px !important;
    transition: .3s;
    color: white;
}

/* Dropdowns */
.dropdown-modern {
    border-radius: 14px;
    padding: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    animation: fadeIn .2s ease-in-out;
    background: #0b3d91 !important;
}

    .dropdown-modern .dropdown-item {
        border-radius: 10px;
        padding: 8px 12px;
        transition: .2s;
        color: white !important;
    }

        .dropdown-modern .dropdown-item:hover {
            background: #d23636;
        }

/* Submenu */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        left: 100%;
        top: 0;
        margin-left: .3rem;
    }

/* ================= NAVBAR LOGOS ================= */
.nav-logo {
    height: 70px;
    width: 80px;
    object-fit: contain;
    transition: .3s;
    border: 2px solid white;
    background: white;
}

    .nav-logo:hover {
        transform: scale(1.05);
    }

/* Mobile optimization */
/* @media(max-width:991px){
  .nav-logo{
    height:36px;
  }
} */

/* ===== HOVER DROPDOWNS (DESKTOP) ===== */
@media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}

/* Mobile fix */
@media (max-width: 991px) {
    .dropdown-submenu > .dropdown-menu {
        position: static;
        margin-left: 15px;
    }
}

/* ---------- FOOTER ---------- */
.footer-main {
    background: linear-gradient(135deg, #061a40, #0b3d91);
    position: relative;
}

.footer-title {
    font-weight: 700;
    font-size: 1.6rem;
}

.footer-title-sm {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: #d6e2ff;
    line-height: 1.7;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: .5rem;
    }

    .footer-links a {
        color: #d6e2ff;
        text-decoration: none;
        transition: .3s;
    }

        .footer-links a:hover {
            color: #fff;
            padding-left: 6px;
        }

/* Social Icons */
.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: .3s;
    font-size: 1.1rem;
}

    .social-icon:hover {
        background: #fff;
        color: #0b3d91;
        transform: translateY(-3px);
    }

/* Map */
.footer-map iframe {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,.2);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.2);
    padding: 15px 0;
    margin-top: 30px;
    color: #d6e2ff;
}
