/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: #050505; 
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden; 
    z-index: 1;
    perspective: 1000px; 
    transform-style: preserve-3d; /* Added for better 3D child rendering */
}

/* VIDEO */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.02);
    /* Smoothed out the ambient zoom */
    animation: ambientZoom 25s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
    will-change: transform;
}

/* DARK TINT - Upgraded to a Cinematic Vignette */
.video-overlay {
   position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* ── NAV PILLS (Main Links) ── */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-item {
    position: relative;
}

.nav-links .nav-item > a {
    padding: 0.5rem 1.0rem;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    display: block;
    transition: .4s ease;
}

.nav-links .nav-item > a:hover {
    background: rgba(255,255,255,0.35);
}

/* ── DROPDOWN MENU ── */
.dropdown {
    position: absolute;
    top: 110%; /* Adjusted for better spacing */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 35, 5, 0.92); /* Deep Bhumi Green */
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column; 
    gap: 8px; 
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Links (No Pills) */
.dropdown a {
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    padding: 0.6rem 1rem !important;
    border-radius: 8px !important;
    display: block !important;
    width: 100%;
    color: #fff;
    text-decoration: none;
    text-align: left;
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #a8e08a !important; /* Light green accent */
}
/* NAV */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.logo img {
    width: 360px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    padding: .7rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;

    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);

    transition: .4s ease;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.35);
}

/* ========================================= */

/* HERO TEXT SECTION */
.hero-text {
    position: absolute;
    top: 50%;
    left: 6vw;
    transform: translateY(-50%);
    max-width: 830px;
    color: #ffffff;
    z-index: 3;
    animation: fadeUpText 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-text h1 {
    font-size: clamp(2.6rem, 4.5vw, 4.2rem); 
    font-weight: 800; /* Bolder for modern aesthetic */
    line-height: 1.05;
    letter-spacing: -1.5px; /* Tighter tracking for premium feel */
    margin-bottom: 1.5rem;
    /* Layered text shadow for cinematic depth */
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 
                 0 12px 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                text-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-text h1:hover {
    transform: translateY(-4px) scale(1.01);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 
                 0 20px 50px rgba(0, 0, 0, 0.9);
}

.hero-text p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}



/* --- PREMIUM KEYFRAME ANIMATIONS --- */

@keyframes ambientZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.10); } /* Slightly reduced for a more subtle cinematic feel */
}

@keyframes fadeUpText {
    0% {
        opacity: 0;
        transform: translateY(calc(-50% + 50px));
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%);
        filter: blur(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseRipple {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}
/* IMPACT SECTION (Layout Maintained) */
.impact-section {
    position: relative;
    padding: 5rem 3rem 6rem;
    overflow: hidden;
    z-index: 1;
    background-color: transparent; /* Assuming dark background behind */
}

.impact-title {
    text-align: center;
    margin-bottom: 4rem;
    line-height: 0.7;
    z-index: 2;
}
.impact-title {
    overflow: visible;
}

.impact-title span,
.impact-title strong,
.impact-title small {
    margin: 0;           /* remove extra spacing */
    padding: 0;
}

.impact-title small {
    padding-bottom: 0.5em; /* prevents cut-off */
}

/* COMMON BASE SIZE (for 1st + 2nd line) */
.impact-title span,
.impact-title strong {
    display: block;
    font-size: clamp(2.8rem, 5vw, 4rem); /* SAME SIZE */
    font-weight: 800;
    letter-spacing: -1px;

    background: linear-gradient(to right, #ffffff, #a3c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* THIRD LINE → slightly smaller */
.impact-title small {
    display: block;
    font-size: clamp(2.4rem, 4.5vw, 3.4rem); /* ~2 steps smaller */
    font-weight: 820;
    letter-spacing: -0.5px;
    margin-top: 0.3rem;

    background: linear-gradient(to right, #ffffff, #a3c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.impact-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2.5rem; 
    position: relative;
    z-index: 10;
    perspective: 1200px; /* Deepened perspective for richer 3D interactivity */
}

.impact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35); /* same as hero */
    z-index: 1;
    pointer-events: none;
}

.impact-title {
    position: relative;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    letter-spacing: -1px;
    z-index: 2;

    /* SAME GRADIENT STYLE */
    background: linear-gradient(to right, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* SAME DEPTH EFFECT */
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
/* CARD - Premium Glassmorphism */
.impact-card {
    position: relative;
    /* Slightly increased padding for a more breathable, premium layout */
    padding: 3rem 2.5rem; 
    border-radius: 28px; /* Softer, organic corners */
    
    /* Ultra-refined Glassmorphism: Softer gradient, less harsh white */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    
    /* Crisp, high-end directional borders */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.25); 
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    
    /* Layered shadows for realistic depth */
    box-shadow: 
        0 4px 24px -1px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
        
    /* Buttery smooth custom easing */
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); 
    cursor: pointer;
    z-index: 5;
    overflow: hidden; 
}

/* 1. INTERACTIVE: Premium Sweeping Shine */
.impact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    /* Sharper, more realistic glass glare */
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 30%, 
        rgba(255, 255, 255, 0.25) 50%, 
        rgba(255, 255, 255, 0.05) 70%, 
        transparent 100%
    );
    transform: skewX(-30deg);
    transition: left 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

/* 2. INTERACTIVE: Hover State (Subtle 3D Tilt & Lift) */
.impact-card:hover {
    /* Multi-axis lift makes it feel like it's floating towards the user */
    transform: translateY(-12px) scale(1.01) rotateX(2deg) rotateY(-1deg); 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    
    /* Deep, rich cinematic shadow */
    box-shadow:
        0 35px 60px -15px rgba(0, 0, 0, 0.4),
        0 20px 30px -10px rgba(0, 71, 170, 0.15), 
        inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
    z-index: 10;
}

/* Trigger the shine sweep */
.impact-card:hover::before {
    left: 200%; 
}

/* 3. ATMOSPHERIC: Dual-Tone Mesh Glow (Replaces basic radial glow) */
.impact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(600px circle at 0% 0%, rgba(77, 166, 255, 0.12), transparent 50%),
                radial-gradient(600px circle at 100% 100%, rgba(140, 181, 0, 0.12), transparent 50%);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.impact-card:hover::after {
    opacity: 1;
}

/* 4. INTERACTIVE: Staggered Internal Parallax Elements */
.impact-card > * {
    position: relative;
    z-index: 2; 
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.4s ease, text-shadow 0.4s ease;
}

/* TYPOGRAPHY - Refined for premium readability */
.impact-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4da6ff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em; /* Tighter tracking for large headers */
    text-shadow: 0 8px 20px rgba(77, 166, 255, 0.25); 
}

.impact-card:hover h2 {
    color: #8cb500;
    text-shadow: 0 12px 30px rgba(140, 181, 0, 0.35);
    /* Highest lift for the title */
    transform: translateY(-8px) scale(1.03); 
}

.impact-card h4 {
    font-size: 0.85rem;
    letter-spacing: 0.15em; /* Wider tracking for premium subheadings */
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase; 
}

.impact-card:hover h4 {
    /* Medium lift */
    transform: translateY(-5px); 
}

.impact-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7); /* Softer white for easier reading */
    font-weight: 300;
    line-height: 1.8;
    margin: 0; 
}

.impact-card:hover p {
    /* Lowest lift, creates a 3D depth map effect */
    transform: translateY(-2px); 
    color: rgba(255, 255, 255, 0.9);
}
/* WHAT WE DO - MAIN CONTAINER */
.what-we-do {
    position: relative;
    padding: 9rem 2rem 7rem; /* Increased for better premium breathing room */
    min-height: 100vh;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    margin-top: 0;
    background-color: #050505;
    perspective: 1200px; /* Enables 3D space for child cards */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* BACKGROUND & FIXED VIDEO FIX */
.what-we-do-bg {
    position: absolute;
    /* Expanded slightly to prevent edge bleed during zoom */
    inset: 0; 
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.what-we-do-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slowCinematicZoom {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(1%, 1%); }
}

/* PREMIUM DARK OVERLAY (Depth of Field & Vignette) */
.what-we-do::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Upgraded to a radial vignette for a cinematic focus on the center */
     background: rgba(0,0,0,0.5);
    backdrop-filter: none;
    -webkit-backdrop-filter: blur(6px);
    z-index: 1;
    pointer-events: none;
}

.what-we-do-container {
    position: relative;
    z-index: 3;
    height: 100%;
    width: 100%;
    max-width: 1400px;
}

/* REFINED APPLE-STYLE GLASSMORPHISM */
.what-we-do::before {
    content: "";
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    max-width: 90vw;
    height: 220px;
    
    /* Softer, more luxurious glass gradient */
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.15);
    z-index: 2;
}

/* TYPOGRAPHY */
.what-we-do h2 {
    position: relative;
    z-index: 3;
    font-size: 3.8rem;
    font-weight: 800;
    /* Brighter, sleeker text gradient */
    background: linear-gradient(135deg, #ffffff 0%, #a3c2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

.section-subtitle {
    position: relative;
    z-index: 3;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.7;
    max-width: 650px;
    margin-inline: auto;
    font-weight: 300;
}

/* GRID LAYOUT */
.frustum-grid {
    width: 100%;
    margin: 7rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
    position: relative;
    z-index: 3;
}



/* INTERACTIVE 3D CARDS */
.frustum-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    min-height: 420px; /* Added height since image is removed */
    margin: auto;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.33, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    border-radius: 28px;
    /* Setting base Z so the pop effect works */
    transform: translateZ(0);
}

/* Hover: Floating 3D effect */
.frustum-card:hover {
    transform: translateY(-15px) scale(1.03) rotateX(6deg) rotateY(-4deg);
    z-index: 10;
}


/* New CSS Frustum/Container Shape replacing the background image */
.frustum-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* Organic Leaf Design replacing the basic rectangle - fits Bhumi Green Energy Theme */
    border-radius: 60px 12px 60px 12px; 
    /* 👇 Paste this into your existing card or bg class 👇 */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)) !important;
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Adds the shiny glass edge */
    /* 👆 Keep all your original border-radius and shadow settings below this! 👆 */
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08), 
        inset 0 -10px 20px rgba(0, 208, 99, 0.04); /* Subtle eco-green inner glow */
    border: 1px solid rgba(0, 208, 99, 0.15); /* Delicate green outline */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.33, 1);
    z-index: 1;
    overflow: hidden;
}

/* Environmental / Tech accent pattern at the bottom */
.frustum-bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #00d063, #8cb500); /* Green energy gradient base */
    transition: all 0.6s ease;
}

/* Eco-indicator dot replacing the old tech handle */
.frustum-bg::after {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 10px;
    height: 10px;
    background: #00d063; /* Glowing green indicator */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 208, 99, 0.6);
    transition: all 0.4s ease;
}

.frustum-card:hover .frustum-bg {
    background: #ffffff; /* Keeps plain white */
    /* Morphs shape on hover for an interactive biological/tech feel */
    border-radius: 12px 60px 12px 60px; 
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15), 
        inset 0 -10px 20px rgba(0, 71, 170, 0.04); /* Glow shifts to blue */
    border: 1px solid rgba(0, 71, 170, 0.15); /* Outline shifts to blue */
}

.frustum-card:hover .frustum-bg::before {
    background: linear-gradient(90deg, #0047aa, #4da6ff); /* Base morphs to theme blue */
}

.frustum-card:hover .frustum-bg::after {
    background: #0047aa; /* Glowing blue indicator */
    box-shadow: 0 0 12px rgba(0, 71, 170, 0.8);
    transform: scale(1.4);
}


/* 3D PARALLAX CONTENT INSIDE CARDS */
.frustum-content {
    position: absolute;
    inset: 0;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    z-index: 3;
    transform-style: preserve-3d;
    transform: translateZ(30px); /* Base push */
}

/* Icon popping out */
.frustum-content .icon {
    height: 72px;
    margin-bottom: 1.5rem;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 8px 16px rgb(101, 255, 58));
}

.frustum-card:hover .frustum-content .icon {
    transform: scale(1.15) translateZ(40px); /* Intense 3D pop on hover */
    filter: drop-shadow(0 20px 25px rgba(0, 255, 51, 0.858));
}

/* Typography adjusting for white mode aesthetics */
.frustum-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #eaf1fb; /* Changed to dark slate for plain white background */
    margin-bottom: 0.8rem;
    transition: all 0.5s ease;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.frustum-card:hover .frustum-content h3 {
    color: #0047aa; /* Theme Blue on Hover */
    transform: translateZ(25px); /* 3D pop */
}

.frustum-content p {
    font-size: 1.05rem;
    color: #c2c3c5; /* Dark gray for plain white background visibility */
    line-height: 1.6;
    font-weight: 500;
    transition: all 0.5s ease;
}

.frustum-card:hover .frustum-content p {
    color: #0f172a; /* Even darker shade on hover for depth */
    transform: translateZ(15px); /* 3D pop */
}

/* PREMIUM CALL TO ACTION BUTTON */
.btn-extra {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 4rem;
    border-radius: 60px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 6rem;
    margin-bottom: 2rem;
    
    /* Glassmorphic base state */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(200px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    
    transition: all 0.5s cubic-bezier(0.25, 1, 0.33, 1);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

/* Solid gradient sweep on hover */
.btn-extra::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0056cc 0%, #002c6b 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-extra:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 
        0 20px 40px rgba(0, 113, 255, 0.4), 
        0 0 20px rgba(0, 113, 255, 0.2);
}

.btn-extra:hover::before {
    opacity: 1;
}

.btn-extra:active {
    transform: translateY(1px) scale(0.98);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .frustum-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem 2.5rem;
    }
    .what-we-do h2 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .what-we-do {
        padding: 7rem 1.5rem 5rem;
    }
    
    .what-we-do::before {
        top: 5rem;
        height: 180px;
        width: 95vw;
    }

    .what-we-do h2 {
        font-size: 2.6rem;
    }

    .frustum-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-top: 5rem;
    }

    .frustum-card {
        max-width: 420px;
    }
}
/* VISION / MISSION / VALUES SECTION */
.vmv-section {
    padding: 8rem 4rem;
    background:
        
        url("assets/images/Bhumi.jpeg") center / cover no-repeat;
    position: relative;
}

.vmv-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.vmv-card {
    position: relative;
    padding: 3rem 2.4rem;
    border-radius: 28px;
    /* Enhanced 3D Glassmorphism */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(24, 87, 163, 0.15) 100%
    );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    /* Lighter top/left borders simulate a light source */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #fff;
    /* Springy transition for the lift effect */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

/* Sweeping light reflection effect */


.vmv-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(24, 87, 163, 0.25) 100%
    );
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(140, 181, 0, 0.15), /* Subtle green aura */
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.vmv-card h3 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.vmv-card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 4px;
    background: #8cb500;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 8px rgba(140, 181, 0, 0.4);
}

.vmv-card:hover h3::after {
    width: 100%;
    background: #9ed600; /* Brightens on hover */
    box-shadow: 0 0 15px rgba(140, 181, 0, 0.8);
}

.vmv-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.8;
    font-weight: 300;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.vmv-card:hover p {
    opacity: 1; /* Text pops slightly when hovered */
}

/* FAQ SECTION - PREMIUM UPGRADE */
.faq-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.faq-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(var(--parallax-y, 0px));
    will-change: transform;
    scale: 1.02; /* Prevents edges showing during parallax */
}

.faq-container { 
    position: relative; 
    z-index: 2; 
    max-width: 1400px;
    margin: 0 auto;
}

.faq-section {
    position: relative;
    padding: 10rem 4rem 8rem;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Deeper, cinematic gradient overlay */
 .faq-section::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at center,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.6) 100%
    );

    z-index: 1;
    pointer-events: none;

}

/* ENHANCED GLASS CARD FOR FAQ HEADING */

.faq-title {
    position: relative;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 4.5rem;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2; 
    /* Premium text gradient */
    background: linear-gradient(to right, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LAYOUT (Kept Intact) */
.faq-wrapper {
    display: flex;
    gap: 60px; 
    align-items: flex-start;
}

.grid-2x3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px; 
    flex: 1;
}

/* PREMIUM INTERACTIVE BUTTONS */
.faq-btn {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 24px 32px;
    text-align: left;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Animated glowing left border */
.faq-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0px;
    background: linear-gradient(to bottom, #4facfe 0%, #00f2fe 100%);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
}

.faq-btn h4 {
    position: relative;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.4s ease;
    z-index: 1;
}

.faq-btn:hover h4 {
    color: #0284c7;
}

.faq-arrow {
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #0284c7;
    font-weight: 800;
    font-size: 1.4rem;
    z-index: 1;
}

/* ACTIVE BUTTON STATE */
.faq-btn.active {
    background: #ffffff;
    transform: translateX(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 30px rgba(79, 172, 254, 0.2);
    border-color: #ffffff;
}

.faq-btn.active::before {
    width: 6px;
}

.faq-btn.active h4 {
    color: #0284c7;
}

.faq-btn.active .faq-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* PREMIUM ANSWER COLUMN */
.faq-answers-col {
    flex: 1.2;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 60px 50px;
    min-height: 440px;
    color: #fff;
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.3), 
        inset 0 0 20px rgba(255, 255, 255, 0.05),
        0 30px 60px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers the active answer vertically */
}

/* Glowing outline effect for the answer box */
.faq-answers-col::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent, rgba(255,255,255,0.1));
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.faq-content-item {
    display: none;
    /* Upgraded animation */
    animation: smoothFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.faq-content-item.active {
    display: block;
}

.faq-content-item h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 16px;
}

/* Elegant gradient underline */
.faq-content-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    border-radius: 2px;
}

.faq-content-item p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85); /* Slightly muted for high-end readability */
    font-weight: 300;
    margin: 0;
}

/* BUTTER SMOOTH BLUR ANIMATIONS */
@keyframes smoothFadeUp {
    0% { 
        opacity: 0; 
        transform: translateY(30px) scale(0.98); 
        filter: blur(8px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
        filter: blur(0);
    }
}

/* CONTACT CTA SECTION - PREMIUM UPGRADE */
.contact-cta {
    /* Fluid padding for better responsiveness */
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
    /* Subtle premium gradient background */
    background: linear-gradient(145deg, #ffffff 0%, #f4f7fb 100%);
    position: relative;
    overflow: hidden;
}

.cta-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.cta-text h2 {
    /* Fluid typography scales smoothly with screen size */
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 800;
    /* Luxurious text gradient */
    background: linear-gradient(135deg, #0047aa 0%, #00183b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.cta-text p {
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    color: #556275;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 540px;
}

/* Form Container with Glassmorphism & Soft Shadows */
.cta-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: clamp(2rem, 4vw, 3.5rem);
    border-radius: 28px;
    /* Multi-layered shadow for premium depth */
    box-shadow: 0 25px 50px -12px rgba(0, 36, 88, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset,
                0 0 0 1px rgba(0, 71, 170, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -15px rgba(0, 36, 88, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset,
                0 0 0 1px rgba(0, 71, 170, 0.08);
}

/* Auto-fitting grid for responsive rows natively */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
    background: #f0f4f8;
    color: #1a202c;
    /* Allow vertical resize only for better layout stability */
    resize: vertical;
    max-height: 300px; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: inherit;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) inset;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

/* Micro-interactions */
.form-group input:hover,
.form-group textarea:hover {
    background: #e6edf5;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #ffffff;
    border-color: #0047aa;
    /* Glowing focus ring */
    box-shadow: 0 0 0 4px rgba(0, 71, 170, 0.15),
                0 10px 20px -5px rgba(0, 71, 170, 0.1);
    outline: none;
    transform: translateY(-2px);
}

.form-group textarea {
    height: 150px;
}

/* Premium Button Styling */
.cta-form button {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: 14px;
    border: none;
    /* Animated Gradient Background */
    background: linear-gradient(135deg, #0047aa 0%, #002c6b 50%, #00183b 100%);
    background-size: 200% auto;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 71, 170, 0.4);
}

.cta-form button:hover {
    /* Sweeping gradient and lift effect */
    background-position: right center;
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 20px 35px -10px rgba(0, 71, 170, 0.6);
}

.cta-form button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px -5px rgba(0, 71, 170, 0.4);
}

/* =========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================= */

/* Tablets & Smaller Desktops */
@media (max-width: 1024px) {
    .cta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Large Phones & Tablets Portrait */
@media (max-width: 860px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .contact-cta {
        padding: 4rem 1.25rem;
    }
    
    .cta-form {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    /* Force 1 column for inputs on very small screens */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem;
    }
    
    .cta-form button {
        padding: 1.1rem;
        font-size: 1.05rem;
    }
}

/* ==========================================================================
   BHUMI GREEN ENERGY - NEW IMPROVED FOOTER CSS
   ========================================================================== */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Increased right padding (140px) to create a safe zone for floating icons */
    padding: 80px 140px 60px 80px; 
    background: linear-gradient(145deg, #0047a5, #003579);
    color: #fff;
    font-family: "Poppins", -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
    gap: 50px;
}

/* --- LEFT COLUMN --- */
.footer-left {
    flex: 1.2;
    min-width: 300px;
}

.footer-left h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-badges {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.dot {
    width: 10px;
    height: 10px;
    background: #00d063;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 12px rgba(0, 208, 99, 0.6);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
    max-width: 450px;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #00d063;
}

.footer-copy {
    font-size: 13px;
    opacity: 0.5;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* --- RIGHT COLUMN (FIXED) --- */
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Keeps content away from the center */
    text-align: right;
    min-width: 350px;
}

.footer-desc {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 440px; /* Controlled width to avoid hitting social icons */
}

.footer-btn {
    padding: 14px 32px;
    border-radius: 50px;
    background: #ffffff;
    color: #003579;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-btn:hover {
    transform: scale(1.05) translateX(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
    border-radius: 8px;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
}

/* --- FLOATING SOCIAL PANEL (POSITIONED IN SAFE ZONE) --- */
.footer-floating-icons {
    position: absolute;
    right: 40px; /* Positioned inside the 140px padding zone */
    top: 50%;
    transform: translateY(-50%); /* Perfectly centered vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 10;
}

.circle-btn {
    width: 48px;
    height: 48px;
    background: #004fbb;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-btn:hover { 
    background: #00d063; 
    transform: translateY(-5px);
}

.side-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
}

.icon-btn {
    width: 42px;
    height: 42px;
    background: #0051c5;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.icon-btn:hover { 
    transform: scale(1.15) rotate(5deg);
    background: #0047a5;
}

/* --- RESPONSIVE DESIGN (RE-WRITTEN FOR CLEANLINESS) --- */

@media (max-width: 1200px) {
    .footer {
        padding: 60px 100px 60px 50px;
    }
}

@media (max-width: 1024px) {
    .footer {
        flex-direction: column;
        padding: 60px 40px;
        align-items: center;
        text-align: center;
    }

    .footer-left, .footer-right {
        width: 100%;
        align-items: center;
        text-align: center;
        min-width: unset;
        margin-right: 0;
    }

    .footer-badges { justify-content: center; }
    .footer-links { margin: 0 auto 40px; }
    .footer-logo { display: flex; justify-content: center; }
    .footer-legal { justify-content: center; }

    /* Move floating icons to the bottom flow */
    .footer-floating-icons {
        position: static;
        transform: none;
        flex-direction: row;
        margin-top: 40px;
        width: 100%;
        justify-content: center;
    }

    .side-icons {
        flex-direction: row;
    }
}

@media (max-width: 600px) {
    .footer-left h2 { font-size: 24px; }
    .footer-links { grid-template-columns: 1fr; gap: 15px; }
    .footer-logo img { width: 220px; }
}


/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1200px) {
    .hero-cta { right: 4rem; bottom: 4rem; }
    nav { padding: 1.5rem 3rem; }
    .logo img { width: 280px; }
    .footer { padding: 40px 60px; }
    .footer-right { margin-right: 0; }
}

@media (max-width: 900px) {
    nav { padding: 1.2rem 2rem; }
    .nav-links { gap: .6rem; }
    .nav-links a { padding: .6rem 1.4rem; font-size: .9rem; }
    .hero-cta { position: static; margin: 0 auto 2rem; justify-content: center; right: 4rem; bottom: 4rem;}
    .scroll-icon { display: none; }
    .impact-container { grid-template-columns: 1fr; }
    .frustum-grid { grid-template-columns: 1fr; gap: 3rem; }
    .vmv-grid { grid-template-columns: 1fr; gap: 2rem;}
    .cta-grid { grid-template-columns: 1fr; gap: 3rem; }
    .cta-form { padding: 2rem; }
    .footer { flex-direction: column; gap: 3rem; padding: 40px; }
    .footer-right { width: 100%; text-align: left; }
    .footer-logo { justify-content: flex-start; }
    .footer-floating-icons { display: none; }
    .faq-wrapper { flex-direction: column; }
    .grid-2x3 { grid-template-columns: 1fr; }
    .faq-answers-col { padding: 40px 30px; min-height: auto; }
}

@media (max-width: 600px) {
    body { font-size: 14px; }
    nav { flex-direction: column; gap: 1rem; padding: 1rem; }
    .logo img { width: 220px; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
    .nav-links a { padding: .5rem 1.2rem; font-size: .85rem; }
    .hero-cta { right: 4rem; bottom: 4rem; }
    .impact-card h2 { font-size: 2rem; }
    .frustum-content { padding: 2.4rem 1.6rem; }
    .frustum-content .icon { height: 52px; }
    .vmv-section { padding: 5rem 2rem; }
    .vmv-card { padding: 2.5rem 1.8rem; }
    .contact-cta { padding: 4rem 2rem; }
    .cta-text h2 { font-size: 2.2rem; }
    .form-row { grid-template-columns: 1fr; gap: 1rem; }
    .footer { padding: 30px 25px; }
    .footer-left h2 { font-size: 22px; }
    .footer-links { font-size: 14px; }
}

@media (max-width: 420px) {
    .glass-tile { font-size: .95rem; }
    .cta-text h2 { font-size: 1.8rem; }
    .faq-title { font-size: 2.4rem; }
}