/* ============================================
   RAKSHAK SOLUTIONS - PREMIUM SECURITY THEME
   ============================================ */

/* CSS Variables */
:root {
    /* Crazy Premium - High Definition Palette */
    --color-blue-primary: #00d2ff;
    --color-blue-secondary: #3a7bd5;
    --color-blue-glow: rgba(0, 210, 255, 0.5);
    --color-gold-accent: #f5af19;
    --color-red-primary: #ff416c;
    --color-red-glow: rgba(255, 65, 108, 0.4);
    --color-bg-primary: #05050a;
    --color-bg-secondary: #0a0a0f;
    --color-bg-tertiary: #0f0f15;

    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.85);
    --color-text-muted: rgba(255, 255, 255, 0.6);

    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    --gradient-red: linear-gradient(180deg, #ff416c 0%, #ff4b2b 100%);
    --gradient-dark: linear-gradient(180deg, #05050a 0%, #0f0f15 100%);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Transitions */
    --section-padding: clamp(4rem, 10vh, 10rem);
    --container-max: 1400px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* BIOSTER GREEN THEME OVERRIDE */
.bioster-page {
    --color-blue-primary: #a8ff78;
    /* Vibrant Bio-Green */
    --color-blue-secondary: #43e97b;
    --color-blue-glow: rgba(168, 255, 120, 0.5);
    --gradient-blue: linear-gradient(135deg, #a8ff78 0%, #43e97b 100%);
}


/* ============================================
   ANNOUNCEMENT BANNER
   ============================================ */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--gradient-red);
    z-index: 2000;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 2px solid var(--color-blue-primary);
    box-shadow: 0 2px 15px rgba(255, 65, 108, 0.3);
}

.banner-track {
    display: flex;
    white-space: nowrap;
    animation: bannerMarquee 40s linear infinite;
    will-change: transform;
}

.banner-track:hover {
    animation-play-state: paused;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 3rem;
    color: white;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.banner-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.highlight-text {
    color: #fff;
    text-shadow: 0 0 10px var(--color-blue-glow);
    padding: 0 0.3rem;
}

@keyframes bannerMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .announcement-banner {
        height: 35px;
    }

    .banner-item {
        font-size: 0.7rem;
        padding: 0 1.5rem;
        gap: 0.8rem;
    }
}


/* ============================================
   CURSOR FOLLOW EFFECT (CRAZY PREMIUM)
   ============================================ */
#cursor-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
            rgba(0, 210, 255, 0.25) 0%,
            rgba(0, 210, 255, 0.1) 40%,
            transparent 80%);
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    will-change: transform;
    filter: blur(40px);
}

#cursor-outer {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 210, 255, 0.5);
    border-radius: 50%;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10001;
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
    will-change: transform;
}

/* Atmosphere Layers */
.atmosphere-burn {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(255, 65, 108, 0.05), transparent 60%);
    pointer-events: none;
    z-index: 2;
}

.vignette {
    position: fixed;
    inset: 0;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 3;
}

/* ============================================
   FLOATING VISUAL ENTITIES (PREMIUM REFINEMENT)
   ============================================ */
.floating-entities {
    position: absolute;
    inset: -10% -10%;
    /* Extra room for movement */
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    perspective: 1000px;
}

.entity {
    position: absolute;
    will-change: transform, opacity;
    animation-fill-mode: both;
    pointer-events: none;
}

/* Layered Depth System - Increased Opacity for Visibility */
.depth-back {
    --opacity: 0.15;
    --blur: 3px;
    --scale: 0.7;
    z-index: 1;
}

.depth-mid {
    --opacity: 0.25;
    --blur: 1px;
    --scale: 1;
    z-index: 2;
}

.depth-front {
    --opacity: 0.4;
    --blur: 0;
    --scale: 1.3;
    z-index: 3;
}

.entity {
    opacity: 0;
    filter: blur(var(--blur, 1px));
    animation: entryFade 2s ease-out forwards;
}

@keyframes entryFade {
    from {
        opacity: 0;
        transform: scale(calc(var(--scale, 1) * 0.5));
    }

    to {
        opacity: var(--opacity, 0.2);
        transform: scale(var(--scale, 1));
    }
}

.preloader .entity {
    animation-delay: 2s;
    /* Wait for splash logo to materialize */
}

/* --- Recognizable Biological Elements --- */

/* Detailed Coronavirus (High Fidelity - MATCHING USER IMAGE) */
.virus {
    display: none !important;
}

/* Surface Pores/Dots (Matching Image) */
.virus::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.2) 2px, transparent 0),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1) 3px, transparent 0),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.2) 2px, transparent 0),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.1) 3px, transparent 0),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 2px, transparent 0);
    border-radius: 50%;
}

/* Iconic Club-Shaped Spikes (Matching Image) */
.v-spike {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    /* Thin stem */
    height: 140%;
    /* Total reach from center */
    background: transparent;
    transform: translate(-50%, -50%);
}

.v-spike::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    /* Prominent Bulb */
    height: 8px;
    background: #ff1a1a;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff0000;
}

/* Spike Stem */
.v-spike::before {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 45%;
    /* Stem length */
    background: linear-gradient(to top, transparent, #ff1a1a);
    border-radius: 2px;
}

/* Short spikes variation */
.v-spike-short {
    height: 110% !important;
}

.v-spike-short::after {
    width: 6px !important;
    height: 6px !important;
}

/* Precise Rotations for Accuracy (Matching many spikes in image) */
.s1 {
    transform: translate(-50%, -50%) rotate(0deg);
}

.s2 {
    transform: translate(-50%, -50%) rotate(30deg);
}

.s3 {
    transform: translate(-50%, -50%) rotate(60deg);
}

.s4 {
    transform: translate(-50%, -50%) rotate(90deg);
}

.s5 {
    transform: translate(-50%, -50%) rotate(120deg);
}

.s6 {
    transform: translate(-50%, -50%) rotate(150deg);
}

.s7 {
    transform: translate(-50%, -50%) rotate(180deg);
}

.s8 {
    transform: translate(-50%, -50%) rotate(210deg);
}

.s9 {
    transform: translate(-50%, -50%) rotate(240deg);
}

.s10 {
    transform: translate(-50%, -50%) rotate(270deg);
}

.s11 {
    transform: translate(-50%, -50%) rotate(300deg);
}

.s12 {
    transform: translate(-50%, -50%) rotate(330deg);
}

.v-spike::before {
    left: -4px;
    top: -2.5px;
}

.v-spike::after {
    right: -4px;
    top: -2.5px;
}

/* Rotating Spikes for variety */
.v-spike.s1 {
    transform: translate(-50%, -50%) rotate(0deg);
}

.v-spike.s2 {
    transform: translate(-50%, -50%) rotate(45deg);
}

.v-spike.s3 {
    transform: translate(-50%, -50%) rotate(90deg);
}

.v-spike.s4 {
    transform: translate(-50%, -50%) rotate(135deg);
}

/* Detailed Bacteria (Bacillus Style) */
.microbe {
    width: 25px;
    height: 50px;
    background: linear-gradient(to bottom, #00d2ff, #3a7bd5);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 15px var(--color-blue-glow);
    animation: floatOrganic 28s ease-in-out infinite alternate, fadeIn 3s ease-out forwards;
}

/* Internal Organelles for Bacteria */
.microbe::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* Waving Flagella (Tail) */
.m-tail {
    position: absolute;
    bottom: -25px;
    left: 50%;
    width: 2px;
    height: 30px;
    background: var(--color-blue-primary);
    transform-origin: top;
    filter: blur(0.5px);
    opacity: 0.6;
    animation: flagellaWave 2s ease-in-out infinite;
}

@keyframes flagellaWave {

    0%,
    100% {
        transform: translateX(-50%) rotate(-10deg) skewX(5deg);
    }

    50% {
        transform: translateX(-50%) rotate(10deg) skewX(-5deg);
    }
}

/* Detailed Bacteriophage (The "Lunar Lander" Virus) */
.phage {
    width: 30px;
    height: 30px;
    position: relative;
    animation: floatOrganic 25s ease-in-out infinite alternate-reverse, fadeIn 2s ease-out forwards;
}

/* Geometrical Head */
.phage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #a8ff78, #78ffd6);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 15px rgba(120, 255, 214, 0.4);
}

/* Neck/Body */
.phage-body {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 15px;
    background: #78ffd6;
}

/* Leg Template */
.p-leg {
    position: absolute;
    top: 32px;
    width: 15px;
    height: 2px;
    background: #78ffd6;
    transform-origin: left center;
}

.p-leg.l1 {
    left: 50%;
    transform: rotate(30deg);
}

.p-leg.l2 {
    left: 50%;
    transform: rotate(150deg);
}

.p-leg.l3 {
    left: 50%;
    transform: rotate(270deg);
}

/* --- Recognizable Technical Elements --- */

/* Detailed Floating Robot */
.robot {
    width: 45px;
    height: 50px;
    background: linear-gradient(135deg, #3d5a75 0%, #111 100%);
    border: 1px solid rgba(0, 210, 255, 0.6);
    border-radius: 10px 10px 18px 18px;
    box-shadow: 0 0 20px var(--color-blue-glow);
    position: relative;
    animation: floatTechnical 12s ease-in-out infinite alternate, fadeIn 2s ease-out forwards;
}

/* Robot Head/Eye Visor */
.robot::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 8px;
    background: #000;
    border-radius: 10px;
    border: 1px solid var(--color-blue-primary);
    box-shadow: inset 0 0 8px var(--color-blue-primary);
}

/* Eye Lens Glow - Larger & Brighter */
.robot::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 40%;
    width: 6px;
    height: 6px;
    background: var(--color-blue-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-blue-primary), 0 0 20px var(--color-blue-glow);
    filter: brightness(1.5);
    animation: eyeScan 2s ease-in-out infinite alternate;
}

@keyframes eyeScan {
    from {
        left: 40%;
    }

    to {
        left: 60%;
    }
}

/* Stabilizer Wings */
.r-wing {
    position: absolute;
    top: 15px;
    width: 15px;
    height: 2px;
    background: var(--color-blue-primary);
    box-shadow: 0 0 5px var(--color-blue-glow);
}

.r-wing.left {
    left: -12px;
    transform: rotate(-15deg);
}

.r-wing.right {
    right: -12px;
    transform: rotate(15deg);
}

/* --- Other Elements --- */
.microbe {
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 210, 255, 0.6), transparent 80%);
    border-radius: 50% 40% 60% 30%;
    filter: drop-shadow(0 0 10px var(--color-blue-glow));
    animation: floatOrganic 25s ease-in-out infinite alternate, blobShape 8s ease-in-out infinite, fadeIn 3s ease-out forwards;
}

.drone {
    width: 30px;
    height: 6px;
    background: #111;
    border: 1px solid var(--color-blue-primary);
    border-radius: 3px;
    animation: floatTechnical 10s ease-in-out infinite, fadeIn 2s ease-out forwards;
}

/* Optimization for Mobile (Added here for better hierarchy) */
@media (max-width: 768px) {
    .entity {
        transform: scale(0.6) !important;
        opacity: calc(var(--opacity, 0.2) * 0.8) !important;
    }
}

/* --- New Animations --- */
@keyframes floatOrganic {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(150px, 100px) rotate(360deg);
    }
}

@keyframes floatTechnical {
    0% {
        transform: translate(0, 0) translateY(0);
    }

    50% {
        transform: translate(30px, -30px) translateY(-10px);
    }

    100% {
        transform: translate(0, 0) translateY(0);
    }
}

@keyframes blobShape {

    0%,
    100% {
        border-radius: 50% 40% 60% 30%;
    }

    50% {
        border-radius: 40% 60% 30% 50%;
    }
}

@keyframes virusPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes rotateEntity {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes blinkLight {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}

/* Individual Entities Positioning & Variation */
/* Splash Screen Entities */
.d1 {
    top: 15%;
    left: 10%;
}

.m1 {
    top: 65%;
    left: 20%;
}

/* Preloader Specific Covid Visibility */
/* Removed Legacy Red Virus Overrides */

.v1 {
    top: 25%;
    right: 15%;
    z-index: 1000 !important;
}

.d2 {
    bottom: 15%;
    right: 10%;
}

.m2 {
    top: 10%;
    left: 45%;
}

/* Hero Section Entities */
.d3 {
    top: 20%;
    right: 25%;
    z-index: 1000 !important;
}

.r1 {
    top: 45%;
    left: 8%;
}

.v2 {
    bottom: 25%;
    left: 22%;
    z-index: 1000 !important;
}

.m3 {
    top: 35%;
    right: 12%;
}

.d4 {
    bottom: 20%;
    left: 42%;
}

.m4 {
    top: 75%;
    right: 35%;
}

.r2 {
    top: 55%;
    left: 55%;
}

.m5 {
    top: 40%;
    left: 70%;
    animation-delay: -5s;
}

.d5 {
    bottom: 10%;
    right: 40%;
    animation-delay: -15s;
}

/* New Entities for 3x Density */

/* Viruses */
.v3 {
    top: 12%;
    left: 15%;
    animation-delay: -3s;
    z-index: 1000 !important;
}

.v4 {
    bottom: 15%;
    right: 45%;
    animation-delay: -12s;
    z-index: 1000 !important;
}

.v5 {
    top: 55%;
    right: 10%;
    animation-delay: -6s;
    z-index: 1000 !important;
}

.v6 {
    bottom: 40%;
    left: 35%;
    animation-delay: -18s;
    z-index: 1000 !important;
}

.v7 {
    top: 40%;
    left: 80%;
    animation-delay: -9s;
    z-index: 1000 !important;
}

.v8 {
    bottom: 10%;
    left: 10%;
    animation-delay: -21s;
    z-index: 1000 !important;
}

.v9 {
    top: 80%;
    right: 20%;
    animation-delay: -4s;
    z-index: 1000 !important;
}

.v10 {
    top: 5%;
    right: 50%;
    animation-delay: -15s;
    z-index: 1000 !important;
}

/* Microbes / Bacteria */
.m6 {
    top: 25%;
    left: 65%;
    animation-delay: -2s;
}

.m7 {
    bottom: 35%;
    right: 15%;
    animation-delay: -13s;
}

.m8 {
    top: 85%;
    left: 30%;
    animation-delay: -7s;
}

.m9 {
    top: 50%;
    right: 60%;
    animation-delay: -19s;
}

.m10 {
    bottom: 5%;
    right: 80%;
    animation-delay: -10s;
}

.m11 {
    top: 15%;
    right: 5%;
    animation-delay: -22s;
}

.m12 {
    bottom: 50%;
    left: 5%;
    animation-delay: -5s;
}

.m13 {
    top: 70%;
    left: 75%;
    animation-delay: -16s;
}

.m14 {
    bottom: 20%;
    right: 70%;
    animation-delay: -1s;
}

.m15 {
    top: 30%;
    left: 5%;
    animation-delay: -8s;
}

/* Robots */
.r3 {
    top: 30%;
    right: 40%;
    animation-delay: -4s;
}

.r4 {
    bottom: 45%;
    left: 15%;
    animation-delay: -14s;
}

.r5 {
    top: 60%;
    left: 85%;
    animation-delay: -8s;
}

.r6 {
    bottom: 5%;
    left: 50%;
    animation-delay: -20s;
}

.r7 {
    top: 10%;
    right: 80%;
    animation-delay: -11s;
}

.r8 {
    bottom: 80%;
    right: 5%;
    animation-delay: -23s;
}

.r9 {
    top: 45%;
    right: 15%;
    animation-delay: -6s;
}

.r10 {
    bottom: 25%;
    left: 60%;
    animation-delay: -17s;
}

/* Drones */
.d6 {
    top: 5%;
    left: 25%;
    animation-delay: -3s;
}

.d7 {
    bottom: 60%;
    right: 5%;
    animation-delay: -12s;
}

.d8 {
    top: 75%;
    left: 15%;
    animation-delay: -7s;
}

.d9 {
    top: 40%;
    left: 35%;
    animation-delay: -18s;
}

.d10 {
    bottom: 30%;
    right: 85%;
    animation-delay: -9s;
}

.d11 {
    top: 20%;
    right: 65%;
    animation-delay: -21s;
}

.d12 {
    bottom: 5%;
    left: 80%;
    animation-delay: -4s;
}

.d13 {
    top: 55%;
    left: 5%;
    animation-delay: -15s;
}

.d14 {
    bottom: 40%;
    right: 25%;
    animation-delay: -2s;
}

.d15 {
    top: 85%;
    left: 60%;
    animation-delay: -11s;
}

/* ============================================
   REAL FLOATING MICROORGANISM IMAGES
   ============================================ */
.floating-microbes-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.floating-microbe {
    position: absolute;
    object-fit: contain;
    opacity: 0;
    animation-fill-mode: forwards;
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.3));
    will-change: transform, opacity;
}

/* Bacteria Images - Rod-shaped purple bacteria */
.bacteria-1 {
    width: 120px;
    height: auto;
    top: 10%;
    left: 5%;
    opacity: 0.7;
    animation: floatBacteria1 25s ease-in-out infinite, fadeInMicrobe 2s ease-out forwards;
    animation-delay: 0.5s;
    filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.5));
}

.bacteria-2 {
    width: 80px;
    height: auto;
    top: 60%;
    right: 8%;
    opacity: 0.5;
    animation: floatBacteria2 30s ease-in-out infinite, fadeInMicrobe 2s ease-out forwards;
    animation-delay: 1.5s;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.4));
    transform: rotate(45deg);
}

.bacteria-3 {
    width: 100px;
    height: auto;
    bottom: 20%;
    left: 25%;
    opacity: 0.6;
    animation: floatBacteria3 28s ease-in-out infinite, fadeInMicrobe 2s ease-out forwards;
    animation-delay: 3s;
    filter: drop-shadow(0 0 12px rgba(138, 43, 226, 0.45));
    transform: rotate(-30deg);
}

.bacteria-4 {
    width: 60px;
    height: auto;
    top: 75%;
    right: 35%;
    opacity: 0.4;
    animation: floatBacteria4 35s ease-in-out infinite, fadeInMicrobe 2s ease-out forwards;
    animation-delay: 2s;
    filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.35));
}

/* Virus Images - Coronavirus-style */
.virus-img-1 {
    width: 100px;
    height: auto;
    top: 15%;
    right: 15%;
    opacity: 0.75;
    animation: floatVirus1 22s ease-in-out infinite, pulseVirus 3s ease-in-out infinite, fadeInMicrobe 2s ease-out forwards;
    animation-delay: 0s;
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.6));
}

.virus-img-2 {
    width: 70px;
    height: auto;
    bottom: 30%;
    left: 10%;
    opacity: 0.6;
    animation: floatVirus2 28s ease-in-out infinite, pulseVirus 4s ease-in-out infinite, fadeInMicrobe 2s ease-out forwards;
    animation-delay: 2.5s;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.5));
}

.virus-img-3 {
    width: 55px;
    height: auto;
    top: 45%;
    left: 45%;
    opacity: 0.5;
    animation: floatVirus3 32s ease-in-out infinite, pulseVirus 3.5s ease-in-out infinite, fadeInMicrobe 2s ease-out forwards;
    animation-delay: 4s;
    filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.4));
}

.virus-img-4 {
    width: 85px;
    height: auto;
    bottom: 10%;
    right: 20%;
    opacity: 0.55;
    animation: floatVirus4 26s ease-in-out infinite, pulseVirus 2.5s ease-in-out infinite, fadeInMicrobe 2s ease-out forwards;
    animation-delay: 1s;
    filter: drop-shadow(0 0 18px rgba(0, 210, 255, 0.55));
}

/* Fungi Images - Blue aspergillus-style */
.fungi-1 {
    width: 110px;
    height: auto;
    top: 30%;
    right: 5%;
    opacity: 0.65;
    animation: floatFungi1 30s ease-in-out infinite, fadeInMicrobe 2s ease-out forwards;
    animation-delay: 0.8s;
    filter: drop-shadow(0 0 18px rgba(0, 150, 255, 0.5));
}

.fungi-2 {
    width: 75px;
    height: auto;
    bottom: 45%;
    left: 15%;
    opacity: 0.5;
    animation: floatFungi2 35s ease-in-out infinite, fadeInMicrobe 2s ease-out forwards;
    animation-delay: 2.2s;
    filter: drop-shadow(0 0 12px rgba(0, 150, 255, 0.4));
    transform: rotate(15deg);
}

.fungi-3 {
    width: 90px;
    height: auto;
    top: 70%;
    left: 55%;
    opacity: 0.45;
    animation: floatFungi3 28s ease-in-out infinite, fadeInMicrobe 2s ease-out forwards;
    animation-delay: 3.5s;
    filter: drop-shadow(0 0 14px rgba(0, 150, 255, 0.45));
    transform: rotate(-20deg);
}

/* Extra Density Microbes */
.bacteria-extra-1 {
    width: 90px;
    height: auto;
    top: 40%;
    left: 80%;
    opacity: 0.5;
    animation: floatBacteria1 22s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.4));
}

.bacteria-extra-2 {
    width: 70px;
    height: auto;
    bottom: 40%;
    right: 70%;
    opacity: 0.4;
    animation: floatBacteria2 26s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.3));
}

.virus-extra-1 {
    width: 80px;
    height: auto;
    top: 60%;
    left: 15%;
    opacity: 0.6;
    animation: floatVirus2 24s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.5));
}

.virus-extra-2 {
    width: 65px;
    height: auto;
    top: 30%;
    right: 40%;
    opacity: 0.5;
    animation: floatVirus4 30s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.4));
}

.fungi-extra-1 {
    width: 80px;
    height: auto;
    bottom: 15%;
    left: 45%;
    opacity: 0.5;
    animation: floatFungi2 27s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 150, 255, 0.4));
}

/* High Density Packs */
.hd-1 { top: 5%; left: 40%; width: 50px; animation: floatVirus1 25s infinite; opacity: 0.4; }
.hd-2 { top: 15%; left: 70%; width: 60px; animation: floatBacteria1 30s infinite; opacity: 0.35; }
.hd-3 { top: 35%; right: 5%; width: 45px; animation: floatVirus2 22s infinite; opacity: 0.45; }
.hd-4 { bottom: 10%; right: 50%; width: 55px; animation: floatBacteria2 28s infinite; opacity: 0.4; }
.hd-5 { bottom: 30%; left: 5%; width: 40px; animation: floatVirus3 35s infinite; opacity: 0.3; }
.hd-6 { top: 50%; right: 40%; width: 70px; animation: floatBacteria3 26s infinite; opacity: 0.4; }
.hd-7 { bottom: 25%; left: 75%; width: 50px; animation: floatVirus4 32s infinite; opacity: 0.35; }
.hd-8 { top: 80%; left: 10%; width: 65px; animation: floatBacteria4 29s infinite; opacity: 0.3; }
.hd-9 { top: 25%; left: 25%; width: 45px; animation: floatVirus1 31s infinite; opacity: 0.4; }
.hd-10 { bottom: 50%; right: 15%; width: 55px; animation: floatBacteria1 27s infinite; opacity: 0.35; }



/* Floating Animations for Bacteria */
@keyframes floatBacteria1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 30px) rotate(15deg);
    }
    50% {
        transform: translate(100px, -20px) rotate(-10deg);
    }
    75% {
        transform: translate(30px, -40px) rotate(20deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes floatBacteria2 {
    0% {
        transform: translate(0, 0) rotate(45deg);
    }
    33% {
        transform: translate(-60px, 40px) rotate(30deg);
    }
    66% {
        transform: translate(-30px, -50px) rotate(60deg);
    }
    100% {
        transform: translate(0, 0) rotate(45deg);
    }
}

@keyframes floatBacteria3 {
    0% {
        transform: translate(0, 0) rotate(-30deg);
    }
    20% {
        transform: translate(40px, -30px) rotate(-15deg);
    }
    40% {
        transform: translate(80px, 20px) rotate(-45deg);
    }
    60% {
        transform: translate(50px, 50px) rotate(-25deg);
    }
    80% {
        transform: translate(20px, 30px) rotate(-35deg);
    }
    100% {
        transform: translate(0, 0) rotate(-30deg);
    }
}

@keyframes floatBacteria4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-80px, -60px) rotate(180deg);
    }
}

/* Floating Animations for Virus */
@keyframes floatVirus1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-40px, 50px) scale(1.05);
    }
    50% {
        transform: translate(-80px, 20px) scale(0.95);
    }
    75% {
        transform: translate(-30px, -30px) scale(1.02);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes floatVirus2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(70px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(40px, 40px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes floatVirus3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, 30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 50px) scale(0.9);
    }
    75% {
        transform: translate(-40px, 10px) scale(1.05);
    }
}

@keyframes floatVirus4 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-60px, -40px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Pulse effect for virus */
@keyframes pulseVirus {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(0, 210, 255, 0.9));
    }
}

/* Floating Animations for Fungi */
@keyframes floatFungi1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-50px, 40px) rotate(10deg);
    }
    50% {
        transform: translate(-20px, 80px) rotate(-5deg);
    }
    75% {
        transform: translate(30px, 50px) rotate(15deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes floatFungi2 {
    0%, 100% {
        transform: translate(0, 0) rotate(15deg);
    }
    33% {
        transform: translate(60px, 20px) rotate(25deg);
    }
    66% {
        transform: translate(30px, -40px) rotate(5deg);
    }
}

@keyframes floatFungi3 {
    0% {
        transform: translate(0, 0) rotate(-20deg);
    }
    20% {
        transform: translate(-30px, 30px) rotate(-10deg);
    }
    40% {
        transform: translate(20px, 60px) rotate(-30deg);
    }
    60% {
        transform: translate(50px, 30px) rotate(-15deg);
    }
    80% {
        transform: translate(30px, -20px) rotate(-25deg);
    }
    100% {
        transform: translate(0, 0) rotate(-20deg);
    }
}

/* Fade in animation */
@keyframes fadeInMicrobe {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: var(--target-opacity, 0.6);
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .floating-microbe {
        transform: scale(0.6) !important;
        opacity: 0.4 !important;
    }
    
    /* .bacteria-2,
    .bacteria-4,
    .virus-img-3,
    .fungi-2 {
        display: none !important;
    } */
}

@media (max-width: 480px) {
    .floating-microbe {
        transform: scale(0.4) !important;
        opacity: 0.3 !important;
    }
    
    /* .bacteria-3,
    .virus-img-4,
    .fungi-3 {
        display: none !important;
    } */
}

/* Preloader Microbes */
.preloader-microbes {
    z-index: 10;
}

.bacteria-preload-1 {
    width: 100px;
    height: auto;
    top: 15%;
    left: 8%;
    opacity: 0.65;
    animation: floatBacteria1 20s ease-in-out infinite, fadeInMicrobe 3s ease-out forwards;
    animation-delay: 2s;
    filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.6));
}

.bacteria-preload-2 {
    width: 70px;
    height: auto;
    bottom: 25%;
    right: 12%;
    opacity: 0.5;
    animation: floatBacteria3 25s ease-in-out infinite, fadeInMicrobe 3s ease-out forwards;
    animation-delay: 2.5s;
    filter: drop-shadow(0 0 12px rgba(138, 43, 226, 0.5));
    transform: rotate(60deg);
}

.virus-preload-1 {
    width: 90px;
    height: auto;
    top: 20%;
    right: 10%;
    opacity: 0.7;
    animation: floatVirus1 18s ease-in-out infinite, pulseVirus 3s ease-in-out infinite, fadeInMicrobe 3s ease-out forwards;
    animation-delay: 2.2s;
    filter: drop-shadow(0 0 20px rgba(255, 65, 108, 0.7));
}

.virus-preload-2 {
    width: 60px;
    height: auto;
    bottom: 15%;
    left: 20%;
    opacity: 0.55;
    animation: floatVirus3 22s ease-in-out infinite, pulseVirus 4s ease-in-out infinite, fadeInMicrobe 3s ease-out forwards;
    animation-delay: 3s;
    filter: drop-shadow(0 0 15px rgba(255, 65, 108, 0.6));
}

.fungi-preload-1 {
    width: 85px;
    height: auto;
    bottom: 30%;
    right: 25%;
    opacity: 0.6;
    animation: floatFungi1 23s ease-in-out infinite, fadeInMicrobe 3s ease-out forwards;
    animation-delay: 2.8s;
    filter: drop-shadow(0 0 15px rgba(0, 150, 255, 0.5));
}

.e-depth-1 {
    animation-duration: 40s !important;
    transform: scale(0.6);
    opacity: 0.1 !important;
    filter: blur(3px);
}

.e-depth-2 {
    animation-duration: 30s !important;
    transform: scale(0.8);
    opacity: 0.15 !important;
    filter: blur(1px);
}

.e-depth-3 {
    animation-duration: 20s !important;
    transform: scale(1.1);
    opacity: 0.25 !important;
    filter: blur(0);
}

/* Optimization for Mobile */
@media (max-width: 768px) {
    .floating-entities {
        inset: -5%;
    }

    .entity {
        transform: scale(0.7) !important;
    }

    /* Hide some elements on mobile to improve performance */
    /* .m2,
    .r2,
    .d4,
    .m4 {
        display: none !important;
    } */

    .entity {
        animation-duration: 40s !important;
        /* Move even slower on mobile */
    }
}


/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-blue-primary) var(--color-bg-primary);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-blue-primary);
    border-radius: 4px;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Base Fix for Horizontal Scroll */
html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* Ensure box-sizing for all */
* {
    box-sizing: border-box;
}


/* ============================================
   PRELOADER
   ============================================ */
/* Skip preloader if already seen */
.skip-loader .preloader {
    display: none !important;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
}

.shield-loader {
    width: 100px;
    height: 120px;
    margin: 0 auto 2rem;
    animation: shieldPulse 2s ease-in-out infinite;
}

.shield-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px var(--color-blue-glow));
}

.shield-path {
    animation: shieldGlow 2s ease-in-out infinite;
}

.shield-s {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    fill: white;
}

@keyframes shieldPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shieldGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px var(--color-blue-glow));
    }

    50% {
        filter: drop-shadow(0 0 25px var(--color-blue-glow));
    }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--color-blue-primary);
    margin-bottom: 1.5rem;
    animation: textFlicker 1.5s ease-in-out infinite;
}

@keyframes textFlicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(79, 195, 247, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-blue);
    border-radius: 3px;
    animation: loadProgress 2.5s ease-in-out forwards;
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

/* ============================================
   CANVAS & BACKGROUND ATMOSPHERE
   ============================================ */
.canvas-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: #020205;
    overflow: hidden;
}

#particles,
#smoke {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.nebula-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 210, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 65, 108, 0.08) 0%, transparent 60%);
    filter: blur(80px);
    mix-blend-mode: screen;
    animation: nebulaPulse 12s ease-in-out infinite alternate;
}

@keyframes nebulaPulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.8;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    /* top: 40px; */
    /* Adjust for banner */
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    /* top: 40px; */
    /* Stay below the banner */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .navbar {
        /* top: 35px; */
        /* Mobile banner height */
    }

    .navbar.scrolled {
        /* top: 35px; */
    }
}


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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-text {
    font-family: var(--font-display);
    color: var(--color-blue-primary);
    text-shadow: 0 0 20px var(--color-blue-glow);
}

.logo-shield-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 5px;
    z-index: 1;
}

.nav-shield-svg {
    width: 34px;
    height: 42px;
    filter: drop-shadow(0 0 10px var(--color-red-glow));
}

.nav-shield-s {
    font-family: var(--font-display);
    font-size: 55px;
    font-weight: 900;
    fill: white;
}


.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100; /* Higher than menu */
    position: relative;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-blue-primary);
    transition: all var(--transition-fast);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: width var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-blue-primary);
}

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

.btn-nav {
    background: var(--gradient-blue);
    color: #000 !important;
    padding: 0.6rem 1.8rem !important;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium) !important;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
    border: none;
}

.btn-nav::before {
    display: none !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--color-blue-glow);
    filter: brightness(1.1);
    color: #000 !important;
}

@media (max-width: 768px) {
    .btn-nav {
        margin-top: 3rem; /* Pushes it down in the column */
        width: 100%;
        padding: 1.2rem !important;
        text-align: center;
        border-radius: 12px;
        font-size: 1.1rem;
        box-shadow: 0 10px 30px rgba(0, 210, 255, 0.4);
        background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    }
}


/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #05050a; /* Ensure solid background */
        flex-direction: column;
        padding: 8rem 2rem 4rem;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
        z-index: 1050;
    }

    .nav-menu li {
        width: 100%;
        text-align: left;
    }

    .nav-menu li:last-child {
        margin-top: auto; /* Push contact button to bottom */
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle.active {
        position: fixed;
        right: 2rem;
        top: 2rem;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: #fff; /* Ensure contrast on dark menu */
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: #fff;
    }
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: calc(8rem + 40px) 2rem 0;
    /* Adjust for banner */
    overflow: hidden;
}


.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

.loaded .hero-badge {
    animation: fadeInUp 1s ease 0.5s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-blue-primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 10rem);
    /* Slightly smaller for better fit */
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    /* Prevent wrapping for the main word */
    gap: 0.2rem;
    margin-bottom: 2rem;
    perspective: 1000px;
}

/* HERO TITLE STRUCTURE */
.title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Context for wings */
}

.left-wing, .right-wing {
    display: flex;
    align-items: center;
}

.right-wing {
    position: relative; /* Anchor for subtitle */
    flex-direction: column; /* Allow subtitle to stack under HAK if needed, or just be anchor */
    align-items: flex-start; /* Align HAK and Subtitle to left */
    justify-content: center;
}

.hak-group {
    display: flex; /* Keep HAK inline */
}

.loaded .char {
    display: inline-block;
    color: var(--color-blue-primary);
    text-shadow:
        0 0 10px var(--color-blue-glow),
        0 0 30px var(--color-blue-glow),
        0 0 60px rgba(79, 195, 247, 0.3);
    animation: charReveal 0.8s ease both;
    transition: all 0.3s ease;
}

/* RAK Delays */
.left-wing .char:nth-child(1) {
    animation-delay: 0.6s;
}

.left-wing .char:nth-child(2) {
    animation-delay: 0.7s;
}

.left-wing .char:nth-child(3) {
    animation-delay: 0.8s;
}

/* HAK Delays */
.right-wing .char:nth-child(1) {
    animation-delay: 1.0s;
}

.right-wing .char:nth-child(2) {
    animation-delay: 1.1s;
}

.right-wing .char:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes charReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.loaded .title-shield-container {
    animation: shieldReveal 1s ease 0.9s both;
}

@keyframes shieldReveal {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.title-shield {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: translateY(0.04em);
    /* Optical drop to align with font baseline center */
}

.inline-shield {
    width: clamp(80px, 12vw, 160px);
    height: clamp(96px, 14vw, 192px);
    filter: drop-shadow(0 0 30px var(--color-red-glow));
    animation: shieldFloat 4s ease-in-out infinite;
}

@keyframes shieldFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-shield-s {
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 700;
    fill: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loaded .hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 0.3em;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 1.4s both;
}

.loaded .tagline-word {
    animation: taglineReveal 0.5s ease both;
}

/* Subtitle Positioned Under HAK */
.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(0.5rem, 0.25em, 1rem); /* Relative to title font size approx */
    font-weight: 700;
    color: #9fe77b; /* Vibrant Green */
    text-align: left;
    letter-spacing: 0.2em;
    white-space: nowrap;
    
    position: absolute;
    top: 100%; /* Push down below the text */
    left: 0.2em; /* Align slightly in to match the H properly visually */
    
    text-shadow: 0 0 15px rgba(168, 255, 120, 0.4);
    animation: fadeInUp 1s ease 1.2s both;
    z-index: 20;
}

.tagline-word:nth-child(1) {
    animation-delay: 1.5s;
}

.tagline-word:nth-child(3) {
    animation-delay: 1.7s;
}

.tagline-word:nth-child(5) {
    animation-delay: 1.9s;
}

@keyframes taglineReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loaded .tagline-divider {
    color: var(--color-blue-primary);
    animation: fadeIn 0.5s ease 2s both;
}

.loaded .hero-description {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    animation: fadeInUp 1s ease 2.1s both;
}

.loaded .hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 2.3s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--color-bg-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--color-blue-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--color-blue-primary);
    border: 2px solid var(--color-blue-primary);
}

.btn-secondary:hover {
    background: rgba(79, 195, 247, 0.1);
    transform: translateY(-3px);
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Scroll Indicator */
.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    animation: fadeIn 1s ease 2.5s both;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-blue-primary);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-blue-primary);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 6px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.3;
    }
}

.hero-scroll span {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

/* Hero Stats */
.loaded .hero-stats {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem 2rem;
    margin-top: 4rem;
    background: rgba(10, 10, 15, 0.5);
    border-top: 1px solid rgba(79, 195, 247, 0.1);
    border-bottom: 1px solid rgba(79, 195, 247, 0.1);
    animation: fadeInUp 1s ease 2.7s both;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-blue-primary);
    text-shadow: 0 0 20px var(--color-blue-glow);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-blue-primary);
}

.stat-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--color-blue-primary), transparent);
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }

    .stat-divider {
        height: 40px;
    }
}

/* Animation Utilities */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--color-blue-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: var(--color-blue-primary);
    text-shadow: 0 0 30px var(--color-blue-glow);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-blue);
    margin: 0 auto;
    position: relative;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--color-blue-primary);
    border-radius: 50%;
}

.title-underline::before {
    left: -20px;
}

.title-underline::after {
    right: -20px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-blue-primary), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
}

.image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-primary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-blue-primary);
}

.frame-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.frame-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.about-shield-display {
    position: relative;
}

.about-shield-svg {
    width: 200px;
    height: 240px;
    filter: drop-shadow(0 0 30px var(--color-red-glow));
    animation: shieldFloat 4s ease-in-out infinite;
}

.about-shield-s {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    fill: white;
}

.shield-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-blue-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulsing 3s ease-out infinite;
}

.shield-pulse.delay-1 {
    animation-delay: 1s;
}

.shield-pulse.delay-2 {
    animation-delay: 2s;
}

@keyframes pulsing {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--color-bg-primary);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: floatBadge 6s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: -3s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.badge-icon {
    font-size: 1.2rem;
}

.about-text {
    position: relative;
}

.about-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.about-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.first-letter {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    float: left;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    color: var(--color-blue-primary);
    text-shadow: 0 0 20px var(--color-blue-glow);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(79, 195, 247, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.1);
    border-radius: 12px;
    transition: all var(--transition-medium);
}

.feature-item:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: rgba(79, 195, 247, 0.3);
    transform: translateX(10px);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue);
    border-radius: 12px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-bg-primary);
}

.feature-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 195, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 195, 247, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

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

@media (max-width: 350px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    position: relative;
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
    border: 1px solid rgba(79, 195, 247, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 195, 247, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.service-card:hover .card-glow {
    transform: scaleX(1);
}

.card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all var(--transition-medium);
}

.service-card:hover .service-icon {
    background: var(--gradient-blue);
    border-color: transparent;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-blue-primary);
    transition: color var(--transition-medium);
}

.service-card:hover .service-icon svg {
    color: var(--color-bg-primary);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-blue-primary);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--color-blue-primary);
    transition: all var(--transition-fast);
}

.service-link:hover {
    gap: 1rem;
}

.card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(79, 195, 247, 0.05);
    line-height: 1;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-blue-primary), transparent);
}

.team-intro {
    text-align: center;
    max-width: 600px;
    margin: -2rem auto 3rem;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

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

.team-card {
    perspective: 1000px;
}

.card-inner {
    position: relative;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-tertiary) 100%);
    border: 1px solid rgba(79, 195, 247, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.team-card:hover .card-inner {
    transform: translateY(-10px);
    border-color: rgba(79, 195, 247, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.team-image {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
    overflow: hidden;
}

.image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    color: rgba(79, 195, 247, 0.2);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.team-card:hover .image-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 195, 247, 0.2);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 50%;
    font-size: 0.9rem;
    color: var(--color-blue-primary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-blue-primary);
    color: var(--color-bg-primary);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.team-role {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-blue-primary);
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.team-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--color-blue-primary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
}

.contact-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(198, 40, 40, 0.1) 0%, transparent 50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 12px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-blue-primary);
}

.contact-text h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.emergency-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(198, 40, 40, 0.1);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 12px;
    margin-top: auto;
}

.emergency-pulse {
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-red-primary);
    border-radius: 12px;
    animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {

    0%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.02);
    }
}

.emergency-content {
    display: flex;
    flex-direction: column;
    position: relative;
}

.emergency-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-red-primary);
}

.emergency-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
    border: 1px solid rgba(79, 195, 247, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.contact-form {
    padding: 2.5rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-bg-primary);
    border: 1px solid rgba(79, 195, 247, 0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234fc3f7' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.input-focus {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: width var(--transition-medium);
}

.form-group input:focus~.input-focus,
.form-group select:focus~.input-focus,
.form-group textarea:focus~.input-focus {
    width: 100%;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-blue);
    border: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--color-bg-primary);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.form-submit:hover::before {
    transform: translateX(100%);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--color-blue-glow);
}

.form-submit .btn-icon svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(79, 195, 247, 0.1);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-blue-primary);
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 600px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-blue-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(79, 195, 247, 0.1);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    color: var(--color-blue-primary);
}

.social-icon:hover {
    background: var(--color-blue-primary);
    border-color: var(--color-blue-primary);
}

.social-icon:hover svg {
    color: var(--color-bg-primary);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
/* Mobile Responsive - Hero */
@media (max-width: 768px) {
    .hero {
        padding: calc(6rem + 35px) 1.5rem 2rem;
        /* Mobile banner adjustment */
    }


    .hero-content {
        padding: 0;
    }

    .hero-title {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.1rem;
        font-size: clamp(2rem, 10vw, 3.5rem);
        margin-bottom: 1.5rem;
    }

    .title-shield-container {
        margin: 0;
    }

    .inline-shield {
        width: clamp(35px, 12vw, 55px);
        height: auto;
    }

    .hero-tagline {
        font-size: 0.85rem;
        gap: 0.8rem;
        letter-spacing: 0.15em;
        margin-bottom: 1.5rem;
    }

    .tagline-divider {
        display: none;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }

    .hero-scroll {
        margin-top: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .stat-label {
        font-size: 0.65rem;
    }

    /* Additional Mobile Polish */
    .section-container {
        padding: 0 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .about-visual {
        margin-bottom: 2rem;
    }

    .image-frame {
        max-width: 300px;
    }

    .floating-badge {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .badge-1 {
        right: -5%;
    }

    .badge-2 {
        left: -2%;
    }

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

    .mv-card {
        padding: 2rem 1.5rem;
    }

    .mission-box {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .mission-desc {
        font-size: 1rem;
    }

    .client-track {
        animation-duration: 20s;
        /* Faster for mobile */
    }

    .contact-form {
        padding: 1.5rem;
    }

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

    .footer-column h4 {
        margin-bottom: 1rem;
    }
}



/* ============================================
   CRAZY PREMIUM PRELOADER v2.0 - SENIOR DESIGN REFINEMENT
   ============================================ */
/* ============================================
   CRAZY PREMIUM PRELOADER v3.0 - THE CINEMATIC EXPERIENCE
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}



.splash-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 210, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 210, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    perspective: 1200px;
    transform: rotateX(60deg) translateY(-20%) translateZ(-200px);
    opacity: 0;
    animation: gridEmerge 5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}



.loader-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: #fff;
    filter: blur(5px);
    opacity: 0.5;
    animation: loaderGlitchMove 2s linear infinite;
}

@keyframes loaderGlitchMove {
    0% {
        left: -20px;
    }

    100% {
        left: 100%;
    }
}

@keyframes ringRotate {
    from {
        transform: rotateX(60deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(60deg) rotateZ(360deg);
    }
}

@keyframes ringPulse {
    0% {
        transform: scale(0.2) rotateX(45deg);
        opacity: 0;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.5) rotateX(60deg);
        opacity: 0.2;
    }
}

@keyframes nebulaBreathe {
    0% {
        opacity: 0.2;
        transform: scale(1) translate(0, 0);
    }

    100% {
        opacity: 0.5;
        transform: scale(1.3) translate(20px, 10px);
    }
}

@keyframes gridEmerge {
    0% {
        opacity: 0;
        transform: rotateX(60deg) translateY(-20%) translateZ(-800px);
    }

    100% {
        opacity: 0.6;
        transform: rotateX(60deg) translateY(-20%) translateZ(0);
    }
}

.preloader.hidden {
    transform: translateY(-100%);
    transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1);
}

.splash-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.smoke-wrap {
    position: absolute;
    inset: -30%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: color-dodge;
    pointer-events: none;
}

.smoke-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(2.5) brightness(1.8) hue-rotate(-20deg) saturate(1.5);
    opacity: 0;
    animation: fireBlastReveal 6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash-reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    background-size: 200% 200%;
    z-index: 3;
    animation: splashReflect 4s linear infinite;
    pointer-events: none;
}

@keyframes splashReflect {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* THE LOGO: Premium SVG Reconstruction */
.logo-wrap {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 0 30px var(--color-blue-glow));
}

.splash-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transform: scale(0.8) translateZ(0);
    animation: logoMaterializeV3 4s cubic-bezier(0.2, 0.8, 0.2, 1) 1s forwards;
}

.splash-logo-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    color: var(--color-blue-primary);
    text-shadow: 0 0 20px var(--color-blue-glow);
    letter-spacing: -0.05em;
}

.splash-shield-container {
    position: relative;
    width: clamp(80px, 12vw, 140px);
    margin: 0 0.5rem;
}

.splash-shield-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px var(--color-red-glow));
    animation: shieldFlicker 3s infinite alternate;
}

.splash-shield-s {
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 800;
    fill: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes shieldFlicker {

    0%,
    100% {
        filter: drop-shadow(0 0 20px var(--color-red-glow)) brightness(1);
    }

    50% {
        filter: drop-shadow(0 0 40px var(--color-red-glow)) brightness(1.3);
    }
}

@keyframes logoMaterializeV3 {
    0% {
        opacity: 0;
        transform: scale(0.7) translateZ(-200px);
        filter: blur(30px) brightness(5) contrast(3);
    }

    15% {
        opacity: 0.8;
        filter: blur(15px) brightness(4) contrast(2);
        text-shadow: 2px 0 #ff416c, -2px 0 #00d2ff;
    }

    30% {
        opacity: 1;
        filter: blur(5px) brightness(2) contrast(1.5);
        transform: scale(1.05) translateZ(50px) skewX(5deg);
        text-shadow: -3px 0 #ff416c, 3px 0 #00d2ff;
    }

    45% {
        transform: scale(0.98) translateZ(-20px) skewX(-2deg);
        text-shadow: 1px 0 #ff416c, -1px 0 #00d2ff;
    }

    60% {
        filter: blur(0) brightness(1.2) contrast(1.1);
        transform: scale(1) translateZ(0) skewX(0);
        text-shadow: none;
    }

    75% {
        filter: brightness(1.5);
        text-shadow: 2px 0 #ff416c, -2px 0 #00d2ff;
    }

    80% {
        filter: brightness(1);
        text-shadow: none;
    }

    100% {
        opacity: 1;
        transform: scale(1) translateZ(0);
        filter: blur(0) brightness(1);
        text-shadow: none;
    }
}

/* Premium Scan Reflection */
.scan-bar {
    position: absolute;
    width: 300%;
    height: 20vh;
    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, 0.3) 50%,
            transparent);
    top: -50%;
    left: -150%;
    transform: rotate(35deg);
    z-index: 6;
    pointer-events: none;
    mix-blend-mode: overlay;
    animation: initialScan 3s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

/* Holographic Glitch Overlay */
.holographic-glitch {
    position: absolute;
    inset: -50px;
    background:
        repeating-linear-gradient(0deg, transparent 0px, rgba(0, 210, 255, 0.05) 1px, transparent 2px);
    background-size: 100% 3px;
    z-index: 7;
    pointer-events: none;
    opacity: 0;
    animation: glitchFlicker 0.2s steps(2) infinite 1.2s;
}

@keyframes glitchFlicker {

    0%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }

    50% {
        opacity: 0.3;
        transform: translateX(5px);
    }
}

@keyframes energyFlash {
    0% {
        opacity: 0;
        transform: scale(0.1);
        filter: blur(20px);
    }

    15% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }

    100% {
        opacity: 0;
        transform: scale(2.5);
        filter: blur(50px);
    }
}

@media (max-width: 768px) {
    .splash-logo-text {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }

    .splash-shield-container {
        width: clamp(50px, 15vw, 80px);
        margin: 0 0.2rem;
    }

    .s-ring.r1 {
        width: 180px;
        height: 180px;
    }

    .s-ring.r2 {
        width: 300px;
        height: 300px;
    }

    .s-ring.r3 {
        width: 450px;
        height: 450px;
    }

    .loader-content {
        width: 80%;
        bottom: 15%;
    }

    .loader-status {
        letter-spacing: 0.3em;
        font-size: 0.55rem;
    }
}

/* UI LOADING ELEMENTS */
.loader-content {
    position: absolute;
    bottom: 12%;
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 320px;
    opacity: 0;
    animation: fadeInUI 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 3.5s;
}

.loader-status {
    font-family: var(--font-display);
    font-size: clamp(0.6rem, 2vw, 0.7rem);
    letter-spacing: 0.5em;
    color: var(--color-blue-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--color-blue-glow);
}

.loader-bar-container {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-blue);
    width: 0%;
    box-shadow: 0 0 15px var(--color-blue-primary);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-percentage {
    font-family: var(--font-display);
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.8rem;
    color: var(--color-blue-primary);
    font-weight: 700;
}

/* KEYFRAMES */
@keyframes fireBlastReveal {
    0% {
        opacity: 0;
        transform: scale(1.8) rotate(5deg);
        filter: brightness(4) blur(20px);
    }

    40% {
        opacity: 1;
        transform: scale(1.2) rotate(-2deg);
        filter: brightness(2) blur(10px);
    }

    100% {
        opacity: 0.6;
        transform: scale(1) rotate(0);
        filter: brightness(1) blur(0);
    }
}

@keyframes initialScan {
    0% {
        left: -150%;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        left: 150%;
        opacity: 0;
    }
}

@keyframes fadeInUI {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shieldFlicker {

    0%,
    100% {
        filter: drop-shadow(0 0 20px var(--color-red-glow)) brightness(1);
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 40px var(--color-red-glow)) brightness(1.4);
        transform: scale(1.05);
    }
}

/* ============================================
   URBANIZATION SECTION
   ============================================ */
.urbanization {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.urbanization::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(79, 195, 247, 0.03);
    border-radius: 50%;
    filter: blur(100px);
    top: -150px;
    right: -150px;
}

.urban-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.urban-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.title-underline.left {
    margin-left: 0;
}

.urban-main-text {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-top: 2rem;
}

.urban-main-text strong {
    color: var(--color-blue-primary);
    font-size: 1.5rem;
}

.urban-quote {
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--color-blue-primary);
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.mission-box {
    background: rgba(79, 195, 247, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 10px var(--color-blue-glow));
}

.mission-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text-primary);
}

.mission-desc strong {
    color: var(--color-blue-primary);
}

@media (max-width: 968px) {
    .urban-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .urban-main-text {
        font-size: 1.1rem;
    }
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */
.mission-vision {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.mission-vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(79, 195, 247, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(198, 40, 40, 0.05) 0%, transparent 50%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.mv-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-blue-primary);
    box-shadow: 0 20px 60px rgba(79, 195, 247, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--color-blue-primary);
}

.mv-icon svg {
    width: 100%;
    height: 100%;
}

.mv-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-blue-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.mv-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.mv-text strong {
    color: var(--color-blue-primary);
}

.mv-text em {
    color: var(--color-text-primary);
    font-style: normal;
}

@media (max-width: 900px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PRODUCTS SECTION (BIOSTER, EDUGENIE, BLUHEALTH, STERIZEN)
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* BIOSTER - Premium Grassy Green */
.bioster {
    --product-color: #76B947;
    --product-glow: rgba(118, 185, 71, 0.3);
}

.bioster::before {
    background: linear-gradient(90deg, #76B947, #4E963D);
}

.bioster:hover {
    border-color: #76B947;
    box-shadow: 0 20px 60px rgba(118, 185, 71, 0.25);
}

.bioster-icon {
    color: #76B947;
}

.bioster-glow {
    background: radial-gradient(circle, rgba(118, 185, 71, 0.15) 0%, transparent 70%);
}

.bioster-link {
    color: #76B947 !important;
    border: 1px solid rgba(118, 185, 71, 0.3);
}

.bioster-link:hover {
    background: rgba(118, 185, 71, 0.15);
    border-color: #76B947;
}

.bioster-num {
    color: rgba(118, 185, 71, 0.15);
}

/* EDUGENIE - Vibrant Orange (Based on Image) */
.edugenie {
    --product-color: #F26F00;
    --product-glow: rgba(242, 111, 0, 0.4);
}

.edugenie::before {
    background: linear-gradient(90deg, #F26F00, #FF8E00);
}

.edugenie:hover {
    border-color: #F26F00;
    box-shadow: 0 20px 60px rgba(242, 111, 0, 0.3);
}

.edugenie-icon {
    color: #F26F00;
}

.edugenie-glow {
    background: radial-gradient(circle, rgba(242, 111, 0, 0.15) 0%, transparent 70%);
}

.edugenie-link {
    color: #F26F00 !important;
    border: 1px solid rgba(242, 111, 0, 0.3);
}

.edugenie-link:hover {
    background: rgba(242, 111, 0, 0.15);
    border-color: #F26F00;
}

.edugenie-num {
    color: rgba(242, 111, 0, 0.2);
}

/* BLUHEALTH - Clean Plain White */
.bluhealth {
    --product-color: #FFFFFF;
    --product-glow: rgba(255, 255, 255, 0.2);
}

.bluhealth::before {
    background: linear-gradient(90deg, #FFFFFF, rgba(255, 255, 255, 0.5));
}

.bluhealth:hover {
    border-color: #FFFFFF;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.bluhealth-icon {
    color: #FFFFFF;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.bluhealth-glow {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.bluhealth-link {
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bluhealth-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

.bluhealth-num {
    color: rgba(255, 255, 255, 0.05);
}

/* STERIZEN - Clean Teal/Blue */
.sterizen {
    --product-color: #00BFA5; /* Teal */
    --product-glow: rgba(0, 191, 165, 0.3);
}

.sterizen::before {
    background: linear-gradient(90deg, #00BFA5, #00897B);
}

.sterizen:hover {
    border-color: #00BFA5;
    box-shadow: 0 20px 60px rgba(0, 191, 165, 0.25);
}

.sterizen-icon {
    color: #00BFA5;
}

.sterizen-glow {
    background: radial-gradient(circle, rgba(0, 191, 165, 0.15) 0%, transparent 70%);
}

.sterizen-link {
    color: #00BFA5 !important;
    border: 1px solid rgba(0, 191, 165, 0.3);
}

.sterizen-link:hover {
    background: rgba(0, 191, 165, 0.15);
    border-color: #00BFA5;
}

.sterizen-num {
    color: rgba(0, 191, 165, 0.15);
}

/* Product Card Common Styles */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.product-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.bioster .product-title {
    color: #76B947;
    text-shadow: 0 0 20px rgba(118, 185, 71, 0.2);
}

.edugenie .product-title {
    color: #F26F00;
    text-shadow: 0 0 20px rgba(242, 111, 0, 0.2);
}

.bluhealth .product-title {
    color: #FFFFFF;
}

.product-category {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.distributor-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
    background: rgba(118, 185, 71, 0.1);
    color: #76B947;
    border: 1px solid rgba(118, 185, 71, 0.3);
    border-radius: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.product-desc {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.bioster .product-features li::before {
    color: #76B947;
}

.edugenie .product-features li::before {
    color: #F26F00;
}

.bluhealth .product-features li::before {
    color: #FFFFFF;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.product-link span {
    transition: transform var(--transition-fast);
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.video-trigger {
    background: transparent;
    border: 1px solid rgba(0, 210, 255, 0.4);
    color: var(--color-blue-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-trigger:hover {
    background: rgba(0, 210, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
    transform: translateY(-2px);
}

.play-icon {
    font-size: 0.7rem;
}

.card-number {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    z-index: 0;
}

/* ============================================
   TEAM VALUES SECTION
   ============================================ */
.team-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1000px) {
    .team-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-values {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.5rem 1rem;
    }

    .value-icon {
        font-size: 2rem;
    }

    .value-card h4 {
        font-size: 0.9rem;
    }

    .value-card p {
        font-size: 0.8rem;
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-medium);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-blue-primary);
    background: rgba(79, 195, 247, 0.05);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--color-blue-primary);
    margin-bottom: 0.75rem;
}

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

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.certifications {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

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

.cert-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-medium);
}

.cert-card:hover {
    background: rgba(0, 210, 255, 0.03);
    border-color: rgba(0, 210, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cert-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.3));
}

.cert-info h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-blue-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cert-info p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ============================================
   CLIENTELE SECTION (FLOATING MARQUEE)
   ============================================ */
.clientele {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--color-bg-primary);
    overflow: hidden;
}

/* --- Trusted Partners Marquee --- */
.client-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 5rem;
    padding: 3rem 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 210, 255, 0.03) 50%, 
        transparent 100%);
    border-top: 1px solid rgba(0, 210, 255, 0.1);
    border-bottom: 1px solid rgba(0, 210, 255, 0.1);
}

.client-marquee::before,
.client-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.client-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-primary), transparent);
}

.client-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-primary), transparent);
}

.client-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    gap: 2.5rem;
    align-items: center;
}

.client-track:hover {
    animation-play-state: paused;
}

.client-logo-item {
    flex: 0 0 220px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.client-logo-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-logo-item:hover {
    background: #ffffff;
    border-color: var(--color-blue-primary);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 
                0 0 20px rgba(0, 210, 255, 0.3);
}

.client-logo-item:hover::after {
    opacity: 1;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none; /* Show original colors */
    opacity: 1;
    transition: all 0.4s ease;
    z-index: 1;
}

.client-logo-item:hover .partner-logo {
    transform: scale(1.05);
    filter: brightness(1.1); /* Slight pop on hover */
}

/* Vaidhya Logo Style (Matches Image) */
.vaidhya-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    filter: none; /* Show original colors */
    transition: all 0.4s ease;
}

.client-logo-item:hover .vaidhya-logo {
    transform: scale(1.05);
}

.vaidhya-icon-wrap {
    width: 60px;
    height: 60px;
    background: #FFD700;
    /* Vibrant Yellow Circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vaidhya-plus {
    font-size: 3rem;
    font-weight: 900;
    color: #1A73E8;
    /* Clinical Blue */
    line-height: 1;
    margin-top: -5px;
}

.vaidhya-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1A73E8;
    letter-spacing: 2px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .client-logo-item {
        flex: 0 0 180px;
        height: 100px;
        padding: 1rem;
    }

    .client-marquee::before,
    .client-marquee::after {
        width: 100px;
    }

    .vaidhya-icon-wrap {
        width: 45px;
        height: 45px;
    }

    .vaidhya-plus {
        font-size: 2.2rem;
    }

    .vaidhya-text {
        font-size: 0.7rem;
    }
}

/* ============================================
   VIDEO MODAL STYLES
   ============================================ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 210, 255, 0.2);
    transform: scale(0.9) translateY(40px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 12px;
    overflow: hidden;
}

.video-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-container {
    width: 100%;
    height: 100%;
}

#modalVideo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   PRODUCT DETAIL PAGES (BIOSTER)
   ============================================ */
.product-hero {
    padding: calc(10rem + 40px) 2rem 5rem;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.05), transparent);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 10rem);
    /* MASSIVE CINEMATIC TITLE */
    background: var(--gradient-blue);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 50px var(--color-blue-glow));
    text-transform: uppercase;
    letter-spacing: -2px;
}

.applications-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.apps-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

.apps-column {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.app-item {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.app-item:hover {
    background: rgba(168, 255, 120, 0.08);
    /* Stronger bio-green on hover */
    border-color: rgba(168, 255, 120, 0.3);
    transform: translateX(10px) translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(168, 255, 120, 0.1);
}

.apps-column:last-child .app-item:hover {
    transform: translateX(-10px) translateY(-5px) scale(1.02);
}

.app-item h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    /* Bolder, larger headings */
    font-weight: 800;
    color: var(--color-blue-primary);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.app-item:hover h3 {
    transform: scale(1.05);
    text-shadow: 0 0 15px var(--color-blue-glow);
}

.app-item p {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
    transition: color 0.4s ease;
}

.app-item:hover p {
    color: var(--color-text-primary);
}

/* Flower/Petal Diagram (High-End Industrial Rebuild) */
.flower-diagram {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.petal-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.petal {
    position: absolute;
    width: 160px;
    height: 220px;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 255, 120, 0.2);
    border-radius: 100px 100px 20px 20px;
    transform-origin: bottom center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    cursor: pointer;
    margin-left: -80px;
    /* Offset half width */
    margin-top: -220px;
    /* Position bottom at center */
    color: var(--color-blue-primary);
}

/* Precise positioning of 5 petals around center */
.p1 {
    transform: rotate(0deg) translateY(-20px);
}

.p2 {
    transform: rotate(72deg) translateY(-20px);
}

.p3 {
    transform: rotate(144deg) translateY(-20px);
}

.p4 {
    transform: rotate(216deg) translateY(-20px);
}

.p5 {
    transform: rotate(288deg) translateY(-20px);
}

.petal:hover {
    background: rgba(168, 255, 120, 0.1);
    border-color: rgba(168, 255, 120, 0.6);
    box-shadow: 0 0 40px rgba(168, 255, 120, 0.2);
    z-index: 10;
    transform: rotate(var(--rot-val)) translateY(-40px) scale(1.05);
}

.p1:hover {
    --rot-val: 0deg;
}

.p2:hover {
    --rot-val: 72deg;
}

.p3:hover {
    --rot-val: 144deg;
}

.p4:hover {
    --rot-val: 216deg;
}

.p5:hover {
    --rot-val: 288deg;
}

.petal-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    transition: all 0.5s ease;
}

.petal-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    filter: drop-shadow(0 0 10px rgba(168, 255, 120, 0.3));
}

/* Ensure icons stay upright regardless of petal rotation */
.p1 .petal-icon {
    transform: rotate(0deg);
}

.p2 .petal-icon {
    transform: rotate(-72deg);
}

.p3 .petal-icon {
    transform: rotate(-144deg);
}

.p4 .petal-icon {
    transform: rotate(-216deg);
}

.p5 .petal-icon {
    transform: rotate(-288deg);
}

.petal:hover .petal-icon {
    transform: rotate(calc(var(--rot-val) * -1)) translateY(-5px) scale(1.1);
}

.petal-label {
    position: absolute;
    top: -60px;
    background: rgba(168, 255, 120, 0.05);
    border: 1px solid var(--color-blue-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.petal-label.active {
    opacity: 1;
    transform: translateY(0);
}

.app-item.highlight-active {
    background: rgba(168, 255, 120, 0.12);
    border-color: var(--color-blue-primary);
    box-shadow: 0 0 50px rgba(168, 255, 120, 0.3), inset 0 0 20px rgba(168, 255, 120, 0.1);
    transform: scale(1.05) translateX(15px);
    z-index: 2;
}

/* Persistent State after click */
.app-item.highlight-persistent {
    background: rgba(168, 255, 120, 0.15);
    border-color: #a8ff78;
    box-shadow: 0 0 60px rgba(168, 255, 120, 0.4), inset 0 0 25px rgba(168, 255, 120, 0.1);
    transform: scale(1.08) translateX(20px);
    z-index: 3;
    border-width: 2px;
}

.apps-column:last-child .app-item.highlight-active {
    transform: scale(1.05) translateX(-15px);
}

.apps-column:last-child .app-item.highlight-persistent {
    transform: scale(1.08) translateX(-20px);
}

@keyframes cardFocalPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 255, 120, 0.6);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(168, 255, 120, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(168, 255, 120, 0);
    }
}

.petal-highlight,
.petal-persistent {
    background: rgba(168, 255, 120, 0.25) !important;
    border-color: rgba(168, 255, 120, 0.8) !important;
    box-shadow: 0 0 60px rgba(168, 255, 120, 0.5) !important;
    transform: rotate(var(--rot-val, 0deg)) translateY(-45px) scale(1.1) !important;
    z-index: 15 !important;
}

.petal-persistent .petal-icon {
    transform: rotate(calc(var(--rot-val) * -1)) scale(1.2) !important;
    color: white;
}


/* Central Core */
.flower-diagram::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--color-bg-primary);
    border: 2px solid var(--color-blue-primary);
    border-radius: 50%;
    z-index: 11;
    box-shadow: 0 0 30px var(--color-blue-glow);
}

@media (max-width: 968px) {
    .apps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .flower-diagram {
        width: 300px;
        /* Scale down for mobile */
        height: 300px;
        order: -1;
        margin: 2rem auto;
    }

    .petal {
        width: 110px;
        height: 150px;
        padding-top: 15px;
        margin-left: -55px;
        margin-top: -150px;
    }

    .petal-icon {
        font-size: 2.2rem;
    }

    .flower-diagram::after {
        width: 50px;
        height: 50px;
    }

    .apps-column {
        gap: 1.5rem;
    }

    .app-item {
        padding: 1.5rem;
    }

    .app-item h3 {
        font-size: 1.6rem;
    }

    .app-item p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* Product Hero (Bioster page) */
    .product-hero {
        padding: calc(6rem + 32px) 1rem 3rem;
    }

    .product-hero-title {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    /* Flower Diagram - Mobile */
    .flower-diagram {
        width: 260px;
        height: 260px;
    }

    .petal {
        width: 90px;
        height: 130px;
        padding-top: 12px;
        margin-left: -45px;
        margin-top: -130px;
    }

    .petal-icon {
        width: 40px;
        height: 40px;
    }

    .petal-label {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
        top: -50px;
    }

    .flower-diagram::after {
        width: 45px;
        height: 45px;
    }

    .apps-column {
        gap: 1rem;
    }

    .app-item {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .app-item h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .app-item p {
        font-size: 0.9rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .t-role {
        font-size: 1.1rem;
    }

    .t-quote {
        font-size: 1rem;
    }

    .t-text {
        font-size: 0.9rem;
    }

    .results-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Product Hero - Small Mobile */
    .product-hero {
        padding: calc(5rem + 28px) 0.75rem 2rem;
    }

    .product-hero-title {
        font-size: clamp(2.5rem, 18vw, 4rem);
        letter-spacing: 0;
    }

    /* Flower Diagram - Small Mobile */
    .flower-diagram {
        width: 220px;
        height: 220px;
    }

    .petal {
        width: 75px;
        height: 110px;
        padding-top: 10px;
        margin-left: -37.5px;
        margin-top: -110px;
    }

    .petal-icon {
        width: 32px;
        height: 32px;
    }

    .petal-label {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
        top: -40px;
    }

    .flower-diagram::after {
        width: 35px;
        height: 35px;
    }

    .app-item {
        padding: 1rem;
    }

    .app-item h3 {
        font-size: 1.2rem;
    }

    .app-item p {
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .t-role {
        font-size: 1rem;
    }

    .t-quote {
        font-size: 0.9rem;
    }

    .t-text {
        font-size: 0.85rem;
    }
}


/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card:hover {
    background: rgba(168, 255, 120, 0.03);
    border-color: rgba(168, 255, 120, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.t-role {
    font-family: var(--font-display);
    color: var(--color-blue-primary);
    font-size: 1.4rem;
    font-weight: 700;
}

.t-quote {
    font-style: italic;
    color: var(--color-text-primary);
    font-size: 1.2rem;
    line-height: 1.4;
    opacity: 0.9;
}

.t-text {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.proven-results-card {
    background: linear-gradient(135deg, rgba(168, 255, 120, 0.05), rgba(67, 233, 123, 0.05));
    border: 1px solid rgba(168, 255, 120, 0.2);
}

.results-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.results-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-text-secondary);
}

.results-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-blue-primary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Confidence Shield / Return Policy */
.confidence-section {
    padding: 4rem 0;
    background: var(--color-bg-secondary);
}

.confidence-shield {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--color-blue-primary);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.1);
}

.shield-icon-wrap {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--color-blue-glow);
}

.shield-icon-svg {
    width: 60px;
    height: 60px;
    fill: white;
}

.confidence-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.confidence-content p {
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
}

.highlight-refund {
    color: var(--color-blue-primary);
    font-weight: 800;
}

@media (max-width: 768px) {
    .confidence-shield {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* ---- TABLET (max-width: 1024px) ---- */
@media (max-width: 1024px) {
    :root {
        --section-padding: clamp(3rem, 8vh, 6rem);
    }

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

    .urban-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---- MOBILE LARGE (max-width: 768px) ---- */
@media (max-width: 768px) {
    /* Global Tweaks */
    html, body {
        font-size: 15px;
    }

    /* Hide custom cursor on mobile/touch devices */
    #cursor-glow,
    #cursor-outer {
        display: none !important;
    }

    /* Announcement Banner */
    .announcement-banner {
        height: 32px;
    }

    .banner-item {
        font-size: 0.65rem;
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .banner-icon {
        font-size: 1rem;
    }

    /* Navigation */
    .navbar {
        padding: 1rem 0;
        /* top: 32px; */
    }

    .navbar.scrolled {
        /* top: 32px; */
        padding: 0.75rem 0;
    }

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

    .nav-logo {
        font-size: 1.4rem;
    }

    .nav-shield-svg {
        width: 28px;
        height: 34px;
    }

    .nav-menu {
        padding: 5rem 1.5rem 2rem;
        width: 85%;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Hero Section */
    .hero {
        padding: calc(5rem + 32px) 1rem 2rem;
        min-height: auto;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
        letter-spacing: 0.1em;
    }

    .hero-title {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
        gap: 0.1rem;
        margin-bottom: 1rem;
    }

    .inline-shield {
        width: clamp(40px, 14vw, 60px);
        height: clamp(48px, 16vw, 72px);
    }

    /* .hero-shield-s {
        font-size: 28px;
    } */

    .hero-tagline {
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        margin-bottom: 1.5rem;
    }

    .tagline-divider {
        display: none;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-scroll {
        margin-top: 1.5rem;
    }

    .scroll-indicator {
        width: 20px;
        height: 32px;
    }

    .hero-scroll span {
        font-size: 0.6rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-suffix {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-tag {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .title-underline {
        width: 80px;
        height: 3px;
    }

    .title-underline::before,
    .title-underline::after {
        width: 8px;
        height: 8px;
    }

    .title-underline::before {
        left: -15px;
    }

    .title-underline::after {
        right: -15px;
    }

    /* Urbanization Section */
    .urban-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .urban-main-text {
        font-size: 1rem;
    }

    .urban-main-text strong {
        font-size: 1.2rem;
    }

    .urban-quote {
        font-size: 0.95rem;
        padding-left: 1rem;
    }

    .mission-box {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .mission-icon {
        font-size: 2.2rem;
    }

    .mission-desc {
        font-size: 1rem;
    }

    /* About Section */
    .about-visual {
        order: -1;
    }

    .image-frame {
        max-width: 280px;
    }

    .about-logo-img {
        max-width: 120px;
    }

    .floating-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }

    .badge-1 {
        top: 5%;
        right: 0;
    }

    .badge-2 {
        bottom: 10%;
        left: 0;
    }

    .about-subtitle {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .about-paragraph {
        font-size: 0.95rem;
    }

    .first-letter {
        font-size: 2.2rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-content h4 {
        font-size: 0.9rem;
    }

    .feature-content p {
        font-size: 0.8rem;
    }

    /* Mission Vision */
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mv-card {
        padding: 2rem 1.5rem;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
    }

    .mv-title {
        font-size: 1.4rem;
    }

    .mv-text {
        font-size: 0.95rem;
    }

    /* Products Section */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-category {
        font-size: 0.65rem;
    }

    .distributor-badge {
        font-size: 0.55rem;
        padding: 0.25rem 0.6rem;
    }

    .product-desc {
        font-size: 0.9rem;
    }

    .product-features li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .card-number {
        font-size: 3.5rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .video-trigger {
        width: 100%;
        justify-content: center;
    }

    /* Certifications */
    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cert-card {
        padding: 1.5rem 1rem;
    }

    .cert-icon {
        font-size: 2.5rem;
    }

    .cert-info h4 {
        font-size: 1rem;
    }

    .cert-info p {
        font-size: 0.8rem;
    }

    /* Team Section */
    .team-intro {
        font-size: 0.95rem;
        margin-top: -1rem;
    }

    .team-values {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.25rem 1rem;
    }

    .value-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .value-card h4 {
        font-size: 0.85rem;
    }

    .value-card p {
        font-size: 0.8rem;
    }

    /* Clientele Marquee */
    .client-marquee {
        margin-top: 3rem;
        padding: 2rem 0;
    }

    .client-logo-item {
        flex: 0 0 160px;
        height: 80px;
        padding: 0.8rem;
    }

    .client-track {
        gap: 1.5rem;
    }

    .client-marquee::before,
    .client-marquee::after {
        width: 60px;
    }

    .vaidhya-icon-wrap {
        width: 40px;
        height: 40px;
    }

    .vaidhya-plus {
        font-size: 2rem;
    }

    .vaidhya-text {
        font-size: 0.6rem;
    }

    /* Contact Section */
    .contact-subtitle {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
    }

    .contact-description {
        font-size: 0.9rem;
    }

    .contact-item {
        gap: 0.75rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-text h4 {
        font-size: 0.8rem;
    }

    .contact-text p {
        font-size: 0.85rem;
    }

    .emergency-box {
        padding: 1rem;
    }

    .emergency-label {
        font-size: 0.65rem;
    }

    .emergency-number {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-header h3 {
        font-size: 1.1rem;
    }

    .form-header p {
        font-size: 0.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group label {
        font-size: 0.7rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.85rem;
        font-size: 0.9rem;
    }

    .form-submit {
        padding: 1rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-main {
        padding: 2.5rem 0;
    }

    .footer-logo {
        font-size: 1.2rem;
    }

    .footer-tagline {
        font-size: 0.7rem;
    }

    .footer-description {
        font-size: 0.85rem;
    }

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

    .footer-column h4 {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .footer-column a {
        font-size: 0.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem 0;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    /* Video Modal */
    .modal-content {
        width: 95%;
        border-radius: 8px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    /* Preloader */
    .splash-logo-text {
        font-size: clamp(1.8rem, 10vw, 3rem);
    }

    .splash-shield-container {
        width: clamp(45px, 14vw, 70px);
        margin: 0 0.1rem;
    }

    /* .splash-shield-s {
        font-size: 35px;
    } */

    .loader-content {
        bottom: 10%;
        width: 85%;
    }

    .loader-status {
        font-size: 0.5rem;
        letter-spacing: 0.3em;
    }

    /* Floating Entities - reduce for performance */
    .floating-entities {
        opacity: 0.5;
    }

    .entity {
        transform: scale(0.5) !important;
    }

    .v3, .v4, .v6, .v7, .v8, .v9,
    .m6, .m7, .m9, .m10, .m11, .m12, .m13, .m14,
    .r3, .r4, .r6, .r7, .r8,
    .d6, .d7, .d9, .d10, .d11, .d12, .d13, .d14, .d15 {
        display: none !important;
    }
}

/* ---- MOBILE SMALL (max-width: 480px) ---- */
@media (max-width: 480px) {
    html, body {
        font-size: 14px;
    }

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

    /* Announcement Banner */
    .announcement-banner {
        height: 28px;
    }

    .banner-item {
        font-size: 0.55rem;
        padding: 0 0.75rem;
    }

    /* Navigation */
    .navbar {
        /* top: 28px; */
    }

    .navbar.scrolled {
        /* top: 28px; */
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-shield-svg {
        width: 24px;
        height: 30px;
    }

    .nav-toggle span {
        width: 24px;
    }

    /* Hero */
    .hero {
        padding: calc(4.5rem + 28px) 0.75rem 1.5rem;
    }

    .hero-badge {
        font-size: 0.55rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 14vw, 2.8rem);
    }

    .inline-shield {
        width: clamp(32px, 16vw, 50px);
        height: clamp(38px, 18vw, 60px);
    }

    /* .hero-shield-s {
        font-size: 22px;
    } */

    .hero-tagline {
        font-size: 0.65rem;
        gap: 0.4rem 0.8rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero-stats {
        padding: 1.25rem 0.75rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.55rem;
    }

    /* Sections */
    .section-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }

    .urban-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }

    /* Certifications */
    .certs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cert-card {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        padding: 1.25rem;
    }

    .cert-icon {
        font-size: 2rem;
        margin-bottom: 0;
    }

    /* Team Values */
    .team-values {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 0;
    }

    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Preloader */
    .splash-logo-text {
        font-size: clamp(1.5rem, 12vw, 2.5rem);
    }

    .splash-shield-container {
        width: clamp(35px, 16vw, 55px);
    }

    /* .splash-shield-s {
        font-size: 28px;
    } */
}

/* ---- EXTRA SMALL DEVICES (max-width: 360px) ---- */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .inline-shield {
        width: 28px;
        height: 34px;
    }

    /* .hero-shield-s {
        font-size: 18px;
    } */

    .hero-tagline {
        font-size: 0.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-shield-svg {
        width: 20px;
        height: 24px;
    }
}

/* ---- LANDSCAPE MOBILE ---- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-top: calc(4rem + 32px);
        padding-bottom: 1rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 2rem;
    }

    .stat-divider {
        width: 1px;
        height: 40px;
    }

    .hero-scroll {
        display: none;
    }

    .preloader {
        padding: 1rem;
    }

    .splash-logo {
        transform: scale(0.8);
    }

    .loader-content {
        bottom: 5%;
    }
}

/* ---- TOUCH DEVICE OPTIMIZATIONS ---- */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects that don't work on touch */
    .nav-link::before {
        display: none;
    }

    .btn:hover {
        transform: none;
    }

    .product-card:hover {
        transform: none;
    }

    .service-card:hover {
        transform: none;
    }

    .mv-card:hover {
        transform: none;
    }

    .feature-item:hover {
        transform: none;
    }

    /* Improve tap targets */
    .nav-link {
        padding: 0.75rem 0;
    }

    .btn {
        min-height: 48px;
    }

    .social-icon {
        min-width: 44px;
        min-height: 44px;
    }

    /* Disable custom cursor on touch */
    #cursor-glow,
    #cursor-outer {
        display: none !important;
    }
}

/* ---- REDUCE MOTION FOR ACCESSIBILITY ---- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .preloader {
        display: none !important;
    }

    .floating-entities {
        display: none !important;
    }

    .client-track {
        animation: none !important;
    }

    .banner-track {
        animation: none !important;
    }
}
/* 
============================================
BIOSTER PAGE PRODUCT HERO STYLES
============================================
*/

.bioster-showcase-container {
    position: relative;
    max-width: 600px;
    margin: 3rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bioster-hero-img {
    position: relative;
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: floatBioster 6s ease-in-out infinite;
}

.bioster-glow-back {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(118, 185, 71, 0.4) 0%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
    animation: pulseBiosterGlow 4s ease-in-out infinite alternate;
}

@keyframes floatBioster {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulseBiosterGlow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (max-width: 768px) {
    .bioster-showcase-container {
        max-width: 90%;
        margin: 2rem auto;
    }
    
    .bioster-hero-img {
        max-height: 350px;
    }
}

/* 
============================================
BIOSTER LUNG HEALTH SECTION
============================================
*/
.lung-health-section {
    padding: 6rem 1rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0, 210, 255, 0.05) 100%);
    position: relative;
}

.lung-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.lung-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.lung-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 210, 255, 0.1), transparent);
    pointer-events: none;
}

.lung-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.lung-image-wrap:hover img {
    transform: scale(1.05);
}

.lung-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.lung-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.lung-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .lung-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .lung-content .section-title {
        text-align: center;
    }
    .lung-text {
        text-align: center;
    }
}

/* ============================================
   FLOATING ACTION BUTTON (FAB)
   ============================================ */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column; /* Menu on top, Main button at bottom */
    align-items: center;
    gap: 15px;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-red-primary);
    border: none;
    box-shadow: 0 4px 20px rgba(255, 65, 108, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
    z-index: 2;
    order: 2; /* Ensure it stays at the bottom */
}

.fab-main:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 65, 108, 0.7);
}

.fab-main svg {
    width: 30px;
    height: 30px;
    fill: white;
    transition: var(--transition-medium);
}

.fab-icon-close {
    position: absolute;
    opacity: 0;
    transform: scale(0);
}

.fab-icon-open {
    opacity: 1;
    transform: scale(1);
}

.fab-container.active .fab-icon-open {
    opacity: 0;
    transform: scale(0);
}

.fab-container.active .fab-icon-close {
    opacity: 1;
    transform: scale(1);
}

.fab-menu {
    display: flex;
    flex-direction: column; /* Stack icons normally */
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    order: 1; /* Stay above the main button */
}

.fab-container.active .fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.fab-item {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-medium);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.fab-item svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.fab-whatsapp {
    background: #25D366;
}

.fab-phone {
    background: #4285F4;
}

.fab-email {
    background: #FBBC05;
}

.fab-item:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .fab-main {
        width: 50px;
        height: 50px;
    }
    .fab-item {
        width: 45px;
        height: 45px;
    }
}


