/* ============================================
           NAVIGATION BAR
           ============================================ */
header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background-color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 1;
}

.logo-img {
    width: 250px;
    height: 70px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    opacity: 1;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 17px;
    position: relative;
    transition: color 0.3s;
    font-family: "Roboto", sans-serif;
}

/* .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #EFCEAD;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        } */

.nav-links a:hover {
    color: blue;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    opacity: 1;
}

/* EXISTING CSS remains same */

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.dropdown-menu {
    position: absolute;
    top: 25px;
    left: -50px;
    background: #111;
    min-width: 100px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    z-index: 200;
}

.dropdown-menu a {
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgb(94, 153, 241);
    color: #000;
}

/* SHOW ON HOVER (Desktop) */
.dropdown:hover .dropdown-menu {
    display: flex;
}


.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.close-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    color: black;
}

.arrow {
    font-size: 12px;
    margin-left: auto;
}

@media (max-width: 768px) {

    header {
        position: fixed;
        padding: 10px 20px;
    }

    .logo-img {
        width: 250px;
        height: auto;
    }

    .nav-links a {
        text-decoration: none;
        color: #000;
        font-size: 20px;
        font-family: "Roboto", sans-serif;
        margin-left: 10px;
    }

    .hamburger {
       display: flex !important;
    align-items: center;
    justify-content: center;

    width: 44px;          /* 👈 IMPORTANT */
    height: 44px;

    font-size: 30px;
    line-height: 1;
    color: #000;

    margin-left: auto;   /* 👈 PUSH TO RIGHT */
    cursor: pointer;
    margin-right: 20px
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px;
        gap: 15px;
        transition: left 0.4s ease;
        z-index: 999;
    }

    .nav-links.show {
        left: 0;
    }


    /* MOBILE DROPDOWN */
    .dropdown-menu {
        position: static;
        background: #f5f5f5;
        display: none;
        padding-left: 15px;
    }


    /* Disable hover dropdown on mobile */
    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .close-menu {
        display: block;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        background: #f5f5f5;
        display: none;
        padding-left: 15px;
    }

    .dropdown-menu.show {
        display: block;
    }

    /* Desktop hover disable */
    .dropdown:hover .dropdown-menu {
        display: none;
    }
}

@media (min-width: 769px) {
    .arrow {
        display: none;
    }

    .close-menu {
        display: none !important;
    }

    .mobile-contact {
        display: none;
    }
}

.btn-primary {
    background: #0a3d91;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
}