    /* ============================================
    RESPONSIVE STYLES FOR PAGE LOADER
    ============================================ */

    @media (max-width: 768px) {
        .loader-spinner {
            width: 50px;
            height: 50px;
            border-width: 3px;
        }

        .loader-logo img {
            max-width: 150px;
        }

        .loader-content {
            gap: 20px;
        }
    }

    @media (max-width: 480px) {
        .loader-spinner {
            width: 40px;
            height: 40px;
            border-width: 3px;
        }

        .loader-logo img {
            max-width: 120px;
        }

        .loader-content {
            gap: 15px;
        }
    }

    /* ============================================
    RESPONSIVE STYLES FOR HEADER
    ============================================ */

    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
        position: relative;
    }

    .mobile-menu-toggle span {
        width: 100%;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .white-header .mobile-menu-toggle span {
        background: #112954;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hide mobile header actions by default */
    .header-actions-mobile {
        display: none;
    }

    @media (max-width: 1200px) {
        .search-box span {
            display: none;
        }

        .search-box svg {
            width: 22px;
            height: 22px;
        }
    }

    /* ============================================
    TABLET STYLES (992px - 1024px) - Desktop Menu Still Visible
    ============================================ */
    @media (min-width: 992px) and (max-width: 1024px) {
        .header-section {
            padding: 20px 40px;
            transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
        }

        .header-section.scrolled {
            padding: 16px 40px;
        }

        .header-content {
            height: auto;
            min-height: 58px;
        }

        .navbar-nav-custom {
            margin-left: 30px;
            gap: 12px;
        }

        .nav-link-custom {
            font-size: 13px;
            padding: 6px 10px;
        }

        .search-box {
            padding: 6px 12px;
            font-size: 13px;
        }

        .search-box span {
            display: none;
        }

        .btn-primary-header {
            padding: 8px 14px;
            font-size: 13px;
        }

        /* Mega Menu Tablet */
        .mega-menu {
            top: 90px;
            padding-top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 900px;
        }

        .mega-menu-container {
            min-width: 100%;
            max-width: 100%;
            flex-wrap: wrap;
            padding: 12px;
        }

        .mega-menu-featured {
            width: 100%;
            margin-bottom: 16px;
        }

        .featured-card {
            width: 100%;
            max-width: 100%;
            margin: 0;
        }

        /* Search Mega Menu Tablet */
        .search-mega-menu {
            top: calc(100% + 20px);
            width: 95%;
            max-width: 716px;
        }

        .search-mega-menu-container {
            min-width: 100%;
            max-width: 100%;
        }
    }

    /* ============================================
    TABLET STYLES (768px - 991px) - Accordion Behavior
    ============================================ */
    @media (min-width: 768px) and (max-width: 991px) {
        /* Disable hover behavior for both mega menus */
        /*  .nav-item-dropdown:hover .mega-menu {
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
        }

        .search-item-dropdown:hover .search-mega-menu {
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
        } */

        /* Force accordion behavior for solutions mega menu */
        .mega-menu {
            position: static !important;
            opacity: 0;
            visibility: hidden;
            max-height: 0;
            padding: 0;
            margin-top: 0;
            margin-bottom: 0;
            transform: none !important;
            pointer-events: none;
            top: auto !important;
            left: auto !important;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease-in-out,
                margin-top 0.3s ease-in-out,
                margin-bottom 0.3s ease-in-out,
                padding 0.3s ease-in-out;
        }

        .nav-item-dropdown.active .mega-menu {
            opacity: 1;
            visibility: visible;
            max-height: 2000px;
            padding: 0;
            margin-top: 8px;
            margin-bottom: 16px;
            pointer-events: all;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease-in-out 0.1s,
                margin-top 0.3s ease-in-out,
                margin-bottom 0.3s ease-in-out,
                padding 0.3s ease-in-out;
        }

        /* Force accordion behavior for search mega menu */
        .search-mega-menu {
            position: static !important;
            opacity: 0;
            visibility: hidden;
            max-height: 0;
            padding: 0;
            margin-top: 0;
            margin-bottom: 0;
            right: auto !important;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            pointer-events: none;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease-in-out,
                margin-top 0.3s ease-in-out,
                margin-bottom 0.3s ease-in-out,
                padding 0.3s ease-in-out;
        }

        .search-item-dropdown.active .search-mega-menu {
            opacity: 1;
            visibility: visible;
            max-height: 2000px;
            padding: 0;
            margin-top: 8px;
            margin-bottom: 16px;
            pointer-events: all;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease-in-out 0.1s,
                margin-top 0.3s ease-in-out,
                margin-bottom 0.3s ease-in-out,
                padding 0.3s ease-in-out;
        }

        .mega-menu-wrapper,
        .search-mega-menu .mega-menu-wrapper {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px;
            border-radius: 8px;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            -webkit-overflow-scrolling: touch;
            transition: all 0.3s ease-in-out;
        }

        .mega-menu-container,
        .search-mega-menu-container {
            flex-direction: column;
            gap: 16px;
            min-width: 100%;
            max-width: 100%;
            width: 100%;
            padding: 12px;
            box-sizing: border-box;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease-in-out 0.15s,
                transform 0.3s ease-in-out 0.15s;
        }

        .nav-item-dropdown.active .mega-menu-container,
        .search-item-dropdown.active .search-mega-menu-container {
            opacity: 1;
            transform: translateY(0);
        }

        .mega-menu-solutions {
            width: 100%;
        }

        .solutions-grid {
            justify-content: center;
            gap: 10px;
        }

        .solution-item {
            width: calc(50% - 5px);
            max-width: 220px;
            min-width: 180px;
        }
    }

    /* ============================================
    MEDIUM TABLET STYLES (768px - 991px) - Mobile Menu
    ============================================ */
    @media (min-width: 768px) and (max-width: 991px) {
        .header-section {
            padding: 16px 24px;
        }

        .header-section.scrolled {
            padding: 12px 24px;
        }

        .navbar-nav-custom {
            top: 82px;
            padding: 24px;
        }

        .mega-menu-container {
            padding: 16px;
        }

        .solutions-grid {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .solution-item {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            min-height: 44px;
            padding: 10px 12px;
            flex-direction: row !important;
            justify-content: flex-start;
            align-items: center;
        }

        /* Hide solution-info on tablet too */
        .solution-info {
            display: none !important;
        }

        .solution-icon {
            width: 100%;
            gap: 12px;
            display: flex;
            align-items: center;
        }

        .solution-icon .arrow-icon {
            display: none !important;
        }

        .solution-name {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
        }

        .solution-item:hover {
            border: 1px solid transparent !important;
            background: #E8F5FF !important;
        }

        .solution-icon svg:not(.arrow-icon) {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .featured-card {
            height: 200px;
        }
    }

    /* ============================================
    MOBILE STYLES (max-width: 991px)
    ============================================ */
    @media (max-width: 991px) {

        /* Header Section */
        .header-section {
            padding: 16px 20px;
            transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
        }

        .header-section.scrolled {
            padding: 12px 20px;
        }

        .header-content {
            flex-wrap: nowrap;
            height: auto;
            min-height: 50px;
            gap: 12px;
        }

        /* Logo */
        .logo-img {
            height: 40px;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: flex;
            order: 2;
            margin-left: auto;
        }

        /* Hide Desktop Header Actions */
        .header-actions {
            display: none !important;
        }

        /* Navigation */
        .navbar-nav-custom {
            display: none;
            position: fixed;
            top: 82px;
            left: 0;
            right: 0;
            background: rgba(0, 3, 44, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: none;
            border-radius: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            flex-direction: column;
            align-items: stretch;
            padding: 20px;
            margin: 0;
            gap: 0;
            max-height: calc(100vh - 82px);
            overflow-y: auto;
            overflow-x: hidden;
            z-index: 1001;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            -webkit-overflow-scrolling: touch;
        }

        .navbar-nav-custom.active {
            display: flex;
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-link-custom {
            padding: 12px 16px;
            border-radius: 6px;
            margin-bottom: 8px;
            justify-content: space-between;
            width: 100%;
            background: transparent;
            transition: background 0.25s ease-in-out,
                transform 0.2s ease-in-out;
            -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
            touch-action: manipulation;
        }

        .nav-link-custom:hover,
        .nav-link-custom:active {
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-link-custom:active {
            transform: scale(0.98);
        }

        .nav-link-custom svg {
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .nav-item-dropdown.active .nav-link-custom svg {
            transform: rotate(180deg);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link-custom svg {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-item-dropdown {
            width: 100%;
        }

        /* Better touch targets for mobile */
        .nav-link-custom,
        .solution-item,
        .btn-primary-header {
            min-height: 44px;
            display: flex;
            align-items: center;
        }

        /* Mobile Header Actions Inside Menu */
        .navbar-nav-custom .header-actions-mobile {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .navbar-nav-custom .header-actions-mobile .search-box {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--text-primary);
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .white-header .navbar-nav-custom .header-actions-mobile .search-box {
            background: #F4FAFF;
            border: 1px solid #6EB5E8;
            color: #112954;
        }

        .navbar-nav-custom .header-actions-mobile .search-box:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .navbar-nav-custom .header-actions-mobile .search-box span {
            display: inline;
        }

        .navbar-nav-custom .header-actions-mobile .btn-primary-header {
            width: 100%;
            padding: 12px 16px;
            font-size: 15px;
            text-align: center;
            justify-content: center;
        }

        .white-header .navbar-nav-custom .header-actions-mobile .btn-primary-header {
            background: #1181D0;
            color: #F4FAFF;
        }

        /* Disable hover behavior on mobile/tablet */
        /*  .nav-item-dropdown:hover .mega-menu {
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
        }
 */
        /* .search-item-dropdown:hover .search-mega-menu {
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
        } */

        /* Mega Menu Mobile - Accordion Style */
        .mega-menu {
            position: static !important;
            opacity: 0;
            visibility: hidden;
            max-height: 0;
            padding: 0;
            margin-top: 0;
            margin-bottom: 0;
            transform: none !important;
            pointer-events: none;
            top: auto !important;
            left: auto !important;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease-in-out,
                margin-top 0.3s ease-in-out,
                margin-bottom 0.3s ease-in-out,
                padding 0.3s ease-in-out;
        }

        .nav-item-dropdown.active .mega-menu {
            opacity: 1;
            visibility: visible;
            max-height: 2000px;
            padding: 0;
            margin-top: 8px;
            margin-bottom: 16px;
            pointer-events: all;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease-in-out 0.1s,
                margin-top 0.3s ease-in-out,
                margin-bottom 0.3s ease-in-out,
                padding 0.3s ease-in-out;
        }

        /* Smooth scrolling for mega menu on mobile */
        .mega-menu-wrapper {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px;
            border-radius: 8px;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            -webkit-overflow-scrolling: touch;
            transition: all 0.3s ease-in-out;
        }

        .mega-menu-container {
            flex-direction: column;
            gap: 16px;
            min-width: 100%;
            max-width: 100%;
            width: 100%;
            padding: 12px;
            box-sizing: border-box;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease-in-out 0.15s,
                transform 0.3s ease-in-out 0.15s;
        }

        .nav-item-dropdown.active .mega-menu-container {
            opacity: 1;
            transform: translateY(0);
        }

        .mega-menu-featured {
            width: 100%;
            margin-bottom: 12px;
        }

        .featured-card {
            width: 100%;
            max-width: 100%;
        }


        .featured-content {
            padding: 14px;
            gap: 16px;
        }

        .featured-title {
            font-size: 14px;
            line-height: 18px;
        }

        .featured-description {
            font-size: 11px;
            line-height: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .header-solution-btn {
            padding: 8px 16px;
            font-size: 12px;
        }

        .mega-menu-solutions {
            width: 100%;
        }

        .solutions-grid {
            flex-direction: column;
            gap: 8px;
        }

        .solution-item {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            min-height: 44px;
            padding: 10px 12px;
            box-sizing: border-box;
            flex-direction: row !important;
            justify-content: flex-start;
            align-items: center;
            border-radius: 6px;
            margin-bottom: 4px;
            transition: background-color 0.2s ease-in-out,
                border-color 0.2s ease-in-out,
                transform 0.2s ease-in-out;
        }

        .solution-item:active {
            transform: scale(0.98);
        }

        /* Hide solution-info on mobile/tablet */
        .solution-info {
            display: none !important;
        }

        /* Make solution-icon display in one line */
        .solution-icon {
            gap: 12px;
            width: 100%;
            margin: 0;
            display: flex;
            align-items: center;
        }

        .solution-name {
            font-size: 14px;
            line-height: 18px;
            white-space: nowrap;
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Hide arrow icon on mobile */
        .solution-icon .arrow-icon {
            display: none !important;
        }

        /* Remove hover effects on mobile */
        .solution-item:hover {
            border: 1px solid transparent !important;
            background: #E8F5FF !important;
        }

        /* Make solution-icon SVG smaller on mobile */
        .solution-icon svg:not(.arrow-icon) {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }
    }

    /* ============================================
    SMALL MOBILE STYLES (max-width: 480px)
    ============================================ */
    @media (max-width: 480px) {
        .header-section {
            padding: 12px 16px;
            transition: background 0.3s ease, backdrop-filter 0.3s ease;
        }

        .header-section.scrolled {
            padding: 10px 16px;
        }

        .header-content {
            gap: 8px;
        }

        .logo-img {
            height: 35px;
        }

        .mobile-menu-toggle {
            width: 26px;
            height: 26px;
        }

        .navbar-nav-custom {
            top: 70px;
            padding: 16px;
            max-height: calc(100vh - 70px);
        }

        .nav-link-custom {
            padding: 10px 12px;
            font-size: 14px;
        }

        .mega-menu-wrapper {
            padding: 8px;
        }

        .mega-menu-container {
            padding: 8px;
            gap: 12px;
        }


        .featured-content {
            padding: 12px;
            gap: 0px;
        }

        .solution-item {
            padding: 0;
        }

        .solution-item .solution-link-wrapper {
            padding: 10px 12px;
            width: 100%;
            min-height: 44px;
            justify-content: center !important;
        }

        .Who_we_are_container .solution-icon {
            flex-direction: row;
        }

        .solution-name {
            font-size: 13px;
        }

        .navbar-nav-custom .header-actions-mobile {
            padding-top: 12px;
            margin-top: 12px;
            gap: 10px;
        }

        .navbar-nav-custom .header-actions-mobile .search-box {
            padding: 10px 14px;
            font-size: 13px;
        }

        .navbar-nav-custom .header-actions-mobile .btn-primary-header {
            padding: 10px 14px;
            font-size: 14px;
        }

        /* Search Mega Menu Mobile - Accordion Style */
        .search-mega-menu {
            position: static !important;
            opacity: 0;
            visibility: hidden;
            max-height: 0;
            padding: 0;
            margin-top: 0;
            margin-bottom: 0;
            right: auto !important;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            pointer-events: none;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease-in-out,
                margin-top 0.3s ease-in-out,
                margin-bottom 0.3s ease-in-out,
                padding 0.3s ease-in-out;
        }

        .search-item-dropdown.active .search-mega-menu {
            opacity: 1;
            visibility: visible;
            max-height: 2000px;
            padding: 0;
            margin-top: 8px;
            margin-bottom: 16px;
            pointer-events: all;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease-in-out 0.1s,
                margin-top 0.3s ease-in-out,
                margin-bottom 0.3s ease-in-out,
                padding 0.3s ease-in-out;
        }

        .search-mega-menu-container {
            flex-direction: column;
            gap: 16px;
            min-width: 100%;
            max-width: 100%;
            width: 100%;
            padding: 12px;
            box-sizing: border-box;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease-in-out 0.15s,
                transform 0.3s ease-in-out 0.15s;
        }

        .search-item-dropdown.active .search-mega-menu-container {
            opacity: 1;
            transform: translateY(0);
        }

        .recommendations-grid {
            flex-direction: column;
            gap: 12px;
        }

        .recommendation-card {
            flex-direction: column;
        }

        .recommendation-image {
            width: 100%;
            height: 150px;
            border-radius: 8px 8px 0 0;
        }

        .recommendation-content {
            width: 100%;
            border-radius: 0 0 8px 8px;
        }
    }

    /* ============================================
    LARGE TABLET STYLES (1025px - 1200px)
    ============================================ */
    @media (min-width: 1025px) and (max-width: 1200px) {
        .header-section {
            padding: 20px 60px;
            transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
        }

        .header-section.scrolled {
            padding: 16px 60px;
        }

        .navbar-nav-custom {
            margin-left: 60px;
            gap: 20px;
        }

        .mega-menu-container {
            min-width: 95%;
            max-width: 1000px;
        }
    }

    /* ============================================
    EXTRA LARGE SCREENS (1440px+)
    ============================================ */
    @media (min-width: 1441px) {
        .header-content {
            max-width: 1400px;
        }

        /*  .mega-menu-container {
            min-width: 1200px;
        } */
    }

    /* ============================================
    LANDSCAPE MOBILE ORIENTATION
    ============================================ */
    @media (max-width: 991px) and (orientation: landscape) {
        .navbar-nav-custom {
            max-height: calc(100vh - 82px);
            overflow-y: auto;
        }

        .mega-menu {
            max-height: 400px;
            overflow-y: auto;
        }
    }

    /* ============================================
    PREVENT OVERLAPPING AND CUTTING
    ============================================ */
    @media (max-width: 991px) {

        /* Ensure header doesn't overlap content */
        /*  body {
            padding-top: 82px;
        } */

        /* Prevent body scroll when menu is open */
        body.menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        /* Prevent horizontal scroll */
        .header-section,
        .header-content,
        .navbar-nav-custom,
        .mega-menu,
        .mega-menu-container,
        .mega-menu-wrapper {
            max-width: 100vw;
            overflow-x: hidden;
            box-sizing: border-box;
        }

        /* Ensure mega menu items don't overflow */
        .mega-menu-container * {
            max-width: 100%;
            box-sizing: border-box;
        }

        /* Ensure all text is readable */
        .nav-link-custom,
        .solution-name,
        .solution-desc,
        .featured-title,
        .featured-description {
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        /* Prevent mega menu from going off screen */
        .mega-menu-wrapper {
            max-width: calc(100vw - 40px);
            margin: 0 auto;
        }
    }

    /* ============================================
    ACCESSIBILITY - FOCUS STATES
    ============================================ */
    @media (max-width: 991px) {

        .mobile-menu-toggle:focus,
        .nav-link-custom:focus,
        .btn-primary-header:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }
    }

    /* ============================================
    SMOOTH TRANSITIONS
    ============================================ */
    .navbar-nav-custom,
    .mega-menu,
    .mobile-menu-toggle span {
        transition: all 0.3s ease;
    }

    /* ============================================
    HERO SECTION RESPONSIVE
    ============================================ */
    @media (max-width: 1024px) {
        .hero-section {
            min-height: 1000px;
            padding: 120px 0 0 0;
        }

        .hero-content {
            padding: 0 20px;
        }

        .hero-title {
            font-size: 56px;
            line-height: 64px;
        }

        .hero-description {
            font-size: 16px;
            line-height: 24px;
        }

        .hero-buttons {
            gap: 12px;
        }

        .hero-benner-box {
            height: calc(100vh - 500px);
        }
    }

    @media (max-width: 991px) {
        .hero-section {
            min-height: auto;
            padding: 60px 0 60px 0;
        }

        .hero-content {
            padding: 0 16px;
            gap: 20px;
        }

        .hero-title {
            font-size: 36px;
            line-height: 44px;
            margin-bottom: 16px;
        }

        .hero-description {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 24px;
        }

        .hero-buttons {
            gap: 12px;
            width: 100%;
        }

        .btn-primary,
        .btn-hero-secondary {
            width: auto;
            text-align: center;
            justify-content: center;
        }

        .hero-benner-box {
            height: auto;
            min-height: 300px;
        }

        .image-origin {
            width: 90px;
            height: 45px;
        }
    }

    @media (max-width: 767px) {
        .hero-title {
            margin-bottom: 0;
        }

        .hero-subtitle {
            font-size: 18px;
            line-height: 22px;
        }

        .hero-buttons {
            flex-wrap: wrap;
        }

        .hero-globe {
            height: 300px;
        }

        .hero-globe img {
            height: 100%;
        }

        .hero-trusted-section .trusted-card {
            flex-direction: column;
            gap: 20px;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 28px;
            line-height: 36px;
        }

        .hero-description {
            font-size: 13px;
            line-height: 18px;
        }

        .btn-primary,
        .btn-hero-secondary {
            padding: 12px 20px;
            font-size: 14px;
        }
    }

    /* ============================================
    STATISTICS SECTION RESPONSIVE
    ============================================ */
    @media (max-width: 1024px) {
        .stats-section {
            padding: 0 60px 80px;
        }

        .stats-grid {
            gap: 20px;
        }

        .stat-number {
            font-size: 32px;
            line-height: 42px;
        }

        .stat-label {
            font-size: 14px;
            line-height: 20px;
        }
    }

    @media (max-width: 991px) {
        .stats-section {
            padding: 0 40px 60px;
        }

        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .stat-card {
            width: auto;
        }

        /* First 3 cards - each takes 1/3 of the width */
        .stat-card:nth-child(1),
        .stat-card:nth-child(2),
        .stat-card:nth-child(3) {
            flex: 1 1 calc(33.333% - 14px);
            min-width: 0;
        }

        /* Last 2 cards - each takes 1/2 of the width */
        .stat-card:nth-child(4),
        .stat-card:nth-child(5) {
            flex: 1 1 calc(50% - 10px);
            min-width: 0;
        }

        .stat-number {
            font-size: 28px;
            line-height: 36px;
        }

        .stat-label {
            font-size: 13px;
            line-height: 18px;
        }
    }

    @media (max-width: 767px) {
        .stats-section {
            padding: 0 20px 40px;
            margin-top: 0;
        }

        .stats-grid {
            gap: 16px;
        }

        /* All cards take 1/2 width on tablet */
        .stat-card:nth-child(1),
        .stat-card:nth-child(2),
        .stat-card:nth-child(3),
        .stat-card:nth-child(4),
        .stat-card:nth-child(5) {
            flex: 1 1 calc(50% - 8px);
        }

        .stat-number {
            font-size: 24px;
            line-height: 32px;
        }

        .stat-label {
            font-size: 12px;
            line-height: 16px;
        }
    }

    @media (max-width: 480px) {
        .stats-section {
            padding: 0 16px 30px;
        }

        .stats-grid {
            gap: 16px;
        }

        /* All cards take full width on mobile */
        /*  .stat-card:nth-child(1),
        .stat-card:nth-child(2),
        .stat-card:nth-child(3),
        .stat-card:nth-child(4),
        .stat-card:nth-child(5) {
            flex: 1 1 100%;
        } */

        .stat-number {
            font-size: 22px;
            line-height: 30px;
        }

        .stat-label {
            font-size: 11px;
            line-height: 15px;
        }
    }

    /* ============================================
    TRUSTED BY SECTION RESPONSIVE
    ============================================ */
    @media (max-width: 1024px) {
        .trusted-section {
            padding: 60px 0;
        }

        .trusted-title {
            font-size: 16px;
            line-height: 24px;
        }

        .trusted-logos {
            gap: 30px;
        }

        .trusted-logo {
            max-width: 100px;
            height: 40px;
        }
    }

    @media (max-width: 991px) {
        .trusted-section {
            padding: 40px 0;
        }

        .trusted-title {
            font-size: 14px;
            line-height: 20px;
        }

        .trusted-logos {
            gap: 20px;
            padding: 0 16px;
        }

        .trusted-logo {
            max-width: 80px;
            height: 32px;
        }

        .feature-card {
            width: calc(50% - 12.5px);
            flex: 1 1 calc(50% - 12.5px);
        }

        .why-button-wrapper {
            height: fit-content;
            padding-top: 10px;
        }
    }

    @media (max-width: 767px) {
        .trusted-title {
            margin-bottom: 0;
        }
    }

    @media (max-width: 480px) {
        .trusted-section {
            padding: 0;
        }

        .trusted-logos {
            gap: 16px;
        }

        .trusted-logo {
            max-width: 70px;
            height: 28px;
        }
    }

    /* ============================================
    WHY INTENSITY GLOBAL SECTION RESPONSIVE
    ============================================ */
    @media (max-width: 1024px) {
        .why-section {
            padding: 80px 0;
        }

        .why-container {
            margin-top: 150px;
            padding: 0 20px;
        }

        .section-subtitle {
            font-size: 28px;
            line-height: 36px;
        }

        .section-title {
            font-size: 36px;
            line-height: 44px;
        }

        .why-content-grid {
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 40px 30px;
        }

        .why-ellipse-outer,
        .why-ellipse-inner {
            width: 400px;
            height: 400px;
        }
    }

    @media (max-width: 991px) {
        .why-section {
            padding: 60px 0;
        }

        .why-title {
            font-size: 36px;
            line-height: 44px;
        }

        .why-container {
            margin-top: 100px;
            padding: 0 16px;
        }

        .section-subtitle {
            font-size: 24px;
            line-height: 32px;
        }

        .section-title {
            font-size: 28px;
            line-height: 36px;
        }

        .why-content-grid {
            grid-template-columns: 1fr;
            gap: 24px;
            padding: 30px 20px;
        }

        .why-item-title {
            font-size: 20px;
            line-height: 28px;
        }

        .why-item-description {
            font-size: 13px;
            line-height: 18px;
        }

        .why-ellipse-outer,
        .why-ellipse-inner {
            width: 300px;
            height: 300px;
        }
    }

    @media (max-width: 767px) {
        .feature-card {
            width: 100%;
            flex: 1 1 100%;
        }
    }

    @media (max-width: 480px) {
        .why-section {
            padding: 40px 0;
        }

        .why-title {
            font-size: 28px;
            line-height: 36px;
        }

        .why-container {
            margin-top: 60px;
        }

        .section-subtitle {
            font-size: 20px;
            line-height: 28px;
        }

        .section-title {
            font-size: 24px;
            line-height: 32px;
        }

        .why-content-grid {
            padding: 20px 16px;
            gap: 20px;
        }

        .why-item-title {
            font-size: 18px;
            line-height: 24px;
        }

        .why-ellipse-outer,
        .why-ellipse-inner {
            display: none;
        }

        .feature-title {
            font-size: 20px;
            line-height: 28px;
        }
    }

    /* ============================================
    SERVICES SECTION RESPONSIVE
    ============================================ */
    @media (max-width: 1200px) {
        .services-container-box {
            width: 606px;
            height: 300px;
        }

        .services-container-box .service-inner-img {
            width: 100%;
        }

        .services-container-box .service-inner-img.pc {
            display: none;
        }

        .services-container-box .service-inner-img.tab {
            display: block;
        }

        .services-container-box .services-box img {
            width: 80px;
            height: 80px;
        }

        .services-container-box .services-box p {
            font-size: 16px;
            line-height: 22px;
        }

        .services-container-box .services-box {
            gap: 13px;
        }

        .services-container-box .services-box.first {
            transform: translate(calc(-50% - 114px), calc(-50% - 102px));
        }

        .services-container-box .services-box.second {
            transform: translate(calc(-50% + 115px), calc(-50% - 102px));
        }

        .services-container-box .services-box.third {
            transform: translate(calc(-50% + 97px), calc(-50% + 15px));
        }

        .services-container-box .services-box.fourth {
            transform: translate(calc(-50% + 150px), calc(-50% + 150px));
        }

        .services-container-box .services-box.fifth {
            transform: translate(calc(-50% - 4px), calc(-50% + 150px));
        }

        .services-container-box .services-box.sixth {
            transform: translate(calc(-50% - 152px), calc(-50% + 150px));
        }

        .services-container-box .services-box.seventh {
            transform: translate(-45%, calc(-50% + 15px));
        }
    }

    @media (max-width: 1024px) {
        .services-section {
            padding: 80px 0;
        }

        .services-section-wrapper {
            padding: 40px 30px;
            gap: 40px;
        }

        .owl-carousel .owl-item {
            padding: 0 20px;
        }
    }

    @media (max-width: 991px) {
        .services-section {
            padding: 60px 0;
        }

        .services-section-wrapper {
            padding: 30px 20px;
            gap: 30px;
        }

        .section-subtitle {
            font-size: 24px;
            line-height: 32px;
        }

        .section-title {
            font-size: 28px;
            line-height: 36px;
        }

        .service-card {
            padding: 24px;
        }

        .service-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 16px;
        }

        .service-title {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 12px;
        }

        .service-description {
            font-size: 13px;
            line-height: 18px;
        }

        .owl-carousel .owl-item {
            padding: 0 10px;
        }
    }

    @media (max-width: 767px) {
        .services-container {
            padding-left: 0;
            padding-right: 0;
            padding-bottom: 15px;
        }

        .services-container-box {
            width: 100%;
            height: auto;
        }

        .services-container-box .service-inner-img {
            width: 100%;
        }

        .services-container-box .service-inner-img.pc {
            display: none;
        }

        .services-container-box .service-inner-img.tab {
            display: none;
        }

        .services-container-box .service-inner-img.mobile {
            display: block;
        }

        .services-container-box .services-box p {
            font-size: 15px;
            line-height: 18px;
        }

        .services-container-box .services-box {
            gap: 16px;
        }

        .services-container-box .services-box.first {
            transform: translate(-50%, calc(-50% - 162px));
        }

        .services-container-box .services-box.second {
            transform: translate(calc(-50% - 60px), calc(-50% - 32px));
        }

        .services-container-box .services-box.third {
            transform: translate(calc(-50% - 122px), calc(-50% + 108px));
        }

        .services-container-box .services-box.fourth {
            transform: translate(calc(-50% - 60px), calc(-50% + 252px));
        }

        .services-container-box .services-box.fifth {
            transform: translate(calc(-50% + 60px), calc(-50% + 252px));
        }

        .services-container-box .services-box.sixth {
            transform: translate(calc(-50% + 60px), calc(-50% + 108px));
        }

        .services-container-box .services-box.seventh {
            transform: translate(calc(-50% + 222px), calc(-50% - 32px));
        }
    }

    @media (max-width: 480px) {
        .services-section {
            padding: 40px 0;
        }

        .services-section-wrapper {
            padding: 20px 16px;
            gap: 24px;
        }

        .service-card {
            padding: 20px;
        }

        .service-icon {
            width: 40px;
            height: 40px;
        }

        .service-title {
            font-size: 16px;
            line-height: 22px;
        }
    }

    /* ============================================
    AWARDS SECTION RESPONSIVE
    ============================================ */
    @media (max-width: 1024px) {
        .awards-section {
            padding: 80px 0;
        }

        .awards-carousel .owl-item {
            padding: 0 20px;
        }

        .award-title {
            font-size: 22px;
            line-height: 28px;
        }

        .award-caption {
            font-size: 18px;
            line-height: 22px;
        }
    }

    @media (max-width: 991px) {
        .awards-section {
            padding: 60px 0;
        }

        .awards-section .section-header {
            margin-bottom: 40px;
            padding: 0 16px;
        }

        .awards-carousel {
            padding: 0;
        }

        .awards-carousel .owl-item {
            padding: 0 10px;
        }

        .award-item {
            width: 50vw;
        }

        .award-image {
            margin-bottom: 20px;
            outline: 4px solid #FFFFFF1F;
        }

        .award-title {
            font-size: 18px;
            line-height: 24px;
            min-height: 48px;
        }

        .award-caption {
            font-size: 16px;
            line-height: 20px;
        }
    }

    @media (max-width: 480px) {
        .awards-section {
            padding: 40px 0;
        }

        .awards-section .section-header {
            margin-bottom: 30px;
        }

        .award-image {
            margin-bottom: 16px;
        }

        .award-title {
            font-size: 16px;
            line-height: 22px;
            min-height: 44px;
        }

        .award-caption {
            font-size: 14px;
            line-height: 18px;
        }
    }

    /* ============================================
    VIDEO SHOWREEL SECTION RESPONSIVE
    ============================================ */
    @media (max-width: 1024px) {
        .section_home-hero_showreel {
            padding: 60px 20px;
        }

        .showreel_placeholder._2 {
            height: 60vh;
        }
    }

    @media (max-width: 991px) {
        .hero-button-box {
            padding: 20px 16px;
        }

        .section_home-hero_showreel {
            padding: 40px 16px;
        }

        .showreel_placeholder._2 {
            height: 50vh;
            border-radius: 12px;
        }

        .background-video iframe {
            border-radius: 12px;
        }
    }

    @media (max-width: 480px) {
        .showreel_placeholder._2 {
            height: 40vh;
        }
    }

    /* ============================================
    FOOTER SECTION RESPONSIVE
    ============================================ */
    @media (max-width: 1024px) {
        .footer-section {
            padding: 20px;
            min-height: auto;
        }

        .footer-container {
            border-radius: 16px;
        }

        .footer-featured {
            margin-bottom: 60px;
            padding: 16px;
        }

        .footer-featured-inner {
            padding: 30px;
        }

        .footer-featured-header .footer-featured-title {
            font-size: 32px;
            line-height: 40px;
        }

        .footer-featured-header .footer-featured-subtitle {
            font-size: 15px;
            line-height: 18px;
        }

        .footer-featured-compney-info {
            padding-right: 40px;
        }


    }

    @media (max-width: 991px) {
        .footer-section {
            padding: 16px;
        }

        .footer-container {
            border-radius: 12px;
        }

        .footer-featured {
            margin-bottom: 40px;
            padding: 12px;
        }

        .footer-featured-inner {
            padding: 20px;
        }

        .footer-featured-header {
            margin-bottom: 30px;
        }

        .footer-featured-header .footer-featured-title {
            font-size: 24px;
            line-height: 32px;
            margin-bottom: 12px;
        }

        .footer-featured-header .footer-featured-subtitle {
            font-size: 14px;
            line-height: 16px;
        }

        .contact-form .form-row {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .contact-form .form-group {
            margin-bottom: 12px;
        }

        .contact-form .form-control {
            padding: 12px 14px;
            font-size: 13px;
        }

        .contact-form .btn-tertiary {
            width: 100%;
            padding: 12px 20px;
        }

        .footer-featured-contact-info {
            padding: 20px;
            margin-top: 20px;
        }

        .footer-featured-contact-info img {
            height: 150px;
            margin-bottom: 20px;
        }

        .footer-featured-contact-info-title {
            font-size: 20px;
            line-height: 24px;
        }

        .footer-featured-compney-info {
            padding-right: 0;
            gap: 16px;
        }

        .footer-featured-compney-info img {
            max-width: 150px;
        }

        .footer-nav-links-list {
            gap: 6px;
        }

        .footer-contact-info {
            gap: 20px;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 20px;
            padding: 20px 0;
        }

        .footer-bottom-link ul {
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .footer-bottom-link ul li {
            padding: 0 12px;
        }

        .footer-bottom-link ul li:not(:last-child)::after {
            height: 12px;
        }

        .footer-bottom-info {
            flex-direction: column;
            gap: 16px;
            padding-top: 30px;
            padding-bottom: 20px;
        }

        .footer-bottom-info-bottom .footer-bottom-info-bottom-inner {
            flex-direction: column;
            gap: 12px;
            text-align: center;
        }

    }

    @media (max-width: 480px) {
        .footer-section {
            padding: 12px;
        }

        .footer-featured-inner {
            padding: 16px;
        }

        .footer-featured-header .footer-featured-title {
            font-size: 20px;
            line-height: 28px;
        }

        .footer-featured-header .footer-featured-subtitle {
            font-size: 13px;
            line-height: 16px;
        }

        .footer-featured-contact-info {
            padding: 16px;
        }

        .footer-featured-contact-info img {
            height: 120px;
        }

        .footer-featured-contact-info-title {
            font-size: 18px;
            line-height: 22px;
        }

        .footer-featured-compney-info img {
            max-width: 120px;
        }

        .footer-featured-compney-info-list {
            gap: 12px;
        }

        .footer-featured-compney-info-list li a {
            width: 36px;
            height: 36px;
            padding: 8px;
        }

        .footer-bottom-link ul li {
            padding: 0 8px;
            font-size: 12px;
        }

        .footer-bottom-link ul li a {
            font-size: 12px;
        }

        .footer-bottom-rights p {
            font-size: 12px;
            text-align: center;
        }

        .footer-bottom-info-bottom-inner-left p,
        .footer-bottom-info-bottom-inner-right p {
            font-size: 11px;
            line-height: 14px;
        }
    }

    /* ============================================
    CONTAINER AND GENERAL RESPONSIVE
    ============================================ */
    @media (max-width: 1024px) {
        .container {
            padding: 0 20px;
        }

        body {
            font-size: 14px;
        }

        h1 {
            font-size: 36px;
            line-height: 44px;
        }

        h2 {
            font-size: 28px;
            line-height: 36px;
        }

        h3 {
            font-size: 22px;
            line-height: 30px;
        }
    }

    @media (max-width: 991px) {
        .container {
            padding: 0 16px;
        }

        body {
            font-size: 13px;
        }

        h1 {
            font-size: 28px;
            line-height: 36px;
        }

        h2 {
            font-size: 24px;
            line-height: 32px;
        }

        h3 {
            font-size: 18px;
            line-height: 26px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 12px;
        }

        body {
            font-size: 12px;
        }

        h1 {
            font-size: 24px;
            line-height: 32px;
        }

        h2 {
            font-size: 20px;
            line-height: 28px;
        }

        h3 {
            font-size: 16px;
            line-height: 22px;
        }
    }

    /* ============================================
    BUTTON RESPONSIVE
    ============================================ */

    @media (max-width: 991px) {
        .hero-section {
            position: unset;
        }

        .btn {
            padding: 10px 20px;
            font-size: 14px;
        }

        .btn-primary,
        .btn-secondary,
        .btn-tertiary {
            padding: 12px 24px;
            font-size: 14px;
        }

        .hero-globe {
            height: 400px;
        }

        .w-background-video>video {
            object-fit: contain;
        }
    }

    @media (max-width: 767px) {
        .hero-section {
            position: relative;
        }

        .services-section-header {
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
        }
    }

    @media (max-width: 480px) {
        .btn {
            padding: 10px 16px;
            font-size: 13px;
        }

        .btn-primary,
        .btn-secondary,
        .btn-tertiary {
            padding: 10px 20px;
            font-size: 13px;
        }
    }

    /* ============================================
    PRINT STYLES
    ============================================ */
    @media print {
        .header-section {
            position: static;
            background: white;
            padding: 20px;
        }

        .mobile-menu-toggle,
        .mega-menu,
        .search-box {
            display: none;
        }

        .navbar-nav-custom {
            display: flex;
            position: static;
            background: transparent;
            border: none;
        }
    }