        :root {
            --primary: #4f8cff;
            --primary-dark: #2940a8;
            --light-blue: #85b6ff;
            --white: #e9e9f8;
            --off-white: #b8c1e2;
            --dark: #0a101d;
            --medium-dark: #232840;
            --medium-gray: #2a2e33;
            --light-gray: #8489a3;
            --nav-bg: #10162a;
            --nav-border: #394366;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            overflow-x: hidden;
            font-weight: 600;
            background: white;
            color: var(--white);
        }

        /* Improved Navbar Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 2rem;
            background-color: var(--nav-bg);
            border-bottom: 1px solid var(--nav-border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
            z-index: 1002;
        }

        .logo-img {
            width: 40px;
            height: 40px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }

        .logo-text span {
            display: block;
            font-size: 0.9rem;
            color: var(--off-white);
            font-weight: 600;
            letter-spacing: 1.5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--off-white);
            font-weight: 600;
            font-size: 16px;
            line-height: 22px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.5rem 0;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--medium-dark);
            width: 350px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
            border-radius: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: 100;
            padding: 0.5rem 0;
            border: 1px solid var(--nav-border);
        }

        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }

        .dropdown li {
            padding: 0.6rem 1.5rem;
        }

        .dropdown a {
            color: var(--white);
            font-weight: 600;
            font-size: 15px;
        }

        .dropdown a:hover {
            color: var(--primary);
        }

        .dropdown a::after {
            display: none;
        }

        .contact-number {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            background-color: var(--primary);
            color: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 2rem;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(79, 140, 255, 0.23);
            white-space: nowrap;
        }

        .contact-number:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(79, 140, 255, 0.3);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--off-white);
            background: none;
            border: none;
            padding: 0.5rem;
            transition: transform 0.3s;
            z-index: 1002;
        }

        .hamburger:hover {
            transform: scale(1.1);
            color: var(--primary);
        }

        /* Mobile Sidebar */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -320px;
            width: 320px;
            height: 100vh;
            background-color: var(--nav-bg);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
            transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: 1001;
            padding: 2rem 1.5rem;
            overflow-y: auto;
            border-left: 1px solid var(--nav-border);
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .close-btn {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--light-gray);
            background: none;
            border: none;
            transition: transform 0.3s;
        }

        .close-btn:hover {
            transform: rotate(90deg);
            color: var(--primary);
        }

        .mobile-nav-container {
            margin-top: 2rem;
        }

        .mobile-logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .mobile-logo-img {
            width: 36px;
            height: 36px;
        }

        .mobile-logo-text {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }

        .mobile-logo-text span {
            display: block;
            font-size: 0.8rem;
            color: var(--off-white);
            font-weight: 600;
            letter-spacing: 1.2px;
        }

        .mobile-nav-links {
            list-style: none;
        }

        .mobile-nav-links li {
            margin-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: var(--off-white);
            font-weight: 600;
            display: block;
            padding: 1rem 0;
            font-size: 16px;
            line-height: 22px;
            transition: color 0.3s;
        }

        .mobile-nav-links a:hover {
            color: var(--primary);
        }

        .mobile-dropdown-btn {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            cursor: pointer;
            padding: 1rem 0;
            font-weight: 600;
            color: var(--off-white);
            font-size: 16px;
            line-height: 22px;
            transition: color 0.3s;
        }

        .mobile-dropdown-btn:hover {
            color: var(--primary);
        }

        .mobile-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            padding-left: 1rem;
        }

        .mobile-dropdown.active {
            max-height: 500px;
        }

        .mobile-dropdown li {
            margin-bottom: 0;
            border-bottom: none;
        }

        .mobile-dropdown a {
            font-weight: 600;
            color: var(--light-gray);
            padding: 0.8rem 0;
            font-size: 15px;
        }

        .mobile-contact {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .mobile-contact-number {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            background-color: var(--primary);
            color: var(--white);
            padding: 0.9rem 1.5rem;
            border-radius: 2rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(79, 140, 255, 0.23);
        }

        .mobile-contact-number:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(79, 140, 255, 0.3);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 16, 29, 0.83);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
            backdrop-filter: blur(5px);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(45deg, #000000, transparent);
            position: relative;
            height: 100vh;
            min-height: 800px;
            max-height: 850px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .video-background.loaded {
            opacity: 1;
        }

        .video-loading {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0a101d;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(79, 140, 255, 0.3);
            border-radius: 50%;
            border-top-color: #4f8cff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgb(10 16 29 / 0%), rgba(10, 16, 29, 0.9));
            z-index: 0;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .stats-container {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            background: rgba(35, 40, 64, 0.90);
            backdrop-filter: blur(10px);
            padding: 1.5rem 2rem;
            border-radius: 12px;
            border: 1px solid rgba(73, 102, 191, 0.18);
            transition: all 0.4s ease;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeUp 0.8s forwards 0.3s;
        }

        .stat-item:nth-child(2) {
            animation-delay: 0.5s;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #4f8cff;
            margin-bottom: 0.5rem;
            background: linear-gradient(to right, #4f8cff, #2940a8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            opacity: 0.9;
            letter-spacing: 0.5px;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            max-width: 900px;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeUp 0.8s forwards 0.7s;
        }

        .hero-title span {
            color: #4f8cff;
            position: relative;
            display: inline-block;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: #4f8cff;
            z-index: -1;
            opacity: 0.3;
            border-radius: 4px;
        }

        .hero-subtitle {
            color: #ffffff;
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            font-weight: 400;
            margin-bottom: 3rem;
            max-width: 700px;
            line-height: 1.6;
            opacity: 0.9;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeUp 0.8s forwards 0.9s;
        }

        .cta-container2 {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeUp 0.8s forwards 1.1s;
        }

        .cta-button2 {
            background-color: #4f8cff;
            color: #e9e9f8;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.4s;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            box-shadow: 0 5px 15px rgba(79, 140, 255, 0.4);
            border: 2px solid transparent;
            white-space: nowrap;
        }

        .cta-button2:hover {
            background-color: transparent;
            border-color: #4f8cff;
            color: #4f8cff;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(79, 140, 255, 0.4);
        }

        .secondary-button {
            background-color: transparent;
            border: 2px solid rgba(233, 233, 248, 0.2);
            color: #e9e9f8;
        }

        .secondary-button:hover {
            background-color: rgba(79, 140, 255, 0.09);
            border-color: #4f8cff;
        }

        .free-badge {
            background-color: rgba(46, 213, 115, 0.15);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.3s;
            color: #2ed573;
        }

        .free-badge:hover {
            background-color: #2ed573;
            color: #e9e9f8;
            transform: scale(1.05);
        }

        .trust-container {
            margin-top: 3rem;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeUp 0.8s forwards 1.3s;
        }

        .rating-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .stars {
            color: #ffc107;
            font-size: 1.3rem;
            letter-spacing: 3px;
        }

        .rating-text {
            color: #8489a3;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .partners-logos {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .partner-logo {
            height: 40px;
            opacity: 0.8;
            transition: all 0.3s;
            filter: brightness(0.7) invert(0.8) sepia(1) saturate(2) hue-rotate(180deg);
        }

        .partner-logo:hover {
            opacity: 1;
            transform: scale(1.05);
            filter: brightness(1) invert(0.9) sepia(1) saturate(3) hue-rotate(180deg);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #e9e9f8;
            opacity: 0.7;
            z-index: 2;
            animation: bounce 2s infinite;
            cursor: pointer;
        }

        .scroll-text {
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .scroll-arrow {
            width: 30px;
            height: 30px;
            border-right: 3px solid #4f8cff;
            border-bottom: 3px solid #4f8cff;
            transform: rotate(45deg);
        }

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

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0) translateX(-50%);
            }

            40% {
                transform: translateY(-20px) translateX(-50%);
            }

            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }

        @keyframes pulse {
            0% {
                opacity: 0.5;
                transform: rotate(45deg) scale(1);
            }

            50% {
                opacity: 1;
                transform: rotate(45deg) scale(1.2);
            }

            100% {
                opacity: 0.5;
                transform: rotate(45deg) scale(1);
            }
        }

        /* --- Broker Section --- */
        .broker-section {
            background-color: #11192e;
            padding: 4rem 0;
            text-align: center;
            overflow: hidden;
            border-top: 1px solid rgba(79, 140, 255, 0.10);
            border-bottom: 1px solid rgba(79, 140, 255, 0.10);
        }

        .broker-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #8fa2c7;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            text-transform: uppercase;
            opacity: 0.85;
        }

        .broker-slider {
            overflow: hidden;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .broker-track {
            display: flex;
            animation: scroll 45s linear infinite;
            gap: 2rem;
            align-items: center;
            justify-content: center;
            will-change: transform;
            padding: 0 1rem;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .broker-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 2rem;
            position: relative;
            flex-shrink: 0;
        }

        .broker-item:not(:last-child)::after {
            content: "";
            display: block;
            position: absolute;
            right: 0;
            width: 1px;
            height: 50%;
            background: rgba(79, 140, 255, 0.12);
        }

        .broker-logo {
            height: 36px;
            max-width: 140px;
            object-fit: contain;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .broker-logo:hover {
            opacity: 1;
            transform: scale(1.08);
            filter: brightness(1) invert(1) sepia(1) saturate(3) hue-rotate(180deg);
        }

        .logo-tql {
            height: 60px;
        }

        .logo-rxo {
            height: 60px;
        }

        .logo-coyote {
            height: 60px;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .nav-links a {
                font-size: 14px;
            }

            .contact-number {
                font-size: 12px;
            }

            .nav-links {
                gap: 0.8rem;
            }
        }

        @media (max-width: 992px) {

            .nav-links,
            .contact-number {
                display: none;
            }

            .navbar {
                justify-content: space-between;
                padding: 1rem 1.5rem;
            }

            .hamburger {
                display: block;
            }

            .hero-title {
                font-size: 3rem;
            }

            .stats-container {
                justify-content: center;
            }

            .stat-item {
                flex: 1 1 200px;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: 700px;
            }

            .hero-content {
                text-align: center;
                padding: 1rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .stats-container {
                flex-direction: column;
                gap: 1rem;
            }

            .stat-item {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }

            .cta-container {
                justify-content: center;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .broker-track {
                gap: 1rem;
            }

            .broker-item {
                padding: 0 1rem;
            }

            .broker-logo {
                height: 30px;
            }

            .logo-tql,
            .logo-rxo,
            .logo-coyote {
                height: 40px;
            }
        }

        @media (max-width: 576px) {
            .navbar {
                padding: 0.8rem 1rem;
            }

            .logo-text {
                font-size: 1.2rem;
            }

            .logo-text span {
                font-size: 0.7rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

            .cta-container {
                flex-direction: column;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
            }

            .rating-container {
                flex-direction: column;
                gap: 0.5rem;
            }

            .broker-title {
                font-size: 14px;
            }

            .mobile-sidebar {
                width: 280px;
            }
        }

        @media (min-width: 993px) {
            .mobile-sidebar {
                display: none;
            }
        }

        /* Performance optimizations */
        .will-change {
            will-change: transform, opacity;
        }

        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        .services-section {
            padding: 100px 40px;
            background: linear-gradient(135deg, #10162a 0%, #1a2342 100%);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .services-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .services-header {
            margin-bottom: 80px;
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
        }

        .services-section.visible .services-header {
            opacity: 1;
            transform: translateY(0);
        }

        .services-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 24px;
            color: #ffffff;
            position: relative;
            display: inline-block;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .services-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 180px;
            height: 4px;
            background: linear-gradient(90deg, #4f8cff, #2940a8);
            border-radius: 2px;
        }

        .services-description {
            font-size: 15px;
            line-height: 1.8;
            color: #b8c1e2;
            max-width: 700px;
            margin: 0 auto 40px;
            font-weight: 400;
        }

        .services-stats {
            background: linear-gradient(135deg, rgba(35, 40, 64, 0.95) 0%, rgba(25, 30, 54, 0.95) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 20px;
            padding: 50px;
            max-width: 900px;
            margin: 0 auto 80px;
            border: 1px solid rgba(79, 140, 255, 0.15);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px) scale(0.98);
            transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
        }

        .services-section.visible .services-stats {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .stat-text {
            font-size: 15px;
            line-height: 1.6;
            color: #d6e0ff;
            text-align: center;
            position: relative;
            font-weight: 500;
            font-style: italic;
        }

        .stat-text::before,
        .stat-text::after {
            content: '"';
            font-size: 60px;
            color: #4f8cff;
            opacity: 0.3;
            position: absolute;
            font-family: serif;
            line-height: 1;
        }

        .stat-text::before {
            top: -20px;
            left: -30px;
        }

        .stat-text::after {
            bottom: -40px;
            right: -30px;
        }

        .stat-highlight {
            color: #4f8cff;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .stat-highlight::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 6px;
            background: rgba(79, 140, 255, 0.3);
            border-radius: 3px;
            z-index: -1;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-top: 40px;
        }

        .service-card {
            background: linear-gradient(145deg, rgba(35, 40, 64, 0.15) 0%, rgba(20, 25, 45, 0.25) 100%);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(79, 140, 255, 0.1);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        .services-section.animated .service-card {
            animation: cardAppear 0.8s forwards;
        }

        @keyframes cardAppear {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .service-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .service-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .service-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .service-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .service-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .service-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .service-card:nth-child(7) {
            animation-delay: 0.7s;
        }

        .service-card:nth-child(8) {
            animation-delay: 0.8s;
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 40px rgba(79, 140, 255, 0.2);
            border-color: rgba(79, 140, 255, 0.4);
        }

        .service-image-container {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .service-card:hover .service-image {
            transform: scale(1.12);
        }

        .service-image-container::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(to top, rgba(16, 22, 42, 0.95), transparent);
        }

        .service-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4f8cff 0%, #2940a8 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 2;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 20px rgba(79, 140, 255, 0.4);
        }

        .service-content {
            padding: 30px;
            position: relative;
        }

        .service-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
            line-height: 1.4;
        }

        .service-category {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: #4f8cff;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px;
            background-color: rgba(79, 140, 255, 0.15);
            border-radius: 20px;
            margin-bottom: 18px;
        }

        .service-description {
            font-size: 15px;
            line-height: 1.7;
            color: #b8c1e2;
            margin-bottom: 25px;
        }

        .service-features {
            margin-bottom: 20px;
        }

        .service-feature {
            display: flex;
            align-items: center;
            font-size: 13px;
            color: #9ca8d4;
            margin-bottom: 8px;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-feature {
            transform: translateX(5px);
        }

        .service-feature i {
            color: #4f8cff;
            margin-right: 10px;
            font-size: 12px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            font-size: 15px;
            font-weight: 600;
            color: #4f8cff;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 10px 0;
            position: relative;
        }

        .service-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #4f8cff;
            transition: width 0.3s ease;
        }

        .service-link:hover::before {
            width: 100%;
        }

        .service-link i {
            margin-left: 10px;
            transition: transform 0.3s ease;
            font-size: 13px;
        }

        .service-link:hover {
            color: #ffffff;
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        .all-services-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 80px;
            font-size: 17px;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            padding: 18px 40px;
            border-radius: 50px;
            background: linear-gradient(90deg, #4f8cff 0%, #2940a8 100%);
            box-shadow: 0 5px 20px rgba(79, 140, 255, 0.3);
            overflow: hidden;
            opacity: 0;
            transition: opacity 0.8s ease 1s, transform 0.3s ease, box-shadow 0.3s ease;
            z-index: 1;
        }

        .services-section.visible .all-services-link {
            opacity: 1;
        }

        .all-services-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .all-services-link:hover::before {
            left: 100%;
        }

        .all-services-link:hover {
            box-shadow: 0 8px 25px rgba(79, 140, 255, 0.4);
            transform: translateX(-50%) translateY(-3px);
        }

        .all-services-link i {
            margin-left: 12px;
            transition: transform 0.3s;
        }

        .all-services-link:hover i {
            transform: translateX(6px);
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: -300px;
            right: -300px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(79, 140, 255, 0.15) 0%, transparent 70%);
            z-index: 0;
        }

        .services-section::after {
            content: '';
            position: absolute;
            bottom: -400px;
            left: -400px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(79, 140, 255, 0.08) 0%, transparent 70%);
            z-index: 0;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(79, 140, 255, 0.1) 0%, transparent 70%);
            animation: float 15s infinite ease-in-out;
            z-index: 0;
        }

        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 150px;
            height: 150px;
            bottom: 15%;
            right: 10%;
            animation-delay: -2s;
        }

        .floating-element:nth-child(3) {
            width: 70px;
            height: 70px;
            top: 60%;
            left: 8%;
            animation-delay: -5s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            33% {
                transform: translateY(-20px) rotate(5deg);
            }

            66% {
                transform: translateY(20px) rotate(-5deg);
            }
        }

        @media (max-width: 1024px) {
            .services-section {
                padding: 80px 30px;
            }

            .services-title {
                font-size: 42px;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 70px 20px;
            }

            .services-title {
                font-size: 36px;
            }

            .services-description {
                font-size: 16px;
            }

            .stat-text {
                font-size: 18px;
            }

            .services-stats {
                padding: 30px;
            }

            .service-image-container {
                height: 200px;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 600px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .floating-element {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .services-section {
                padding: 60px 15px;
            }

            .services-title {
                font-size: 32px;
            }

            .services-stats {
                padding: 24px;
            }

            .all-services-link {
                padding: 16px 32px;
                font-size: 16px;
                width: 100%;
                max-width: 280px;
            }

            .service-content {
                padding: 20px;
            }
        }

        .image-dark {
            position: relative;
        }

        .image-dark::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(10, 16, 29, 0.3) 0%, rgba(10, 16, 29, 0.7) 100%);
            pointer-events: none;
        }

        .truck-section {
            background-color: #10162a;
            padding: 3rem 0;
        }

        .main-wrapper {
            display: flex;
            flex-direction: column;
            min-height: 60vh;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            background: transparent;
        }

        .truck-content-flex {
            display: flex;
            flex: 1;
            gap: 3rem;
            align-items: center;
        }

        .truck-info-col {
            flex: 1;
            max-width: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .truck-info-col h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .truck-info-col h1.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .truck-info-col h1 span {
            color: #4f8cff;
            display: inline-block;
        }

        .truck-info-col p {
            font-size: 15px;
            color: #b8c1e2;
            margin: 2rem 0;
            font-weight: 400;
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
        }

        .truck-info-col p.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .setup-btn {
            align-self: flex-start;
            background: #4f8cff;
            color: #e9e9f8;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 1rem 2.5rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            box-shadow: 0 4px 15px rgba(79, 140, 255, 0.23);
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 1s ease 0.4s, transform 1s ease 0.4s, background 0.2s;
        }

        .setup-btn.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .setup-btn:hover {
            background: #2940a8;
            transform: translateY(-2px);
        }

        .truck-types-grid {
            flex: 1.5;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
        }

        .truck-types-grid.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .truck-type-card {
            text-decoration: none;
            height: 120px;
            background-size: cover;
            background-position: center;
            position: relative;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            cursor: pointer;
            overflow: hidden;
            transition: box-shadow 0.3s, transform 0.3s;
            z-index: 0;
            object-fit: contain;
            background-color: #222a40;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
        }

        .truck-type-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .truck-type-card::before {
            text-decoration: none;
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 16, 29, 0.9) 0%, rgba(10, 16, 29, 0.3) 100%);
            transition: background 0.3s;
            z-index: 1;
        }

        .truck-type-card:hover::before {
            background: linear-gradient(to top, rgba(79, 140, 255, 0.7) 0%, rgba(79, 140, 255, 0.3) 100%);
            text-decoration: none;
        }

        .truck-type-card span {
            text-decoration: none;
            position: relative;
            z-index: 2;
            color: #e9e9f8;
            font-size: 15px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(79, 140, 255, 0.2);
            padding: 1.5rem;
            pointer-events: none;
        }

        .truck-type-card:hover {
            text-decoration: none;
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        }

        /* Animation delays for grid items */
        .truck-type-card:nth-child(1) {
            transition-delay: 0.1s;
        }

        .truck-type-card:nth-child(2) {
            transition-delay: 0.2s;
        }

        .truck-type-card:nth-child(3) {
            transition-delay: 0.3s;
        }

        .truck-type-card:nth-child(4) {
            transition-delay: 0.4s;
        }

        .truck-type-card:nth-child(5) {
            transition-delay: 0.5s;
        }

        .truck-type-card:nth-child(6) {
            transition-delay: 0.6s;
        }

        .truck-type-card:nth-child(7) {
            transition-delay: 0.7s;
        }

        .truck-type-card:nth-child(8) {
            transition-delay: 0.8s;
        }

        @media (max-width: 1024px) {
            .truck-content-flex {
                flex-direction: column;
                gap: 2rem;
            }

            .truck-info-col {
                max-width: 100%;
                text-align: center;
                align-items: center;
            }

            .setup-btn {
                align-self: center;
            }

            .truck-types-grid {
                width: 100%;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }

            /* Reset animations for mobile */
            .truck-info-col h1,
            .truck-info-col p,
            .setup-btn,
            .truck-types-grid {
                opacity: 1;
                transform: none;
            }
        }

        @media (max-width: 768px) {
            .truck-types-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            }

            .truck-type-card {
                height: 140px;
            }
        }

        @media (max-width: 600px) {
            .main-wrapper {
                padding: 1.5rem;
            }

            .truck-types-grid {
                grid-template-columns: 1fr;
            }

            .truck-type-card {
                height: 120px;
            }

            .truck-section {
                padding: 2rem 0;
            }
        }

        .about-section {
            background: #f7faff;
            padding: 100px 0;
            overflow: hidden;
            position: relative;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        .about-row {
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .about-left {
            flex: 1;
            max-width: 600px;
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .about-left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .about-title {
            font-size: 54px;
            font-weight: 900;
            color: #16213e;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .about-title span {
            color: #4f8cff;
            display: inline-block;
        }

        .about-subtitle {
            color: #6b789a;
            font-size: 18px;
            margin-bottom: 28px;
            font-weight: 500;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
        }

        .about-subtitle.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .about-desc {
            font-size: 15px;
            color: #23335a;
            margin-bottom: 18px;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
        }

        .about-desc.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .about-highlight {
            color: #2940a8;
            font-weight: 700;
        }

        .about-highlight-blue {
            color: #1976d2;
            font-weight: 700;
        }

        .about-btn {
            display: inline-flex;
            align-items: center;
            margin-top: 8px;
            background: linear-gradient(135deg, #4f8cff 0%, #2940a8 100%);
            color: #ffffff;
            font-size: 18px;
            font-weight: 700;
            padding: 18px 36px;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(79, 140, 255, 0.23);
            border: none;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s, all 0.3s ease;
        }

        .about-btn.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .about-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(79, 140, 255, 0.22);
            background: linear-gradient(135deg, #2940a8 0%, #4f8cff 100%);
        }

        .about-btn-arrow {
            display: inline-block;
            margin-left: 12px;
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .about-btn:hover .about-btn-arrow {
            transform: translateX(4px);
        }

        .about-right {
            flex: 1;
            max-width: 560px;
            min-width: 320px;
            position: relative;
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
        }

        .about-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .about-video-thumb {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            background: #e6edfa;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(79, 140, 255, 0.05);
            transform: translateY(0);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .about-video-thumb:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(79, 140, 255, 0.15);
        }

        .about-video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
            filter: brightness(0.97) contrast(1.09);
        }

        .about-video-thumb:hover img {
            transform: scale(1.05);
        }

        .about-play-btn {
            position: absolute;
            left: 24px;
            bottom: 24px;
            width: 56px;
            height: 56px;
            background: #4f8cff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(79, 140, 255, 0.08);
            z-index: 3;
        }

        .about-play-btn:hover {
            background: #2940a8;
            transform: scale(1.1);
        }

        .about-play-btn svg {
            width: 24px;
            height: 24px;
            fill: #fff;
        }

        .about-stats-row {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            margin-top: 80px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease 0.9s, transform 1s ease 0.9s;
        }

        .about-stats-row.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .about-stat-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 36px 48px;
            min-width: 220px;
            text-align: left;
            margin-bottom: 16px;
            flex: 1;
            transition: all 0.3s ease;
            border: 1px solid #e0eafc;
            box-shadow: 0 2px 8px rgba(79, 140, 255, 0.05);
            opacity: 0;
            transform: translateY(20px);
        }

        .about-stat-box.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .about-stat-box:nth-child(1) {
            transition-delay: 0.1s;
        }

        .about-stat-box:nth-child(2) {
            transition-delay: 0.2s;
        }

        .about-stat-box:nth-child(3) {
            transition-delay: 0.3s;
        }

        .about-stat-box:nth-child(4) {
            transition-delay: 0.4s;
        }

        .about-stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(79, 140, 255, 0.14);
            border-color: #4f8cff;
        }

        .about-stat-label {
            color: #6b789a;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .about-stat-value {
            font-size: 56px;
            font-weight: 900;
            color: #23335a;
            line-height: 1;
        }

        .about-stat-red,
        .about-stat-value-red {
            color: #4f8cff;
        }

        /* Background decoration elements */
        .about-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(79, 140, 255, 0.1) 0%, rgba(41, 64, 168, 0.05) 100%);
            z-index: 1;
        }

        .about-bg-circle-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
        }

        .about-bg-circle-2 {
            width: 200px;
            height: 200px;
            bottom: 50px;
            left: -100px;
        }

        /* Animation for counter */
        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

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

        .count.animated {
            animation: countUp 0.5s ease-out forwards;
        }

        @media (max-width: 1200px) {
            .about-row {
                gap: 40px;
            }

            .about-stat-box {
                padding: 28px 36px;
            }
        }

        @media (max-width: 1024px) {
            .about-row {
                flex-direction: column;
                gap: 40px;
                align-items: stretch;
            }

            .about-right {
                max-width: 100%;
            }

            .about-stats-row {
                margin-top: 60px;
            }

            /* Reset animations for tablet/mobile */
            .about-left,
            .about-subtitle,
            .about-desc,
            .about-btn,
            .about-right,
            .about-stats-row,
            .about-stat-box {
                opacity: 1;
                transform: none;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 80px 0;
            }

            .about-title {
                font-size: 42px;
            }

            .about-desc {
                font-size: 16px;
            }

            .about-btn {
                font-size: 16px;
                padding: 16px 32px;
            }

            .about-stats-row {
                gap: 16px;
                margin-top: 50px;
            }

            .about-stat-box {
                padding: 24px;
                min-width: calc(50% - 8px);
            }

            .about-stat-value {
                font-size: 48px;
            }
        }

        @media (max-width: 480px) {
            .about-container {
                padding: 0 16px;
            }

            .about-title {
                font-size: 36px;
            }

            .about-subtitle {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .about-stat-box {
                min-width: 100%;
            }

            .about-stat-value {
                font-size: 42px;
            }

            .about-play-btn {
                width: 48px;
                height: 48px;
                left: 16px;
                bottom: 16px;
            }

            .about-btn {
                width: 100%;
                justify-content: center;
            }
        }

        .partnership-section {
            position: relative;
            min-height: 320px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('/assets/images/Compressed/cta_4x-scaled_11zon.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            overflow: hidden;
        }

        .partnership-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(15, 31, 61, 0.85) 0%, rgba(44, 68, 124, 0.92) 100%);
            z-index: 1;
        }

        .partnership-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 950px;
            margin: 0 auto;
            text-align: center;
            padding: 80px 16px 90px 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .partnership-title {
            font-size: 3.2rem;
            font-weight: 800;
            color: #e9e9f8;
            margin-bottom: 18px;
            letter-spacing: -1px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .partnership-title.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .partnership-desc {
            color: #b8c1e2;
            font-size: 1.2rem;
            margin-bottom: 32px;
            font-weight: 600;
            letter-spacing: .02em;
            max-width: 600px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
        }

        .partnership-desc.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .partnership-btn {
            display: inline-block;
            background: linear-gradient(90deg, #4f8cff 0%, #2940a8 100%);
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 1.1rem 2.7rem;
            border-radius: 6px;
            text-decoration: none;
            box-shadow: 0 3px 16px 0 rgba(79, 140, 255, 0.22);
            transition: background 0.25s, box-shadow 0.18s, transform 0.18s;
            border: none;
            outline: none;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease 0.6s, transform 1s ease 0.6s, background 0.25s, box-shadow 0.18s;
        }

        .partnership-btn.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .partnership-btn:hover,
        .partnership-btn:focus {
            background: linear-gradient(90deg, #2940a8 0%, #4f8cff 100%);
            color: #fff;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 7px 24px 0 rgba(79, 140, 255, 0.28);
        }

        /* Decorative elements */
        .floating-shape {
            position: absolute;
            z-index: 1;
            opacity: 0.1;
            border-radius: 50%;
            background: linear-gradient(135deg, #4f8cff, #2940a8);
        }

        .shape-1 {
            width: 150px;
            height: 150px;
            top: 20%;
            left: 10%;
            animation: float 15s ease-in-out infinite;
        }

        .shape-2 {
            width: 100px;
            height: 100px;
            bottom: 15%;
            right: 12%;
            animation: float 12s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 80px;
            height: 80px;
            top: 60%;
            left: 15%;
            animation: float 10s ease-in-out infinite 2s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(10deg);
            }

            100% {
                transform: translateY(0) rotate(0deg);
            }
        }

        /* Responsive */
        @media (max-width: 900px) {
            .partnership-title {
                font-size: 2.5rem;
            }

            .partnership-content {
                padding: 60px 20px 70px 20px;
            }

            .partnership-desc {
                font-size: 1.1rem;
                padding: 0 10px;
            }

            .shape-1,
            .shape-2,
            .shape-3 {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .partnership-section {
                min-height: 380px;
                background-attachment: scroll;
            }

            .partnership-title {
                font-size: 2.2rem;
            }

            .partnership-desc {
                font-size: 1rem;
                margin-bottom: 28px;
            }

            .partnership-btn {
                font-size: 1rem;
                padding: 1rem 2.2rem;
            }
        }

        @media (max-width: 600px) {
            .partnership-section {
                min-height: 340px;
            }

            .partnership-title {
                font-size: 1.9rem;
            }

            .partnership-content {
                padding: 50px 16px 60px 16px;
            }

            .partnership-btn {
                font-size: 0.95rem;
                padding: 0.9rem 1.8rem;
            }

            .partnership-desc {
                margin-bottom: 24px;
                line-height: 1.5;
            }
        }

        @media (max-width: 480px) {
            .partnership-section {
                min-height: 300px;
            }

            .partnership-title {
                font-size: 1.7rem;
                margin-bottom: 14px;
            }

            .partnership-desc {
                font-size: 0.95rem;
                margin-bottom: 22px;
            }

            .partnership-content {
                padding: 40px 12px 50px 12px;
            }

            .partnership-btn {
                padding: 0.85rem 1.6rem;
                font-size: 0.9rem;
            }
        }

        .dispatchers-section.blue-theme {
            background: #f7faff;
            padding: 80px 0 100px 0;
            position: relative;
        }

        .dispatchers-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .dispatchers-header {
            text-align: start;
            margin-bottom: 48px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .dispatchers-header.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .dispatchers-header h2 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #16213e;
            line-height: 1.1;
            margin-bottom: 0;
            letter-spacing: -0.5px;
        }

        .dispatchers-header .blue-accent {
            color: #4f8cff;
            font-weight: 900;
            display: inline-block;
            position: relative;
        }

        .dispatchers-header .blue-accent::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(79, 140, 255, 0.2);
            z-index: -1;
            border-radius: 2px;
        }

        .dispatchers-content-row {
            display: flex;
            gap: 80px;
            align-items: flex-start;
            justify-content: center;
            margin-top: 30px;
        }

        .dispatchers-features {
            flex: 1;
            min-width: 340px;
            max-width: 560px;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
        }

        .dispatchers-features.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .feature-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: #fff;
            border: 1.5px solid #e0eafc;
            border-bottom: none;
            border-right: none;
            padding: 28px 24px;
            min-height: 110px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:nth-child(2n) {
            border-right: 1.5px solid #e0eafc;
        }

        .feature-card:nth-child(3),
        .feature-card:nth-child(4) {
            border-bottom: 1.5px solid #e0eafc;
        }

        .feature-card.wide {
            grid-column: 1/3;
            border-bottom: 1.5px solid #e0eafc;
        }

        .feature-card:last-child {
            border-bottom: 1.5px solid #e0eafc;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(79, 140, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .feature-card:hover {
            border-color: #4f8cff;
            box-shadow: 0 5px 25px rgba(79, 140, 255, 0.15);
            background: #edf4ff;
            transform: translateY(-3px);
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-dot {
            width: 14px;
            height: 14px;
            background: #4f8cff;
            border-radius: 50%;
            margin-top: 7px;
            flex-shrink: 0;
            box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-dot {
            transform: scale(1.2);
        }

        .feature-content {
            flex: 1;
        }

        .feature-title {
            color: #16213e;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }

        .feature-desc {
            font-size: 14px;
            color: #23335a;
            font-weight: 500;
            line-height: 1.5;
            letter-spacing: 0.01em;
        }

        .dispatchers-info {
            flex: 1;
            min-width: 340px;
            max-width: 680px;
            color: #23335a;
            font-size: 18px;
            font-weight: 500;
            line-height: 1.7;
            letter-spacing: 0.01em;
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
        }

        .dispatchers-info.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .dispatchers-info p {
            margin-bottom: 24px;
            position: relative;
            padding-left: 20px;
        }

        .dispatchers-info p::before {
            content: '•';
            color: #4f8cff;
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0;
            font-size: 20px;
        }

        .dispatchers-info b {
            color: #2940a8;
            font-weight: 700;
        }

        /* Decorative elements */
        .bg-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(79, 140, 255, 0.1) 0%, rgba(41, 64, 168, 0.05) 100%);
            z-index: 0;
        }

        .bg-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            right: 5%;
        }

        .bg-2 {
            width: 150px;
            height: 150px;
            bottom: 15%;
            left: 5%;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .dispatchers-header h2 {
                font-size: 2.8rem;
            }

            .dispatchers-content-row {
                gap: 60px;
            }

            .feature-card {
                padding: 24px 20px;
            }
        }

        @media (max-width: 1024px) {
            .dispatchers-header h2 {
                font-size: 2.5rem;
            }

            .dispatchers-content-row {
                gap: 40px;
            }

            .feature-title {
                font-size: 1.1rem;
            }

            .feature-desc {
                font-size: 13px;
            }

            .dispatchers-info {
                font-size: 16px;
            }
        }

        @media (max-width: 900px) {
            .dispatchers-content-row {
                flex-direction: column;
                align-items: stretch;
                gap: 50px;
            }

            .dispatchers-features,
            .dispatchers-info {
                max-width: 100%;
                min-width: 0;
            }

            .dispatchers-header h2 {
                font-size: 2.2rem;
            }

            /* Reset animations for mobile */
            .dispatchers-header,
            .dispatchers-features,
            .dispatchers-info {
                opacity: 1;
                transform: none;
            }
        }

        @media (max-width: 768px) {
            .dispatchers-section.blue-theme {
                padding: 60px 0 80px 0;
            }

            .dispatchers-header {
                margin-bottom: 36px;
            }

            .dispatchers-header h2 {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .feature-card.wide {
                grid-column: 1;
            }

            .feature-card {
                padding: 22px 20px;
                min-height: auto;
            }

            .dispatchers-info p {
                margin-bottom: 20px;
            }

            .bg-1,
            .bg-2 {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .dispatchers-header h2 {
                font-size: 1.8rem;
                line-height: 1.2;
            }

            .dispatchers-info {
                font-size: 15px;
                line-height: 1.6;
            }

            .feature-title {
                font-size: 1.1rem;
            }

            .feature-card {
                padding: 20px 18px;
                flex-direction: column;
                gap: 12px;
            }

            .feature-dot {
                margin-top: 0;
            }
        }

        @media (max-width: 480px) {
            .dispatchers-section.blue-theme {
                padding: 50px 0 60px 0;
            }

            .dispatchers-container {
                padding: 0 16px;
            }

            .dispatchers-header h2 {
                font-size: 1.6rem;
            }

            .dispatchers-header .blue-accent::after {
                height: 6px;
                bottom: 3px;
            }

            .feature-card {
                padding: 18px 16px;
            }

            .dispatchers-info p {
                padding-left: 16px;
            }

            .dispatchers-info p::before {
                font-size: 18px;
            }
        }

        ::-webkit-scrollbar {
            width: 12px;
            background: #181e2e;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #4f8cff 0%, #2940a8 100%);
            border-radius: 8px;
            border: 2.5px solid #181e2e;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #2940a8 0%, #4f8cff 100%);
        }

        ::-webkit-scrollbar-track {
            background: #101528;
            border-radius: 8px;
        }

        ::-webkit-scrollbar-corner {
            background: #0b1023;
        }

        .advantages {
            background: linear-gradient(135deg, #f7faff 0%, #e9f3ff 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .advantages::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(79, 140, 255, 0.05);
            z-index: 0;
        }

        .advantages::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(79, 140, 255, 0.03);
            z-index: 0;
        }

        .advantages__container {
            max-width: 1650px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            gap: 56px;
            align-items: flex-start;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .advantages__features {
            width: 58%;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }

        .advantages__feature {
            background: rgba(255, 255, 255, 0.9);
            border: 1.5px solid #e0eafc;
            border-radius: 16px;
            padding: 32px 20px 20px 24px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            opacity: 0;
            transform: translateX(-30px);
        }

        .advantages__feature:nth-child(even) {
            transform: translateX(30px);
        }

        .advantages__feature.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .advantages__feature:hover {
            border-color: #4f8cff;
            box-shadow: 0 8px 30px rgba(79, 140, 255, 0.15);
            background: #ffffff;
            transform: translateY(-5px) scale(1.02);
        }

        .advantages__feature-icon {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            margin-top: 2px;
            background: rgba(79, 140, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .advantages__feature:hover .advantages__feature-icon {
            background: rgba(79, 140, 255, 0.2);
            transform: scale(1.1);
        }

        .advantages__feature-icon img {
            width: 24px;
            height: 24px;
            object-fit: contain;
            filter: invert(39%) sepia(88%) saturate(1703%) hue-rotate(184deg) brightness(96%) contrast(94%);
        }

        .advantages__feature-content {
            flex: 1;
        }

        .advantages__feature-title {
            color: #16213e;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .advantages__feature:hover .advantages__feature-title {
            color: #4f8cff;
        }

        .advantages__feature-desc {
            color: #4a5673;
            font-size: 0.95rem;
            font-weight: 500;
            line-height: 1.6;
        }

        .advantages__info {
            width: 39%;
            min-width: 320px;
            max-width: 600px;
            color: #1f2536;
            font-size: 1.14rem;
            font-weight: 600;
            line-height: 1.6;
            padding-left: 24px;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .advantages__info.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .advantages__title {
            font-size: 2.8rem;
            font-weight: 800;
            color: #16213e;
            line-height: 1.2;
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 16px;
        }

        .advantages__title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: #4f8cff;
            border-radius: 2px;
        }

        .advantages__title--accent {
            color: #4f8cff;
            font-weight: 900;
            position: relative;
            display: inline-block;
        }

        .advantages__title--accent::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 6px;
            background: rgba(79, 140, 255, 0.2);
            z-index: -1;
        }

        .advantages__subtitle {
            color: #6b789a;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 32px;
            position: relative;
            padding-left: 20px;
        }

        .advantages__subtitle::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 2px;
            background: #4f8cff;
        }

        .advantages__brand {
            color: #16213e;
            font-weight: 700;
        }

        .advantages__brand--accent {
            color: #4f8cff;
        }

        .advantages__text {
            margin-bottom: 24px;
            color: #23335a;
            padding: 16px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 12px;
            border-left: 4px solid #4f8cff;
            transition: all 0.3s ease;
        }

        .advantages__text:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateX(5px);
        }

        /* Animation for elements when they come into view */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .advantages__container {
                gap: 40px;
            }

            .advantages__title {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 1024px) {
            .advantages__container {
                flex-direction: column;
                gap: 48px;
                padding: 0 16px;
            }

            .advantages__features,
            .advantages__info {
                width: 100%;
                max-width: 100%;
                min-width: 0;
            }

            .advantages__info {
                padding-left: 0;
                text-align: center;
            }

            .advantages__title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .advantages__feature {
                padding: 28px 20px;
            }

            .advantages__title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .advantages {
                padding: 60px 0;
            }

            .advantages__features {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .advantages__title {
                font-size: 2rem;
            }

            .advantages__text {
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .advantages {
                padding: 40px 0;
            }

            .advantages__title {
                font-size: 1.8rem;
            }

            .advantages__feature {
                padding: 24px 16px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .advantages__feature-icon {
                margin-bottom: 16px;
            }

            .advantages__subtitle {
                padding-left: 0;
                text-align: center;
            }

            .advantages__subtitle::before {
                display: none;
            }
        }

        .reviews-section {
            background: linear-gradient(135deg, #f7faff 0%, #ffffff 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .reviews-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, rgba(79, 140, 255, 0.1) 0%, rgba(41, 64, 168, 0.05) 100%);
            border-radius: 50%;
            z-index: 0;
        }

        .reviews-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(79, 140, 255, 0.08) 0%, rgba(41, 64, 168, 0.03) 100%);
            border-radius: 50%;
            z-index: 0;
        }

        .reviews-container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .reviews-header.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reviews-header h2 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #16213e;
            line-height: 1.2;
            margin: 0;
            position: relative;
            display: inline-block;
        }

        .reviews-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4f8cff 0%, #2940a8 100%);
            border-radius: 2px;
        }

        .reviews-header .blue-accent {
            color: #4f8cff;
            font-weight: 900;
            display: inline-block;
            position: relative;
        }

        .reviews-carousel {
            position: relative;
            padding: 30px 0;
            margin: 0 -15px;
            overflow: hidden;
        }

        .reviews-track {
            display: flex;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .review-item {
            padding: 0 15px;
            flex: 0 0 33.333%;
            box-sizing: border-box;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .review-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .review-summary-card {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(79, 140, 255, 0.12);
            border: 1.5px solid #e0eafc;
            padding: 35px 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .review-summary-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4f8cff 0%, #2940a8 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .review-summary-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(79, 140, 255, 0.2);
        }

        .review-summary-card:hover::before {
            opacity: 1;
        }

        .review-summary-logo img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #e9f3ff;
            padding: 12px;
            object-fit: contain;
            box-shadow: 0 5px 15px rgba(79, 140, 255, 0.15);
            transition: transform 0.3s ease;
        }

        .review-summary-card:hover .review-summary-logo img {
            transform: scale(1.1);
        }

        .review-summary-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }

        .review-summary-title {
            font-weight: 800;
            color: #16213e;
            font-size: 1.3rem;
            letter-spacing: -0.5px;
        }

        .review-summary-rating {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .review-summary-score {
            color: #4f8cff;
            font-weight: 900;
            font-size: 1.5rem;
        }

        .review-summary-stars {
            color: #ffc107;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }

        .review-summary-reviews {
            font-size: 1rem;
            color: #6b789a;
            margin-top: 5px;
        }

        .review-summary-powered {
            font-size: 0.95rem;
            color: #a3afd9;
            margin: 15px 0;
        }

        .review-summary-powered span {
            color: #4f8cff;
            font-weight: 700;
        }

        .review-summary-btn {
            margin-top: 20px;
            padding: 14px 25px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            background: linear-gradient(90deg, #4f8cff 0%, #2940a8 100%);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            border: none;
            box-shadow: 0 6px 20px rgba(79, 140, 255, 0.3);
            transition: all 0.3s ease;
            width: fit-content;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .review-summary-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
            z-index: -1;
        }

        .review-summary-btn:hover::before {
            left: 100%;
        }

        .review-summary-btn img {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .review-summary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(79, 140, 255, 0.4);
        }

        .review-summary-btn:hover img {
            transform: rotate(360deg);
        }

        .review-card {
            background: #ffffff;
            border-radius: 20px;
            border: 1.5px solid #e0eafc;
            padding: 35px;
            height: 100%;
            box-shadow: 0 15px 35px rgba(79, 140, 255, 0.1);
            display: flex;
            flex-direction: column;
            gap: 20px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4f8cff 0%, #2940a8 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(79, 140, 255, 0.18);
        }

        .review-card:hover::before {
            opacity: 1;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .review-avatar {
            width: 55px;
            height: 55px;
            background: #2940a8;
            color: #fff;
            border-radius: 50%;
            font-size: 1.4rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(79, 140, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .review-card:hover .review-avatar {
            transform: scale(1.1);
        }

        .review-user-details {
            flex: 1;
        }

        .review-user-name {
            font-size: 1.15rem;
            font-weight: 800;
            color: #16213e;
            margin-bottom: 5px;
            letter-spacing: -0.5px;
        }

        .review-time {
            font-size: 0.95rem;
            color: #6b789a;
            font-weight: 500;
        }

        .review-g-icon {
            width: 25px;
            height: 25px;
            object-fit: contain;
            filter: invert(39%) sepia(88%) saturate(1703%) hue-rotate(184deg) brightness(96%) contrast(94%);
            transition: transform 0.3s ease;
        }

        .review-card:hover .review-g-icon {
            transform: rotate(15deg);
        }

        .review-stars {
            font-size: 1.3rem;
            color: #ffc107;
            letter-spacing: 3px;
            margin: 5px 0;
        }

        .review-text {
            color: #23335a;
            font-size: 1.1rem;
            font-weight: 500;
            line-height: 1.7;
            margin-top: 10px;
            position: relative;
            padding-left: 20px;
        }

        .review-text::before {
            content: "";
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: #e0eafc;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            gap: 12px;
        }

        .carousel-dot {
            width: 14px;
            height: 14px;
            background: #dbe6fa;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot:hover {
            background: #a3c4ff;
            transform: scale(1.2);
        }

        .carousel-dot.active {
            background: #4f8cff;
            transform: scale(1.3);
            box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.2);
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            border: none;
            font-size: 1.5rem;
            color: #4f8cff;
        }

        .carousel-arrow:hover {
            background: #4f8cff;
            color: white;
            box-shadow: 0 10px 30px rgba(79, 140, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow.prev {
            left: -30px;
        }

        .carousel-arrow.next {
            right: -30px;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .review-item {
                flex: 0 0 50%;
            }

            .reviews-header h2 {
                font-size: 3rem;
            }

            .carousel-arrow.prev {
                left: -20px;
            }

            .carousel-arrow.next {
                right: -20px;
            }
        }

        @media (max-width: 992px) {
            .reviews-section {
                padding: 80px 0;
            }

            .reviews-header {
                margin-bottom: 60px;
            }

            .reviews-header h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .reviews-section {
                padding: 60px 0;
            }

            .reviews-header {
                margin-bottom: 40px;
            }

            .reviews-header h2 {
                font-size: 2.2rem;
            }

            .review-item {
                flex: 0 0 100%;
            }

            .reviews-container {
                padding: 0 20px;
            }

            .carousel-arrow {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .carousel-arrow.prev {
                left: -15px;
            }

            .carousel-arrow.next {
                right: -15px;
            }
        }

        @media (max-width: 576px) {
            .reviews-header h2 {
                font-size: 1.8rem;
            }

            .review-summary-card,
            .review-card {
                padding: 25px 20px;
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
            }
        }

        .blue-setup-section {
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
            position: relative;
            background-color: #fff;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .blue-setup-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .blue-setup-main {
            margin-bottom: 60px;
            width: 100%;
            max-width: 1200px;
            display: flex;
            flex-direction: row;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            position: relative;
            background-color: white;
            transform: scale(0.95);
            transition: transform 0.6s ease, box-shadow 0.6s ease;
        }

        .blue-setup-main.animate {
            transform: scale(1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .blue-setup-left {
            flex: 1;
            padding: 2rem;
            background:
                linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(30, 64, 175, 0.9) 100%),
                url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: white;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
        }

        .blue-setup-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .blue-setup-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: -1;
        }

        .blue-setup-info {
            padding: 2rem;
            max-width: 600px;
        }

        .blue-setup-info h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.05em;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
        }

        .blue-setup-info h1.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .blue-setup-info .subtitle {
            display: block;
            font-size: 1.1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
        }

        .blue-setup-info .subtitle.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .blue-setup-info h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
        }

        .blue-setup-info h3.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .blue-setup-info p {
            margin-bottom: 1rem;
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
        }

        .blue-setup-info p.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .blue-setup-info strong {
            color: #93c5fd;
            font-weight: 700;
        }

        .benefits-list {
            margin-top: 2rem;
            list-style: none;
        }

        .benefits-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .benefits-list li.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .benefits-list i {
            color: #3b82f6;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .blue-setup-right {
            flex: 1;
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: white;
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
        }

        .blue-setup-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .blue-setup-form-wrap {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .blue-setup-form-title {
            font-size: 1.75rem;
            font-weight: 800;
            color: #1e40af;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
        }

        .blue-setup-form-title.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .blue-star {
            color: #3b82f6;
            font-size: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .form-group.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .form-group label {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .form-control {
            width: 100%;
            padding: 0.875rem 1rem;
            font-size: 1rem;
            font-family: inherit;
            line-height: 1.5;
            color: #1e293b;
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-control:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
            background-color: white;
        }

        .form-control::placeholder {
            color: #94a3b8;
        }

        .checkbox-group {
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .checkbox-group.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: #334155;
            cursor: pointer;
            margin-bottom: 0.75rem;
        }

        .checkbox-label input[type="checkbox"] {
            flex-shrink: 0;
            width: 1.1rem;
            height: 1.1rem;
            margin-top: 0.2rem;
            accent-color: #2563eb;
            cursor: pointer;
        }

        .checkbox-label a {
            color: #2563eb;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .checkbox-label a:hover {
            text-decoration: underline;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.5;
            color: white;
            text-align: center;
            text-decoration: none;
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease 1s, transform 0.6s ease 1s, box-shadow 0.3s ease;
        }

        .btn.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .btn:hover {
            background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
            box-shadow: 0 6px 18px rgba(59, 130, 246, 0.35);
            transform: translateY(-3px);
        }

        .btn:active {
            transform: translateY(1px);
        }

        .btn i {
            margin-right: 0.5rem;
        }

        .success-message {
            display: none;
            align-items: center;
            padding: 1rem;
            margin-bottom: 1.5rem;
            background-color: #f0fdf4;
            color: #166534;
            border-radius: 0.5rem;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .success-message i {
            margin-right: 0.5rem;
            color: #22c55e;
        }

        .error-message {
            color: #dc2626;
            font-size: 0.85rem;
            margin-top: 0.25rem;
            display: none;
        }

        .input-icon {
            position: absolute;
            right: 1rem;
            top: 70%;
            transform: translateY(-50%);
            color: #94a3b8;
        }

        /* Enhanced floating animation for elements */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-8px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        /* Pulse animation for CTA */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
            }

            70% {
                box-shadow: 0 0 0 12px rgba(37, 99, 235, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .blue-setup-main {
                flex-direction: column;
                max-width: 600px;
            }

            .blue-setup-left {
                border-radius: 0.5rem 0.5rem 0 0;
                transform: translateY(-50px);
            }

            .blue-setup-left.visible {
                transform: translateY(0);
            }

            .blue-setup-right {
                border-radius: 0 0 0.5rem 0.5rem;
                transform: translateY(50px);
            }

            .blue-setup-right.visible {
                transform: translateY(0);
            }

            .blue-setup-info {
                padding: 1.5rem;
            }

            .blue-setup-info h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .blue-setup-section {
                padding: 1rem;
            }

            .blue-setup-info h1 {
                font-size: 1.75rem;
            }

            .blue-setup-info .subtitle {
                font-size: 0.9rem;
            }

            .blue-setup-form-title {
                font-size: 1.5rem;
            }

            .btn {
                padding: 0.875rem 1rem;
                font-size: 1rem;
            }

            .blue-setup-left,
            .blue-setup-right {
                padding: 1.5rem;
            }

            .benefits-list li {
                font-size: 0.95rem;
            }

            .blue-setup-main {
                height: 1500px;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

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

        .animate-fade-in {
            animation: fadeIn 0.5s ease-out forwards;
        }

        .coretech-hero-section {
            position: relative;
            width: 100%;
            min-height: 430px;
            height: 65vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0b1023;
            overflow: hidden;
        }

        .coretech-hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgb(255 255 255 / 51%) 0%, #0b1023 90%), url(https://images.unsplash.com/photo-1501594907352-04cda38ebc29?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80);
            background-size: cover;
            background-position: center;
            z-index: 1;
            opacity: 0;
            transform: scale(1.1);
            transition: opacity 1.2s ease-out, transform 1.5s ease-out;
        }

        .coretech-hero-bg.loaded {
            opacity: 0.88;
            transform: scale(1);
        }

        .coretech-hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            color: #fff;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
        }

        .coretech-hero-content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .coretech-hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.14;
            font-weight: 800;
            margin: 0 0 28px 0;
            letter-spacing: -1.5px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
        }

        .coretech-hero-content h1.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .coretech-blue-accent {
            color: #4f8cff;
            font-weight: 900;
            letter-spacing: -.5px;
            position: relative;
            display: inline-block;
        }

        .coretech-blue-accent::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, #4f8cff 50%, transparent 100%);
            opacity: 0;
            transform: scaleX(0);
            transition: opacity 0.6s ease-out 1.2s, transform 0.6s ease-out 1.2s;
        }

        .coretech-blue-accent.visible::after {
            opacity: 0.7;
            transform: scaleX(1);
        }

        .coretech-hero-content p {
            color: #e9e9f8;
            font-size: 1.35rem;
            font-weight: 500;
            margin-bottom: 36px;
            margin-top: 4px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out 0.7s, transform 0.8s ease-out 0.7s;
        }

        .coretech-hero-content p.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .coretech-less-stress {
            color: #8aa8e8;
            font-weight: 600;
        }

        .coretech-hero-btn {
            display: inline-block;
            padding: 18px 42px;
            background: linear-gradient(90deg, #4f8cff 0%, #2940a8 100%);
            color: #fff;
            border-radius: 8px;
            font-size: 1.15rem;
            font-weight: 800;
            letter-spacing: .02em;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 24px rgba(79, 140, 255, 0.13);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out 0.9s, transform 0.8s ease-out 0.9s, box-shadow 0.3s ease;
        }

        .coretech-hero-btn.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .coretech-hero-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
        }

        .coretech-hero-btn:hover,
        .coretech-hero-btn:focus {
            background: linear-gradient(90deg, #2940a8 0%, #4f8cff 100%);
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 12px 30px rgba(79, 140, 255, 0.25);
        }

        .coretech-hero-btn:hover::before {
            left: 100%;
        }

        .coretech-hero-btn:active {
            transform: translateY(1px);
        }

        /* Floating particles animation */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(79, 140, 255, 0.5);
            border-radius: 50%;
            opacity: 0;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 0.4;
            }

            90% {
                opacity: 0.2;
            }

            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .coretech-hero-content h1 {
                font-size: 2.8rem;
            }

            .coretech-hero-content p {
                font-size: 1.2rem;
            }

            .coretech-hero-section {
                height: 55vh;
            }
        }

        @media (max-width: 768px) {
            .coretech-hero-content h1 {
                font-size: 2.4rem;
            }

            .coretech-hero-content p {
                font-size: 1.1rem;
                margin-bottom: 28px;
            }

            .coretech-hero-btn {
                padding: 16px 32px;
                font-size: 1.05rem;
            }

            .coretech-hero-section {
                height: 50vh;
                min-height: 350px;
            }
        }

        @media (max-width: 576px) {
            .coretech-hero-content h1 {
                font-size: 2rem;
                margin-bottom: 20px;
            }

            .coretech-hero-content p {
                font-size: 1rem;
                margin-bottom: 24px;
            }

            .coretech-hero-btn {
                padding: 14px 28px;
                font-size: 1rem;
            }

            .coretech-hero-section {
                height: 45vh;
                min-height: 300px;
            }
        }

        @media (max-width: 400px) {
            .coretech-hero-content h1 {
                font-size: 1.7rem;
            }

            .coretech-hero-content p {
                font-size: 0.95rem;
            }

            .coretech-hero-btn {
                padding: 12px 24px;
                font-size: 0.95rem;
            }

            .coretech-hero-section {
                height: 40vh;
                min-height: 250px;
            }
        }

        .faq-section.blue-theme {
            background: #0b1023;
            color: #e9e9f8;
            padding: 90px 0 100px 0;
            min-height: 560px;
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 38px;
        }

        .faq-header h2 {
            font-size: 3.2rem;
            font-weight: 800;
            color: #e9e9f8;
            margin-bottom: 42px;
            line-height: 1.1;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .faq-header h2.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-header h2 span {
            display: block;
            color: #e9e9f8;
            font-weight: 800;
        }

        .faq-list {
            max-width: 100%;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid #22316a;
            transition: background 0.3s;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s;
        }

        .faq-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            outline: none;
            color: #e9e9f8;
            font-size: 1.23rem;
            font-weight: 600;
            padding: 28px 20px 28px 0;
            display: flex;
            align-items: center;
            gap: 25px;
            cursor: pointer;
            transition: color 0.2s;
            position: relative;
        }

        .faq-question:hover,
        .faq-item.open .faq-question {
            color: #4f8cff;
        }

        .faq-plus {
            font-size: 1.7rem;
            color: #4f8cff;
            font-weight: 900;
            margin-right: 13px;
            transition: color 0.2s, transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            min-width: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .faq-item.open .faq-plus {
            color: #fff;
            transform: rotate(135deg);
        }

        .faq-answer {
            display: grid;
            grid-template-rows: 0fr;
            color: #b8c1e2;
            font-size: 1.09rem;
            font-weight: 500;
            padding: 0 0 0 40px;
            max-width: 900px;
            line-height: 1.7;
            transition: grid-template-rows 0.4s ease, padding 0.4s ease;
            overflow: hidden;
        }

        .faq-answer>div {
            overflow: hidden;
        }

        .faq-item.open .faq-answer {
            grid-template-rows: 1fr;
            padding: 0 0 30px 40px;
        }

        @media (max-width: 992px) {
            .faq-container {
                padding: 0 30px;
            }

            .faq-header h2 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 800px) {
            .faq-header h2 {
                font-size: 2.2rem;
                text-align: center;
                margin-bottom: 30px;
            }

            .faq-container {
                padding: 0 20px;
            }

            .faq-question {
                font-size: 1.1rem;
                padding: 22px 0;
                gap: 15px;
            }

            .faq-plus {
                font-size: 1.5rem;
                margin-right: 10px;
            }

            .faq-answer {
                font-size: 1rem;
                padding: 0 0 0 30px;
            }

            .faq-item.open .faq-answer {
                padding: 0 0 25px 30px;
            }
        }

        @media (max-width: 600px) {
            .faq-section.blue-theme {
                padding: 60px 0 70px 0;
            }

            .faq-header h2 {
                font-size: 1.8rem;
            }

            .faq-question {
                font-size: 1rem;
                padding: 18px 0;
                gap: 10px;
            }

            .faq-plus {
                font-size: 1.3rem;
                margin-right: 8px;
            }

            .faq-answer {
                font-size: 0.95rem;
                padding: 0 0 0 25px;
                line-height: 1.6;
            }

            .faq-item.open .faq-answer {
                padding: 0 0 20px 25px;
            }
        }

        @media (max-width: 480px) {
            .faq-header h2 {
                font-size: 1.5rem;
            }

            .faq-question {
                font-size: 0.95rem;
                padding: 16px 0;
            }

            .faq-answer {
                font-size: 0.9rem;
                padding: 0 0 0 20px;
            }

            .faq-item.open .faq-answer {
                padding: 0 0 16px 20px;
            }

            .faq-plus {
                font-size: 1.2rem;
            }
        }

        /* Truck page */
        .coretech-trucks-section {
            background: #ffffff;
            padding: 4rem 0 5rem;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .coretech-trucks-header {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto 2rem;
            text-align: left;
        }

        .coretech-trucks-header h2 {
            font-weight: 900;
            font-size: clamp(1.8rem, 5vw, 3.5rem);
            color: #0b1023;
            letter-spacing: -1.5px;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            line-height: 1.2;
        }

        .coretech-trucks-divider {
            border: none;
            border-top: 2px solid #e0e0e0;
            margin: 1.5rem 0 0;
            width: 100%;
        }

        .coretech-trucks-grid {
            margin: 2rem auto 0;
            width: 90%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.25rem;
        }

        .coretech-truck-card {
            position: relative;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            overflow: hidden;
            min-width: 0;
            min-height: 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: flex-end;
            aspect-ratio: 16/9;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .coretech-truck-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, #16213e 40%, rgba(22, 33, 62, 0.1) 100%);
            opacity: 0.85;
            z-index: 1;
            transition: opacity 0.3s ease;
        }

        .coretech-truck-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(79, 140, 255, 0.3);
        }

        .coretech-truck-card:hover::before {
            opacity: 0.7;
        }

        .coretech-truck-info {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: row;
            align-items: flex-end;
            justify-content: space-between;
            width: 100%;
            padding: 1.5rem;
            gap: 0.5rem;
            transition: transform 0.3s ease;
        }

        .coretech-truck-card:hover .coretech-truck-info {
            transform: translateY(-5px);
        }

        .coretech-truck-name {
            color: #fff;
            font-size: clamp(1rem, 1.5vw, 1.3rem);
            font-weight: 800;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            letter-spacing: -0.5px;
            margin-right: 0.5rem;
        }

        .coretech-truck-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: linear-gradient(90deg, #4f8cff 0%, #2940a8 100%);
            color: #fff !important;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 700;
            padding: 0.6rem 1.2rem;
            text-decoration: none;
            letter-spacing: -0.2px;
            box-shadow: 0 2px 10px rgba(79, 140, 255, 0.2);
            border: none;
            outline: none;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .coretech-truck-btn svg {
            width: 14px;
            height: 14px;
            margin-left: 0.2rem;
            transition: transform 0.3s ease;
        }

        .coretech-truck-btn:hover,
        .coretech-truck-btn:focus {
            background: linear-gradient(90deg, #2940a8 0%, #4f8cff 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(79, 140, 255, 0.3);
        }

        .coretech-truck-btn:hover svg {
            transform: translateX(3px);
        }

        /* Loading animation for cards */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

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

        .coretech-truck-card {
            animation: fadeIn 0.5s ease forwards;
            opacity: 0;
        }

        .coretech-truck-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .coretech-truck-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .coretech-truck-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .coretech-truck-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .coretech-truck-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .coretech-truck-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .coretech-truck-card:nth-child(7) {
            animation-delay: 0.7s;
        }

        .coretech-truck-card:nth-child(8) {
            animation-delay: 0.8s;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .coretech-trucks-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .coretech-trucks-section {
                padding: 3rem 0 4rem;
            }

            .coretech-trucks-header {
                width: 95%;
            }

            .coretech-trucks-grid {
                width: 95%;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .coretech-trucks-header h2 {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.2rem;
            }

            .coretech-trucks-grid {
                grid-template-columns: 1fr;
            }

            .coretech-truck-info {
                flex-direction: column;
                align-items: flex-start;
            }

            .coretech-truck-btn {
                margin-top: 0.5rem;
            }
        }

        .coretech-faq-section {
            background: #10162a;
            color: #e9e9f8;
            padding: 4rem 0 2rem 0;
            width: 100%;
            font-family: 'Montserrat', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .coretech-faq-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(79, 140, 255, 0.15) 0%, rgba(41, 64, 168, 0) 70%);
            z-index: 0;
            animation: rotate 25s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .coretech-breadcrumb {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto 1.5rem auto;
            font-size: 1.1rem;
            font-weight: 600;
            color: #e9e9f8;
            letter-spacing: 0.01em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.2s;
        }

        .coretech-breadcrumb a {
            color: #4f8cff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }

        .coretech-breadcrumb a:hover {
            color: #8aa8e8;
            text-decoration: none;
            transform: translateX(2px);
        }

        .coretech-breadcrumb a:hover .coretech-breadcrumb-icon {
            transform: translateX(-2px);
        }

        .coretech-breadcrumb-icon {
            transition: transform 0.3s ease;
            font-size: 0.9rem;
        }

        .coretech-breadcrumb-sep {
            color: #8aa8e8;
            margin: 0 0.5rem;
            font-weight: 300;
            opacity: 0.7;
        }

        .coretech-faq-header-row {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: flex-start;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .coretech-faq-header-left {
            flex: 1;
            min-width: 280px;
            max-width: 380px;
            position: relative;
            padding-right: 2rem;
            opacity: 0;
            transform: translateX(-30px);
            animation: fadeInLeft 0.8s ease forwards 0.4s;
        }

        .coretech-faq-header-left::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 2px;
            background: linear-gradient(to bottom, rgba(79, 140, 255, 0.2), rgba(34, 49, 106, 0.5), rgba(79, 140, 255, 0.2));
        }

        .coretech-faq-star {
            color: #4f8cff;
            font-size: 2.5rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: -0.5rem;
            margin-left: 0.2rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                opacity: 0.7;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.1);
            }

            100% {
                opacity: 0.7;
                transform: scale(1);
            }
        }

        .coretech-faq-title {
            display: block;
            font-size: 3.5rem;
            color: #ffffff;
            font-weight: 800;
            letter-spacing: -0.05em;
            margin: 0 0 0.5rem 0;
            line-height: 1.1;
            background: linear-gradient(135deg, #4f8cff 0%, #2940a8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
            position: relative;
            text-shadow: 0 4px 10px rgba(41, 64, 168, 0.3);
        }

        .coretech-faq-subtitle {
            color: #8aa8e8;
            font-size: 1.2rem;
            font-weight: 500;
            margin-left: 0.2rem;
            margin-top: 0.5rem;
            opacity: 0.9;
            position: relative;
            display: inline-block;
        }

        .coretech-faq-subtitle::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 3rem;
            height: 2px;
            background: #4f8cff;
            opacity: 0.5;
            animation: expandLine 1s ease forwards 1s;
        }

        @keyframes expandLine {
            from {
                width: 0;
            }

            to {
                width: 3rem;
            }
        }

        .coretech-faq-header-right {
            flex: 2;
            min-width: 300px;
            max-width: 680px;
            color: #b5bfe6;
            font-size: 1.1rem;
            font-weight: 400;
            line-height: 1.6;
            margin-top: 1rem;
            padding: 1.5rem;
            background: rgba(16, 22, 42, 0.7);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(34, 49, 106, 0.5);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateX(30px);
            animation: fadeInRight 0.8s ease forwards 0.6s;
        }

        .coretech-faq-header-right:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .coretech-faq-header-right p {
            margin-bottom: 1.5rem;
        }

        .coretech-faq-header-right p:last-child {
            margin-bottom: 0;
        }

        .coretech-red {
            color: #4f8cff;
            font-weight: 700;
        }

        .coretech-blue {
            color: #8aa8e8;
            font-weight: 700;
        }

        .coretech-faq-link {
            color: #4f8cff;
            font-weight: 600;
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }

        .coretech-faq-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #4f8cff;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .coretech-faq-link:hover {
            color: #8aa8e8;
        }

        .coretech-faq-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .coretech-faq-link i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .coretech-faq-link:hover i {
            transform: translateX(3px);
        }

        .coretech-faq-divider {
            width: 90%;
            max-width: 1200px;
            margin: 3rem auto 0 auto;
            border: none;
            border-top: 1px solid rgba(34, 49, 106, 0.5);
            position: relative;
            opacity: 0;
            animation: fadeIn 1s ease forwards 0.8s;
        }

        .coretech-faq-divider::after {
            content: '';
            position: absolute;
            top: -2px;
            left: 0;
            width: 20%;
            height: 2px;
            background: linear-gradient(135deg, #4f8cff 0%, #2940a8 100%);
            animation: expandDivider 1s ease forwards 1s;
        }

        @keyframes expandDivider {
            from {
                width: 0;
            }

            to {
                width: 20%;
            }
        }

        /* Animation Keyframes */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

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

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

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

        /* Floating elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(79, 140, 255, 0.1);
            z-index: 0;
        }

        .float-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 5%;
            animation: float 15s ease-in-out infinite;
        }

        .float-2 {
            width: 40px;
            height: 40px;
            bottom: 30%;
            right: 10%;
            animation: float 12s ease-in-out infinite 1s;
        }

        .float-3 {
            width: 60px;
            height: 60px;
            top: 60%;
            left: 15%;
            animation: float 18s ease-in-out infinite 0.5s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(10deg);
            }

            100% {
                transform: translateY(0) rotate(0deg);
            }
        }

        @media (max-width: 1024px) {
            .coretech-faq-header-left {
                max-width: 100%;
                padding-right: 0;
                margin-bottom: 1.5rem;
            }

            .coretech-faq-header-left::after {
                display: none;
            }

            .coretech-faq-title {
                font-size: 3rem;
            }

            .coretech-faq-header-right {
                padding: 1.2rem;
            }

            .float-1,
            .float-2,
            .float-3 {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .coretech-faq-section {
                padding: 3rem 0 1.5rem 0;
            }

            .coretech-faq-title {
                font-size: 2.5rem;
            }

            .coretech-faq-subtitle {
                font-size: 1.1rem;
            }

            .coretech-faq-header-right {
                font-size: 1rem;
            }

            .coretech-breadcrumb {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .coretech-faq-section {
                padding: 2.5rem 0 1rem 0;
            }

            .coretech-faq-title {
                font-size: 2rem;
            }

            .coretech-faq-subtitle {
                font-size: 1rem;
            }

            .coretech-faq-header-right {
                padding: 1rem;
                min-width: 100%;
            }

            .coretech-breadcrumb {
                font-size: 0.9rem;
            }

            .coretech-faq-star {
                font-size: 2rem;
            }
        }

        .coretech-faq-content-wrap {
            margin-top: 100px;
            margin-bottom: 100px;
            background: #fff;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            width: 100%;
            min-height: 100vh;
            padding: 38px 24px 60px;
            font-family: 'Montserrat', sans-serif;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .coretech-faq-sidebar {
            width: 340px;
            min-width: 220px;
            max-width: 340px;
            margin-right: 48px;
            padding-left: 12px;
            position: sticky;
            top: 20px;
            transition: all 0.3s ease;
        }

        .coretech-faq-toc-title {
            font-size: 2rem;
            font-weight: 800;
            color: #16213e;
            margin-bottom: 18px;
            letter-spacing: -1px;
            position: relative;
            padding-bottom: 10px;
        }

        .coretech-faq-toc-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, #4f8cff 0%, #2940a8 100%);
            border-radius: 2px;
        }

        .coretech-faq-toc-list {
            list-style: none;
            margin: 0 0 46px 0;
            padding: 0;
        }

        .coretech-faq-toc-list li {
            font-size: 1.08rem;
            color: #16213e;
            padding: 12px 0;
            font-weight: 600;
            display: flex;
            align-items: center;
            opacity: 0.7;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 6px;
            padding-left: 10px;
            position: relative;
            overflow: hidden;
        }

        .coretech-faq-toc-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(to bottom, #4f8cff, #2940a8);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .coretech-faq-toc-list li:hover {
            opacity: 0.9;
            background-color: rgba(79, 140, 255, 0.05);
            transform: translateX(5px);
        }

        .coretech-faq-toc-list li:hover::before {
            opacity: 1;
        }

        .coretech-faq-toc-list li.active {
            color: #4f8cff;
            font-weight: 800;
            opacity: 1;
            background-color: rgba(79, 140, 255, 0.1);
            transform: translateX(5px);
        }

        .coretech-faq-toc-list li.active::before {
            opacity: 1;
        }

        .coretech-toc-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            margin-right: 12px;
            background: #4f8cff;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .coretech-faq-toc-list li:not(.active) .coretech-toc-dot {
            background: #8aa8e8;
            opacity: 0.5;
        }

        .coretech-faq-contact-box {
            background: #f5f8ff;
            border-radius: 12px;
            padding: 26px 22px;
            margin-top: 60px;
            box-shadow: 0 5px 20px rgba(79, 140, 255, .1);
            border: 1px solid rgba(79, 140, 255, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .coretech-faq-contact-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(79, 140, 255, .15);
        }

        .coretech-faq-contact-row {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #16213e;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .coretech-faq-contact-icon {
            flex-shrink: 0;
            margin-right: 2px;
            background: linear-gradient(135deg, #4f8cff 0%, #2940a8 100%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .coretech-faq-contact-label {
            color: #16213e;
            font-weight: 700;
        }

        .coretech-blue {
            color: #4f8cff;
            font-weight: 800;
        }

        .coretech-faq-contact-btn {
            display: block;
            width: 100%;
            text-align: center;
            margin-top: 3px;
            padding: 16px 0;
            background: linear-gradient(90deg, #4f8cff 0%, #2940a8 100%);
            color: #fff;
            border-radius: 8px;
            font-size: 1.09rem;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: 0;
            border: none;
            outline: none;
            box-shadow: 0 4px 15px rgba(79, 140, 255, .2);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .coretech-faq-contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .coretech-faq-contact-btn:hover::before {
            left: 100%;
        }

        .coretech-faq-contact-btn:hover,
        .coretech-faq-contact-btn:focus {
            background: linear-gradient(90deg, #2940a8 0%, #4f8cff 100%);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 7px 18px rgba(79, 140, 255, .3);
        }

        .coretech-faq-main {
            flex: 1 1 0%;
            min-width: 350px;
            max-width: 850px;
        }

        .coretech-faq-group {
            margin-bottom: 60px;
            scroll-margin-top: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .coretech-faq-group.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .coretech-faq-group-title {
            font-size: 2.1rem;
            font-weight: 800;
            color: #16213e;
            margin: 0 0 20px 0;
            letter-spacing: -1px;
            position: relative;
            padding-bottom: 12px;
        }

        .coretech-faq-group-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #4f8cff 0%, #2940a8 100%);
            border-radius: 2px;
        }

        .coretech-faq-item {
            font-size: 1.09rem;
            color: #16213e;
            border-bottom: 1px solid #e5e9f2;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 6px;
            margin-bottom: 8px;
        }

        .coretech-faq-item:hover {
            box-shadow: 0 5px 15px rgba(79, 140, 255, 0.08);
        }

        .coretech-faq-question {
            display: flex;
            align-items: center;
            font-weight: 600;
            padding: 20px 15px;
            transition: background 0.3s ease;
            position: relative;
        }

        .coretech-faq-item:hover .coretech-faq-question {
            background: #f5f8ff;
        }

        .coretech-faq-plus {
            color: #4f8cff;
            font-size: 1.6rem;
            font-weight: 300;
            margin-right: 19px;
            flex-shrink: 0;
            line-height: 1;
            display: inline-block;
            transition: all 0.4s ease;
            width: 24px;
            text-align: center;
        }

        .coretech-faq-item.active .coretech-faq-plus {
            transform: rotate(135deg);
            font-weight: 600;
        }

        .coretech-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
            font-size: 1rem;
            color: #4a5568;
            line-height: 1.7;
            background: linear-gradient(to bottom, rgba(245, 248, 255, 0.5), rgba(245, 248, 255, 0.2));
        }

        .coretech-faq-item.active .coretech-faq-answer {
            max-height: 500px;
        }

        .coretech-faq-answer-content {
            padding: 0 25px 25px 60px;
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4f8cff 0%, #2940a8 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(79, 140, 255, 0.3);
            z-index: 1000;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(79, 140, 255, 0.4);
        }

        @media (max-width: 1000px) {
            .coretech-faq-content-wrap {
                flex-direction: column;
                padding: 28px 24px 40px;
            }

            .coretech-faq-sidebar {
                width: 100%;
                max-width: 100%;
                margin-right: 0;
                margin-bottom: 36px;
                padding-left: 0;
                position: static;
            }

            .coretech-faq-main {
                max-width: 100%;
                min-width: 0;
                width: 100%;
            }
        }

        @media (max-width: 600px) {
            .coretech-faq-content-wrap {
                padding: 20px 16px 30px;
                margin-top: 70px;
                margin-bottom: 70px;
            }

            .coretech-faq-toc-title {
                font-size: 1.6rem;
                margin-bottom: 12px;
            }

            .coretech-faq-group-title {
                font-size: 1.5rem;
                margin-bottom: 10px;
            }

            .coretech-faq-question {
                font-size: 1rem;
                padding: 14px 0;
            }

            .coretech-faq-plus {
                font-size: 1.4rem;
                margin-right: 15px;
            }

            .coretech-faq-answer {
                font-size: 0.95rem;
            }

            .coretech-faq-answer-content {
                padding: 0 15px 15px 50px;
            }

            .coretech-faq-contact-box {
                margin-top: 40px;
            }

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }

        .contact-container {
            position: relative;
            max-width: 1200px;
            margin: 20px auto;
            padding: 60px 20px;
            opacity: 0;
            transform: translateY(40px) scale(0.98);
            transition: opacity 1.1s cubic-bezier(.42, 0, .58, 1), transform 1.1s cubic-bezier(.42, 0, .58, 1);
            background: rgba(255, 255, 255, 0.7);
            border-radius: 16px;
            box-shadow: 0 8px 48px rgba(0, 0, 0, 0.13);
            z-index: 1;
        }

        .contact-container.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .contact-title {
            text-align: center;
            font-size: 3.5rem;
            font-weight: 800;
            color: #14213d;
            margin: 0 0 20px 0;
            letter-spacing: -1.2px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, #4f8cff, #2940a8);
            border-radius: 3px;
        }

        .contact-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: #64748b;
            margin: 40px auto 60px;
            font-weight: 400;
            max-width: 700px;
            line-height: 1.7;
        }

        .contact-content {
            display: flex;
            gap: 60px;
            align-items: flex-start;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-hours,
        .contact-details {
            min-width: 260px;
            background: #ffffff;
            padding: 40px 35px;
            border-radius: 16px;
            box-shadow: 0 8px 36px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f5f9;
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            transition:
                opacity 0.85s cubic-bezier(.42, 0, .58, 1),
                transform 0.85s cubic-bezier(.42, 0, .58, 1),
                box-shadow 0.3s ease;
        }

        .contact-container.visible .contact-hours,
        .contact-container.visible .contact-details {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .contact-hours {
            flex: 1 1 320px;
            margin-bottom: 20px;
        }

        .contact-details {
            flex: 2 1 320px;
        }

        .contact-hours:hover,
        .contact-details:hover {
            box-shadow: 0 16px 56px rgba(0, 0, 0, 0.15);
        }

        .contact-hours-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #14213d;
            display: flex;
            align-items: center;
        }

        .contact-hours-title i {
            margin-right: 12px;
            color: #4361ee;
            font-size: 1.3rem;
        }

        .contact-hours-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 14px;
            font-size: 1.05rem;
        }

        .contact-hours-table tr {
            transition: all 0.3s ease;
        }

        .contact-hours-table tr:hover {
            transform: translateY(-3px);
        }

        .contact-hours-table td {
            padding: 16px 20px;
            font-weight: 500;
            color: #475569;
            background: #f8fafc;
            border-radius: 8px 0 0 8px;
            transition: all 0.3s ease;
        }

        .contact-hours-table tr:hover td {
            background: #f1f5f9;
        }

        .contact-hours-table td:last-child {
            text-align: right;
            border-radius: 0 8px 8px 0;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .contact-hours-on {
            color: #4361ee;
        }

        .contact-hours-off {
            color: #ef4444;
        }

        .contact-list {
            list-style: none;
            margin: 0 0 45px 0;
            padding: 0;
        }

        .contact-list li {
            font-size: 1.15rem;
            color: #475569;
            margin-bottom: 28px;
            position: relative;
            padding-left: 45px;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(10px) scale(0.97);
            transition: opacity 0.6s cubic-bezier(.42, 0, .58, 1), transform 0.6s cubic-bezier(.42, 0, .58, 1);
        }

        .contact-container.visible .contact-list li {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .contact-list li:nth-child(1) {
            transition-delay: 0.5s;
        }

        .contact-list li:nth-child(2) {
            transition-delay: 0.7s;
        }

        .contact-list li:nth-child(3) {
            transition-delay: 0.9s;
        }

        .contact-bullet {
            width: 26px;
            height: 26px;
            background: linear-gradient(135deg, #4361ee, #4cc9f0);
            display: inline-flex;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 2px;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(67, 97, 238, 0.2);
        }

        .contact-bullet i {
            color: white;
            font-size: 0.8rem;
        }

        .contact-list b {
            color: #14213d;
            font-weight: 600;
        }

        .contact-social-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #475569;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .contact-social-title i {
            margin-right: 12px;
            color: #4361ee;
            font-size: 1.1rem;
        }

        .contact-social-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .contact-social-btn {
            background: #4361ee;
            color: #ffffff;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 10px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(.42, 0, .58, 1);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.2);
            opacity: 0;
            transform: translateY(20px) scale(0.98);
        }

        .contact-container.visible .contact-social-btn {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .contact-social-btn:nth-child(1) {
            transition: all 0.5s cubic-bezier(.42, 0, .58, 1) 1.0s;
        }

        .contact-social-btn:nth-child(2) {
            transition: all 0.5s cubic-bezier(.42, 0, .58, 1) 1.1s;
        }

        .contact-social-btn:nth-child(3) {
            transition: all 0.5s cubic-bezier(.42, 0, .58, 1) 1.2s;
        }

        .contact-social-btn:nth-child(4) {
            transition: all 0.5s cubic-bezier(.42, 0, .58, 1) 1.3s;
        }

        .contact-social-btn:nth-child(5) {
            transition: all 0.5s cubic-bezier(.42, 0, .58, 1) 1.4s;
        }

        .contact-social-btn:hover {
            transform: translateY(-5px) scale(1.08);
            box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
        }

        .contact-social-btn.facebook {
            background: #3b5998;
        }

        .contact-social-btn.twitter {
            background: #1da1f2;
        }

        .contact-social-btn.linkedin {
            background: #0077b5;
        }

        .contact-social-btn.instagram {
            background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
        }

        .contact-social-btn.youtube {
            background: #ff0000;
        }

        @media (max-width: 1200px) {
            .contact-container {
                max-width: 1000px;
                padding: 50px 10px;
            }

            .contact-content {
                gap: 35px;
            }
        }

        @media (max-width: 992px) {
            .contact-content {
                flex-direction: column;
                gap: 32px;
                align-items: stretch;
            }

            .contact-hours,
            .contact-details {
                width: 100%;
                min-width: unset;
            }
        }

        @media (max-width: 768px) {

            .contact-container {
                padding: 28px 2px;
            }

            .contact-title {
                font-size: 2.2rem;
            }

            .contact-subtitle {
                font-size: 1.07rem;
                margin: 22px auto 29px;
            }

            .contact-hours,
            .contact-details {
                padding: 25px 11px;
            }

            .contact-hours-table td {
                padding: 11px 6px;
                font-size: 0.97rem;
            }

            .contact-list li {
                font-size: 1rem;
                padding-left: 32px;
                margin-bottom: 18px;
            }

            .contact-bullet {
                width: 18px;
                height: 18px;
            }

            .contact-social-btn {
                width: 40px;
                height: 40px;
                font-size: 0.93rem;
            }
        }

        @media (max-width: 520px) {
            .contact-title {
                font-size: 1.42rem;
            }

            .contact-subtitle {
                font-size: 0.92rem;
                margin: 12px auto 20px;
            }

            .contact-container {
                padding: 12px 1px;
            }

            .contact-hours,
            .contact-details {
                padding: 8px 2px;
                border-radius: 10px;
            }

            .contact-hours-table td {
                padding: 7px 2px;
                font-size: 0.7rem;
            }

            .contact-list li {
                font-size: 0.81rem;
                padding-left: 23px;
                margin-bottom: 12px;
            }

            .contact-bullet {
                width: 12px;
                height: 12px;
            }

            .contact-social-btn {
                width: 29px;
                height: 29px;
                font-size: 0.88rem;
                border-radius: 7px;
            }
        }

        .page-wrapper {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Header Section */
        .header-section {
            padding: 80px 0 50px;
            position: relative;
            overflow: hidden;
        }

        .header-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, #e6f0ff 0%, rgba(255, 255, 255, 0) 70%);
            z-index: -1;
        }

        .header-tag {
            background: #4361ee;
            color: white;
            font-weight: 700;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-right: 20px;
            box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
            display: inline-block;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.2s;
        }

        .main-heading {
            font-size: 3.5rem;
            font-weight: 800;
            margin: 25px 0 15px;
            color: #14213d;
            line-height: 1.1;
            transform: translateX(-30px);
            opacity: 0;
            animation: fadeInRight 0.8s ease forwards 0.4s;
        }

        .main-heading span {
            color: #4361ee;
            position: relative;
        }

        .main-heading span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(67, 97, 238, 0.2);
            z-index: -1;
            border-radius: 2px;
        }

        .sub-heading {
            font-size: 1.3rem;
            color: #8d99ae;
            margin: 0 0 40px;
            max-width: 600px;
            transform: translateX(-30px);
            opacity: 0;
            animation: fadeInRight 0.8s ease forwards 0.6s;
        }

        /* Content Box */
        .content-box {
            display: flex;
            gap: 60px;
            align-items: center;
            margin: 60px 0;
        }

        .truck-photo-container {
            flex: 1;
            position: relative;
            transform: translateX(-50px);
            opacity: 0;
            animation: fadeInLeft 1s ease forwards 0.8s;
        }

        .truck-photo {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border: 5px solid white;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .truck-photo:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        .photo-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 15px;
            left: 15px;
            z-index: 1;
            opacity: 0.5;
        }

        .text-content {
            flex: 1;
            transform: translateX(50px);
            opacity: 0;
            animation: fadeInRight 1s ease forwards 1s;
        }

        .service-description1 {
            font-size: 1.15rem;
            color: #2b2d42;
            margin-bottom: 35px;
            padding-left: 25px;
            border-left: 4px solid #4361ee;
            line-height: 1.7;
        }

        .benefits-list1 {
            margin: 35px 0;
            padding: 0;
            list-style: none;
        }

        .benefits-list1 li {
            color: #4a5568;
            margin-bottom: 18px;
            font-size: 1.1rem;
            padding-left: 40px;
            position: relative;
            transition: all 0.3s ease;
        }

        .benefits-list1 li:hover {
            transform: translateX(5px);
        }

        .benefits-list1 i {
            position: absolute;
            left: 0;
            color: white;
            font-size: 1rem;
            background: #4361ee;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
            transition: all 0.3s ease;
        }

        .benefits-list1 li:hover i {
            background: #3a0ca3;
            transform: scale(1.1);
        }

        .emphasis-blue {
            color: #4361ee;
            font-weight: 700;
        }

        .emphasis-pink {
            color: #f72585;
            font-weight: 700;
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-top: 40px;
        }

        .main-button {
            background: #4361ee;
            color: white;
            text-decoration: none;
            border: none;
            font-size: 1.1rem;
            padding: 16px 38px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }

        .main-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }

        .main-button:hover {
            background: #3a0ca3;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
        }

        .main-button:hover::before {
            left: 100%;
        }

        /* Stats Section */


        /* Animations */
        @keyframes fadeInUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }

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

        @keyframes fadeInRight {
            from {
                transform: translateX(-30px);
                opacity: 0;
            }

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

        @keyframes fadeInLeft {
            from {
                transform: translateX(50px);
                opacity: 0;
            }

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

        /* Media Queries */
        @media (max-width: 1024px) {
            .content-box {
                flex-direction: column;
                gap: 45px;
            }

            .truck-photo {
                width: 100%;
                max-width: 550px;
            }

            .main-heading {
                font-size: 3rem;
            }

            .process-steps {
                flex-wrap: wrap;
            }

            .process-step {
                flex: 0 0 calc(50% - 15px);
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .main-heading {
                font-size: 2.5rem;
            }

            .sub-heading {
                font-size: 1.1rem;
            }

            .action-buttons {
                flex-direction: column;
                align-items: flex-start;
            }


        }

        @media (max-width: 480px) {
            .service-description1 {
                font-size: 13px;
            }

            .benefits-list1 li {
                font-size: 13px;
            }

            .page-wrapper {
                padding: 0 20px;
            }

            .main-heading {
                font-size: 2.2rem;
            }

            .header-section {
                padding: 60px 0 30px;
            }

            .main-button {
                width: 100%;
                justify-content: center;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        .section-container {
            max-width: 1400px;
            width: 95%;
            margin: 100px auto;
            padding: 60px 40px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s, transform 1s;
        }

        .section-container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-left {
            flex: 1;
            min-width: 300px;
        }

        .section-title {
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 25px;
            color: #181F34;
            letter-spacing: -0.5px;
            line-height: 1.2;
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s, transform 0.8s;
        }

        .section-container.visible .section-title {
            opacity: 1;
            transform: translateX(0);
        }

        .section-title .blue {
            color: #388BFF;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .section-title .blue::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #388BFF, transparent);
            border-radius: 2px;
        }

        .section-title .logo,
        .section-title .red {
            color: #388BFF;
            background: linear-gradient(90deg, #388BFF 60%, #5CA5FF 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        .section-desc {
            font-size: 1rem;
            color: #4a5076;
            margin-bottom: 35px;
            line-height: 1.8;
            padding-right: 20px;
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.8s .2s, transform 0.8s .2s;
        }

        .section-container.visible .section-desc {
            opacity: 1;
            transform: translateX(0);
        }

        .section-desc .logo,
        .section-desc .blue,
        .section-desc .red {
            color: #388BFF;
            font-weight: 600;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s .4s, transform 0.8s .4s;
        }

        .section-container.visible .benefits-grid {
            opacity: 1;
            transform: translateY(0);
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 15px;
            background: rgba(56, 139, 255, 0.05);
            border-radius: 12px;
            transition: transform 0.3s, background 0.3s;
        }

        .benefit-item:hover {
            transform: translateY(-5px) scale(1.03);
            background: rgba(56, 139, 255, 0.13);
            box-shadow: 0 4px 16px rgba(56, 139, 255, 0.08);
        }

        .benefit-icon {
            color: #388BFF;
            font-size: 1.3rem;
            background: rgba(56, 139, 255, 0.13);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-text {
            font-size: 1rem;
            color: #4a5076;
        }

        .cta-button {
            display: inline-block;
            margin-top: 30px;
            padding: 18px 40px;
            background: linear-gradient(90deg, #388BFF 70%, #5CA5FF 100%);
            color: white;
            font-weight: 700;
            border-radius: 10px;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(56, 139, 255, 0.22);
            letter-spacing: 0.5px;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s .6s, transform 0.8s .6s;
        }

        .section-container.visible .cta-button {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-button:hover,
        .cta-button:focus {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 6px 18px rgba(56, 139, 255, 0.32);
            background: linear-gradient(90deg, #388BFF 60%, #5CA5FF 100%);
        }

        .section-right {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 1s .4s, transform 1s .4s;
        }

        .section-container.visible .section-right {
            opacity: 1;
            transform: translateX(0);
        }

        .image-container {
            position: relative;
            max-width: 100%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .section-right img {
            max-width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }

        .image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, rgba(56, 139, 255, 0.1), rgba(92, 165, 255, 0.05));
            z-index: 1;
        }

        .image-container:hover img {
            transform: scale(1.04);
        }

        @media (max-width: 1024px) {
            .section-container {
                gap: 40px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .section-container {
                flex-direction: column;
                gap: 40px;
                margin: 60px auto;
                padding: 40px 20px;
            }

            .section-left {
                text-align: center;
            }

            .section-desc {
                padding-right: 0;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .section-container {
                padding: 24px 8px;
                margin: 28px auto;
            }

            .section-title {
                font-size: 1.4rem;
                margin-bottom: 16px;
            }

            .section-desc {
                font-size: 12px;
            }

            .cta-button {
                padding: 14px 10px;
                width: 100%;
            }

            .benefit-item {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
        }

        .benefits-container {
            max-width: 1400px;
            width: 95%;
            margin: 80px auto;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease;
            will-change: opacity, transform;
        }

        .benefits-container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .benefits-container.out {
            opacity: 0;
            transform: translateY(30px);
        }

        .benefits-header {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 700;
            text-align: center;
            color: #181F34;
            margin-bottom: 70px;
            line-height: 1.2;
            letter-spacing: -0.5px;
            position: relative;
            padding-bottom: 25px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
        }

        .benefits-container.visible .benefits-header {
            opacity: 1;
            transform: translateY(0);
        }

        .benefits-container.out .benefits-header {
            opacity: 0;
            transform: translateY(20px);
        }

        .benefits-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, #388BFF, #5CA5FF);
            border-radius: 3px;
        }

        .brand-highlight {
            color: #388BFF;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .brand-highlight::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(56, 139, 255, 0.2);
            z-index: -1;
            border-radius: 2px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-bottom: 30px;
        }

        .benefit-card {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            border-radius: 18px;
            padding: 40px 30px;
            box-shadow: 0 12px 35px rgba(56, 139, 255, 0.1),
                0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(56, 139, 255, 0.12);
            opacity: 0;
            transform: translateY(30px);
            will-change: opacity, transform;
        }

        .benefits-container.visible .benefit-card {
            opacity: 1;
            transform: translateY(0);
        }

        .benefits-container.out .benefit-card {
            opacity: 0;
            transform: translateY(30px);
        }

        .benefit-card:nth-child(1) {
            transition-delay: 0.1s;
        }

        .benefit-card:nth-child(2) {
            transition-delay: 0.2s;
        }

        .benefit-card:nth-child(3) {
            transition-delay: 0.3s;
        }

        .benefit-card:nth-child(4) {
            transition-delay: 0.4s;
        }

        .benefit-card:nth-child(5) {
            transition-delay: 0.5s;
        }

        .benefit-card:nth-child(6) {
            transition-delay: 0.6s;
        }

        .benefit-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(56, 139, 255, 0.2),
                0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #388BFF, #5CA5FF);
            border-radius: 3px 0 0 3px;
        }

        .benefit-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, rgba(56, 139, 255, 0.05) 0%, transparent 60%);
            border-radius: 0 0 0 50px;
        }

        .benefit-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 0 20px 0;
            color: #181F34;
            position: relative;
            padding-left: 25px;
            display: flex;
            align-items: center;
        }

        .benefit-title i {
            margin-right: 12px;
            color: #388BFF;
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: -25px;
        }

        .benefit-description {
            font-size: 12px;
            color: #4a5568;
            margin: 0;
            font-weight: 400;
            line-height: 1.8;
            padding-left: 25px;
        }

        .brand-name {
            color: #388BFF;
            font-weight: 700;
            position: relative;
        }

        .brand-name::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #388BFF;
        }

        .stats-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
            will-change: opacity, transform;
        }

        .benefits-container.visible .stats-container {
            opacity: 1;
            transform: translateY(0);
        }

        .benefits-container.out .stats-container {
            opacity: 0;
            transform: translateY(20px);
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #388BFF;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #4a5568;
            font-weight: 500;
        }

        @media (max-width: 1024px) {
            .benefits-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .benefits-container {
                margin: 60px auto;
            }

            .benefits-header {
                margin-bottom: 50px;
                padding-bottom: 20px;
            }

            .benefits-grid {
                gap: 20px;
            }

            .benefit-card {
                padding: 30px 25px;
            }

            .benefit-title {
                font-size: 1.35rem;
            }

            .stats-container {
                gap: 30px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .page-wrapper {
                padding: 0 15px;
            }

            .benefits-header {
                font-size: 1.9rem;
                margin-bottom: 40px;
            }

            .benefit-card {
                padding: 25px 20px;
            }

            .benefit-title {
                font-size: 1.25rem;
                margin-bottom: 15px;
            }

            .benefit-description {
                font-size: 1rem;
            }

            .stats-container {
                gap: 20px;
                margin-top: 40px;
            }

            .stat-item {
                padding: 15px;
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .stat-label {
                font-size: 0.95rem;
            }
        }

        .dispatch-section1 {
            max-width: 1400px;
            width: 95%;
            margin: 80px auto;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease;
            will-change: opacity, transform;
        }

        .dispatch-section1.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .dispatch-section1.out {
            opacity: 0;
            transform: translateY(30px);
        }

        .dispatch-header1 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 700;
            text-align: center;
            color: #181F34;
            margin-bottom: 70px;
            line-height: 1.2;
            letter-spacing: -0.5px;
            position: relative;
            padding-bottom: 25px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
        }

        .dispatch-section1.visible .dispatch-header1 {
            opacity: 1;
            transform: translateY(0);
        }

        .dispatch-section1.out .dispatch-header1 {
            opacity: 0;
            transform: translateY(20px);
        }

        .dispatch-header1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, #388BFF, #5CA5FF);
            border-radius: 3px;
        }

        .dispatch-highlight1 {
            color: #388BFF;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .dispatch-highlight1::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(56, 139, 255, 0.2);
            z-index: -1;
            border-radius: 2px;
        }

        .dispatch-grid1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-bottom: 30px;
        }

        .dispatch-card1 {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            border-radius: 18px;
            padding: 40px 30px;
            box-shadow: 0 12px 35px rgba(56, 139, 255, 0.1),
                0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(56, 139, 255, 0.12);
            opacity: 0;
            transform: translateY(30px);
            will-change: opacity, transform;
            min-width: 0;
        }

        .dispatch-section1.visible .dispatch-card1 {
            opacity: 1;
            transform: translateY(0);
        }

        .dispatch-section1.out .dispatch-card1 {
            opacity: 0;
            transform: translateY(30px);
        }

        .dispatch-card1:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(56, 139, 255, 0.2),
                0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .dispatch-title1 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 0 20px 0;
            color: #181F34;
            position: relative;
            padding-left: 25px;
            display: flex;
            align-items: center;
        }

        .dispatch-title1 i {
            margin-right: 12px;
            color: #388BFF;
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: -25px;
        }

        .dispatch-desc1 {
            font-size: 12px;
            color: #4a5568;
            margin: 0;
            font-weight: 400;
            line-height: 1.8;
            padding-left: 25px;
        }

        .dispatch-brand1 {
            color: #388BFF;
            font-weight: 700;
            position: relative;
        }

        .dispatch-brand1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #388BFF;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .dispatch-grid1 {
                gap: 25px;
            }

            .dispatch-wrapper1 {
                padding: 0 10px;
            }

            .dispatch-section1 {
                padding: 0 10px;
            }

            .dispatch-header1 {
                margin-bottom: 45px;
            }
        }

        @media (max-width: 800px) {
            .dispatch-grid1 {
                grid-template-columns: 1fr 1fr;
                gap: 18px;
            }

            .dispatch-section1 {
                margin: 50px auto;
            }

            .dispatch-card1 {
                padding: 30px 18px;
            }
        }

        @media (max-width: 600px) {

            .dispatch-grid1 {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .dispatch-wrapper1 {
                padding: 0 5px;
            }

            .dispatch-section1 {
                padding: 0 3px;
                margin: 30px auto;
            }

            .dispatch-header1 {
                font-size: 1.5rem;
                margin-bottom: 25px;
                padding-bottom: 12px;
            }

            .dispatch-card1 {
                padding: 20px 10px;
            }

            .dispatch-title1 {
                font-size: 1rem;
                padding-left: 20px;
            }

            .dispatch-title1 i {
                display: none;
                font-size: 1.2rem;
                width: 32px;
                height: 32px;
                left: -20px;
            }

            .dispatch-desc1 {
                font-size: 11px;
                padding-left: 20px;
            }
        }

        @media (max-width: 400px) {
            .dispatch-header1 {
                font-size: 1.1rem;
            }

            .dispatch-card1 {
                padding: 12px 5px;
            }

            .dispatch-title1 {
                margin-bottom: 5px;
                font-size: 0.92rem;
            }

            .dispatch-desc1 {
                font-size: 10px;
            }
        }

        .animate-section {
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        .animate-visible {
            opacity: 1;
        }

        /* First Section Styles */
        .dispatch-services1 {
            max-width: 1300px;
            width: 95%;
            margin: 80px auto;
            padding: 0 20px;
        }

        .dispatch-heading1 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 5vw, 2.8rem);
            font-weight: 700;
            text-align: center;
            color: #181F34;
            margin-bottom: 60px;
            line-height: 1.2;
            position: relative;
        }

        .dispatch-heading1 .accent-text1 {
            color: #388BFF;
            position: relative;
            display: inline-block;
        }

        .dispatch-heading1 .accent-text1::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(56, 139, 255, 0.2);
            z-index: -1;
        }

        .service-items1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .service-card1 {
            background: #ffffff;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 5px 25px rgba(56, 139, 255, 0.08);
            border: 1px solid rgba(56, 139, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card1:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(56, 139, 255, 0.15);
        }

        .service-card1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #388BFF, #5CA5FF);
        }

        .service-card1 h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin: 0 0 15px 0;
            color: #181F34;
            display: flex;
            align-items: center;
        }

        .service-card1 h3 .icon-check1 {
            color: #388BFF;
            font-size: 1.5rem;
            margin-right: 12px;
            font-weight: bold;
        }

        .service-card1 .accent-text1 {
            color: #388BFF;
            font-weight: 600;
        }

        .service-card1 .brand-name1 {
            color: #388BFF;
            font-weight: 600;
            text-decoration: underline;
            text-decoration-thickness: 2px;
            text-underline-offset: 3px;
        }

        .service-card1 p {
            font-size: 1.05rem;
            color: #2D3748;
            margin: 0;
            font-weight: 400;
            line-height: 1.7;
            padding-left: 32px;
        }

        /* Second Section Styles */
        .services-section2 {
            max-width: 1400px;
            margin: 100px auto;
            padding: 0 30px;
        }

        .services-title2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #181F34;
            margin-bottom: 40px;
            line-height: 1.2;
            letter-spacing: -1px;
            text-align: center;
        }

        .services-title2 .highlight2 {
            color: #388BFF;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .services-title2 .highlight2:after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: #eaf3fb;
            z-index: -1;
            border-radius: 4px;
        }

        .main-row2 {
            display: flex;
            gap: 50px;
            align-items: flex-start;
        }

        .left-img2 {
            flex: 1;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(56, 139, 255, 0.15);
            transition: all 0.3s ease;
        }

        .left-img2:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(56, 139, 255, 0.2);
        }

        .left-img2 img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
            border: 3px solid #388BFF;
            border-radius: 16px;
            background: #eaf3fb;
        }

        .right-cards2 {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .card2 {
            background: #fff;
            border: 2px solid #e4eafd;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(56, 139, 255, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .card2:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(56, 139, 255, 0.15);
            border-color: #388BFF;
        }

        .card2:hover .card-dot2 {
            transform: scale(1.2);
            background-color: #1a5bb9;
        }

        .card-title2 {
            font-size: 1.35rem;
            font-weight: 700;
            color: #181F34;
            margin: 0 0 12px 0;
            display: flex;
            align-items: center;
        }

        .card-dot2 {
            width: 12px;
            height: 12px;
            background: #388BFF;
            border-radius: 50%;
            display: inline-block;
            margin-right: 12px;
            box-shadow: 0 0 8px rgba(56, 139, 255, 0.5);
            transition: all 0.3s ease;
        }

        .card-desc2 {
            font-size: 1.05rem;
            color: #5a627a;
            margin: 0;
            font-weight: 400;
            line-height: 1.7;
        }

        .card-icon2 {
            position: absolute;
            right: 25px;
            top: 30px;
            color: #eaf3fb;
            font-size: 1.8rem;
            z-index: 0;
        }

        /* Third Section Styles */
        .optimize-section {
            max-width: 1300px;
            margin: 100px auto;
            padding: 0 30px;
        }

        .optimize-title {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            text-align: center;
            color: #1a365d;
            margin-bottom: 50px;
            line-height: 1.2;
            position: relative;
            padding-bottom: 20px;
        }

        .optimize-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #4299e1;
            border-radius: 2px;
        }

        .optimize-title .highlight {
            color: #4299e1;
            font-weight: 700;
        }

        .optimize-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .optimize-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-top: 5px solid #4299e1;
            border-radius: 10px;
            padding: 32px 24px;
            box-shadow: 0 4px 6px rgba(50, 50, 93, 0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .optimize-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(50, 50, 93, 0.1);
            border-color: #bee3f8;
        }

        .optimize-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 16px 0;
            color: #2b6cb0;
            position: relative;
            padding-left: 36px;
        }

        .optimize-card h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background-color: #ebf8ff;
            border-radius: 6px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234299e1'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
            background-position: center;
            background-repeat: no-repeat;
            background-size: 14px;
        }

        .optimize-card p {
            font-size: 1rem;
            color: #4a5568;
            margin: 0;
            padding-left: 36px;
            line-height: 1.7;
        }

        .optimize-card .logo {
            font-weight: 600;
            color: #2b6cb0;
        }

        /* Responsive Styles */
        @media (max-width: 1100px) {
            .main-row2 {
                flex-direction: column;
                gap: 40px;
            }

            .left-img2 {
                max-width: 600px;
                margin: 0 auto;
            }

            .right-cards2 {
                width: 100%;
            }
        }

        @media (max-width: 900px) {
            .service-items1 {
                grid-template-columns: 1fr;
            }

            .dispatch-heading1 {
                margin-bottom: 40px;
            }

            .service-card1 {
                padding: 30px 25px;
            }
        }

        @media (max-width: 768px) {

            .services-section2,
            .optimize-section {
                margin: 60px auto;
                padding: 0 20px;
            }

            .services-title2 {
                margin-bottom: 30px;
                text-align: left;
            }

            .card2 {
                padding: 25px 20px;
            }

            .card-title2 {
                font-size: 1.2rem;
            }

            .card-desc2 {
                font-size: 1rem;
            }

            .card-icon2 {
                font-size: 1.5rem;
                right: 20px;
                top: 25px;
            }

            .optimize-title {
                font-size: 1.8rem;
                margin-bottom: 40px;
            }

            .optimize-grid {
                gap: 20px;
            }

            .optimize-card {
                padding: 24px 20px;
            }
        }

        @media (max-width: 600px) {
            .dispatch-wrapper1 {
                padding: 0 15px;
            }

            .dispatch-services1 {
                margin: 60px auto;
            }

            .dispatch-heading1 {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }

            .service-card1 {
                padding: 25px 20px;
            }

            .service-card1 h3 {
                font-size: 1.2rem;
            }

            .service-card1 p {
                font-size: 1rem;
                padding-left: 28px;
            }
        }

        @media (max-width: 480px) {

            .services-section2,
            .optimize-section {
                padding: 0 15px;
            }

            .card2 {
                padding: 20px 15px;
            }

            .optimize-title {
                font-size: 1.5rem;
                padding-bottom: 15px;
            }

            .optimize-title::after {
                width: 60px;
                height: 3px;
            }

            .optimize-card h3 {
                font-size: 1.1rem;
                padding-left: 30px;
            }

            .optimize-card h3::before {
                width: 20px;
                height: 20px;
                background-size: 12px;
            }

            .optimize-card p {
                padding-left: 30px;
                font-size: 12px;
            }
        }

        .about-container1 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards;
        }

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

        /* Header Styles */
        .about-header1 {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .about-star1 {
            color: #2a6df5;
            font-size: 2rem;
            animation: pulse 2s infinite ease;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        .about-title1 {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 700;
            margin: 0;
            letter-spacing: -0.05em;
            line-height: 1.1;
            background: linear-gradient(to right, #2a6df5, #1a56d6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Content Styles */
        .about-summary1 {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 1.125rem;
            color: #4a4f6b;
            margin: 1.5rem 0;
            max-width: 800px;
        }

        .highlight1 {
            color: #2a6df5;
            font-weight: 600;
        }

        .bold1 {
            font-weight: 700;
            color: #1a1d2e;
        }

        .about-details1 {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 1.0625rem;
            color: #4a4f6b;
            margin-bottom: 3rem;
            max-width: 800px;
        }

        hr {
            border: none;
            border-top: 1px solid #e1e5f0;
            margin: 3rem 0;
        }

        /* Video Container Styles */
        .about-video-container1 {
            display: flex;
            justify-content: center;
            margin: 3rem 0;
        }

        .about-video-box1 {
            width: 100%;
            max-width: 1000px;
            aspect-ratio: 16/9;
            background: #e8f0fe;
            border-radius: 1.5rem;
            box-shadow: 0 8px 24px rgba(42, 109, 245, 0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .about-video-box1:hover {
            transform: translateY(-5px);
        }

        .about-video-img1 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .about-video-img1.loaded1 {
            opacity: 1;
        }

        .about-video-logo1 {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            font-size: clamp(1rem, 2vw, 1.5rem);
            font-weight: 700;
            color: #1a1d2e;
            background: rgba(255, 255, 255, 0.9);
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 2px 8px rgba(42, 109, 245, 0.1);
            backdrop-filter: blur(4px);
        }

        .about-video-logo1 .highlight1 {
            color: #2a6df5;
        }

        .about-video-play1 {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            width: 56px;
            height: 56px;
            background: #2a6df5;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(42, 109, 245, 0.1);
            transition: all 0.15s ease;
        }

        .about-video-play1:hover {
            background: #1a56d6;
            transform: scale(1.05);
        }

        .about-video-play1:after {
            content: '';
            display: block;
            width: 0;
            height: 0;
            border-left: 20px solid white;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .about-container1 {
                padding: 2rem 1rem;
            }

            .about-video-play1 {
                width: 44px;
                height: 44px;
            }

            .about-video-play1:after {
                border-left: 16px solid white;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
            }
        }

        @media (max-width: 480px) {
            .about-header1 {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .about-star1 {
                font-size: 1.5rem;
            }

            .about-video-play1 {
                width: 36px;
                height: 36px;
                bottom: 1rem;
                left: 1rem;
            }

            .about-video-play1:after {
                border-left: 12px solid white;
                border-top: 8px solid transparent;
                border-bottom: 8px solid transparent;
            }

            .about-video-logo1 {
                top: 1rem;
                left: 1rem;
            }
        }

        .stats-section1 {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
        }

        .stats-container1 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            flex-direction: row;
            gap: 60px;
            justify-content: space-between;
            align-items: flex-start;
        }

        .stats-left1 {
            flex: 1;
            min-width: 420px;
            padding-right: 20px;
        }

        .stats-left1 p {
            font-size: 1.15rem;
            color: #232b44;
            line-height: 1.8;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .stats-left1 .highlight1 {
            font-weight: 700;
            color: #388BFF;
            position: relative;
            display: inline-block;
        }

        .stats-left1 .highlight1::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 6px;
            background-color: rgba(56, 139, 255, 0.2);
            z-index: -1;
            transition: height 0.3s ease;
        }

        .stats-left1 p:hover .highlight1::after {
            height: 12px;
        }

        .stats-right1 {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 30px;
        }

        .stat-box1 {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(56, 139, 255, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            height: 100%;
        }

        .stat-box1:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(56, 139, 255, 0.2);
        }

        .stat-num1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #181F34;
            line-height: 1;
            margin-bottom: 10px;
            display: flex;
            align-items: flex-end;
        }

        .stat-plus1 {
            color: #388BFF;
            font-weight: 700;
            margin-left: 4px;
            font-size: 2.5rem;
        }

        .stat-red1 {
            color: #388BFF;
            font-weight: 700;
        }

        .stat-label1 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #B7C0D7;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            padding-left: 20px;
        }

        .stat-label1::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background-color: #388BFF;
            border-radius: 50%;
        }

        .section-title1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #181F34;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }

        .section-title1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: #388BFF;
            border-radius: 2px;
        }

        @media (max-width: 1200px) {
            .stats-container1 {
                gap: 40px;
            }

            .stat-num1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .stats-container1 {
                flex-direction: column;
                gap: 50px;
            }

            .stats-left1 {
                width: 100%;
                min-width: auto;
                padding-right: 0;
            }

            .stats-right1 {
                width: 100%;
            }

            .section-title1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .stats-section1 {
                padding: 60px 0;
            }

            .stats-right1 {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .stat-box1 {
                padding: 25px;
            }

            .stat-num1 {
                font-size: 2.5rem;
            }

            .section-title1 {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .stats-left1 p {
                font-size: 1.05rem;
            }
        }

        @media (max-width: 576px) {
            .stats-container1 {
                padding: 0 20px;
            }

            .stat-num1 {
                font-size: 2.2rem;
            }

            .stat-label1 {
                font-size: 1rem;
            }
        }

        .transparency-container {
            max-width: 1400px;
            margin: 80px auto;
            display: flex;
            gap: 60px;
            align-items: center;
            padding: 0 40px;
        }

        .transparency-img-col {
            flex: 1;
            position: relative;
            min-width: 300px;
        }

        .transparency-img {
            width: 100%;
            max-width: 580px;
            height: 380px;
            border-radius: 16px;
            object-fit: cover;
            box-shadow: 0 10px 25px rgba(56, 139, 255, 0.15);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .transparency-img-col:hover .transparency-img {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(56, 139, 255, 0.2);
        }

        .transparency-text-col {
            flex: 1;
            min-width: 300px;
        }

        .transparency-title {
            font-size: 2.4rem;
            font-weight: 700;
            color: #181F34;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .transparency-title span {
            position: relative;
            display: inline-block;
        }

        .transparency-title span::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 4px;
            background: #388BFF;
            border-radius: 2px;
        }

        .transparency-desc {
            font-size: 1.1rem;
            color: #232b44;
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .transparency-list-container {
            background: #f5f9ff;
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #388BFF;
        }

        .transparency-list-title {
            font-size: 1rem;
            color: #388BFF;
            margin-bottom: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .transparency-list {
            list-style: none;
            padding-left: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 10px;
        }

        .transparency-list li {
            font-size: 1.05rem;
            color: #181F34;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            font-weight: 500;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 8px;
            transition: all 0.2s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .transparency-list li:hover {
            background: #ffffff;
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(56, 139, 255, 0.1);
        }

        .transparency-list li .dot {
            width: 10px;
            height: 10px;
            background: #388BFF;
            border-radius: 50%;
            display: inline-block;
            margin-right: 15px;
            box-shadow: 0 0 0 3px rgba(56, 139, 255, 0.2);
            transition: all 0.2s ease;
        }

        .transparency-list li:hover .dot {
            transform: scale(1.3);
            box-shadow: 0 0 0 5px rgba(56, 139, 255, 0.15);
        }

        @media (max-width: 1200px) {
            .transparency-container {
                gap: 40px;
            }

            .transparency-title {
                font-size: 2.1rem;
            }

            .transparency-img {
                height: 340px;
            }
        }

        @media (max-width: 992px) {
            .transparency-container {
                flex-direction: column;
                gap: 35px;
                margin: 60px auto;
            }

            .transparency-img-col,
            .transparency-text-col {
                width: 100%;
                max-width: 650px;
            }

            .transparency-img {
                height: auto;
                max-height: 400px;
            }

            .transparency-list {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .transparency-container {
                padding: 0 30px;
                margin: 50px auto;
            }

            .transparency-title {
                font-size: 1.8rem;
            }

            .transparency-desc {
                font-size: 1rem;
            }

            .transparency-list-container {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .transparency-container {
                padding: 0 20px;
                margin: 40px auto;
                gap: 30px;
            }

            .transparency-title {
                font-size: 1.6rem;
                margin-bottom: 20px;
            }

            .transparency-list {
                grid-template-columns: 1fr;
            }

            .transparency-list li {
                padding: 8px 12px;
            }
        }

        .ctd-container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .ctd-breadcrumb {
            font-size: 1rem;
            font-weight: 600;
            margin-top: 64px;
            color: #4a4e69;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ctd-breadcrumb-link {
            color: #4361ee;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .ctd-breadcrumb-link:hover {
            color: #3f37c9;
            text-decoration: underline;
        }

        .ctd-breadcrumb-separator {
            color: #8e9aaf;
        }

        .ctd-main-content {
            display: flex;
            flex-direction: column;
            margin-top: 32px;
        }

        .ctd-hero-section {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            margin-bottom: 48px;
        }

        .ctd-hero-text {
            flex: 1;
            min-width: 300px;
        }

        .ctd-hero-icon {
            color: #4895ef;
            font-size: 2.5rem;
            margin-bottom: 16px;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .ctd-hero-icon:hover {
            transform: rotate(15deg);
        }

        .ctd-hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin: 0 0 16px 0;
            color: #2b2d42;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .ctd-hero-subtitle {
            font-size: 1.25rem;
            color: #4a4e69;
            margin-top: 24px;
            max-width: 600px;
        }

        .ctd-hero-subtitle-highlight {
            color: #4361ee;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .ctd-hero-subtitle-highlight::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 6px;
            background-color: #eef2ff;
            z-index: -1;
            opacity: 0.7;
            border-radius: 2px;
        }

        .ctd-hero-image-container {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .ctd-hero-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            object-fit: cover;
            aspect-ratio: 3/4;
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ctd-hero-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(67, 97, 238, 0.15);
        }

        .ctd-divider {
            border: none;
            border-top: 1px solid #e2e8f0;
            margin: 48px 0;
            width: 100%;
        }

        .ctd-steps-container {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 64px;
        }

        .ctd-step-card {
            background: #eef2ff;
            color: #4361ee;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 16px 24px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .ctd-step-card:hover {
            background: #4361ee;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .ctd-step-card-icon {
            font-size: 1.2rem;
        }

        .ctd-arrow-icon {
            color: #4361ee;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 8px;
            display: inline-flex;
            align-items: center;
        }

        @media (max-width: 768px) {
            .ctd-breadcrumb {
                margin-top: 32px;
            }

            .ctd-hero-section {
                gap: 24px;
            }

            .ctd-hero-text,
            .ctd-hero-image-container {
                min-width: 100%;
            }

            .ctd-hero-image {
                max-width: 100%;
            }

            .ctd-steps-container {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .ctd-container {
                padding: 0 16px;
            }

            .ctd-hero-title {
                font-size: 2rem;
            }

            .ctd-hero-subtitle {
                font-size: 1.1rem;
            }

            .ctd-step-card {
                font-size: 1rem;
                padding: 8px 16px;
            }

            .ctd-arrow-icon {
                display: none;
            }
        }

        .container33 {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 15px;
            width: 100%;
        }

        .page-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #181F34;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .page-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #388BFF;
            border-radius: 2px;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: #7a82a0;
            max-width: 700px;
            margin: 30px auto 0;
        }

        .steps-main {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .step-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 12px rgba(24, 31, 52, 0.05);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            border-top: 5px solid #388BFF;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(56, 139, 255, 0.12);
        }

        .step-number {
            position: absolute;
            top: 0;
            right: 0;
            background: #388BFF;
            color: white;
            font-size: 1rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 0 0 0 16px;
        }

        .step-icon {
            background: rgba(56, 139, 255, 0.1);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
        }

        .step-icon i {
            font-size: 24px;
            color: #388BFF;
        }

        .step-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #388BFF;
            margin-bottom: 18px;
            line-height: 1.2;
        }

        .step-divider {
            border: none;
            height: 2px;
            background: linear-gradient(to right, #388BFF 30%, #e4eafd 70%);
            margin: 18px 0;
            opacity: 0.6;
        }

        .step-content {
            font-size: 14px;
            color: #181F34;
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .step-list {
            margin: 0 0 20px 0;
            padding: 0;
            list-style: none;
        }

        .step-list li {
            font-size: 14px;
            color: #181F34;
            margin-bottom: 14px;
            display: flex;
            align-items: flex-start;
        }

        .step-list li .list-icon {
            color: #388BFF;
            margin-right: 12px;
            font-size: 0.8rem;
            margin-top: 6px;
        }

        .step-list li strong {
            font-weight: 700;
            color: #1a6de3;
        }

        .step-bold {
            font-weight: 700;
            color: #388BFF;
        }

        .step-note {
            font-size: 12px;
            color: #7a82a0;
            margin-top: 15px;
            padding: 15px;
            background: rgba(122, 130, 160, 0.08);
            border-radius: 10px;
        }

        .step-note span {
            color: #388BFF;
            font-weight: 600;
        }

        /* Form Styles */
        .form-group1 {
            margin-bottom: 18px;
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            border: 1.5px solid #e4eafd;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #388BFF;
            box-shadow: 0 0 0 3px rgba(56, 139, 255, 0.2);
        }

        .form-input.error {
            border-color: #f44336;
        }

        .error-message {
            color: #f44336;
            font-size: 0.8rem;
            margin-top: 5px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .checkbox-group1 {
            display: flex;
            margin-bottom: 16px;
        }

        .checkbox-group1 input {
            margin-top: 4px;
            margin-right: 12px;
            flex-shrink: 0;
        }

        .checkbox-label {
            font-size: 12px;
            color: #181F34;
            line-height: 1.5;
        }

        .checkbox-label a {
            color: #388BFF;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .checkbox-label a:hover {
            text-decoration: underline;
        }

        /* Success Box */
        .step-success-box {
            font-size: 10px;
            background: #eaf7eb;
            color: #4caf50;
            border-radius: 10px;
            padding: 14px 18px;
            margin: 20px 0 10px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid #4caf50;
            display: none;
        }

        .step-success-box.show {
            display: flex;
        }

        .step-success-check {
            font-size: 1.4rem;
        }

        .step-links {
            font-size: 0.9rem;
            color: #7a82a0;
            margin: 8px 0 20px;
        }

        .step-links a {
            color: #388BFF;
            text-decoration: none;
            font-weight: 600;
            margin-right: 12px;
            transition: all 0.3s ease;
        }

        .step-links a:hover {
            text-decoration: underline;
        }

        /* Button Styles */
        .step-btn {
            background: #388BFF;
            color: white;
            font-weight: 600;
            font-size: 12px;
            border: none;
            border-radius: 10px;
            padding: 16px 32px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            box-shadow: 0 4px 12px rgba(56, 139, 255, 0.3);
        }

        .step-btn:hover {
            background: #1a6de3;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(56, 139, 255, 0.4);
        }

        .step-btn:disabled {
            background: #7a82a0;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .step-btn i {
            margin-left: 8px;
            font-size: 0.9rem;
        }

        /* Phone Row */
        .step-phone-row {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 22px;
            font-size: 1.05rem;
            color: #181F34;
            padding: 12px;
            background: rgba(56, 139, 255, 0.06);
            border-radius: 10px;
        }

        .step-phone-icon {
            background: #388BFF;
            color: white;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            margin-right: 12px;
            box-shadow: 0 2px 8px rgba(56, 139, 255, 0.3);
        }

        .step-phone-link {
            font-size: 12px;
            color: #388BFF;
            text-decoration: none;
            font-weight: 600;
            margin-left: 4px;
            transition: all 0.3s ease;
        }

        .step-phone-link:hover {
            color: #1a6de3;
            text-decoration: underline;
        }

        /* Ready Section */
        .step-ready {
            margin-top: 30px;
            font-weight: 700;
            color: #388BFF;
            font-size: 12px;
            text-align: center;
            padding: 16px;
            background: rgba(56, 139, 255, 0.1);
            border-radius: 10px;
        }

        /* Progress Bar */
        .progress-container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto 40px;
            background: #e4eafd;
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: #388BFF;
            border-radius: 4px;
            transition: width 0.5s ease;
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .steps-main {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .page-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .steps-main {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }

            .step-card {
                padding: 25px;
            }

            .page-title {
                font-size: 2rem;
            }

            .page-subtitle {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .container33 {
                padding: 0 10px;
            }

            .page-header {
                margin-bottom: 30px;
            }

            .page-title {
                font-size: 1.8rem;
            }

            .step-title {
                font-size: 1.4rem;
            }

            .step-card {
                padding: 20px 18px;
            }

            .step-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 18px;
            }

            .step-icon i {
                font-size: 20px;
            }

            .step-btn {
                padding: 14px 20px;
                font-size: 1rem;
            }
        }

        .container33 {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 15px;
            width: 100%;
        }

        .page-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #181F34;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .page-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #388BFF;
            border-radius: 2px;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: #7a82a0;
            max-width: 700px;
            margin: 30px auto 0;
        }

        .steps-main {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .step-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 12px rgba(24, 31, 52, 0.05);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            border-top: 5px solid #388BFF;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(56, 139, 255, 0.12);
        }

        .step-number {
            position: absolute;
            top: 0;
            right: 0;
            background: #388BFF;
            color: white;
            font-size: 1rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 0 0 0 16px;
        }

        .step-icon {
            background: rgba(56, 139, 255, 0.1);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
        }

        .step-icon i {
            font-size: 24px;
            color: #388BFF;
        }

        .step-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #388BFF;
            margin-bottom: 18px;
            line-height: 1.2;
        }

        .step-divider {
            border: none;
            height: 2px;
            background: linear-gradient(to right, #388BFF 30%, #e4eafd 70%);
            margin: 18px 0;
            opacity: 0.6;
        }

        .step-content {
            font-size: 14px;
            color: #181F34;
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .step-list {
            margin: 0 0 20px 0;
            padding: 0;
            list-style: none;
        }

        .step-list li {
            font-size: 14px;
            color: #181F34;
            margin-bottom: 14px;
            display: flex;
            align-items: flex-start;
        }

        .step-list li .list-icon {
            color: #388BFF;
            margin-right: 12px;
            font-size: 0.8rem;
            margin-top: 6px;
        }

        .step-list li strong {
            font-weight: 700;
            color: #1a6de3;
        }

        .step-bold {
            font-weight: 700;
            color: #388BFF;
        }

        .step-note {
            font-size: 12px;
            color: #7a82a0;
            margin-top: 15px;
            padding: 15px;
            background: rgba(122, 130, 160, 0.08);
            border-radius: 10px;
        }

        .step-note span {
            color: #388BFF;
            font-weight: 600;
        }

        /* Form Styles */
        .form-group1 {
            margin-bottom: 18px;
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            border: 1.5px solid #e4eafd;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #388BFF;
            box-shadow: 0 0 0 3px rgba(56, 139, 255, 0.2);
        }

        .form-input.error {
            border-color: #f44336;
        }

        .error-message {
            color: #f44336;
            font-size: 0.8rem;
            margin-top: 5px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .checkbox-group1 {
            display: flex;
            margin-bottom: 16px;
        }

        .checkbox-group1 input {
            margin-top: 4px;
            margin-right: 12px;
            flex-shrink: 0;
        }

        .checkbox-label {
            font-size: 12px;
            color: #181F34;
            line-height: 1.5;
        }

        .checkbox-label a {
            color: #388BFF;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .checkbox-label a:hover {
            text-decoration: underline;
        }

        /* Success Box */
        .step-success-box {
            font-size: 10px;
            background: #eaf7eb;
            color: #4caf50;
            border-radius: 10px;
            padding: 14px 18px;
            margin: 20px 0 10px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid #4caf50;
            display: none;
        }

        .step-success-box.show {
            display: flex;
        }

        .step-success-check {
            font-size: 1.4rem;
        }

        .step-links {
            font-size: 0.9rem;
            color: #7a82a0;
            margin: 8px 0 20px;
        }

        .step-links a {
            color: #388BFF;
            text-decoration: none;
            font-weight: 600;
            margin-right: 12px;
            transition: all 0.3s ease;
        }

        .step-links a:hover {
            text-decoration: underline;
        }

        /* Button Styles */
        .step-btn {
            background: #388BFF;
            color: white;
            font-weight: 600;
            font-size: 12px;
            border: none;
            border-radius: 10px;
            padding: 16px 32px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            box-shadow: 0 4px 12px rgba(56, 139, 255, 0.3);
        }

        .step-btn:hover {
            background: #1a6de3;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(56, 139, 255, 0.4);
        }

        .step-btn:disabled {
            background: #7a82a0;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .step-btn i {
            margin-left: 8px;
            font-size: 0.9rem;
        }

        /* Phone Row */
        .step-phone-row {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 22px;
            font-size: 1.05rem;
            color: #181F34;
            padding: 12px;
            background: rgba(56, 139, 255, 0.06);
            border-radius: 10px;
        }

        .step-phone-icon {
            background: #388BFF;
            color: white;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            margin-right: 12px;
            box-shadow: 0 2px 8px rgba(56, 139, 255, 0.3);
        }

        .step-phone-link {
            font-size: 12px;
            color: #388BFF;
            text-decoration: none;
            font-weight: 600;
            margin-left: 4px;
            transition: all 0.3s ease;
        }

        .step-phone-link:hover {
            color: #1a6de3;
            text-decoration: underline;
        }

        /* Ready Section */
        .step-ready {
            margin-top: 30px;
            font-weight: 700;
            color: #388BFF;
            font-size: 12px;
            text-align: center;
            padding: 16px;
            background: rgba(56, 139, 255, 0.1);
            border-radius: 10px;
        }

        /* Progress Bar */
        .progress-container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto 40px;
            background: #e4eafd;
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: #388BFF;
            border-radius: 4px;
            transition: width 0.5s ease;
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .steps-main {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .page-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .steps-main {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }

            .step-card {
                padding: 25px;
            }

            .page-title {
                font-size: 2rem;
            }

            .page-subtitle {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .container33 {
                padding: 0 10px;
            }

            .page-header {
                margin-bottom: 30px;
            }

            .page-title {
                font-size: 1.8rem;
            }

            .step-title {
                font-size: 1.4rem;
            }

            .step-card {
                padding: 20px 18px;
            }

            .step-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 18px;
            }

            .step-icon i {
                font-size: 20px;
            }

            .step-btn {
                padding: 14px 20px;
                font-size: 1rem;
            }
        }

        .container23 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .driver-breadcrumb {
            font-size: 1rem;
            font-weight: 500;
            margin-top: 40px;
            color: #6b7280;
            letter-spacing: 0.3px;
        }

        .driver-breadcrumb a {
            color: #3b82f6;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .driver-breadcrumb a:hover {
            color: #1e40af;
            text-decoration: underline;
        }

        .driver-breadcrumb .arrow {
            margin: 0 8px;
            color: #6b7280;
        }

        .driver-main-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-top: 60px;
            gap: 60px;
        }

        .driver-col-left {
            flex: 1;
            min-width: 300px;
        }

        .driver-star {
            color: #3b82f6;
            font-size: 2.2rem;
            margin-bottom: 20px;
            display: inline-block;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        .driver-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
            color: #1e40af;
            line-height: 1.2;
            background: linear-gradient(to right, #1e40af, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .driver-subtitle {
            font-size: 15px;
            color: #6b7280;
            margin-top: 24px;
            margin-bottom: 0;
            font-weight: 400;
            max-width: 90%;
        }

        .driver-col-mid {
            flex: 1;
            min-width: 250px;
            background: #ffffff;
            padding: 28px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-top: 40px;
        }

        .driver-contact-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1e40af;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }

        .driver-contact-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #3b82f6;
            border-radius: 3px;
        }

        .driver-contact-row {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .driver-contact-icon {
            background: #3b82f6;
            color: #ffffff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
            margin-right: 16px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .driver-contact-row:hover .driver-contact-icon {
            background: #1e40af;
            transform: translateY(-2px);
        }

        .driver-contact-link {
            font-size: 15px;
            color: #1f2937;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .driver-contact-link:hover {
            color: #3b82f6;
        }

        .driver-col-right {
            flex: 2;
            min-width: 400px;
            background: #ffffff;
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-top: 40px;
        }

        .driver-col-right p {
            font-size: 1.1rem;
            color: #1f2937;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .driver-col-right strong {
            font-weight: 600;
            color: #1e40af;
        }

        .driver-col-right .highlight {
            background: linear-gradient(to right, #60a5fa, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        .cta-button1 {
            display: inline-block;
            background: linear-gradient(to right, #3b82f6, #1e40af);
            color: white;
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 16px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cta-button1:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 1200px) {
            .driver-main-row {
                flex-direction: column;
                gap: 40px;
            }

            .driver-col-mid,
            .driver-col-right {
                margin-top: 30px;
                min-width: 100%;
            }

            .driver-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }

            .driver-title {
                font-size: 2.5rem;
            }

            .driver-subtitle {
                font-size: 1.1rem;
            }

            .driver-col-mid,
            .driver-col-right {
                padding: 24px;
            }
        }

        @media (max-width: 480px) {
            .driver-title {
                font-size: 2rem;
            }

            .driver-breadcrumb {
                margin-top: 30px;
            }
        }

        .shippers-main {
            max-width: 1300px;
            margin: 40px auto;
            display: flex;
            gap: 50px;
            padding: 0 30px;
        }

        /* Sidebar Styles */
        .shippers-sidebar {
            width: 280px;
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 25px;
            box-shadow: 0 10px 30px rgba(56, 139, 255, 0.08);
            height: fit-content;
            position: sticky;
            top: 30px;
        }

        .shippers-sidebar .shippers-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a2238;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .shippers-sidebar .star {
            color: #3d7eff;
            font-size: 24px;
            text-shadow: 0 2px 8px rgba(61, 126, 255, 0.3);
        }

        .shippers-sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0 0 35px 0;
        }

        .shippers-sidebar li {
            font-size: 16px;
            color: #4a5568;
            margin-bottom: 15px;
            position: relative;
            padding-left: 20px;
            transition: all 0.2s ease;
        }

        .shippers-sidebar li:hover {
            color: #3d7eff;
            transform: translateX(5px);
        }

        .shippers-sidebar li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            width: 8px;
            height: 8px;
            background: #3d7eff;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .shippers-sidebar li:hover:before {
            transform: scale(1.3);
        }

        .shippers-sidebar .ask-block {
            margin-top: 35px;
            border-top: 1px solid #e9efff;
            padding-top: 20px;
        }

        .shippers-sidebar .ask-title {
            font-size: 16px;
            color: #1a2238;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .shippers-sidebar .ask-btn {
            background: linear-gradient(135deg, #3d7eff 0%, #2a65e0 100%);
            color: #fff;
            border: none;
            font-size: 16px;
            border-radius: 25px;
            padding: 12px 25px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(61, 126, 255, 0.2);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .shippers-sidebar .ask-btn:hover {
            background: linear-gradient(135deg, #2a65e0 0%, #1a4bb8 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(61, 126, 255, 0.3);
        }

        .shippers-sidebar .ask-btn:active {
            transform: translateY(0);
        }

        /* Content Styles */
        .shippers-content {
            flex: 1;
            min-width: 0;
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(56, 139, 255, 0.08);
        }

        .shippers-content h2 {
            font-size: 28px;
            color: #1a2238;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .shippers-content h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #3d7eff 0%, #2a65e0 100%);
            border-radius: 2px;
        }

        .shippers-content h3 {
            font-size: 22px;
            color: #1a2238;
            font-weight: 700;
            margin-top: 35px;
            margin-bottom: 15px;
        }

        .shippers-content .blue {
            color: #3d7eff;
            font-weight: 600;
        }

        .shippers-content p {
            font-size: 16px;
            color: #4a5568;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .shippers-content ul {
            margin: 0 0 25px 0;
            padding-left: 20px;
        }

        .shippers-content li {
            font-size: 16px;
            color: #4a5568;
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
            line-height: 1.6;
        }

        .shippers-content li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            width: 8px;
            height: 8px;
            background: #3d7eff;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(61, 126, 255, 0.3);
        }

        .shippers-content li strong {
            color: #1a2238;
            font-weight: 600;
        }

        .shippers-content .benefits-lists {
            display: flex;
            gap: 50px;
            margin-top: 25px;
            margin-bottom: 30px;
        }

        .shippers-content .benefits-col {
            flex: 1;
            background: #f8faff;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(56, 139, 255, 0.05);
        }

        .shippers-content .benefits-col-title {
            font-size: 18px;
            font-weight: 700;
            color: #3d7eff;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .shippers-content .benefits-col-title i {
            font-size: 20px;
        }

        .shippers-content .section-block {
            margin-bottom: 40px;
        }

        .shippers-content .section-block:last-child {
            margin-bottom: 0;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .shippers-main {
                gap: 30px;
            }

            .shippers-sidebar {
                width: 240px;
                padding: 30px 20px;
            }

            .shippers-content {
                padding: 30px;
            }
        }

        @media (max-width: 900px) {
            .shippers-main {
                flex-direction: column;
                gap: 30px;
                padding: 0 20px;
            }

            .shippers-sidebar {
                width: 100%;
                position: static;
            }

            .shippers-content {
                padding: 30px;
            }

            .shippers-content .benefits-lists {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 600px) {
            .shippers-main {
                margin: 20px auto;
                padding: 0 15px;
            }

            .shippers-sidebar {
                padding: 25px 20px;
                border-radius: 15px;
            }

            .shippers-sidebar .shippers-title {
                font-size: 24px;
                margin-bottom: 20px;
            }

            .shippers-content {
                padding: 25px 20px;
                border-radius: 15px;
            }

            .shippers-content h2 {
                font-size: 24px;
            }

            .shippers-content h3 {
                font-size: 20px;
                margin-top: 30px;
            }

            .shippers-content .benefits-col {
                padding: 20px;
            }
        }

        @media (max-width: 400px) {
            .shippers-main {
                padding: 0 10px;
            }

            .shippers-sidebar,
            .shippers-content {
                padding: 20px 15px;
            }
        }

        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50%;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }