/* =========================================
   1. VARIABLES & GLOBAL RESET
   ========================================= */
:root {
    /* Brand Colors */
    --primary-blue: #2563EB; 
    --primary-dark: #111827; 
    --text-grey: #6B7280;
    --bg-light: #F9FAFB;
    
    /* Trust Theme Variables (Consolidated) */
    --trust-blue: #0f4c81;       
    --secure-slate: #0f172a;     
    --accessible-light: #f8fafc; 
    --tech-accent: #38bdf8;      
    
    /* Effects & Glass */
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-fallback: #ffffff; 
    --glass: rgba(255, 255, 255, 0.75);
    
    /* Typography & Gradients */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --gradient-brand: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    --gradient-cyan: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 100%);
}

body { font-family: var(--font-main); background-color: var(--bg-light); color: var(--primary-dark); overflow-x: hidden; }

.counter-value { display: inline-block; transition: all 0.3s ease; }
.text-primary .counter-value { text-shadow: 0 0 10px rgba(37, 99, 235, 0.2); }
.custom-placeholder::placeholder { opacity: 0.1; }

/* =========================================
   2. TYPOGRAPHY & UTILITIES
   ========================================= */
.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.text-gradient-white {
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative; overflow: hidden;
}
.btn-primary:hover {
    background-color: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4) !important; 
}
.text-primary { color: var(--primary-blue) !important; }

.backdrop-blur {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.backdrop-blur:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.opacity-60 { opacity: 0.6; }
.ls-1 { letter-spacing: 1px; }

/* =========================================
   3. SHARED GLOBAL COMPONENTS
   ========================================= */
.hero-grid-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px; z-index: 1;
}

.hero-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(15, 76, 129, 0.2) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}
.hero-glow-method { top: -20%; right: -10%; background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%); }

.trust-card {
    background: #ffffff; border: 1px solid #e2e8f0; border-radius: 24px;
    padding: 2.5rem; height: 100%; display: flex; flex-direction: column;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); position: relative; overflow: hidden;
}
.trust-card:hover {
    border-color: var(--trust-blue);
    box-shadow: 0 15px 35px rgba(15, 76, 129, 0.08);
    transform: translateY(-5px);
}
.trust-card.dark { background: var(--secure-slate); border-color: #334155; color: white; }

/* =========================================
   4. PAGE SPECIFIC HEROES
   ========================================= */
.hero-section { height: 100vh; display: flex; align-items: center; justify-content: center; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; opacity: 0;
    transform: scale(1); animation: kenBurns 18s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }

@keyframes kenBurns {
    0% { opacity: 0; transform: scale(1); }
    5%, 33% { opacity: 1; transform: scale(1.1); }
    38%, 100% { opacity: 0; transform: scale(1); }
}

.hero-about { background: linear-gradient(135deg, var(--secure-slate) 0%, #1e293b 100%); min-height: 80vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-careers, .hero-contact, .hero-expertise, .hero-method { background: linear-gradient(135deg, var(--secure-slate) 0%, #1e293b 100%); min-height: 60vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding-top: 100px; }
.hero-details { background: linear-gradient(135deg, var(--secure-slate) 0%, #1e293b 100%); padding: 150px 0 80px; position: relative; overflow: hidden; }
.hero-legal { background: linear-gradient(135deg, var(--secure-slate) 0%, #1e293b 100%); min-height: 50vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding-top: 100px; }
.hero-trust { background: linear-gradient(135deg, var(--secure-slate) 0%, #1e293b 100%); min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; }

/* =========================================
   5. INDEX PAGE SPECIFICS
   ========================================= */
.trust-marquee { background: white; border-bottom: 1px solid #e2e8f0; padding: 2rem 0; display: flex; overflow: hidden; white-space: nowrap; }
.marquee-track { display: flex; animation: scrollMarquee 30s linear infinite; gap: 5rem; padding-right: 5rem; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { font-size: 2rem; color: #cbd5e1; transition: color 0.3s ease; }
.marquee-item:hover { color: var(--trust-blue); }
.icon-shield { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
.motive-banner { background: var(--trust-blue); color: white; border-radius: 30px; padding: 4rem; position: relative; overflow: hidden; }
.motive-banner::after { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%; filter: blur(50px); }

/* =========================================
   6. ABOUT PAGE SPECIFICS
   ========================================= */
.origin-slider-frame { border: 4px solid white; box-shadow: 0 20px 40px rgba(0,0,0,0.1); position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.team-card-pro { background: white; border: 1px solid #f1f5f9; border-radius: 20px; padding: 1.5rem; transition: transform 0.3s ease; }
.team-card-pro:hover { border-color: var(--trust-blue); transform: translateY(-5px); }
.team-role { font-size: 0.75rem; letter-spacing: 1px; font-weight: 700; color: var(--trust-blue); text-transform: uppercase; }

/* =========================================
   7. CAREERS PAGE SPECIFICS
   ========================================= */
.job-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 20px; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
.job-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(15, 76, 129, 0.1) !important; border-color: var(--trust-blue); }
.pulse-dot { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(0.95); opacity: 0.8; } 50% { transform: scale(1.2); opacity: 1; } }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
@media (min-width: 992px) { .border-end-lg { border-right: 1px dashed #cbd5e1; } }
.badge-compact { font-size: 0.7rem; padding: 0.35rem 0.6rem; }

/* =========================================
   8. CONTACT PAGE SPECIFICS
   ========================================= */
.contact-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); padding: 3rem; transition: transform 0.3s ease; }
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 25px 50px rgba(15, 76, 129, 0.08); border-color: var(--trust-blue); }
.info-box { background: white; border: 1px solid #f1f5f9; border-radius: 16px; padding: 1.5rem; display: flex; align-items: center; margin-bottom: 1.5rem; transition: all 0.3s ease; }
.info-box:hover { border-color: var(--trust-blue); transform: translateX(5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.info-icon { width: 50px; height: 50px; background: rgba(15, 76, 129, 0.1); color: var(--trust-blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-right: 1.5rem; }

/* =========================================
   9. EXPERTISE & DETAILS SPECIFICS
   ========================================= */
.catalog-section { background-color: #f1f5f9; background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px); background-size: 24px 24px; position: relative; }
.catalog-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100px; background: linear-gradient(to bottom, #f1f5f9, transparent); pointer-events: none; }
.expertise-card { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid #ffffff; border-radius: 24px; padding: 2.5rem; height: 100%; display: flex; flex-direction: column; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); }
.expertise-card:hover { transform: translateY(-8px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.expertise-card.dark-mode { background: linear-gradient(145deg, #1e293b, #0f172a); border: 1px solid #334155; color: white; }
.expertise-card.dark-mode:hover { border-color: var(--tech-accent); box-shadow: 0 20px 40px -5px rgba(15, 23, 42, 0.5); }
.exp-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 1.5rem; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.summary-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.3s ease; }
.summary-card:hover { border-color: var(--trust-blue); box-shadow: 0 20px 40px rgba(15, 76, 129, 0.1); }
.hero-icon-lg { width: 90px; height: 90px; font-size: 2.5rem; border-radius: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* =========================================
   10. LEGAL PAGE SPECIFICS
   ========================================= */
.legal-nav .nav-link { color: #64748b; background: transparent; border: 1px solid transparent; margin-bottom: 8px; border-radius: 12px; padding: 16px 20px; font-weight: 600; transition: all 0.3s ease; display: flex; align-items: center; font-size: 0.95rem; }
.legal-nav .nav-link i { width: 28px; color: #94a3b8; transition: color 0.3s ease; }
.legal-nav .nav-link:hover { background: #e2e8f0; color: var(--secure-slate); transform: translateX(5px); }
.legal-nav .nav-link:hover i { color: var(--trust-blue); }
.legal-nav .nav-link.active { background: var(--trust-blue); color: white; box-shadow: 0 10px 20px rgba(15, 76, 129, 0.2); border-color: var(--trust-blue); }
.legal-nav .nav-link.active i { color: white; }
.legal-card { background: white; border-radius: 24px; padding: 3rem; border: 1px solid #e2e8f0; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.legal-content h2 { font-weight: 800; margin-bottom: 20px; color: var(--secure-slate); }
.legal-content h5 { font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--trust-blue); font-size: 1.1rem; }
.legal-content p, .legal-content li { color: #475569; line-height: 1.7; }
.grievance-box { background: #f8fafc; border-left: 4px solid var(--trust-blue); padding: 2rem; border-radius: 12px; margin-top: 3rem; }

/* =========================================
   11. METHODOLOGY PAGE SPECIFICS
   ========================================= */
.process-card { background: white; border: 1px solid #e2e8f0; border-radius: 24px; overflow: hidden; height: 100%; transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); position: relative; }
.process-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(15, 76, 129, 0.1); border-color: var(--trust-blue); }
.process-header { background: #f8fafc; padding: 2rem; border-bottom: 1px solid #e2e8f0; }
.process-body { padding: 2.5rem; }
.step-badge { background: var(--secure-slate); color: white; padding: 6px 14px; border-radius: 50px; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; display: inline-block; }
.output-list li { margin-bottom: 12px; font-size: 0.95rem; color: #475569; display: flex; align-items: start; }
.output-list li i { color: var(--trust-blue); margin-top: 4px; margin-right: 12px; }
.academy-section { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); color: white; border-radius: 30px; padding: 4rem; position: relative; overflow: hidden; }
.academy-icon { font-size: 3rem; color: var(--tech-accent); margin-bottom: 1.5rem; }

/* =========================================
   12. FOOTER & EXTRAS
   ========================================= */
.footer-premium { background-color: #f8fafc; border-top: 1px solid #e2e8f0; }
.footer-brand { font-weight: 800; letter-spacing: -0.5px; color: #0f172a; }

.footer-link { color: #64748b; text-decoration: none; transition: all 0.2s ease; display: inline-block; }
.footer-link:hover { color: #0f4c81; transform: translateX(3px); }

.social-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(15, 23, 42, 0.05); color: #0f172a; transition: all 0.3s ease; text-decoration: none; }
.social-btn:hover { background: #2563EB; color: #fff; transform: translateY(-3px); }

/* Forms, Inputs, WhatsApp, and Mobile Styles remain exactly the same as your original provided code below this point... */
.form-control, .form-select { background-color: #f8fafc !important; border: 2px solid transparent !important; border-radius: 12px !important; color: #0f172a !important; font-size: 16px !important; transition: all 0.3s ease-in-out !important; box-shadow: 0 2px 5px rgba(0,0,0,0.02) inset; }
.form-control:focus, .form-select:focus { background-color: #ffffff !important; border-color: #2563EB !important; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important; outline: none; }
.form-select { appearance: none; -webkit-appearance: none; -moz-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important; background-repeat: no-repeat !important; background-position: right 15px center !important; background-size: 16px !important; padding-right: 40px !important; }
.form-label { letter-spacing: 1.5px; font-size: 0.75rem; color: #64748b; margin-bottom: 8px; }

/* Custom Premium Dropdown */
.custom-select-wrapper { position: relative; user-select: none; width: 100%; }
.custom-select-trigger { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.custom-select-options { position: absolute; top: 100%; left: 0; right: 0; background: #ffffff; border: 1px solid #f1f5f9; border-radius: 16px; z-index: 999; margin-top: 8px; max-height: 300px; overflow-y: auto; box-shadow: 0 15px 35px rgba(0,0,0,0.08); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
.custom-select-options::-webkit-scrollbar { width: 6px; }
.custom-select-options::-webkit-scrollbar-track { background: transparent; }
.custom-select-options::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.custom-select-options.open { opacity: 1; visibility: visible; transform: translateY(0); }
.custom-select-option { padding: 14px 20px; cursor: pointer; font-size: 15px; color: #475569; transition: background 0.2s, color 0.2s; border-bottom: 1px solid #f8fafc; }
.custom-select-option:last-child { border-bottom: none; }
.custom-select-option:hover { background: #f8fafc; color: #2563EB; padding-left: 25px; }
.custom-select-option.selected { background: #eff6ff; color: #2563EB; font-weight: 600; }
.custom-select-trigger.active svg { transform: rotate(180deg); }

/* Navigation */
.glass-nav { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0, 0, 0, 0.05); z-index: 1030; }
.navbar { transition: all 0.3s ease; padding: 20px 0; }
.navbar.scrolled { background: rgba(255, 255, 255, 0.9); padding: 12px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.05); backdrop-filter: blur(10px); }

/* WhatsApp */
.whatsapp-float { position: fixed; width: 60px; height: 60px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 1000; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; text-decoration: none; bottom: 30px !important; right: 20px !important; }
.whatsapp-float:hover { background-color: #128c7e; color: #fff; transform: translateY(-5px); }

/* Back to Top Styling */
.back-to-top {
    position: fixed; bottom: 100px; right: 20px; width: 45px; height: 45px; background-color: #0f172a; color: white; border: none; border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 1000; transition: all 0.3s ease; opacity: 0; visibility: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background-color: #2563EB; transform: translateY(-5px); }

/* --- Cookie Banner Smooth Animation --- */
#cookie-banner { opacity: 0; transform: translateY(100px) scale(0.95); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
#cookie-banner.show-banner { opacity: 1; transform: translateY(0) scale(1); }

/* =========================================
   13. RESPONSIVE DESIGN (MOBILE OPTIMIZATION)
   ========================================= */

/* Hide the reCAPTCHA v3 Badge globally */
.grecaptcha-badge { 
    visibility: hidden; 
}

/* Hide scrollbar for the social buttons horizontal scroll */
.overflow-x-auto::-webkit-scrollbar {
    display: none;
}
.overflow-x-auto {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Tablet (iPad & smaller laptops) */
@media (max-width: 991px) {
    .navbar-collapse { 
        background: rgba(255, 255, 255, 0.95); 
        backdrop-filter: blur(15px);
        margin-top: 15px; 
        padding: 20px; 
        border-radius: 20px; 
        box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
        border: 1px solid rgba(0,0,0,0.05);
    }
    .display-1 { 
        font-size: 3.5rem; 
    }
    .counter-value { 
        font-size: 1.5rem !important; 
    }
    
    /* Adjust hero details padding for tablet */
    .hero-details { 
        padding: 120px 0 60px; 
    }
}

/* Mobile (Phones) */
@media (max-width: 768px) {
    /* Scale down giant hero text */
    .display-1 { 
        font-size: 2.5rem; 
        line-height: 1.2; 
    }
    
    /* Ensure heroes don't get cut off on short phone screens */
    .hero-section { 
        height: auto; 
        min-height: 100vh; 
        padding: 100px 0 50px 0; 
    }
    
    /* Make inputs easier to tap on mobile */
    .form-control, .form-select, .custom-select-trigger { 
        padding: 14px 15px !important; 
        font-size: 16px !important; /* Prevents iOS auto-zoom */
    }
    
    /* Make the primary button chunkier for thumbs */
    .btn-primary { 
        padding: 16px !important; 
        font-size: 1.1rem; 
    }

    /* Stack footer items properly */
    .footer-premium .col-6 {
        margin-bottom: 2rem;
    }
    
    /* Fix WhatsApp and Back-to-Top overlap on small screens */
    .whatsapp-float {
        bottom: 20px !important;
        right: 15px !important;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    .back-to-top {
        bottom: 80px; /* Move it above the WhatsApp button */
        right: 15px;
        width: 40px;
        height: 40px;
    }

    /* Adjust the motive banner padding */
    .motive-banner {
        padding: 2rem;
        border-radius: 20px;
    }
}

/* Responsive adjustments for mobile color swatches */
@media (max-width: 575.98px) {
    .swatch-info { 
        padding: 10px 8px; /* Reduce padding to give text more room */
    }
    .swatch-info strong {
        font-size: 0.85rem;
    }
    .swatch-info .text-muted {
        font-size: 0.7rem; /* Shrink values slightly */
    }
    .data-label { 
        font-size: 0.6rem; /* Shrink labels slightly */
        letter-spacing: 0.5px; 
    }
}

/* Very Small Devices (Older iPhones) */
@media (max-width: 400px) {
    .display-1 { font-size: 2rem; }
    .hero-icon-lg { width: 70px; height: 70px; font-size: 2rem; }
}

/* Teams & Slider */
.team-img-wrapper { overflow: hidden; border-radius: 20px; position: relative; }
.team-img { transition: transform 0.5s ease; width: 100%; }
.team-card-pro:hover .team-img { transform: scale(1.05); }
.team-social-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%); display: flex; justify-content: center; gap: 20px; opacity: 0; transform: translateY(20px); transition: all 0.4s ease; }
.team-img-wrapper:hover .team-social-overlay { opacity: 1; transform: translateY(0); }
.team-social-icon { color: white; font-size: 1.25rem; transition: transform 0.2s, color 0.2s; }
.team-social-icon:hover { color: var(--primary-blue); transform: scale(1.2); }

.origin-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; animation: cinematicStory 12s infinite; }
.origin-slide:nth-child(1) { animation-delay: 0s; }
.origin-slide:nth-child(2) { animation-delay: 3s; }
.origin-slide:nth-child(3) { animation-delay: 6s; }
.origin-slide:nth-child(4) { animation-delay: 9s; }
@keyframes cinematicStory { 0% { opacity: 0; transform: scale(1); } 8%, 25% { opacity: 1; } 33% { opacity: 0; transform: scale(1.05); } 100% { opacity: 0; } }
.slider-progress-bar { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--primary-blue); width: 0; z-index: 10; animation: fillProgress 3s linear infinite; }
@keyframes fillProgress { from { width: 0; } to { width: 100%; } }
.fi { background-size: cover; background-position: center; vertical-align: middle; }

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse { background: white; margin-top: 15px; padding: 20px; border-radius: 20px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
    .display-1 { font-size: 2.8rem !important; }
    .counter-value { font-size: 1.5rem !important; }
}
@media (max-width: 768px) {
    .display-1 { font-size: 3.5rem; line-height: 1.1; }
    .hero-section { height: auto; min-height: 100vh; padding-bottom: 50px; }
    .form-control, .form-select { padding: 14px 15px !important; }
    .btn-primary { padding: 16px !important; font-size: 18px; }
}
