:root {
            --primary: #1A2B4D;
            --secondary: #FF6B00;
            --accent: #00A0E3;
            --light: #F5F7FA;
            --dark: #0D1525;
            --gray: #6C757D;
            --light-gray: #E9ECEF;
            --white: #FFFFFF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        img {
            max-width: 100%;
            height: auto;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 16px;
        }
        
        .btn-primary {
            background-color: var(--secondary);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: #E05A00;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        /* Header & Navigation */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-icon {
            font-size: 28px;
            color: var(--accent);
        }
        
        .logo-text h1 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 0;
        }
        
        .logo-text p {
            font-size: 12px;
            color: var(--gray);
            margin-top: -3px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        nav ul li a:hover, nav ul li a.active {
            color: var(--secondary);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(26, 43, 77, 0.9) 0%, rgba(26, 43, 77, 0.7) 100%), url('images/Global Logistics Solutions.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 100px 0;
        }
        
        .hero-content {
            max-width: 700px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray);
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            padding: 30px;
            border-top: 4px solid var(--accent);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 40px;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .about-text p {
            margin-bottom: 30px;
            color: var(--gray);
            font-size: 17px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .value-card {
            padding: 25px;
            background-color: var(--light);
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
        }
        
        .value-card h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background-color: var(--primary);
            color: var(--white);
        }
        
        .testimonials .section-title h2 {
            color: var(--white);
        }
        
        .testimonials .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .review-card .testimonial-author > div:not(.review-photo-cell):not(.review-avatar-icon) {
            min-width: 0;
            flex: 1;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 20px;
        }
        
        /* Location Section */
        .location {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .location-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .location-info {
            padding: 30px;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .location-info h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .contact-details {
            margin-top: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--accent);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--white);
            padding: 70px 0 30px;
            position: relative;
            border-radius: 20px 20px 0 0;
            overflow: hidden;
        }

        footer::before {
            content: 'UPSL';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            font-size: 200px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.03);
            z-index: 0;
            line-height: 1;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: 700;
        }

        .footer-column p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            line-height: 1.6;
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 15px;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
        }

        .footer-contact-item i {
            color: var(--secondary);
            margin-right: 12px;
            margin-top: 4px;
            font-size: 16px;
        }

        .footer-newsletter {
            margin-top: 20px;
        }

        .footer-email-input {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .footer-email-input input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 15px;
            font-family: 'Inter', sans-serif;
        }

        .footer-email-input input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-email-input button {
            width: 45px;
            height: 45px;
            border: none;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .footer-email-input button:hover {
            background-color: rgba(255, 255, 255, 0.25);
        }

        .footer-email-input button i {
            font-size: 16px;
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            footer::before {
                font-size: 150px;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            footer::before {
                font-size: 100px;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 40px;
            }
            
            .about-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s;
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            
            nav ul li {
                margin: 0 0 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .service-card, .testimonial-card, .location-info {
                padding: 20px;
            }
        }
        
        /* Multi-page site: each HTML file has one visible <main> */
        
        /* About Page Specific Styles */
        .about-page .hero {
            background: linear-gradient(135deg, rgba(26, 43, 77, 0.9) 0%, rgba(26, 43, 77, 0.7) 100%), url('images/Global Logistics Solutions.jpg');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
        }
        
        .why-choose {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .benefit-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--secondary);
        }
        
        .benefit-card h4 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .cta-section {
            padding: 80px 0;
            text-align: center;
            background-color: var(--primary);
            color: var(--white);
        }
        
        .cta-section h2 {
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        /* Home Page Specific Styles */
        .hero-label {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .hero h1 span.highlight {
            color: var(--secondary);
        }

        .expertise-section {
            padding: 100px 0;
            background-color: var(--white);
        }

        .expertise-label {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .expertise-title {
            display: flex;
            align-items: center;
            gap: 15px;
            justify-content: center;
            margin-bottom: 15px;
        }

        .expertise-title h2 {
            font-size: 48px;
            color: var(--primary);
            margin: 0;
        }

        .expertise-icon {
            font-size: 48px;
            color: var(--accent);
        }

        .service-image-card-home {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .service-image-card-home:hover {
            transform: translateY(-5px);
        }

        .service-image-card-home img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .service-image-card-home .card-content {
            padding: 25px;
            background-color: var(--white);
        }

        .service-image-card-home h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .service-image-card-home p {
            color: var(--gray);
            font-size: 15px;
            margin-bottom: 15px;
        }

        .service-image-card-home .card-arrow {
            position: absolute;
            bottom: 25px;
            right: 25px;
            width: 40px;
            height: 40px;
            background-color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
        }

        .about-testimonial-section {
            padding: 100px 0;
            background-color: var(--light);
        }

        .about-testimonial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-section-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .about-section-home h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .about-section-home p {
            color: var(--gray);
            font-size: 17px;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .testimonial-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 15px;
        }

        .testimonial-card-home {
            background-color: #2d5016;
            padding: 40px;
            border-radius: 8px;
            color: var(--white);
        }

        .testimonial-card-home .quote {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author-home {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-circle {
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            color: var(--white);
        }

        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 14px;
            opacity: 0.9;
            margin: 0;
        }

        .location-hero {
            background: linear-gradient(135deg, rgba(26, 43, 77, 0.85) 0%, rgba(26, 43, 77, 0.75) 100%), url('images/VISIT OUR OFFICE IN GUJARAT.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: var(--white);
        }

        .location-hero h2 {
            font-size: 42px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .location-hero p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .client-success-section {
            padding: 100px 0;
            background-color: var(--white);
        }

        .client-success-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .client-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 8px;
        }

        .success-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray);
            margin-bottom: 15px;
        }

        .success-section h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 25px;
        }

        .success-quote {
            font-size: 18px;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 25px;
            font-style: italic;
        }

        .success-author {
            font-size: 16px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 30px;
        }

        .testimonial-nav {
            display: flex;
            gap: 15px;
        }

        .nav-arrow {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--light);
            border: 2px solid var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--primary);
        }

        .nav-arrow:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: var(--white);
        }

        @media (max-width: 992px) {
            .about-testimonial-grid,
            .client-success-grid {
                grid-template-columns: 1fr;
            }

            .expertise-title h2 {
                font-size: 36px;
            }
        }

        /* Customer review with photo */
        .review-photo-cell {
            width: 56px;
            height: 56px;
            flex-shrink: 0;
            position: relative;
        }
        .review-author-photo {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary);
        }
        .review-author-photo-wrap {
            position: absolute;
            left: 0;
            top: 0;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--secondary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }
        .review-author-name { font-weight: 700; color: inherit; margin-bottom: 2px; }
        .review-author-designation { font-size: 14px; opacity: 0.9; margin: 0; }
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.06);
            border-left: 4px solid var(--secondary);
            min-width: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }
        .review-card .testimonial-text { color: var(--gray); margin-bottom: 20px; }
        .review-card .testimonial-author .review-author-name { color: var(--primary); }
        .review-card .testimonial-author .review-author-designation { color: var(--gray); }
        .review-avatar-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(145deg, #E8EEF5 0%, #F5F7FA 100%);
            border: 3px solid var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 22px;
            flex-shrink: 0;
        }
        .review-author-photo-wrap.review-avatar-fallback {
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            background: linear-gradient(145deg, #E8EEF5 0%, #F5F7FA 100%);
        }
        /* Customer Reviews carousel — 2 per slide */
        .reviews-carousel-container {
            margin-top: 40px;
            max-width: 100%;
        }
        .reviews-carousel-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .reviews-carousel-viewport {
            flex: 1;
            overflow: hidden;
            min-width: 0;
            position: relative;
            isolation: isolate;
        }
        .reviews-carousel-track {
            display: flex;
            transition: transform 0.45s ease;
            will-change: transform;
        }
        .reviews-carousel-slide {
            display: flex;
            gap: 30px;
            flex: 0 0 auto;
            flex-shrink: 0;
            box-sizing: border-box;
            overflow: hidden;
        }
        .reviews-carousel-slide .review-card {
            flex: 1 1 calc(50% - 15px);
            min-width: 0;
        }
        .reviews-carousel-slide--single {
            justify-content: center;
        }
        .reviews-carousel-slide--single .review-card {
            flex: 0 1 calc(50% - 15px);
            max-width: 600px;
        }
        .reviews-nav {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--light-gray);
            background: var(--white);
            color: var(--primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
        }
        .reviews-nav:hover:not(:disabled) {
            background: var(--secondary);
            border-color: var(--secondary);
            color: var(--white);
        }
        .reviews-nav:disabled {
            opacity: 0.35;
            cursor: not-allowed;
        }
        .reviews-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 28px;
        }
        .reviews-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: none;
            background: var(--light-gray);
            cursor: pointer;
            padding: 0;
            transition: background 0.2s, transform 0.2s;
        }
        .reviews-dot.active {
            background: var(--secondary);
            transform: scale(1.15);
        }
        .reviews-carousel-slide--one .review-card {
            flex: 1 1 100%;
            max-width: 100%;
        }
        @media (max-width: 991px) {
            .reviews-carousel-slide {
                flex-direction: column;
            }
            .reviews-carousel-slide .review-card {
                flex: 1 1 100%;
            }
            .reviews-carousel-wrapper {
                position: relative;
                display: block;
                gap: 0;
            }
            .reviews-carousel-viewport {
                width: 100%;
            }
            .reviews-nav {
                width: 42px;
                height: 42px;
                font-size: 16px;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 2;
            }
            .reviews-prev {
                left: -6px;
            }
            .reviews-next {
                right: -6px;
            }
            .review-card {
                padding: 24px;
            }
        }

        /* Founder profile (About Us) */
        .founder-section { padding: 80px 0; background-color: var(--white); }
        .founder-grid {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 50px;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
        }
        .founder-photo-wrap { position: relative; width: 100%; max-width: 280px; }
        .founder-photo {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .founder-photo-placeholder {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            aspect-ratio: 1;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 42px;
            font-weight: 700;
        }
        .founder-info h3 { font-size: 28px; color: var(--primary); margin-bottom: 8px; }
        .founder-info .founder-title { color: var(--secondary); font-size: 16px; margin-bottom: 20px; }
        .founder-info p { color: var(--gray); line-height: 1.7; }
        .founder-exp-title {
            margin: 18px 0 10px;
            color: var(--primary);
            font-size: 20px;
        }
        .founder-exp-block {
            margin-top: 14px;
        }
        .founder-exp-block h4 {
            color: var(--primary);
            font-size: 17px;
            margin-bottom: 8px;
        }
        .founder-exp-block ul {
            margin: 0;
            padding-left: 20px;
            color: var(--gray);
        }
        .founder-exp-block li {
            margin-bottom: 8px;
            line-height: 1.7;
        }

        @media (max-width: 991px) {
            .founder-section {
                padding: 48px 0 56px;
            }
            .founder-grid {
                grid-template-columns: 1fr;
                gap: 28px;
                align-items: stretch;
                max-width: 100%;
            }
            .founder-photo-wrap {
                margin: 0 auto;
                max-width: min(280px, 88vw);
            }
            .founder-info {
                text-align: left;
                max-width: 560px;
                margin: 0 auto;
                width: 100%;
            }
            .founder-info h3 {
                font-size: clamp(22px, 5.5vw, 26px);
                text-align: left;
            }
            .founder-info .founder-title {
                text-align: left;
                font-size: 15px;
                line-height: 1.45;
            }
            .founder-info p {
                text-align: left;
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .founder-section {
                padding: 40px 0 48px;
            }
            .founder-grid {
                gap: 22px;
            }
            .founder-photo-wrap {
                max-width: min(260px, 82vw);
            }
            .founder-info {
                padding: 0 4px;
            }
        }

        /* Vision & Mission */
        .vision-mission-section { padding: 80px 0; background-color: var(--white); }
        .vision-mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }
        .vision-card, .mission-card {
            background: var(--light);
            padding: 40px;
            border-radius: 12px;
            border-left: 5px solid var(--secondary);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }
        .vision-card h3, .mission-card h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .vision-card h3 i, .mission-card h3 i {
            color: var(--secondary);
            font-size: 28px;
        }
        .vision-card p, .mission-card p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 16px;
        }
        @media (max-width: 768px) {
            .vision-mission-grid { grid-template-columns: 1fr; }
        }

        /* Our presence */
        .presence-section { padding: 80px 0; background-color: var(--light); }
        .presence-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        .presence-item {
            background: var(--white);
            padding: 20px 32px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .presence-item i { color: var(--secondary); }
        .presence-map-wrap {
            margin-top: 40px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            height: 450px;
            background: var(--light-gray);
        }
        #presenceMap { width: 100%; height: 100%; min-height: 450px; }

        /* Office / Location page map */
        .office-map-wrap {
            margin: 0 auto 40px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            height: 420px;
            background: var(--light-gray);
        }
        #officeMap { width: 100%; height: 100%; min-height: 420px; }

        /* Client logo carousel */
        .clients-section { padding: 80px 0; background-color: var(--white); overflow: hidden; }
        .clients-carousel-wrap {
            margin-top: 40px;
            position: relative;
        }
        .clients-carousel {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: scroll-logos 25s linear infinite;
        }
        .clients-carousel:hover { animation-play-state: paused; }
        .client-logo-item {
            flex-shrink: 0;
            height: 85x;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .client-logo-item img {
            max-height: 100%;
            max-width: 140px;
            object-fit: contain;
            /* filter: grayscale(100%); */
            opacity: 0.7;
        }
        .client-logo-item img:hover { filter: grayscale(0); opacity: 1; }
        .client-logo-text { font-weight: 700; color: var(--primary); font-size: 14px; }
        @keyframes scroll-logos {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Services Page Specific Styles */
        .services-hero-label {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .services-overview {
            padding: 80px 0;
            background-color: #F5F5F0;
        }

        .services-overview-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 30px;
            margin-top: 40px;
        }

        .services-overview-grid .service-image-card {
            grid-row: 1 / 3;
        }

        .service-image-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            min-height: 400px;
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            color: var(--white);
        }

        .service-image-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .service-image-card > * {
            position: relative;
            z-index: 2;
        }

        .service-image-card h3 {
            font-size: 32px;
            margin-bottom: 15px;
            color: var(--white);
        }

        .service-image-card p {
            font-size: 16px;
            margin-bottom: 25px;
            opacity: 0.95;
        }

        .service-beige-card {
            background-color: #F5F5F0;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .service-badge {
            display: inline-block;
            background-color: #28a745;
            color: var(--white);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .service-icon-large {
            width: 80px;
            height: 80px;
            background-color: #FFE5D0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 25px;
        }

        .service-beige-card h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .service-beige-card p {
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .btn-dark {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn-dark:hover {
            background-color: #0f1a2e;
        }

        .warehouse-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
        }

        .what-we-offer {
            padding: 80px 0;
            background-color: #F5F5F0;
        }

        .offer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .offer-card {
            background-color: #F5F5F0;
            padding: 35px;
            border-radius: 8px;
        }

        .offer-icon {
            width: 60px;
            height: 60px;
            background-color: #FFE5D0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .offer-card h4 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .offer-card ul {
            list-style: none;
            padding: 0;
        }

        .offer-card ul li {
            padding: 8px 0;
            color: var(--gray);
            position: relative;
            padding-left: 20px;
        }

        .offer-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }

        .process-section {
            padding: 80px 0;
            background-color: #F5F5F0;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .process-step {
            text-align: center;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background-color: var(--secondary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .process-step h4 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .process-step p {
            color: var(--gray);
            font-size: 15px;
        }

        .get-started-section {
            padding: 80px 0;
            background-color: var(--primary);
            color: var(--white);
            text-align: center;
        }

        .get-started-section h2 {
            color: var(--white);
            margin-bottom: 15px;
        }

        .get-started-section p {
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .get-started-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        @media (max-width: 992px) {
            .services-overview-grid {
                grid-template-columns: 1fr;
            }

            .offer-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .process-steps {
                grid-template-columns: 1fr;
            }

            .get-started-buttons {
                flex-direction: column;
                align-items: center;
            }
        }