/* =========================================
           CSS VARIABLES & RESET
           ========================================= */
        :root {
            --primary-navy: #183650;
            --primary-gold: #F7B543;
            --primary-gold-hover: #e0a130;
            --secondary-green: #4CAF50;
            --secondary-blue: #1976D2;
            --bg-main: #E4F4F3;
            --bg-light: #E4F4F3;
            --text-dark: #333333;
            --text-grey: #555555;
            --white: #ffffff;
            --shadow: 0 6px 16px rgba(0,0,0,0.06);
            --radius: 12px;
            --container-width: 1200px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-main);
            overflow-x: hidden;
            top: 0 !important; 
        }

        /* Hide Google Translate Toolbar */
        .goog-te-banner-frame.skiptranslate {
            display: none !important;
        } 
        body {
            top: 0px !important; 
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--primary-navy);
        }

        p {
            margin-bottom: 1rem;
            color: var(--text-grey);
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* =========================================
           UTILITIES
           ========================================= */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .text-center {
            text-align: center;
        }

        .text-highlight {
            color: var(--primary-gold);
        }

        .flex-center {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 28px;
            font-weight: 600;
            border-radius: var(--radius);
            font-size: 1rem;
            cursor: pointer;
            text-align: center;
            border: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .btn-primary {
            background-color: var(--primary-gold);
            color: var(--primary-navy);
        }

        .btn-primary:hover {
            background-color: var(--primary-gold-hover);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--primary-navy);
            color: var(--primary-navy);
        }

        .btn-secondary:hover {
            background-color: var(--primary-navy);
            color: var(--white);
        }

        .btn-dark {
            background-color: var(--primary-navy);
            color: var(--white);
        }
        
        /* Google Translate Styling */
        #google_translate_element {
            margin-left: 15px;
            display: inline-block;
        }
        .goog-te-gadget-simple {
            background-color: transparent !important;
            border: 1px solid var(--primary-navy) !important;
            padding: 5px 10px !important;
            border-radius: 20px !important;
            font-family: 'Montserrat', sans-serif !important;
        }
        .goog-te-gadget-simple span {
            color: var(--primary-navy) !important;
            font-weight: 600 !important;
        }
        
        /* Language Toggle Link */
        .lang-toggle {
            font-size: 0.8rem;
            color: var(--primary-navy);
            text-decoration: underline;
            cursor: pointer;
            margin-left: 10px;
            font-weight: 600;
        }
        .lang-toggle:hover {
            color: var(--primary-gold);
        }

        /* =========================================
           HEADER / NAVBAR
           ========================================= */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 10px 0;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px; 
        }

        /* =========================================
           1. HERO SECTION
           ========================================= */
        .hero {
            padding: 60px 0 80px;
            background: transparent; 
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-label {
            font-family: 'Raleway', sans-serif;
            color: var(--secondary-blue);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: block;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .hero-sub {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .hero-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            font-weight: 500;
        }

        .hero-list i {
            color: var(--secondary-green);
            margin-right: 10px;
        }

        .hero-cta-group {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
        }

        .hero-cta-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .dispatch-text {
            font-size: 0.85rem;
            color: var(--text-grey);
            margin-top: 5px;
        }

        .hero-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            text-align: center;
            border: 1px solid #eee;
        }
        
        .hero-card img {
            max-height: 300px;
            margin: 0 auto 20px;
        }

        /* =========================================
           2. PROBLEM SECTION
           ========================================= */
        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .problem-card {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border-top: 4px solid #e74c3c; /* Red for problem */
        }

        .problem-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        /* =========================================
           3. SOLUTION SECTION
           ========================================= */
        .solution-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .value-pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .pillar {
            background: var(--primary-navy);
            color: white;
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .pillar h3 {
            color: var(--primary-gold);
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .pillar p {
            color: #e0e0e0;
            font-size: 0.95rem;
        }

        /* =========================================
           4. FEATURES & SPECS
           ========================================= */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .feature-column, .specs-column {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .feature-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }

        .feature-list li::before {
            content: "\f00c"; /* FontAwesome Check */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--secondary-blue);
            position: absolute;
            left: 0;
            top: 2px;
        }

        .specs-table {
            width: 100%;
            border-collapse: collapse;
            overflow: hidden;
        }

        .specs-table td {
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
        }

        .specs-table tr:last-child td {
            border-bottom: none;
        }

        .specs-table td:first-child {
            font-weight: 700;
            color: var(--primary-navy);
            width: 40%;
            background: #f1f4f8;
            border-radius: 4px;
        }

        /* =========================================
           5. HOW IT WORKS - SIDE BY SIDE
           ========================================= */
        .how-it-works-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 50px;
            /* Stretch items to equal height */
            align-items: stretch;
        }

        .timeline {
            display: flex;
            flex-direction: column;
            gap: 30px;
            /* Ensure it fills height */
            height: 100%;
        }

        .step {
            position: relative;
            padding-left: 60px;
            background: white;
            padding: 20px 20px 20px 80px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            /* Distribute space if needed, though gap handles most */
            flex-grow: 1; 
        }

        .step-num {
            width: 50px;
            height: 50px;
            background: var(--primary-gold);
            color: var(--primary-navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
        }

        .video-container-column {
             display: flex;
             flex-direction: column;
             height: 100%;
        }
        
        .video-container-sticky {
            position: sticky;
            top: 100px;
            text-align: center;
            background: white; /* Optional visual balance */
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            height: 100%; /* Match height of timeline */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Portrait Video Wrapper (9:16 Aspect Ratio) */
        .video-wrapper-portrait {
            width: 100%;
            max-width: 300px; /* Slightly reduced for better balance */
            margin: 0 auto;
            position: relative;
            padding-bottom: 177.77%; /* 9:16 aspect */
            height: 0;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: var(--shadow);
            background: #000;
            border: 4px solid white;
        }

        .video-wrapper-portrait iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* =========================================
           6. RESULTS
           ========================================= */
        .stats-row {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 50px;
        }

        .stat-box {
            text-align: center;
            flex: 1;
            min-width: 250px;
            background: white;
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-green);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: left;
            border: 1px solid #eee;
        }

        .comparison-table th {
            background-color: var(--primary-navy);
            color: white;
        }
        
        .col-bad { color: #e74c3c; font-weight: 600;}
        .col-good { color: #4CAF50; font-weight: 600;}

        /* =========================================
           7 & 8. TESTIMONIALS
           ========================================= */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border-bottom: 4px solid var(--primary-gold);
        }

        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid var(--primary-gold);
        }

        .client-meta h4 {
            margin-bottom: 0;
            font-size: 1rem;
        }
        
        .client-meta span {
            font-size: 0.85rem;
            color: var(--text-grey);
        }

        .video-testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .video-card {
            background: white;
            padding: 10px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        /* =========================================
           9. CLIENTS
           ========================================= */
        .tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .tab-btn {
            padding: 10px 30px;
            border: 2px solid var(--primary-navy);
            background: transparent;
            color: var(--primary-navy);
            cursor: pointer;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .tab-btn:hover {
            background: rgba(24, 54, 80, 0.1);
        }

        .tab-btn.active {
            background: var(--primary-navy);
            color: white;
        }

        .client-list {
            display: none; /* Hidden by default */
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 15px;
            text-align: left;
        }
        
        .client-list.active {
            display: grid;
        }

        .client-item {
            background: white;
            padding: 15px;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary-navy);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* =========================================
           10. EXHIBITIONS CAROUSEL
           ========================================= */
        .carousel-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: white;
        }

        .carousel-slide {
            display: none;
            animation: fadeEffect 1.5s;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .text-caption {
            padding: 25px;
            text-align: center;
            background: white;
        }
        
        .text-caption h3 { margin-bottom: 10px; }

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 40%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 24px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.3);
        }
        
        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }
        
        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.8);
        }

        @keyframes fadeEffect {
            from {opacity: .4} 
            to {opacity: 1}
        }

        .upcoming-card {
            background: var(--primary-navy);
            color: white;
            border-radius: var(--radius);
            padding: 40px;
            margin-top: 40px;
            text-align: center;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231f4463' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            box-shadow: var(--shadow);
        }
        .upcoming-card h3 { color: white; margin-bottom: 0;}
        .upcoming-card p { color: #e0e0e0; }
        .upcoming-card ul { text-align: left; display: inline-block; margin: 20px 0; color: #e0e0e0;}
        .upcoming-card li { margin-bottom: 5px;}
        .upcoming-card a.link-light { color: var(--primary-gold); text-decoration: underline; }
        .upcoming-card a.header-link { font-size: 1.7rem; font-weight: 700; color: white; text-decoration: underline; margin-bottom: 10px; display:inline-block;}
        .upcoming-card a.header-link:hover { color: var(--primary-gold); }

        /* =========================================
           11. CALCULATOR & MODAL
           ========================================= */
        .calculator-card {
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            max-width: 600px;
            margin: 0 auto;
            border-top: 5px solid var(--secondary-blue);
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: var(--radius);
            font-size: 1rem;
            font-family: inherit;
        }

        .calc-result {
            background: #e3f2fd;
            padding: 20px;
            border-radius: var(--radius);
            margin-top: 20px;
            display: none; /* Hidden until calculated */
        }

        /* Modal Styles */
        .modal {
            display: none; 
            position: fixed; 
            z-index: 2000; 
            left: 0;
            top: 0;
            width: 100%; 
            height: 100%; 
            overflow: auto; 
            background-color: rgba(0,0,0,0.6); 
            animation: fadeIn 0.3s;
        }

        .modal-content {
            background-color: #fefefe;
            margin: 15% auto; 
            padding: 30px;
            border: 1px solid #888;
            width: 90%; 
            max-width: 500px;
            border-radius: var(--radius);
            position: relative;
            text-align: center;
        }

        .close-modal {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            right: 20px;
            top: 10px;
            cursor: pointer;
        }

        .close-modal:hover,
        .close-modal:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        @keyframes fadeIn {
            from {opacity: 0;}
            to {opacity: 1;}
        }

        /* =========================================
           12. FAQ
           ========================================= */
        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            background: white;
            margin-bottom: 10px;
            border-radius: var(--radius);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .accordion-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-navy);
        }
        
        .accordion-header::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-gold);
        }

        .accordion-item.active .accordion-header::after {
            content: '-';
        }

        .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: var(--text-grey);
        }
        
        .accordion-item.active .accordion-content {
            padding: 0 20px 20px;
            max-height: 500px; 
        }

        /* =========================================
           13. CONTACT
           ========================================= */
        .contact-section {
            background-color: var(--primary-navy);
            color: white;
            text-align: center;
        }

        .contact-section h2 { color: white; }
        .contact-section p { color: #cfcfcf; max-width: 600px; margin: 0 auto 30px; }

        .contact-details {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.95rem;
        }
        
        .contact-item a {
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .contact-item a:hover {
            color: var(--primary-gold);
        }

        .contact-item i {
            color: var(--primary-gold);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        /* =========================================
           FOOTER
           ========================================= */
        footer {
            background-color: #0f2336;
            color: #888;
            padding: 40px 0;
            font-size: 0.85rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-links a {
            color: #888;
            margin-left: 15px;
        }
        
        .footer-links a:hover {
            color: var(--white);
        }

        /* =========================================
           RESPONSIVE
           ========================================= */
        @media (max-width: 992px) {
            .hero h1 { font-size: 2rem; }
            .solution-layout { grid-template-columns: 1fr; }
            .value-pillars { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .how-it-works-grid { grid-template-columns: 1fr; }
            .video-container-sticky { position: static; margin-top: 40px; height: auto;}
            .carousel-slide img { height: 300px; }
        }

        @media (max-width: 768px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-cta-group { align-items: center; }
            .hero-cta-buttons { justify-content: center; }
            .hero-list li { justify-content: center; }
            .contact-details { flex-direction: column; gap: 20px; }
            .footer-content { flex-direction: column; text-align: center; }
            .footer-links a { margin: 0 10px; }
            .specs-table td { display: block; width: 100%; border: none; }
            .specs-table td:first-child { background: #f1f4f8; border-bottom: none; padding-bottom: 5px;}
            .specs-table td:last-child { border-bottom: 1px solid #eee; padding-top: 0;}
            .step { padding-left: 20px; text-align: center; }
            .step-num { position: static; margin: 0 auto 10px; }
        }