/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #6B7280;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #141339;
    border-bottom: 1px solid rgba(109, 199, 174, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.64rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #6dc7ae;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6dc7ae;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #6dc7ae 0%, #5bb89a 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(109, 199, 174, 0.3);
}

.cta-button.primary {
    background: linear-gradient(135deg, #6dc7ae 0%, #5bb89a 100%);
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section - Updated Layout */
.hero {
    display: flex;
    align-items: center;
    min-height: 10vh;
    padding-top: 150px;
    padding-bottom: 20px;
    background: url('../assets/images/hero/Hero-BG.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 20;
    overflow: hidden;
    margin-bottom: 0;
}

/* Add overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(228, 253, 245, 0.85);
    z-index: 19;
}

.hero .container {
    width: 100%;
    max-width: 1225px;
    margin: 0 auto;
    height: 80%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin-left: 0;
    width: 100%;
    position: relative;
    z-index: 21;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-left: 0;
    text-align: left;
    flex: 1 1 0;
    position: relative;
    z-index: 22;
}

.hero-car-animate {
    position: relative;
    width: 500px;
    min-height: 300px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 500px;
    margin-top: 200px;
    z-index: 25;
}

.hero-car-static {
    position: absolute;
    left: -700px; /* Start off-screen to the left */
    top: 0;
    width: 400px; /* Adjust as needed */
    transform: scale(6); /* Scale up by 50% */
    z-index: 26;
}

.hero-car-animate.animate .hero-car-static {
    animation: car-slide-in 4s cubic-bezier(0, 0, 0.15, 1) forwards;
}

@keyframes car-slide-in {
    0% {
        left: -500px;
        opacity: 1;
    }
    85% {
        left: 190%;
        opacity: 1;
    }
    100% {
        left: 190%;
        opacity: 1;
    }
}

#heroText {
    opacity: 1;
    transform: translateY(40px);
}

#heroText.visible {
    opacity: 1;
    transform: translateY(0);
}

#heroHeadline, #heroSubheadline {
    opacity: 1;
    transform: none;
    transition: none;
}

#heroCTA {
    opacity: 1;
    pointer-events: auto;
    transition: none;
}

#heroCTA.visible {
    opacity: 1;
    pointer-events: auto;
}

.hero-headline {
    font-size: 3.15rem;
    font-weight: 800;
    color: #141339;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-cta {
    margin-top: 0.2rem;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Page Hero Styles */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f7f3 100%);
    text-align: center;
}

.page-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.page-hero h1 {
    color: #141339;
    margin-bottom: 1rem;
}

.page-hero p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #141339;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Certifications Section */
.certifications {
    background: #f8fffe;
    min-height: 20px;
    padding-top: -200px;

}

.cert-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.cert-item {
    transform: scale(0.5);
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    margin-bottom: 0.2rem;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-image {
    min-width: 220px;
    min-height: 120px;
    max-width: 320px;
    max-height: 220px;
    object-fit: contain;
    transform: scale(0.5);
    margin-bottom: 0.3rem;
    margin-top: 0.5rem;
}

.cert-item h3 {
    color: #141339;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.cert-item p {
    color: #666;
    font-size: 0.6rem;
}

/* Why EVZIP Section - 4x4 Grid */
.why-evzip {
    display: none !important;
}

/* Custom cursor for 3D effect */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #6dc7ae 0%, rgba(109, 199, 174, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor.active {
    opacity: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 0.125rem !important;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.feature-card {
    background: #ffffff;
    padding: 1.6rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-out, box-shadow 0.3s ease;
    transform: scale(0.1);
    margin: -1.5rem;
    width: 90%;
    height: 90%;
    gap: -2rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    cursor: pointer;
    will-change: transform;
    backface-visibility: hidden;
}

/* Remove the old hover effect since we're using JavaScript for 3D tracking */
.feature-card:hover {
    /* Transform is now handled by JavaScript */
}

/* 3D Transform Effect for Feature Cards */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(109, 199, 174, 0.1) 0%, rgba(91, 184, 154, 0.1) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Enhanced 3D effect with cursor tracking */
.feature-card {
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
}

/* Add depth to feature elements */
.feature-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    display: block;
    transition: transform 0.2s ease-out;
    transform: translateZ(20px);
    will-change: transform;
    align-self: center;
}

/* Ensure SVG icons are properly styled */
.feature-image[src*=".svg"] {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    display: block;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(142deg) brightness(104%) contrast(97%);
    transition: transform 0.2s ease-out;
    transform: translateZ(20px);
    will-change: transform;
    align-self: center;
}

.feature-card h3 {
    color: #141339;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    order: 2;
    transition: transform 0.2s ease-out;
    transform: translateZ(15px);
    will-change: transform;
    position: relative;
    z-index: 2;
    text-align: center;
    align-self: center;
    width: 100%;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    order: 3;
    transition: transform 0.2s ease-out;
    transform: translateZ(10px);
    will-change: transform;
    position: relative;
    z-index: 2;
    text-align: center;
    align-self: center;
    width: 100%;
}

/* Make sure icon is first in order */
.feature-card img {
    order: 1;
    position: relative;
    z-index: 2;
}

/* Add subtle glow effect on hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #6dc7ae, #5bb89a, #6dc7ae);
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 0.3;
}

/* Performance optimizations for 3D transforms */
.feature-card * {
    transform-style: preserve-3d;
}

/* Smooth transitions for all transformable elements */
.feature-card,
.feature-card * {
    transition: transform 0.15s ease-out;
}

/* Add a subtle parallax effect to the background */
.why-evzip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(109, 199, 174, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Stats Section */
.stats {
    background: #141339;
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    display: inline-block;
    font-weight: 1000;
    font-size: 5rem;
    transition: all 0.3s ease;
    min-width: 1em;
    color: #6dc7ae;
}

.stat-number.animated {
    animation: counterPulse 0.5s ease-out;
}

@keyframes counterPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
}

/* Services Section - Single Row */
.services {
    background: #ffffff;
    padding-top: 20px;
    padding-bottom: 60px;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 200px;
    max-width: 200px;
    min-height: 200px;
    max-height: 250px;
    text-align: center;
    padding: 2rem;
    background: #f8fffe;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 10%;
    object-fit: contain;
}

.service-card h3 {
    color: #141339;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Coverage Section - Increased Size */
.coverage {
    background: #f8fffe;
    padding: 100px 0;
}

.coverage-map {
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: crosshair;
}

.coverage-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: none;
    transform-origin: center;
}

/* Magnifying glass overlay */
.magnifier {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 3px solid #6dc7ae;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.magnifier.active {
    opacity: 1;
}

.magnifier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
}

/* Remove the previous hover effects */
.coverage-map:hover .coverage-image {
    transform: none;
    cursor: crosshair;
}

.coverage-map::before {
    display: none;
}

/* Impact Section */
.impact {
    background: linear-gradient(135deg, #6dc7ae 0%, #5bb89a 100%);
    padding: 40px 0;
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.impact-number {
    color: #ffffff;
    font-weight: 800;
    transition: all 0.3s ease;
    min-width: 1em;
}

.impact-number.animated {
    animation: counterPulse 0.5s ease-out;
}

.impact-label {
    font-size: 1.1rem;
    color: #ffffff;
}

/* Metro Integration Section */
.metro-integration {
    background: #ffffff;
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.metro-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 25px;
}

.carousel-container {
    display: flex;
    border-radius: 25px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    border-radius: 25px;
    flex-shrink: 0;
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(109, 199, 174, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.carousel-btn:hover {
    background: rgba(109, 199, 174, 1);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #6dc7ae;
}

/* Metro Integration Thumbnails */
/* (All metro-thumbnails-slider, metro-thumbnails-inner, metro-thumb, metro-thumbnails-btn styles removed) */

/* Partners Section */
.partners {
    background: #e4fdf5;
    padding-top: 32px;
    padding-bottom: 32px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    max-width: 520px;
    margin: 0 auto;
}

.partner-item {
    text-align: center;
}

.partner-logo {
    max-width: 100%;
    min-height: 100px;
    border-radius: 25px;
    max-height: 100px;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
    transform: scale(0.8);
}

.partner-logo:hover {
    transform: scale(1);
    filter: grayscale(0%);
}

/* Charging Network Section */
.charging-network {
    background: #ffffff;
    padding-top: 32px;
    padding-bottom: 32px;
}

.charging-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    align-items: center;
}

.charging-item {
    text-align: center;
    padding: 1.5rem;
    background: #e5f5f0f1;
    border-radius: 45px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transform: scale(0.7);
    max-width: 80%;
}

.charging-item:hover {
    transform: translateY(-5px);
}

.charging-logo {
    width: 100%;
    max-width: 100px;
    border-radius: 25px;
    height: auto;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
    transform: scale(1.3);
}

.charging-item:hover .charging-logo {
    filter: grayscale(0%);
}

.charging-item h3 {
    color: #141339;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

/* Press Section */
.press {
    background: #f8fffe;
}

.press-carousel {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.press-carousel .carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.press-carousel .carousel-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.press-item {
    background: #f8fffe;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.press-item:hover {
    transform: translateY(-5px);
}

.press-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.press-item h3 {
    color: #141339;
    font-size: 1.3rem;
    margin: 1rem;
}

.press-item p {
    color: #666;
    margin: 0 1rem 1rem;
}

/* Footer Styles - New Layout */
.footer {
    background: #141339;
    color: #ffffff;
    padding: 30px 0 20px;
    z-index: 100;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3 {
    text-align: left;
    color: #6dc7ae;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
    white-space: pre-line;
    text-align: left;
}

.footer-section.footer-address h3 {
    text-align: right;
}

.footer-section.footer-address p {
    text-align: right;
}

.footer-social-grid {
    justify-content: flex-start !important;
    margin-left: 0 !important;
}

.footer-section:first-child {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section h3 {
    text-align: center;
    color: #6dc7ae;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
    white-space: pre-line;
    text-align: center;
}

/* Center Links Section */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6dc7ae;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(109, 199, 174, 0.2);
}

.footer-bottom p {
    color: #cccccc;
    font-size: 0.8rem;
    margin: 0;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero-headline {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-car-static {
        margin-left: 0;
        margin-top: 2rem;
        max-width: 80vw;
        max-height: 220px;
    }
    
    .hero-text {
        max-width: 100%;
        align-items: center;
        text-align: center;
        padding-top: 50px;
    }
    
    .charging-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #141339;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(109, 199, 174, 0.2);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .overview-content,
    .contact-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .cert-grid,
    .fleet-grid,
    .features-grid,
    .services-grid,
    .partners-grid,
    .press-grid,
    .team-grid,
    .benefits-grid,
    .positions-grid,
    .culture-grid,
    .posts-grid,
    .screenshots-grid,
    .requirements-grid,
    .support-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section.footer-address h3 {
        text-align: center;
    }
    
    .footer-section.footer-address p {
        text-align: center;
    }
    
    .footer-social-grid {
        justify-content: center;
    }
    
    .footer-section:first-child {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: left;
    }
    
    .metro-carousel {
        max-width: 100%;
    }
    
    .press-carousel {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2rem auto;
        max-width: 100%;
    }
    
    .press-carousel .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .press-carousel .carousel-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .press-carousel .press-item {
        margin: 0 auto;
        max-width: 90%;
    }
    
    .carousel-image {
        height: 300px;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .partners-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .partner-item {
        min-width: 150px;
    }
    
    .charging-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    .contact-form-section {
        margin-top: 100px;
    }
    .hero.careers-hero {
        margin-top: 70px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }
    
    .cta-button.primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .cert-item,
    .feature-card,
    .service-card,
    .benefit-card,
    .position-card,
    .category-card,
    .support-card {
        padding: 1.5rem;
    }
    
    .fleet-item h3,
    .press-item h3 {
        padding: 1rem 1rem 0.5rem;
    }
    
    .fleet-item p,
    .press-item p {
        padding: 0 1rem 1rem;
    }
    
    .stats-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number,
    .impact-number {
        font-size: 2.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshot-img {
        width: 200px;
        height: 400px;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .carousel-image {
        height: 250px;
    }
    
    .press-carousel {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2rem auto;
        max-width: 100%;
    }
    
    .press-carousel .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .press-carousel .carousel-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .press-carousel .press-item {
        margin: 0 auto;
        max-width: 90%;
    }
    
    .charging-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-image,
    .overview-image,
    .map-image {
        border-radius: 10px;
    }
    
    .feature-image,
    .service-image,
    .benefit-icon,
    .position-icon,
    .category-icon,
    .support-icon {
        width: 50px;
        height: 50px;
    }
    
    .cert-image {
        width: 60px;
        height: 60px;
    }
    
    .partner-logo {
        width: 100px;
        height: 50px;
    }
    
    .download-btn {
        padding: 0.75rem 1rem;
    }
    
    .store-icon {
        width: 35px;
        height: 35px;
    }
    
    .store-label {
        font-size: 0.7rem;
    }
    
    .store-name {
        font-size: 0.9rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .service-card:hover,
    .fleet-item:hover,
    .press-item:hover,
    .cert-item:hover,
    .benefit-card:hover,
    .position-card:hover,
    .culture-item:hover,
    .category-card:hover,
    .support-card:hover {
        transform: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 0;
    }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image,
    .overview-image,
    .map-image,
    .fleet-image,
    .press-image,
    .culture-image,
    .screenshot-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .cta-button,
    .footer {
        display: none;
    }
    
    .hero {
        padding: 20px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 18pt;
    }
    
    .hero-headline {
        font-size: 24pt;
    }
}

/* Ensure counters are visible and properly styled */
.stats .stat-number,
.impact .impact-number {
    font-size: 3rem;
    color: inherit;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats .stat-number {
    color: #6dc7ae;
}

.impact .impact-number {
    /* Removed conflicting color */
}

/* Remove old .floating-car style and add new side car styles */
.side-cars {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 180px;
    pointer-events: none;
    z-index: 5;
    display: none; /* Hide side cars on all pages */
    flex-direction: column;
    justify-content: flex-end;
}
.side-cars.left {
    left: 0;
}
.side-cars.right {
    right: 0;
}
.side-car {
    position: absolute;
    width: 48px;
    height: auto;
    left: 16px;
    will-change: transform, left;
    pointer-events: none;
    opacity: 0.95;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
    transition: filter 0.2s, left 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    object-fit: contain;
    aspect-ratio: auto;
}
/* Remove the media query since we're hiding on all screen sizes */

.hero-car {
    position: absolute;
    top: 50%;
    left: -120px;
    width: 120px;
    height: auto;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0;
    transition: left 1.4s cubic-bezier(0.4,0.2,0.2,1), opacity 0.5s;
}
#heroText {
    position: absolute;
    top: 50%;
    left: -600px;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0;
    transition: left 1.2s cubic-bezier(0.4,0.2,0.2,1), opacity 0.5s;
    max-width: 500px;
}
#heroHeadline, #heroSubheadline {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s, transform 0.8s cubic-bezier(0.4,0.2,0.2,1);
}
#heroSubheadline {
    transition-delay: 0.2s;
}
#heroCTA {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.4,0.2,0.2,1);
}
#heroCTA.visible {
    opacity: 1;
    pointer-events: auto;
}

.certifications-in-hero {
    min-width: 100%;
    max-width: 100%;
    min-height: 250px;
    max-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -80px;
    position: relative;
    z-index: 25;
}

.certifications-in-hero .cert-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 26;
    min-width: 100%;
}

.certifications-in-hero .cert-item {
    transform: scale(0.5);
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    position: relative;
    z-index: 27;
    /* Initial animation state - will be overridden by JavaScript */
    opacity: 0;
    transform: translateY(0px) scale(0.5);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Remove old .certifications section styles if present */
.certifications { display: none !important; }

.features-grid .feature-card {
    transform: scale(0.7);
    margin: 0;
}

/* USP Section Styles */
.usp-section {
    background: #f8fffe;
    padding: 40px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
    justify-items: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
}

.usp-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(109, 199, 174, 0.08), 0 0.75px 2px rgba(20, 19, 57, 0.04);
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    margin: 0;
}

.usp-card:hover {
    box-shadow: 0 4px 16px rgba(109, 199, 174, 0.18);
    transform: translateY(-2px) scale(1.03);
    background: #afddd0;
}

.usp-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 0rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.usp-icon:hover {
    scale: 1.5;
    filter: brightness(0) saturate(100%) invert(8%) sepia(13%) saturate(7470%) hue-rotate(210deg) brightness(80%) contrast(110%);
}

.usp-title {
    font-size: 0.75rem;
    color: #141339;
    margin-top: -0.5rem;
}

.usp-title:hover {
    font-size: 0.85rem;
}

@media (max-width: 1400px) {
    .usp-grid {
        max-width: 100%;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    .usp-card {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .usp-grid {
        grid-template-columns: 1fr;
    }
    .usp-card {
        width: 100%;
        height: auto;
        min-height: 60px;
    }
    .usp-icon {
        width: 24px;
        height: 24px;
    }
    .usp-title {
        font-size: 0.5rem;
    }
}

.whatsapp-float {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 9999;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(44, 183, 66, 0.18);
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 0;
}
.whatsapp-float:hover {
    box-shadow: 0 8px 32px rgba(44, 183, 66, 0.28);
    transform: scale(1.5);
}

@media (max-width: 600px) {
    .whatsapp-float {
        right: 8px;
        bottom: 8px;
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
    }
    .whatsapp-float-img {
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
    }
}

.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 20px);
    grid-template-rows: repeat(2, 20px);
    gap: 18px 32px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
}
.footer-social-icon {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
    transition: transform 0.2s, filter 0.2s;
    cursor: pointer;
    border-radius: 50%;
    
}
.footer-social-icon:hover {
    transform: scale(1.25);
    filter: brightness(0.9) saturate(1.2);
    box-shadow: 0 4px 16px rgba(20,19,57,0.12);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 0.8rem 2.5rem;
    justify-content: left;
    align-items: center;
    text-align: left;
    margin: 0 0 1.5rem 0;
}
.footer-links-grid a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links-grid a:hover {
    color: #6dc7ae;
}
.footer-address {
    text-align: center;
}

.fleet-grid .fleet-item {
    transform: scale(1.0);
    margin: 0;
}

.fleet-carousel-container {
    position: relative;
    width: 100%;
    height: 340px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    margin-bottom: 2rem;
    }

.fleet-carousel {
    width: 100%;
    height: 340px;
    position: relative;
    border-radius: 50px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.77,0,0.175,1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 250px;
    background: #f8fffe;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(110, 110, 110, 0.068);
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    transform-style: preserve-3d;
    opacity: 0.5;
    transition: transform 0.8s cubic-bezier(0.77,0,0.175,1), opacity 0.4s;
    pointer-events: none;
}

.fleet-item.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
    box-shadow: 0 20px 40px rgba(109,199,174,0.15);
}

.fleet-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: #fff;
    border: 1px solid #6dc7ae;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1.5rem;
    color: #6dc7ae;
    opacity: 0.85;
    transition: opacity 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.fleet-carousel-btn.prev { left: 0; }
.fleet-carousel-btn.next { right: 0; }
.fleet-carousel-btn:hover { opacity: 1; }

/*  3D Slider Section */
.fleet2-section {
    background: #f8fffe;
    padding: 80px 0 60px;
}
.fleet2-carousel {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    min-height: 340px;
}
.fleet2-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    position: relative;
    height: 320px;
    perspective: 800px;
    transition: transform 0.5s cubic-bezier(0.4,0.2,0.2,1);
}
.fleet2-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotateY(0deg);
    transition: transform 0.5s cubic-bezier(0.4,0.2,0.2,1), opacity 0.5s;
    z-index: 1;
    pointer-events: none;
}
.fleet2-card.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    z-index: 2;
    pointer-events: auto;
}
.fleet2-card.left {
    opacity: 1;
    transform: translate(-120%, -50%) scale(0.8) rotateY(30deg);
    z-index: 1;
}
.fleet2-card.right {
    opacity: 1;
    transform: translate(20%, -50%) scale(0.8) rotateY(-30deg);
    z-index: 1;
}
.fleet2-image {
    width: 180px;
    height: 120px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.fleet2-card h3, .fleet2-card p {
    transition: transform 0.4s cubic-bezier(0.4,0.2,0.2,1);
}
.fleet2-card.active h3, .fleet2-card.active p {
    transform: translateY(30px);
}
.fleet2-card h3 {
    color: #141339;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.fleet2-card p {
    color: #666;
    font-size: 0.95rem;
}
.fleet2-btn {
    background: #fff;
    border: 1px solid #6dc7ae;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1.5rem;
    color: #6dc7ae;
    opacity: 0.85;
    transition: opacity 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}
.fleet2-btn-prev { left: -60px; }
.fleet2-btn-next { right: -60px; }
.fleet2-btn:hover { opacity: 1; background: #e4fdf5; }
@media (max-width: 1100px) {
    .fleet2-card, .fleet2-cards { width: 240px; height: 240px; }
    .fleet2-image { width: 120px; height: 80px; }
    .fleet2-btn-prev { left: -30px; }
    .fleet2-btn-next { right: -30px; }
}
@media (max-width: 700px) {
    .fleet2-section { padding: 40px 0 30px; }
    .fleet2-card, .fleet2-cards { width: 160px; height: 160px; }
    .fleet2-image { width: 80px; height: 50px; }
    .fleet2-btn { width: 32px; height: 32px; font-size: 1.1rem; }
    .fleet2-btn-prev { left: -10px; }
    .fleet2-btn-next { right: -10px; }
}
.fleet2-card.left2 {
    opacity: 1;
    transform: translate(-155%, -50%) scale(0.65) rotateY(15deg);
    z-index: 0;
}
.fleet2-card.right2 {
    opacity: 1;
    transform: translate(60%, -50%) scale(0.65) rotateY(-15deg);
    z-index: 0;
}

.fleet2-card .fleet2-image {
    transition: transform 0.4s cubic-bezier(0.4,0.2,0.2,1);
}
.fleet2-card.active .fleet2-image {
    transform: scale(1.4);
}

/* USP2 Section Styles */
.usp2-section {
    background: #ffffff;
    padding-bottom: 40px;
    padding-top: 20px;
}

.usp2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-items: center;
    align-items: center;
    max-width: 100%;
}

.usp2-card {
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 2px 8px rgba(109, 199, 174, 0.08), 0 0.75px 2px rgba(20, 19, 57, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    margin: 0;
    min-width: 50%;
    min-height: 75%;
    max-width: 50%;
    max-height: 100%;
}

.usp2-card:hover {
    box-shadow: 0 4px 16px rgba(109, 199, 174, 0.18);
    transform: translateY(-2px) scale(1.03);
    background: #afddd0;
}

.usp2-icon {
    min-width: 90px;
    min-height: 90px;
    max-width: 90px;
    max-height: 90px;
    margin-bottom: 0rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.usp2-icon:hover {
    scale: 1.5;
    filter: brightness(0) saturate(100%) invert(8%) sepia(13%) saturate(7470%) hue-rotate(210deg) brightness(80%) contrast(110%);
}

.usp2-title {
    font-size: 0.56rem;
    color: #141339;
    margin-top: -0.4rem;
}

.usp2-title:hover {
    font-size: 0.85rem;
}

@media (max-width: 1400px) {
    .usp2-grid {
        max-width: 100%;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .usp2-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    .usp2-card {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .usp2-grid {
        grid-template-columns: 1fr;
    }
    .usp2-card {
        width: 100%;
        height: auto;
        min-height: 60px;
    }
    .usp2-icon {
        width: 24px;
        height: 24px;
    }
    .usp2-title {
        font-size: 0.5rem;
    }
}

.metro2-carousel {
    position: relative;
    margin-top: 100px;
    width: 100%;
    margin-left: 50px;
    margin-right: 50px;
    overflow: hidden;
    border-radius: 0px;
}

.metro2-carousel .carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.metro2-carousel .carousel-btn {
    background: rgba(109, 199, 174, 0.95);
    color: #fff;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.metro2-carousel .carousel-btn:hover {
    background: #6dc7ae;
    transform: scale(1.12);
}

@media (max-width: 600px) {
    .metro2-carousel .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .metro2-carousel .carousel-controls {
        padding: 0 6px;
    }
}

.metro2 .section-title {
    margin-bottom: 1.2rem;
}
.metro2 .section-subtitle {
    margin-top: -0.6rem;
    margin-bottom: 1.2rem;
}

.metro2 {
    padding-top: 56px;
}

.metro2-carousel .carousel-dots {
    margin-top: 80px;
} 

.metro2 .press-item {
    margin-top: 50px;
    transform: scale(1);
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: -30px;
} 

.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 19, 57, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.2s;
    opacity: 0;
}
.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    background: #fff;
    object-fit: contain;
    cursor: zoom-out;
}

/* Lightbox Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(109, 199, 174, 0.95);
    color: #fff;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: #6dc7ae;
    transform: translateY(-50%) scale(1.12);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 600px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
}

/* Download Page Hero Image Floating Effect */
.download-hero-image {
    position: absolute;
    right: 25%;
    top: 62%;
    transform: translateY(-50%) translateX(20%);
    min-width: 50px;
    min-height: 50px;
    max-width: 50%;
    max-height: 50px;
    z-index: 30;
}
@media (max-width: 900px) {
    .download-hero-image {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 32px auto 0 auto;
        display: block;
    }
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
.hero.download-hero {
    position: relative;
    overflow: visible;
}

/* Download Page Hero2 Section */
.hero2-section {
    padding: 64px 0 48px 0;
    background: #ffffff;
    padding-top: 200px;
    padding-bottom: 50px;
    max-width: 100%;
}
.hero2-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 100%;
    min-width: 50%;
}
.hero2-image-container {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
}

.hero2-text-container {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}
.hero2-heading {
    font-size: 2.5rem;
    color: #141339;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.hero2-subheading {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.1rem;
}
.hero2-icons-row {
    display: flex;
    gap: 20px;
}
.hero2-icon-placeholder {
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
    max-height: 100px;
    background: #d1f5e6;
    border-radius: 16px;
}
.hero2-icon:hover {
    transform: scale(1.05);
}
@media (max-width: 900px)
    .hero2-content {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 50px;
    }
    .hero2-image-placeholder {
        width: 220px;
        height: 280px;
    }
    .hero2-icon-placeholder {
        width: 48px;
        height: 48px;
    }
    .hero2-heading {
        font-size: 2.5rem;
    }
}

.hero2-image {
    /* No animation */
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    justify-items: center;
    align-items: center;
    margin-top: 100px;
}
.screenshot-img {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(109,199,174,0.10);
    object-fit: cover;
    transition: transform 0.25s cubic-bezier(0.4,0.2,0.2,1), box-shadow 0.25s;
}
.screenshot-img:hover {
    transform: scale(1.5);
    box-shadow: 0 8px 32px rgba(109,199,174,0.18);
}
@media (max-width: 1100px) {
    .screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .screenshot-img {
        max-width: 100px;
    }
}
@media (max-width: 700px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .screenshot-img {
        max-width: 90px;
    }
}

@media (max-width: 576px) {
    .hero2-section {
        padding: 32px 0 24px 0;
        padding-top: 120px;
    }
    .hero2-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        min-width: unset;
        max-width: 100%;
    }
    .hero2-image-container {
        transform: scale(1);
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .hero2-image {
        width: 180px !important;
        max-width: 90vw !important;
        border-radius: 16px;
    }
    .hero2-text-container {
        align-items: center;
        text-align: center;
        gap: 12px;
        width: 100%;
    }
    .hero2-heading {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
    }
    .hero2-subheading {
        font-size: 0.95rem;
        margin-bottom: 0.1rem;
    }
    .hero2-icons-row {
        flex-direction: column;
        gap: 0px;
        align-items: center;
        width: 100%;
    }
    .hero2-icon {
        width: 120px !important;
        height: 120px !important;
    }
}

/* =========================
   Company Overview Section
   ========================= */
.company-overview {
    padding-top: 140px;
    padding-bottom: 20px;
}

/* =========================
   Roadmap Timeline Styles
   ========================= */
.roadmap-section {
  padding: 64px 0 48px 0;
  background: #f8fffe;
}
.roadmap-timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  position: relative;
  margin: 48px 0 0 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-top: 50px;
}
.roadmap-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  max-width: 220px;
  position: relative;
}
.roadmap-year {
  font-weight: 700;
  color: #141339;
  margin-bottom: 8px;
  font-size: 1.1rem;
  text-align: center;
}
.roadmap-dot {
  width: 18px;
  height: 18px;
  background: #6dc7ae;
  border-radius: 50%;
  margin: 0 0 12px 0;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(109,199,174,0.10);
  z-index: 2;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.roadmap-title {
  font-weight: 600;
  color: #5bb89a;
  margin-bottom: 2px;
  font-size: 1rem;
  text-align: center;
  margin-top: 80px;
}
.roadmap-desc {
  color: #666;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 0;
}
.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 106px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6dc7ae 0%, #5bb89a 100%);
  z-index: 1;
}
@media (max-width: 900px) {
  .roadmap-timeline {
    gap: 32px;
  }
  .roadmap-item {
    min-width: 140px;
    max-width: 180px;
  }
}
@media (max-width: 600px) {
  .roadmap-timeline {
    gap: 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 16px;
  }
  .roadmap-item {
    min-width: 120px;
    max-width: 140px;
  }
  .roadmap-section {
    padding: 32px 0 24px 0;
  }
}

.team-photo {
    min-width: 100px;
    min-height: 100px;
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 0 1rem 0;
}
.team-member {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* =========================
   KeyTeam Section Styles
   ========================= */
.keyteam-section {
  padding: 64px 0 48px 0;
  background: #f8fffe;
  text-align: center;
}
.keyteam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
}
.keyteam-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(109,199,174,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.keyteam-photo {
  min-width: 70px;
  max-width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.keyteam-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #141339;
  margin-bottom: 0.3rem;
}
.keyteam-subtitle {
  font-size: 1rem;
  color: #5bb89a;
  margin-bottom: 0.5rem;
}
.keyteam-text {
  font-size: 0.95rem;
  color: #666;
  text-align: justify;
}
@media (max-width: 900px) {
  .keyteam-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .keyteam-grid {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
}

/* Founders (Team) Section Grid Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
}
.team-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(109,199,174,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 700px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
}

.team-heading {
  color: #6dc7ae;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0.2rem;
  margin-top: 0.5rem;
}
.team-subheading {
  color: #6dc7ae;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.team-member p {
  text-align: justify;
}

.linkedin-link {
  display: inline-block;
  margin-top: 0.7rem;
  transition: transform 0.2s;
}
.linkedin-link:hover {
  transform: scale(1.15);
}
.linkedin-icon {
  width: 32px;
  height: 32px;
  display: block;
  filter: grayscale(100%) brightness(0.7);
  transition: filter 0.2s;
}
.linkedin-link:hover .linkedin-icon {
  filter: none;
}

@media (min-width: 993px) {
  .footer-social-grid {
    justify-content: flex-start !important;
  }
}

@media (max-width: 600px) {
  .footer-social-grid {
    justify-content: center !important;
  }
}

/* Section Divider SVG Styles for Careers Page */
.section-divider {
  width: 100%;
  line-height: 0;
  position: relative;
  z-index: 2;
}
.section-divider-svg {
  display: block;
  width: 100%;
  height: 200px;
}
.section-divider-polygon {
  /* Change the divider color below: */
  fill:rgba(228, 253, 245, 0.85); /* Example: #fff or any color you want */
}

.positions-filter {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
#department-select {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid #6dc7ae;
  font-size: 1rem;
}

.position-card.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

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

.position-card {
  background: rgba(228, 253, 245, 0.85);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.apply-button button {
  background: linear-gradient(135deg, #6dc7ae 0%, #5bb89a 100%);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(109, 199, 174, 0.15);
  outline: none;
  display: inline-block;
}
.apply-button button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(109, 199, 174, 0.3);
  background: linear-gradient(135deg, #5bb89a 0%, #6dc7ae 100%);
}

.positions.more-opportunities {
  padding-top: 32px;
  padding-bottom: 32px;
  margin-top: -80px;
}

.position-card ul {
  text-align: left;
  margin-left: 1.2em;
  padding-left: 0.5em;
}
.position-card li {
  text-align: left;
  margin-bottom: 0.5em;
}

.contact-form-section {
    padding-top: 150px;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 32px 0 24px 0;
    }
}

.office-location {
    padding: 64px 0 48px 0;
    padding-top: 0px;
}

@media (max-width: 768px) {
    .office-location {
        padding: 32px 0 24px 0;
    }
}

.footer-link-inactive {
    color: #cccccc;
    opacity: 0.6;
    cursor: not-allowed;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0;
    pointer-events: none;
    transition: none;
    display: inline-block;
}

.location-map iframe {
    width: 100%;
    height: 400px;
    max-width: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .location-map iframe {
        height: 220px;
        min-height: 140px;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .hero.careers-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 90px 0 40px;
    }
    .hero.careers-hero .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    .hero.careers-hero .hero-text {
        width: 100%;
        padding: 0 10px;
        text-align: center;
    }
    .hero.careers-hero .hero-headline {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        white-space: normal;
    }
    .hero.careers-hero .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
}

/* Responsive blog grid for blog.html */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s;
  display: flex;
  flex-direction: column;
}
.post-card:hover, .post-card:focus {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.post-content {
  padding: 1.2rem;
  flex: 1 1 auto;
}
.post-category {
  font-size: 0.9rem;
  color: #6dc7ae;
  font-weight: 600;
  text-transform: uppercase;
}
.post-meta {
  margin-top: 0.5rem;
  color: #888;
  font-size: 0.9rem;
}

/* Policy Pages Styles */
.policy-content {
    padding: 80px 0;
    background: #f8fafc;
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: #141339;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #6dc7ae;
    padding-bottom: 10px;
}

.policy-section h3 {
    color: #141339;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.policy-section p {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section ul, .policy-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section li {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 8px;
}

.policy-section strong {
    color: #141339;
    font-weight: 600;
}

.contact-info {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #6dc7ae;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 8px;
    color: #6B7280;
}

.contact-info p:first-child {
    color: #141339;
    font-weight: 600;
    margin-bottom: 15px;
}

.policy-date {
    text-align: center;
    font-style: italic;
    color: #9CA3AF;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 60px 0;
    }
    
    .policy-wrapper {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .policy-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 20px;
    }
}

.blog-post {
  margin-bottom: 3rem;
}

