/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; */
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
}

/* ============================================
   LOGO STYLES
   ============================================ */
.navbar-logo img {
    height: 112px;
    width: auto;
    cursor: pointer;
}

/* ============================================
   DESKTOP MENU STYLES
   ============================================ */
.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding-left: 0;
}

.nav-item {
    position: relative;
    width: fit-content;
}

.nav-link {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #E91E63;
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* ============================================
   DROPDOWN MENU STYLES
   ============================================ */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 15px;
}

.dropdown-item:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #5a5a5a;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #E91E63;
    padding-left: 25px;
}

/* ============================================
   CONTACT BUTTON STYLES
   ============================================ */
.navbar-contact {
    display: flex;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #E91E63;
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.contact-btn:hover {
    background-color: #c2185b;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.contact-btn i {
    font-size: 14px;
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: #5a5a5a;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #E91E63;
}

/* ============================================
   MOBILE SIDEBAR STYLES
   ============================================ */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-sidebar-header img {
    height: 50px;
    width: auto;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #5a5a5a;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-close-btn:hover {
    color: #E91E63;
}

.mobile-menu {
    list-style: none;
    padding: 20px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: #5a5a5a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: #f8f9fa;
    color: #E91E63;
    padding-left: 25px;
}

.mobile-nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-nav-link i {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    background-color: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu-link {
    display: block;
    padding: 12px 20px 12px 0px;
    color: #5a5a5a;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
    background-color: #ffffff;
    color: #E91E63;
    padding-left: 45px;
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet View */
@media (max-width: 991px) {
    .navbar-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 15px;
    }
    
    .navbar-container {
        padding: 10px 20px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .navbar-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar-container {
        padding: 5px 20px;
    }
    
    .navbar-logo img {
        height: 96px;
    }
}

@media (max-width: 480px) {
    .mobile-sidebar {
        width: 280px;
    }
    
    .navbar-container {
        padding: 5px 15px;
    }
}
/* @media only screen 
and (min-width: 820px) 
and (max-width: 820px) {
.contact-btn{
    display: none;
}
} */
@media only screen 
and (min-width: 820px) 
and (max-width: 1180px) {
.contact-btn{
    display: none;
}
.navbar-logo img {
    height: 100px;
}

}
