
        :root {
            --primary-blue: #4A90E2;
            --primary-blue-dark: #357ABD;
            --primary-blue-light: #6BA3E8;
            --text-primary: #1a1a1a;
            --text-secondary: #666666;
            --text-light: #888888;
            --background: #ffffff;
            --background-soft: #fafbfc;
            --border-light: #e8e8e8;
            --shadow-light: 0 2px 8px rgba(0,0,0,0.04);
            --shadow-medium: 0 4px 24px rgba(0,0,0,0.08);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--background);
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
        }


        .goog-te-combo {
            background: var(--primary-blue) !important;
            color: white !important;
            border: none !important;
            padding: 8px 12px !important;
            border-radius: 6px !important;
            font-size: 14px !important;
        }

        /* Hide Google Translate banner */
        .goog-te-banner-frame.skiptranslate {
            display: none !important;
        }
        body {
            top: 0px !important;
        }

        /* Typography Scale */
        .text-xs { font-size: 0.75rem; }
        .text-sm { font-size: 0.875rem; }
        .text-base { font-size: 1rem; }
        .text-lg { font-size: 1.125rem; }
        .text-xl { font-size: 1.25rem; }
        .text-2xl { font-size: 1.5rem; }
        .text-3xl { font-size: 1.875rem; }
        .text-4xl { font-size: 2.25rem; }
        .text-5xl { font-size: 3rem; }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid var(--border-light);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .logo-subtitle {
            font-size: 0.75rem;
            color: var(--text-primary);
            font-weight: 400;
            margin-top: -0.25rem;
            letter-spacing: 0.02em;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
            position: relative;
            letter-spacing: -0.01em;
        }

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

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

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            margin: 3px 0;
            transition: var(--transition);
            border-radius: 2px;
        }

        .mobile-menu.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            transform: translateX(-100%);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .mobile-nav.active {
            transform: translateX(0);
        }

        .mobile-nav ul {
            list-style: none;
            text-align: center;
        }

        .mobile-nav ul li {
            margin: 2rem 0;
        }

        .mobile-nav ul li a {
            text-decoration: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .mobile-nav ul li a:hover {
            color: var(--primary-blue);
        }

        /* Hero Section - Video-First Design */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 120px 2rem 60px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
            transform: rotate(-15deg);
        }

        .hero-container {
            max-width: 1400px;
            width: 100%;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        /* Video Section - Takes Center Stage */
        .hero-video-section {
            margin-bottom: 4rem;
        }

        .video-container {
            width: 900px;
            height: 450px;
            max-width: 90vw;
            margin: 0 auto;
            position: relative;
            background: white;
            border-radius: 24px;
            box-shadow: 
                0 25px 80px rgba(74, 144, 226, 0.15),
                0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 12px;
            overflow: hidden;
            transition: var(--transition);
        }

        .video-container:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 35px 100px rgba(74, 144, 226, 0.2),
                0 15px 50px rgba(0, 0, 0, 0.15);
        }

        .video-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 50%, var(--primary-blue) 100%);
            border-radius: 24px 24px 0 0;
        }

        .video-container video {
            width: 100%;
            height: calc(100% - 12px);
            border-radius: 16px;
            object-fit: cover;
            margin-top: 12px;
        }

        .video-placeholder {
            width: 100%;
            height: calc(100% - 12px);
            background: linear-gradient(135deg, #667eea 0%, var(--primary-blue) 50%, var(--primary-blue-dark) 100%);
            border-radius: 16px;
            margin-top: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .video-placeholder::before {
            content: '';
            position: absolute;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border: 3px solid rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .video-placeholder:hover::before {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.2);
        }

        .video-placeholder::after {
            content: '▶';
            position: absolute;
            font-size: 2rem;
            margin-left: 4px;
            z-index: 2;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .video-title {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            right: 1.5rem;
            text-align: center;
            z-index: 3;
        }

        .video-title h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
            text-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }

        .video-title p {
            font-size: 0.9rem;
            opacity: 0.9;
            text-shadow: 0 1px 6px rgba(0,0,0,0.3);
        }

        /* Content Section */
        .hero-content-section {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-content-section h1 {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero-content-section h1 strong {
            font-weight: 600;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content-section .tagline {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            font-weight: 400;
            letter-spacing: 0.02em;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-blue);
            color: white;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            box-shadow: 0 8px 32px rgba(74, 144, 226, 0.3);
        }

        .hero-cta:hover {
            background: var(--primary-blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(74, 144, 226, 0.4);
        }

        .hero-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: var(--text-primary);
            padding: 1.2rem 2.5rem;
            border: 2px solid var(--border-light);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
        }

        .hero-cta-secondary:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

        /* Partners Section */

   .partners {
            background: var(--background-soft);
            padding: 4rem 0;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            position: relative;
            z-index: 1; /* Ensure proper stacking */
        }

        .partners-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .partners h3 {
            color: var(--text-secondary);
            font-size: clamp(0.875rem, 2vw, 1rem);
            font-weight: 500;
            margin-bottom: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Grid with responsive columns */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            align-items: center;
            justify-items: center;
            max-width: 100%;
        }

        .partner-logo {
            background: white;
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            border: 1px solid var(--border-light);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            max-width: 220px;
            aspect-ratio: 2.5/1; /* Maintains 400x160 ratio */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .partner-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }

        .partner-logo:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            border-color: var(--primary-blue);
        }

        /* Tablet (768px - 1024px) */
        @media (max-width: 1024px) {
            .partners {
                padding: 3.5rem 0;
            }
            
            .partners-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.25rem;
                padding: 0 1rem;
            }
            
            .partner-logo {
                max-width: 200px;
            }
        }

        /* Small Tablet (576px - 768px) */
        @media (max-width: 768px) {
            .partners {
                padding: 3rem 0;
                position: relative;
                z-index: 10; /* Higher z-index to prevent overlap */
            }
            
            .partners-container {
                padding: 0 1.5rem;
            }
            
            .partners h3 {
                font-size: 0.875rem;
                margin-bottom: 2rem;
            }
            
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .partner-logo {
                max-width: 100%;
                padding: 0.875rem;
                aspect-ratio: 2.5/1;
            }
        }

        /* Mobile (480px and below) */
        @media (max-width: 480px) {
            .partners {
                padding: 2.5rem 0;
                /* Add margin to prevent overlap with adjacent sections */
                margin-top: 1rem;
                margin-bottom: 1rem;
            }
            
            .partners-container {
                padding: 0 1rem;
            }
            
            .partners h3 {
                font-size: 0.8rem;
                margin-bottom: 1.5rem;
            }
            
            /* Single column on very small screens */
            .partners-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
                max-width: 280px;
                margin: 0 auto;
            }
            
            .partner-logo {
                max-width: 100%;
                min-height: 80px;
                padding: 0.75rem;
            }
        }

        /* Extra small screens (below 360px) */
        @media (max-width: 360px) {
            .partners {
                padding: 2rem 0;
            }
            
            .partners-grid {
                max-width: 240px;
            }
            
            .partner-logo {
                min-height: 70px;
                padding: 0.625rem;
            }
        }

        /* Additional fixes for preventing overlap */
        
        /* Ensure hero section doesn't overlap */
        .hero {
            position: relative;
            z-index: 1;
            margin-bottom: 0; /* Remove any negative margins */
        }
        
        /* Ensure proper spacing between sections */
        .section {
            position: relative;
            z-index: 1;
        }
        
        /* Fix for mobile navigation overlap */
        @media (max-width: 768px) {
            .mobile-nav {
                z-index: 9999; /* Highest z-index for mobile menu */
            }
            
            nav {
                z-index: 1000;
            }
        }

        /* Performance optimization for images */
        .partner-logo img {
            will-change: transform;
            backface-visibility: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Loading state for partner logos */
        .partner-logo:empty::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            margin: -20px 0 0 -20px;
            border: 3px solid var(--border-light);
            border-top-color: var(--primary-blue);
            border-radius: 50%;
            animation: spinner 0.8s linear infinite;
        }

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

        /* Accessibility improvements */
        .partner-logo:focus-visible {
            outline: 2px solid var(--primary-blue);
            outline-offset: 2px;
        }

        /* Print styles */
        @media print {
            .partners {
                page-break-inside: avoid;
            }
            
            .partners-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        /* Section Styles */
        .section {
            padding: 8rem 0;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .section-header .highlight {
            font-weight: 600;
            color: var(--primary-blue);
        }

        .section-intro {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Who We Are */
        .who-we-are {
            background: var(--background-soft);
        }

        .company-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .company-story {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-primary);
        }

        .company-story p {
            margin-bottom: 1.5rem;
        }

        .company-story p:last-child {
            margin-bottom: 0;
        }

        .company-highlights {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
        }

        .highlight-stat {
            display: flex;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .highlight-stat:last-child {
            border-bottom: none;
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .stat-content h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .stat-content p {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        /* What We Do */
        .service-overview {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            margin-bottom: 5rem;
        }

        .service-visual {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            text-align: center;
        }

        .service-icon {
            width: 100%;
            margin-bottom: 1.5rem;
            display: block;
        }

        .service-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.02em;
        }

        .service-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-medium);
            border-color: var(--border-light);
        }

        .feature-card h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Impact Section */
        .impact {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .impact::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50% 0 0 50%;
            transform: translateX(20%);
        }

        .impact .section-container {
            position: relative;
            z-index: 2;
        }

        .impact h2 {
            color: white;
        }

        .impact .section-intro {
            color: rgba(255, 255, 255, 0.9);
        }

        .impact-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .metric-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .metric-card-recyle{
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        img.metric-number {
            width: 65px;
            
        }
        .metric-number {
            font-size: 2.5rem;
            font-weight: 300;
            color: white;
            display: block;
            margin-bottom: 0.5rem;
        }

        .metric-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .impact-description {
            background: rgba(255, 255, 255, 0.1);
            padding: 3rem;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 1.1rem;
            line-height: 1.7;
            text-align: left;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }

        .offices-list h3 {
            color: var(--primary-blue);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .office-card {
            background: var(--background-soft);
            padding: 2rem;
            border-radius: 16px;
            margin-bottom: 1.5rem;
            border: 1px solid var(--border-light);
        }

        .office-card h4 {
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .office-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .partnership-info {
            margin-top: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(107, 163, 232, 0.1) 100%);
            border-radius: 12px;
            border: 1px solid rgba(74, 144, 226, 0.2);
        }

        .partnership-info strong {
            color: var(--primary-blue);
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
        }

        .contact-form h3 {
            color: var(--text-primary);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-primary);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
            background: var(--background);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            box-shadow: var(--shadow-light);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(74, 144, 226, 0.3);
        }

        /* Footer */
        footer {
            background: var(--text-primary);
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            padding: 3rem 0;
            font-size: 0.9rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {

            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .nav-container {
                padding: 1rem 1.5rem;
            }

            .hero {
                padding: 100px 1rem 40px;
            }

            .video-container {
                width: 100%;
                height: 300px;
                max-width: 500px;
            }

            .hero-video-section {
                margin-bottom: 3rem;
            }

            .hero-content-section h1 {
                font-size: 2.5rem;
            }

            .hero-content-section .tagline {
                font-size: 1.1rem;
            }

            .hero-actions {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-cta,
            .hero-cta-secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .video-title h3 {
                font-size: 1.4rem;
            }

            .company-grid,
            .service-overview,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .section {
                padding: 4rem 0;
            }

            .section-container {
                padding: 0 1.5rem;
            }

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

      

            .impact-metrics {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

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

            .feature-card,
            .office-card,
            .contact-form {
                padding: 2rem;
            }
        }

@media (max-width: 480px) {
            .hero {
                padding: 90px 1rem 30px;
            }

            .video-container {
                height: 250px;
                max-width: 400px;
            }

            .hero-content-section h1 {
                font-size: 2rem;
            }

            .hero-content-section .tagline {
                font-size: 1rem;
            }

            .video-title h3 {
                font-size: 1.2rem;
            }

            .video-title p {
                font-size: 0.9rem;
            }

            .section-header h2 {
                font-size: 1.75rem;
            }

            .impact-metrics {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .feature-card,
            .office-card {
                padding: 1.5rem;
            }

            .contact-form {
                padding: 2rem 1.5rem;
            }

      
        }

        /* Google Translate Widget Styling */
#google_translate_element {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#google_translate_element:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

/* Style the dropdown */
.goog-te-gadget {
    font-family: 'Inter', sans-serif !important;
    font-size: 0 !important;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    padding-left: 24px !important;
}

/* Add globe icon */
#google_translate_element::before {
    content: "🌐";
    position: absolute;
    left: 16px;
    font-size: 18px;
    top: 50%;
    transform: translateY(-50%);
}

/* Hide ONLY the banner at top of page */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #google_translate_element {
        bottom: 20px;
        right: 20px;
        padding: 10px 14px;
    }
}


.skiptranslate iframe {
    display: none !important;
}