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

}
@media (max-width: 1440px) and (min-width: 1200px) {
    .container-fluid {
        padding: 0 3vw;
    }
    .what-we-deliver-section h2,
    .identity-management-section h2,
    .industries-we-support-section h2 {
        font-size: 58px;
    }
}
@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;
    }
    .industries-we-support-section ul li {
        font-size: 22px;
    }
    .empowering-section .btn {width: 100%;}

}
@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;
    }
    .what-we-deliver-section .d-flex {
        flex-direction: column;
    }
    .what-we-deliver-section .d-flex .bottom-img {
        display: none;
    }
    .what-we-deliver-section .top-img {
        margin-left: -15%;
        margin-top: 1rem;
        padding-right: 0;
    }
    .industries-we-support-section ul li {
        font-size: 20px;
    }
    .empowering-section .btn {width: 100%;}
    .what-we-deliver-section h2,
    .identity-management-section h2,
    .industries-we-support-section h2 {
        font-size: 52px;
    }
    .payment-solutions-section .box img {
        position: relative;
        top: 0;
    }
    .payment-solutions-section .box {
        background: #6BCCDA;
        padding: 3rem 2rem 2rem;
        position: relative;
    }
    .what-we-deliver-section {
        padding: 5rem 0 0;
    }
    .identity-management-section {
        background-size: cover;
        background-position: top;
    }
    
}
@media (min-width: 992px) {
    .mobile-img.d-none.d-md-block.d-xs-block {
        display: none !important;
      }
    .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;
    }
    .what-we-deliver-section h2 {max-width: 100%;}
    .what-we-deliver-section {
        padding: 0 0 5rem;
    }
    .what-we-deliver-section .top-img {
        margin-left: 0;
        margin-top: 1rem;
        padding-right: 0;
        margin-bottom: -3rem;
        margin-left: -5.5rem;
    }
    .payment-solutions-section .img-content {
        text-align: center;
        margin-top: 2rem;
    }
    .identity-management-section {
        background-size: cover;
        background-position: 600%;
        padding-top: 0;
    }
    .identity-management-section h2 {
        margin-top: 2rem;
    }
    .secure-printing-fulfilment-section .justify-content-end {
        justify-content: flex-start!important;
    }
    .secure-printing-fulfilment-section .row {
        row-gap: 2rem;
    }
    .industries-we-support-section .right-content {
        padding: 2rem 15px;
    }
    .industries-we-support-section .row {
        flex-direction: column-reverse;
    }
    .industries-we-support-section h2 {max-width: 100%;}
    .empowering-section h2 {
        max-width: 100%;
        margin-bottom: 1rem;

    }
    .empowering-section p {max-width: 100%;}
    .empowering-section .row .justify-content-end {
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    .empowering-section .btn {
        width: auto;
    }
    .about-section .pr-lg-5 {
        padding: 0 15px;
    }
    .what-we-deliver-section .d-flex {
        flex-direction: column;
    }
    .what-we-deliver-section .d-flex .bottom-img {
        display: none;
    }
    .payment-solutions-section .box img {
        position: relative;
        top: 0;
        right: 0;
    }
    .payment-solutions-section .box {
        padding: 3rem 2rem 2rem;
        position: relative;
    }
}

@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;
    }

    

    .industries-we-support-section ul li {
        font-size: 20px;
    }
    .what-we-deliver-section h2,
    .identity-management-section h2,
    .industries-we-support-section h2 {
        font-size: 48px;
    }
 
    .certifications-standards-section ul li {
        padding-right: 1rem;
        width: 23%;
    }
    
}

@media (max-width: 767px) {
    .inner-banner {
        height: auto;
        padding: 132px 0 4rem;
    }
    .inner-banner  .col-xl-7.col-lg-6.d-flex.justify-content-end {
        justify-content: flex-start !important;
    }
    .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;
    }
    .hero-form {
        width: 100%;
        padding: 2rem;
        margin-top: 1rem;
    }
    .what-we-deliver-section h2,
    .identity-management-section h2,
    .industries-we-support-section h2 {
        font-size: 38px;
    }
    .what-we-deliver-section .top-img {
        margin-left: -14.5vw;
        margin-bottom: -2rem;

    }
    .what-we-deliver-section {
        padding: 0 0 2rem;
    }
    .mobile-img.d-none.d-md-block.d-xs-block {
        display: block !important;
    }
    .secure-printing-fulfilment-section {
        padding: 3rem 0;
    }
    .industries-we-support-section ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: flex-start!important;
    }
    .industries-we-support-section ul li {
        font-size: 18px;
    }
    .certifications-standards-section ul li {
        border-right: 0;
        padding-right: 0;
        text-align: center;
        width: calc(50% - 1rem);
    }
    .certifications-standards-section ul li h3 {
        font-size: 24px;
        margin-bottom: .5rem;
    }
    .certifications-standards-section ul li p {font-size: 16px;}
}