* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: auto;
            overflow-y: scroll;
            scroll-snap-type: y mandatory;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0a0a0a;
            color: white;
            overflow-x: hidden;
        }

        /* Section Base Styles */
        .section {
            width: 100vw;
            height: 100vh;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            position: relative;
            overflow: hidden;
        }

        /* Navigation Container - Floating */
        .nav-container {
            position: fixed;
            top: 30px;
            left: 30px;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(0, 0, 0, 0.449);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 8px;
            padding-right: 20px;
            transition: all 0.3s ease;
        }

        .nav-links {
            display: flex;
            gap: 4px;
        }

        .nav-link {
            padding: 10px 20px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-link.active {
            background: white;
            color: #0a0a0a;
        }

        /* Right Side Buttons */
        .nav-actions {
            position: fixed;
            top: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn-primary {
            background: #ff6b35;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            background: #ff5722;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .btn-round {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(89, 89, 89, 0.523);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .btn-round:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 5%;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            transition: transform 0.1s linear;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
            z-index: 1;
        }

        /* Hero Content - Lower Left Quarter */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 500px;
            margin-top: 15vh;
            transform: translateY(0);
            transition: transform 0.1s linear, opacity 0.1s linear;
        }

        .hero-text {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            font-weight: 400;
        }

        .hero-cta {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn-request {
            background: #ff6b35;
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-request:hover {
            background: #ff5722;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        .btn-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: none;
            color: #0a0a0a;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .btn-arrow:hover {
            transform: scale(1.1);
        }

        /* Animated Ticker */
        .ticker-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            z-index: 3;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
        }

        .ticker-wrapper {
            display: flex;
            width: fit-content;
            animation: ticker 20s linear infinite;
        }

        .ticker-text {
            font-size: 80px;
            font-weight: 900;
            color: white;
            white-space: nowrap;
            padding-right: 100px;
            letter-spacing: -2px;
            text-transform: uppercase;
        }

        @keyframes ticker {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

               /* Why Choose Us Section */
        .why-choose-section {
            background: #ffffff;
            color: #0a0a0a;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 5%;
        }

        .why-choose-container {
            max-width: 1400px;
            width: 100%;
        }

        /* Header Row */
        .why-choose-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 80px;
            gap: 60px;
        }

        .section-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
            color: #0a0a0a;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .orange-dot {
            width: 8px;
            height: 8px;
            background: #ff6b35;
            border-radius: 50%;
            display: inline-block;
        }

        .why-choose-heading {
            font-size: 42px;
            font-weight: 600;
            line-height: 1.2;
            color: #0a0a0a;
            max-width: 700px;
            letter-spacing: -0.5px;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .feature-card {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            border: 1px solid #e0e0e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0a0a0a;
        }

        .feature-title {
            font-size: 18px;
            font-weight: 600;
            color: #0a0a0a;
        }

        .feature-description {
            font-size: 14px;
            line-height: 1.5;
            color: #666;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .why-choose-header {
                flex-direction: column;
                gap: 30px;
            }

            .why-choose-heading {
                font-size: 32px;
                max-width: 100%;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .why-choose-section {
                padding: 60px 20px;
            }

            .why-choose-heading {
                font-size: 24px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .why-choose-header {
                margin-bottom: 50px;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-container {
                top: 20px;
                left: 20px;
                padding: 6px;
                padding-right: 15px;
            }

            .nav-link {
                padding: 8px 12px;
                font-size: 12px;
            }

            .nav-actions {
                top: 20px;
                right: 20px;
            }

            .hero-content {
                margin-top: 20vh;
                padding: 0 20px;
            }

            .hero-text {
                font-size: 14px;
            }

            .ticker-text {
                font-size: 40px;
            }
        }

                /* Services Section */
        .services-section {
            background: #ffffff;
            color: #0a0a0a;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 60px 0;
        }

        .services-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 50px;
        }

        /* Carousel - Left Aligned */
        .carousel-viewport {
            width: 100%;
            overflow: hidden;
            cursor: grab;
            position: relative;
        }

        .carousel-viewport:active {
            cursor: grabbing;
        }

        .carousel-viewport.dragging {
            cursor: grabbing;
        }

        .carousel-track {
            display: flex;
            gap: 30px;
            padding-left: 5%; /* Start from left with padding */
            padding-right: 5%;
            will-change: transform;
        }

        /* Service Slide */
        .service-slide {
            flex: 0 0 400px;
            height: 450px;
            position: relative;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        opacity 0.5s ease;
            transform: scale(0.9) perspective(1000px) rotateY(5deg);
            opacity: 0.7;
        }

        .service-slide.active {
            transform: scale(1) perspective(1000px) rotateY(0deg);
            opacity: 1;
            z-index: 10;
        }

        .service-slide.prev {
            transform: scale(0.9) perspective(1000px) rotateY(5deg);
            opacity: 0.8;
        }

        .service-slide.next {
            transform: scale(0.9) perspective(1000px) rotateY(-5deg);
            opacity: 0.8;
        }

        .slide-card {
            width: 100%;
            height: 100%;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            background: #0a1628;
        }

        .slide-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 50, 100, 0.2) 0%, rgba(0, 30, 60, 0.7) 100%);
        }

        .slide-content {
            position: absolute;
            bottom: 40px;
            left: 40px;
            color: white;
            z-index: 2;
        }

        .slide-number {
            font-size: 48px;
            font-weight: 300;
            opacity: 0.8;
            display: block;
            margin-bottom: 10px;
            font-family: 'Segoe UI', sans-serif;
        }

        .slide-title {
            font-size: 28px;
            font-weight: 600;
            margin: 0;
            letter-spacing: -0.5px;
        }

        /* Description Area */
        .service-description {
            text-align: center;
            max-width: 600px;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .service-description.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .description-text {
            font-size: 18px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 30px;
        }

        .description-text .highlight {
            color: #0a0a0a;
            font-weight: 600;
        }

        .btn-learn-more {
            background: #ff6b35;
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-learn-more:hover {
            background: #ff5722;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        /* Hide scrollbar */
        .carousel-viewport::-webkit-scrollbar {
            display: none;
        }

        .carousel-viewport {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .service-slide {
                flex: 0 0 350px;
                height: 400px;
            }

            .slide-number {
                font-size: 40px;
            }

            .slide-title {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 40px 0;
            }

            .service-slide {
                flex: 0 0 300px;
                height: 350px;
            }

            .slide-content {
                bottom: 30px;
                left: 30px;
            }

            .slide-number {
                font-size: 32px;
            }

            .slide-title {
                font-size: 20px;
            }

            .description-text {
                font-size: 16px;
            }

            .carousel-track {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        /* Process Section */
        .process-section {
            background: #0f1b2e;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .process-container {
            width: 100%;
            max-width: 1200px;
            padding: 80px 5%;
            position: relative;
            z-index: 1;
        }

        /* Background World Maps */
        .world-map {
            position: absolute;
            width: 400px;
            height: 400px;
            opacity: 0.6;
            pointer-events: none;
        }

        .world-map.left {
            top: 10%;
            left: -100px;
            transform: rotate(-15deg);
        }

        .world-map.right {
            bottom: 10%;
            right: -100px;
            transform: rotate(15deg);
        }

        .world-map svg {
            width: 100%;
            height: 100%;
        }

        /* Header */
        .process-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .process-title {
            font-size: 42px;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .process-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-weight: 400;
        }

        /* Timeline Container */
        .timeline-container {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Horizontal Connecting Line */
        .timeline-line {
            position: absolute;
            top: 60px;
            left: 15%;
            right: 15%;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 0;
        }

        .line-progress {
            height: 100%;
            background: linear-gradient(to right, #ff6b35, #ff8f5a);
            width: 0%;
            transition: width 1s ease;
        }

        .line-progress.animate {
            width: 100%;
        }

        /* Steps Wrapper */
        .steps-wrapper {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        /* Individual Step */
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            max-width: 280px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .step.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Step Connector (Vertical Line) */
        .step-connector {
            height: 60px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            margin-bottom: 20px;
        }

        .vertical-line {
            width: 2px;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            transition: height 0.8s ease;
        }

        .step.visible .vertical-line {
            height: 40px;
        }

        /* Step 2 has longer connector */
        .step[data-step="2"] .step-connector {
            height: 100px;
        }

        .step[data-step="2"].visible .vertical-line {
            height: 80px;
        }

        /* Step Circle */
        .step-circle {
            width: 60px;
            height: 60px;
            background: #ff6b35;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 600;
            color: white;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            transform: scale(0);
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .step.visible .step-circle {
            transform: scale(1);
        }

        /* Step Content */
        .step-content {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.3s;
        }

        .step.visible .step-content {
            opacity: 1;
            transform: translateY(0);
        }

        .step-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: white;
        }

        .step-description {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
            font-weight: 400;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .process-title {
                font-size: 36px;
            }

            .world-map {
                width: 300px;
                height: 300px;
            }

            .world-map.left {
                left: -150px;
            }

            .world-map.right {
                right: -150px;
            }
        }

        @media (max-width: 768px) {
            .process-container {
                padding: 60px 20px;
            }

            .process-title {
                font-size: 28px;
            }

            .process-subtitle {
                font-size: 14px;
            }

            .process-header {
                margin-bottom: 60px;
            }

            .timeline-line {
                display: none;
            }

            .steps-wrapper {
                flex-direction: column;
                gap: 50px;
                align-items: center;
            }

            .step {
                max-width: 100%;
            }

            .step-connector {
                height: 40px !important;
            }

            .step.visible .vertical-line {
                height: 30px !important;
            }

            .world-map {
                width: 200px;
                height: 200px;
                opacity: 0.4;
            }
        }        

                /* End-to-End Logistics Services Section */
        .logistics-services-section {
            background: #ffffff;
            color: #0a0a0a;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 5%;
        }

        .logistics-container {
            max-width: 1400px;
            width: 100%;
        }

        /* Header */
        .logistics-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 80px;
            gap: 60px;
        }

        .section-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
            color: #0a0a0a;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .orange-dot {
            width: 8px;
            height: 8px;
            background: #ff6b35;
            border-radius: 50%;
            display: inline-block;
        }

        .logistics-heading {
            font-size: 42px;
            font-weight: 600;
            line-height: 1.2;
            color: #0a0a0a;
            max-width: 700px;
            letter-spacing: -0.5px;
        }

        /* Services Grid - 4 Columns */
        .services-grid-four {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
        }

        .services-grid-four::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, #e0e0e0, transparent);
        }

        .service-item {
            padding: 40px 0;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .service-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -20px;
            top: 20%;
            height: 60%;
            width: 1px;
            background: #e0e0e0;
        }

        .service-icon {
            width: 50px;
            height: 50px;
            border: 1px solid #e0e0e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0a0a0a;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .service-item:hover .service-icon {
            border-color: #ff6b35;
            color: #ff6b35;
            transform: scale(1.1);
        }

        .service-name {
            font-size: 18px;
            font-weight: 600;
            color: #0a0a0a;
            margin-bottom: 12px;
        }

        .service-desc {
            font-size: 14px;
            line-height: 1.5;
            color: #666;
        }

        /* Track Shipment Section */
        .track-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .track-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .track-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .track-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 20, 40, 0.4);
        }

        .track-container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 600px;
            padding: 0 20px;
        }

        .track-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .track-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .track-title {
            font-size: 32px;
            font-weight: 600;
            color: #0a0a0a;
            margin-bottom: 15px;
        }

        .track-subtitle {
            font-size: 15px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 35px;
        }

        .track-form {
            display: flex;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto;
        }

        .track-input {
            flex: 1;
            padding: 16px 24px;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
        }

        .track-input:focus {
            border-color: #ff6b35;
        }

        .btn-track {
            background: #ff6b35;
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-track:hover {
            background: #ff5722;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .logistics-header {
                flex-direction: column;
                gap: 30px;
            }

            .logistics-heading {
                font-size: 32px;
                max-width: 100%;
            }

            .services-grid-four {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .service-item:not(:last-child)::after {
                display: none;
            }

            .service-item:nth-child(2)::after {
                display: none;
            }

            .track-title {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .logistics-services-section {
                padding: 60px 20px;
            }

            .logistics-heading {
                font-size: 24px;
            }

            .services-grid-four {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .service-item {
                padding: 30px 0;
                border-bottom: 1px solid #e0e0e0;
            }

            .service-item:last-child {
                border-bottom: none;
            }

            .track-card {
                padding: 40px 24px;
            }

            .track-form {
                flex-direction: column;
            }

            .track-title {
                font-size: 24px;
            }

            .btn-track {
                width: 100%;
            }
        }

                /* Testimonials Section */
        .testimonials-section {
            background: #ffffff;
            color: #0a0a0a;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 5%;
        }

        .testimonials-container {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        /* Left Side */
        .testimonials-left {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .testimonials-title {
            font-size: 48px;
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -1px;
            color: #0a0a0a;
        }

        .testimonials-nav {
            display: flex;
            gap: 12px;
            margin: 20px 0;
        }

        .nav-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid #e0e0e0;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #0a0a0a;
        }

        .nav-arrow:hover:not(:disabled) {
            background: #ff6b35;
            border-color: #ff6b35;
            color: white;
            transform: scale(1.1);
        }

        .nav-arrow:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .nav-arrow.next {
            background: #ff6b35;
            border-color: #ff6b35;
            color: white;
        }

        .nav-arrow.next:hover:not(:disabled) {
            background: #ff5722;
            transform: scale(1.1);
        }

        .testimonials-intro {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            max-width: 350px;
        }

        /* Right Side - Slider */
        .testimonials-right {
            position: relative;
            height: 500px;
        }

        .testimonial-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            pointer-events: none;
        }

        .testimonial-slide.active {
            opacity: 1;
            transform: translateX(0);
            pointer-events: all;
        }

        .testimonial-slide.prev {
            transform: translateX(-50px);
        }

        .testimonial-quote {
            margin-bottom: 40px;
            max-width: 450px;
            margin-left: auto;
            text-align: right;
        }

        .testimonial-quote p {
            font-size: 18px;
            line-height: 1.6;
            color: #666;
            font-style: italic;
        }

        .testimonial-card {
            position: relative;
            width: 100%;
            max-width: 400px;
            margin-left: auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .testimonial-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
        }

        .testimonial-info {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: white;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .testimonial-author h4 {
            font-size: 18px;
            font-weight: 600;
            color: #0a0a0a;
            margin-bottom: 4px;
        }

        .testimonial-author span {
            font-size: 14px;
            color: #666;
        }

        .testimonial-rating {
            display: flex;
            gap: 4px;
            color: #0a0a0a;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .testimonials-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .testimonials-title {
                font-size: 36px;
            }

            .testimonials-right {
                height: 450px;
            }

            .testimonial-quote {
                text-align: left;
                margin-left: 0;
                max-width: 100%;
            }

            .testimonial-card {
                margin-left: 0;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 60px 20px;
            }

            .testimonials-title {
                font-size: 28px;
            }

            .testimonials-right {
                height: 400px;
            }

            .testimonial-image {
                height: 280px;
            }

            .testimonial-info {
                padding: 15px;
                bottom: 15px;
                left: 15px;
                right: 15px;
            }

            .testimonial-author h4 {
                font-size: 16px;
            }

            .testimonial-author span {
                font-size: 12px;
            }
        }   

                /* CTA & Footer Combined Section */
        .cta-footer-section {
    background: #ffffff;
    min-height: 100vh;
    height: auto; /* Allow it to grow */
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
}

        .cta-footer-container {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* CTA Part */
        .cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
    padding: 60px 5% 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

        .cta-image {
            border-radius: 20px;
            overflow: hidden;
            height: 100%;
        }

        .cta-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cta-content {
            background: #0f1b2e;
            border-radius: 20px;
            padding: 50px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cta-bg-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.5;
        }

        .cta-title {
            font-size: 32px;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .cta-subtitle {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 400px;
            position: relative;
            z-index: 1;
        }

        .cta-actions {
            display: flex;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .btn-cta {
            background: #ff6b35;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            background: #ff5722;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        .btn-cta-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: none;
            color: #0a0a0a;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .btn-cta-arrow:hover {
            transform: scale(1.1);
        }

        .cta-logo {
            position: absolute;
            bottom: 30px;
            right: 40px;
            font-size: 20px;
            font-weight: 700;
            color: #ff6b35;
            letter-spacing: 2px;
            z-index: 1;
        }

        /* Footer Part */
        .footer-wrapper {
            flex: 1;
            padding: 60px 5% 30px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto 40px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .footer-brand-name {
            font-size: 18px;
            font-weight: 700;
            color: #0a0a0a;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .footer-brand-desc {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            max-width: 280px;
        }

        .footer-heading {
            font-size: 15px;
            font-weight: 600;
            color: #0a0a0a;
            margin-bottom: 18px;
        }

        .footer-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-list a {
            text-decoration: none;
            color: #666;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-list a:hover {
            color: #ff6b35;
        }

        .btn-subscribe {
            background: #ff6b35;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn-subscribe:hover {
            background: #ff5722;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        /* Watermark */
        .footer-watermark {
    font-size: 150px;
    font-weight: 900;
    color: #f5f5f5;
    position: absolute;
    bottom: 80px; /* Increased from 60px to move it up */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -8px;
    line-height: 1;
}

        /* Copyright */
        .footer-copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #e0e0e0;
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .footer-copyright p {
            font-size: 14px;
            color: #666;
        }

        .footer-copyright a {
            color: #ff6b35;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .footer-copyright a:hover {
            color: #ff5722;
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .cta-wrapper {
                grid-template-columns: 1fr;
                height: auto;
                min-height: auto;
                padding: 60px 5% 40px;
            }

            .cta-image {
                height: 250px;
            }

            .cta-content {
                padding: 40px;
            }

            .cta-title {
                font-size: 28px;
            }

            .cta-logo {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 20px;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-watermark {
                font-size: 80px;
                bottom: 80px;
            }
        }

        @media (max-width: 768px) {
            .cta-wrapper {
                padding: 40px 20px;
            }

            .cta-content {
                padding: 30px;
            }

            .cta-title {
                font-size: 24px;
            }

            .footer-wrapper {
                padding: 40px 20px 20px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-watermark {
                font-size: 50px;
                letter-spacing: -4px;
                bottom: 100px;
            }

            .footer-copyright p {
                font-size: 12px;
            }
        }

        /* ============================================
   MOBILE HEADER & HAMBURGER MENU
   Only visible on mobile devices
   ============================================ */

/* Hide mobile elements on desktop by default */
.mobile-header,
.mobile-menu {
    display: none;
}

/* ============================================
   MOBILE BREAKPOINT (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    
    /* Hide desktop navigation on mobile */
    .nav-container,
    .nav-actions {
        display: none !important;
    }
    
    /* Show mobile header */
    .mobile-header {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: rgba(15, 27, 46, 0.515);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1000;
        padding: 0 20px;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Mobile Logo */
    .mobile-logo {
        display: flex;
        align-items: center;
        height: 40px;
    }
    
    .mobile-logo img {
        height: 100%;
        width: auto;
        object-fit: contain;
    }
    
    /* Hamburger Button */
    .hamburger-btn {
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px;
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    .hamburger-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .hamburger-btn.active {
        background: rgba(255, 107, 53, 0.2);
    }
    
    .hamburger-line {
        width: 24px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .hamburger-btn.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-btn.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0f1b2e;
        z-index: 1001;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 20px;
    }
    
    .mobile-menu.active {
        transform: translateX(0);
    }
    
    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 30px;
    }
    
    .mobile-menu-title {
        font-size: 24px;
        font-weight: 600;
        color: white;
    }
    
    .mobile-menu-close {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 107, 53, 0.3);
        transform: rotate(90deg);
    }
    
    /* Mobile Navigation Links */
    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex: 1;
    }
    
    .mobile-nav-link {
        padding: 18px 20px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        border-radius: 12px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .mobile-nav-link::after {
        content: '→';
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        background: rgba(255, 107, 53, 0.15);
        color: #ff6b35;
    }
    
    .mobile-nav-link:hover::after,
    .mobile-nav-link.active::after {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Mobile Menu Footer */
    .mobile-menu-footer {
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .btn-mobile-quote {
        display: block;
        width: 100%;
        padding: 18px;
        background: #ff6b35;
        color: white;
        text-align: center;
        text-decoration: none;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-mobile-quote:hover {
        background: #ff5722;
        transform: translateY(-2px);
    }
    
    /* Adjust hero section for mobile header */
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-content {
        margin-top: 10vh;
    }
}

/* ============================================
   MOBILE FIXES FOR CUT-OFF SECTIONS
   ============================================ */

@media (max-width: 768px) {
    
    /* Disable scroll snap on mobile to allow natural scrolling */
    html {
        scroll-snap-type: none;
    }
    
    /* Allow sections to grow naturally on mobile */
    .section {
        height: auto;
        min-height: 100vh;
        scroll-snap-align: none;
        padding: 100px 5% 60px; /* Extra top padding for fixed header */
    }
    
    /* Why Choose Us Section - Mobile Fix */
    .why-choose-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 60px;
    }
    
    .why-choose-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .why-choose-heading {
        font-size: 24px;
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Process Section - Mobile Fix */
    .process-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 60px;
    }
    
    .process-container {
        padding: 0;
    }
    
    .process-header {
        margin-bottom: 40px;
    }
    
    .process-title {
        font-size: 24px;
    }
    
    .process-subtitle {
        font-size: 14px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .steps-wrapper {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .step {
        max-width: 100%;
    }
    
    .step-connector {
        height: 40px !important;
    }
    
    .step.visible .vertical-line {
        height: 30px !important;
    }
    
    /* End-to-End Logistics Services - Mobile Fix */
    .logistics-services-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 60px;
    }
    
    .logistics-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .logistics-heading {
        font-size: 24px;
        max-width: 100%;
    }
    
    .services-grid-four {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .service-item {
        padding: 30px 0;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .service-item:last-child {
        border-bottom: none;
    }
    
    .service-item:not(:last-child)::after {
        display: none;
    }
    
    /* CTA Footer section fix */
    .cta-footer-section {
        height: auto;
        min-height: 100vh;
    }
    
    .cta-wrapper {
        padding: 40px 20px;
    }
    
    .cta-image {
        height: 200px;
    }
    
    .footer-wrapper {
        padding: 40px 20px 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-watermark {
        font-size: 60px;
        bottom: 60px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .why-choose-heading,
    .logistics-heading,
    .process-title {
        font-size: 22px;
    }
    
    .feature-title,
    .service-name,
    .step-title {
        font-size: 16px;
    }
    
    .feature-description,
    .service-desc,
    .step-description {
        font-size: 13px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-watermark {
        font-size: 40px;
        letter-spacing: -2px;
    }
}

/* ADD these styles to your CSS file */

/* Company Description Box Styles */
.company-description-box {
    max-width: 900px;
    margin: 80px auto 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 1px solid #e8e8e8;
    border-radius: 24px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 10px 20px -5px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Subtle pattern overlay */
.company-description-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.description-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.description-lead {
    font-size: 17px;
    line-height: 1.8;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 30px;
}

.description-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #ff6b35, transparent);
}

.divider-dot {
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
}

.description-body {
    font-size: 15px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.description-closing {
    font-size: 15px;
    line-height: 1.9;
    color: #4a4a4a;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.description-closing::before {
    content: '"';
    position: absolute;
    left: -20px;
    top: -10px;
    font-size: 40px;
    color: #ff6b35;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Corner accents */
.corner-accent {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: #ff6b35;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.company-description-box:hover .corner-accent {
    opacity: 0.6;
}

.corner-accent.top-left {
    top: 20px;
    left: 20px;
    border-top: 2px solid;
    border-left: 2px solid;
    border-radius: 8px 0 0 0;
}

.corner-accent.top-right {
    top: 20px;
    right: 20px;
    border-top: 2px solid;
    border-right: 2px solid;
    border-radius: 0 8px 0 0;
}

.corner-accent.bottom-left {
    bottom: 20px;
    left: 20px;
    border-bottom: 2px solid;
    border-left: 2px solid;
    border-radius: 0 0 0 8px;
}

.corner-accent.bottom-right {
    bottom: 20px;
    right: 20px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    border-radius: 0 0 8px 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .company-description-box {
        margin-top: 60px;
        padding: 40px 45px;
    }
    
    .description-lead {
        font-size: 16px;
    }
    
    .description-body,
    .description-closing {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .company-description-box {
        margin-top: 50px;
        padding: 35px 30px;
        border-radius: 20px;
    }
    
    .description-lead {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .description-divider {
        margin: 25px 0;
    }
    
    .divider-line {
        width: 40px;
    }
    
    .description-body,
    .description-closing {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .corner-accent {
        width: 20px;
        height: 20px;
    }
    
    .corner-accent.top-left { top: 15px; left: 15px; }
    .corner-accent.top-right { top: 15px; right: 15px; }
    .corner-accent.bottom-left { bottom: 15px; left: 15px; }
    .corner-accent.bottom-right { bottom: 15px; right: 15px; }
}

@media (max-width: 480px) {
    .company-description-box {
        padding: 30px 25px;
        border-radius: 16px;
    }
    
    .description-lead {
        font-size: 14px;
    }
    
    .description-body,
    .description-closing {
        font-size: 13px;
    }
}
