/* ===== Top Contact Bar ===== */
.top-bar {
    background: linear-gradient(90deg, #ff0000, #ff0000);
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
}

.top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hours {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact a {
    /* display: flex; */
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #f4ecf0;
}

.contact i {
    color: #ffffff;
    font-size: 14px;
    margin-top: 3px;
    padding-right: 2px;
}

/* NAVBAR */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 85px;
    display: flex;
    align-items: center;
} 

/* Override theme container only inside navbar */
.navbar .container {
    width: 95% !important;
    max-width: 1350px !important;
    margin: 0 auto !important;
    padding: 0 !important;
} 

/* NAV CONTENT — left, center, right layout */
.nav-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
} 

/* ============================
   LOGOS LEFT SIDE
============================ */
 .two-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    margin-right: 30px;
    /* push menu slightly right */
} 

.two-logos img {
    height: 130px;
    width: auto;
    display: inline-block;
}

/* ============================
   CENTER MENU
============================ */
 .nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: red;
} */
/* DROPDOWN */

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: red;
    min-width: 120px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-radius: 4px;
    padding: 2px 0;
}

.dropdown-content li a {
    display: block;
    padding: 6px 10px;
    font-size: 15px;
    color: #000;
    white-space: nowrap;
}

/* Show on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* REMOVE THIS (causes white hover)
.nav-menu .dropdown-content li a:hover {
    background-color:white;
}
*/

/* FORCE RED HOVER */
.dropdown-content li:hover > a,
.dropdown-content a:hover {
    background-color: red !important;
    color: white !important;
}



/* ============================
   BOOK APPOINTMENT BUTTON
============================ */
.appointment-btn {
    background: #ff0000;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    transition: 0.3s;
    margin-left: 35px !important;
    /* FIX: Adds gap before button */
}

.appointment-btn:hover {
    background: orange;
    transform: translateY(-2px);
}





/* ===== Mobile Toggle ===== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #4a5568;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #2b6cb0;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #2b6cb0;
}


/* ===== Responsive ===== */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        z-index: 999;
        animation: fadeDown 0.3s ease forwards;
    }

    .nav-menu.active {
        display: flex;
    }

    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .appointment-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .mobile-toggle {
        display: flex;
    }

    .top-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact {
        justify-content: center;
    }

    .nav-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo {
        font-size: 22px;
    }

    .logo i {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .appointment-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .container {
        padding: 0 15px;
    }

    .top-bar {
        font-size: 13px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .logo {
        font-size: 20px;
    }

    .logo i {
        font-size: 24px;
    }


        /* .about-image img{
            margin-top: -50px;
        } */
}

@media (max-width: 433px){

   .nav-content{
    gap: 0;
    flex-wrap: nowrap;
   }

   .appointment-btn{
    margin-left: 0;
   }





} 