@media (max-width: 1615px) and (min-width: 1441px) {

}
@media (max-width: 1440px) and (min-width: 1200px) {
    .container-fluid {
        padding: 0 3vw;
    }

}
@media (max-width: 1280px) and (min-width: 1200px) {
    .container-fluid {
        padding: 0 1.5vw;
    }
    .header-content .menu .nav-menu li .nav-link {font-size: 15px;}
    .header-content .logo {
        max-width: 120px;
    }

}
@media (max-width: 1199px) and (min-width: 992px) {
    .container-fluid {
        padding: 0 2rem;
    }
    .hero-section .banner-description h1 {
        font-size: 3rem;
    }
    .header-content .menu .nav-menu li .nav-link {
        font-size: 12px;
    }
}
@media (min-width: 992px) {
    .mobile-sidebar {
        display: none!important;
    }
    .mobile-sidebar-overlay {
        display: none!important;
    }
    .mobile-menu-toggle {
        display: none!important;
    }
}
/* Mobile Menu Styles - Show from 991px and below */
@media (max-width: 991px) {
    footer .footer-bottom p {
        text-align: center;
        margin-top: 2rem;
    }
    .container-fluid {
        padding: 0 15px;
    }
    /* Hide desktop menu */
    .header-content .menu {
        display: none;
    }
    
    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .mobile-menu-toggle .btn {
        color: #fff;
        padding: 0;
        border: none;
        background: transparent;
        font-size: 24px;
        min-width: auto;
    }
    
    .mobile-menu-toggle .btn:hover {
        color: #6BCBDA;
    }
    
    /* Mobile Sidebar */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(7, 7, 7, 0.95);
        backdrop-filter: blur(10px);
        z-index: 9999;
        transition: left 0.3s ease-in-out;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    
    .mobile-sidebar.active {
        left: 0;
    }
    
    /* Mobile Sidebar Header */
    .mobile-sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-sidebar-header .logo {
        max-width: 100px;
    }
    
    .mobile-sidebar-header .close-btn {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 24px;
        padding: 0;
        cursor: pointer;
        transition: color 0.3s ease;
    }
    
    .mobile-sidebar-header .close-btn:hover {
        color: #6BCBDA;
    }
    
    /* Mobile Sidebar Content */
    .mobile-sidebar-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 20px 0;
    }
    
    /* Mobile Navigation */
    .mobile-nav-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 25px;
        color: #fff;
        text-decoration: none;
        font-family: "Helvetica Now Display";
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-link:hover {
        color: #6BCBDA;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .mobile-nav-link i {
        transition: transform 0.3s ease;
    }
    
    .mobile-nav-link[aria-expanded="true"] i {
        transform: rotate(180deg);
    }
    
    /* Mobile Submenu */
    .mobile-submenu {
        list-style: none;
        padding: 0;
        margin: 0;
        background: rgba(0, 0, 0, 0.2);
    }
    
    .mobile-submenu li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 25px 12px 40px;
        color: #fff;
        text-decoration: none;
        font-family: "Helvetica Now Display";
        font-size: 14px;
        font-weight: 400;
        transition: all 0.3s ease;
    }
    
    .mobile-submenu li a:hover {
        color: #6BCBDA;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .mobile-submenu li a i {
        font-size: 12px;
        opacity: 0.7;
    }
    
    /* Mobile Sidebar Footer */
    .mobile-sidebar-footer {
        padding: 20px 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-buttons {
        margin-bottom: 20px;
    }
    
    .mobile-buttons .btn {
        margin-bottom: 10px;
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .mobile-language .dropdown-toggle {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #fff;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 14px;
    }
    
    .mobile-language .dropdown-menu {
        background: rgba(60, 51, 51, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin-top: 5px;
    }
    
    .mobile-language .dropdown-item {
        color: #fff;
        padding: 8px 15px;
    }
    
    .mobile-language .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #6BCBDA;
    }
    
    /* Mobile Sidebar Overlay */
    .mobile-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Adjust header for mobile */
    .header-content {
        padding: 15px 20px;
    }
    .header-content .favorite-button,
    .header-content .cart-button,
    .header-content .header-button {
        display: none!important;
    }
    
    .header-content .language {
        display: none;
    }
    .mobile-nav-link::after {
        display: none;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .hero-section .banner-description h1{
        font-size: 2.5rem;
    }
    .hero-section .banner-description p {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .header-content {
        padding: 0;
    }
    .hero-section .banner-description p {
        padding-right: 0;
    }
    .hero-section .banner-description h1 {
        font-size: 2rem;
    }
    .hero-section .banner-description p {
        font-size: 1rem;
    }
    .hero-section .banner-description .btn {
        font-size: 1rem;
    }
    .hero-section .track-shipment {
        max-width: 100%;
    }
    .hero-section .track-shipment .form-control {
        width: 100%;
    }
    .hero-section .track-shipment .btn {
        min-width: auto;
    }
    .hero-section .track-shipment form {
        flex-wrap: wrap;
        align-items: center;
    }
    .career-details-section .job-details .title,
    .career-opportunities-section .title h2,
    .why-choose-us-section .title h2,
    .about-section h2 {
        font-size: 26px;
    }
    .about-section {
        padding: 3rem 0;
    }
    .job-list .job-item .bottom-info {
        gap: 1rem;
    }
    
}