    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            background: rgba(27, 48, 64, 0.98);
            padding: 1.2rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(15px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 3rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 70px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        .nav-links a:hover {
            color: #FF8C42;
        }

        .nav-cta {
            background: transparent;
            border: 2px solid #FF8C42;
            color: #FF8C42;
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .nav-cta:hover {
            background: #d49065;
            color: #fff;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(27, 48, 64, 0.6), rgba(27, 48, 64, 0.4)), 
                        url('../img/truck-logistics-operation-dusk.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 14rem 3rem 10rem;
            margin-top: 75px;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 10px;
            background: linear-gradient(to bottom, transparent, #fff);
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -1px;
            max-width: 900px;
        }

        .hero .tagline {
            font-size: 1.6rem;
            margin-bottom: 2rem;
            color: #fff;
            font-weight: 400;
            opacity: 0.95;
            max-width: 750px;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #FF8C42;
            color: #fff;
            padding: 1.1rem 2.8rem;
            text-decoration: none;
            border-radius: 35px;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
            font-size: 1.05rem;
        }

        .btn-primary:hover {
            background: #ff7a29;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 140, 66, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            padding: 1.1rem 2.8rem;
            text-decoration: none;
            border-radius: 35px;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.4);
            transition: all 0.3s;
            font-size: 1.05rem;
        }

        .btn-secondary:hover {
            border-color: #FF8C42;
            background: rgba(255, 140, 66, 0.1);
        }

        @media (max-width: 768px) {
            .hero-buttons {
                justify-content: center;
                text-align: center;
            }

            .btn-primary,
            .btn-secondary {
                justify-content: center; /* centers the text and icon */
                width: 100%; /* optional: make buttons full width on small screens */
                text-align: center;
            }
        }


        /* Trusted By Section */
        .trusted-by {
            text-align: center;
            padding: 3rem 3rem 4rem;
            background: white;
        }

        .trusted-by-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .trusted-by h3 {
            font-size: 0.9rem;
            color: #999;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .partner-logos {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .partner-logo {
            color: #ccc;
            font-size: 1.3rem;
            font-weight: 700;
            opacity: 0.6;
            transition: all 0.3s;
        }

        .partner-logo:hover {
            opacity: 1;
            color: #1B3040;
        }

        /* Trust Building Section */
        .trust-section {
            background: #f8f9fb;
            padding: 6rem 3rem;
        }

        .trust-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .trust-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .trust-header h2 {
            font-size: 3rem;
            color: #1B3040;
            margin-bottom: 1rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2.5rem;
        }

        .trust-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            border-top: 4px solid transparent;
        }

        .trust-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
            border-top-color: #FF8C42;
        }

        .trust-icon {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, #1B3040 0%, #2d4a5a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.8rem;
            font-size: 2rem;
            box-shadow: 0 4px 15px rgba(27, 48, 64, 0.2);
        }

        .trust-card h3 {
            color: #1B3040;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .trust-card p {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }

        /* What We Trade Section */
        .services {
            padding: 6rem 3rem;
            background: white;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-header {
            margin-bottom: 4rem;
        }

        .services h2 {
            font-size: 3rem;
            color: #1B3040;
            margin-bottom: 1rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .services-intro {
            color: #666;
            font-size: 1.15rem;
            max-width: 900px;
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        .service-image {
            height: 240px;
            background: linear-gradient(135deg, #1B3040 0%, #2d4a5a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            position: relative;
            overflow: hidden;
        }

        .service-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 140, 66, 0.15) 0%, transparent 100%);
        }

        .service-content {
            padding: 2.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-icon-small {
            width: 55px;
            height: 55px;
            background: #FF8C42;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.7rem;
            box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
        }

        .service-card h3 {
            color: #1B3040;
            margin-bottom: 1.2rem;
            font-size: 1.6rem;
            font-weight: 700;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
            flex: 1;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        /* About Section */
        .about {
            padding: 6rem 3rem;
            background: #f8f9fb;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 3rem;
            color: #1B3040;
            margin-bottom: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: #555;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .about-text strong {
            color: #1B3040;
            font-weight: 600;
        }

        .vision-mission-box {
            background: white;
            padding: 3rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .vm-item {
            margin-bottom: 2.5rem;
        }

        .vm-item:last-child {
            margin-bottom: 0;
        }

        .vm-item h4 {
            color: #FF8C42;
            margin-bottom: 0.8rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
        }

        .vm-item p {
            color: #555;
            line-height: 1.8;
            font-size: 1rem;
        }

        /* Values Section */
        .values {
            padding: 6rem 3rem;
            background: white;
        }

        .values-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .values h2 {
            text-align: center;
            font-size: 3rem;
            color: #1B3040;
            margin-bottom: 5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2.5rem;
        }

        .value-item {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: #f8f9fb;
            border-radius: 16px;
            transition: all 0.4s ease;
        }

        .value-item:hover {
            background: white;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            transform: translateY(-8px);
        }

        .value-icon {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, #1B3040 0%, #2d4a5a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.8rem;
            font-size: 2.2rem;
            color: white;
            box-shadow: 0 4px 15px rgba(27, 48, 64, 0.2);
        }

        .value-item h3 {
            color: #1B3040;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .value-item p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Why Choose Section */
        .why-choose {
            background: linear-gradient(135deg, #1B3040 0%, #2d4a5a 100%);
            color: white;
            padding: 6rem 3rem;
            position: relative;
            overflow: hidden;
        }

        .why-choose::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
            top: -250px;
            right: -250px;
            border-radius: 50%;
        }

        .why-choose-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .why-choose h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .why-item {
            background: rgba(255, 255, 255, 0.08);
            padding: 2.5rem;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }

        .why-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-8px);
            border-color: rgba(255, 140, 66, 0.5);
        }

        .why-item h3 {
            color: #FF8C42;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .why-item p {
            line-height: 1.8;
            opacity: 0.95;
            font-size: 1rem;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 3rem;
            background: white;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact h2 {
            text-align: center;
            font-size: 3rem;
            color: #1B3040;
            margin-bottom: 5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .contact-info {
            background: #f8f9fb;
            padding: 3rem;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .contact-info h3 {
            color: #1B3040;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .contact-item {
            margin-bottom: 2rem;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-item h4 {
            color: #1B3040;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .contact-item p,
        .contact-item a {
            color: #666;
            margin-left: 2rem;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: #FF8C42;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #FF8C42 0%, #ff7a29 100%);
            padding: 5rem 3rem;
            text-align: center;
            color: white;
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        .btn-cta-white {
            background: white;
            color: #FF8C42;
            padding: 1.2rem 3rem;
            text-decoration: none;
            border-radius: 35px;
            font-weight: 700;
            transition: all 0.3s;
            display: inline-block;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .btn-cta-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            background: #1B3040;
            color: white;
            padding: 4rem 3rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: #FF8C42;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s;
            line-height: 1.7;
        }

        .footer-section a:hover {
            color: #FF8C42;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-logo {
            height: 60px;
            margin-bottom: 1.5rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 2rem;
            }

            .hero {
                padding: 10rem 2rem 7rem;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero .tagline {
                font-size: 1.2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .trust-header h2,
            .services h2,
            .values h2,
            .why-choose h2,
            .contact h2 {
                font-size: 2.2rem;
            }

            .services-grid,
            .trust-grid,
            .values-grid,
            .why-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }