/* Corevix Technology Master CSS | Responsive, Locked Header & High Performance */

:root {

    --bg-dark: #050811;
    --card-bg: rgba(13, 19, 36, 0.75);
    --card-hover-bg: rgba(18, 26, 48, 0.95);
    --emerald-green: #10B981;
    --emerald-dark: #059669;
    --emerald-glow: rgba(16, 185, 129, 0.4);
    --purple-glow: rgba(124, 58, 237, 0.35);
    --cyan-glow: rgba(6, 182, 212, 0.3);
    --text-white: #FFFFFF;
    --text-slate: #94A3B8;
    --text-muted: #64748B;
    --border-line: rgba(255, 255, 255, 0.1);
    --border-emerald: rgba(16, 185, 129, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--bg-dark);
    color: var(--text-slate);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', system-ui, sans-serif;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Top Scroll Progress Indicator */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #10B981, #34D399, #38BDF8);
    z-index: 99999;
    width: 0%;
    box-shadow: 0 0 12px #10B981;
    transition: width 0.1s linear;
}

/* Scroll Reveal Entrance Animations */
.reveal {
    opacity: 0;
    transform: translateY(25px) scale(0.98);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.15s; }
.delay-3 { transition-delay: 0.2s; }
.delay-4 { transition-delay: 0.25s; }

/* 3D Canvas Hero Container */
#three-hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
}

/* Ambient Radial Mesh Spotlights */
.mesh-spotlight {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 650px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(124, 58, 237, 0.14) 40%, rgba(6, 182, 212, 0.06) 65%, transparent 80%);
    pointer-events: none;
    z-index: 2;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: translateX(-50%) scale(1); opacity: 0.8; }
    100% { transform: translateX(-50%) scale(1.1); opacity: 1; }
}

/* 🔒 UNIFIED TRADE AMPLIFICATION HEADER NAVBAR */
.header {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: rgba(5, 8, 17, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-line);
    padding: 10px 0;
    height: 60px;
    display: flex;
    align-items: center;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.header .container {
    width: 100%;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 16px;
    color: var(--text-white);
    font-family: 'Outfit', system-ui, sans-serif;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand span {
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.brand-box {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #050811;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    font-family: 'Outfit', system-ui, sans-serif;
    box-shadow: 0 0 15px var(--emerald-glow);
    flex-shrink: 0;
}

.brand-logo-img {
    height: 32px;
    width: auto;
    max-height: 32px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}


.nav-links {
    display: flex;
    gap: 18px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-slate);
    transition: color 0.2s ease;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--emerald-green);
    font-weight: 600;
}

/* 🔽 TECHNOLOGIES HEADER DROPDOWN MENU */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 380px;
    background: rgba(8, 12, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-emerald);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(16, 185, 129, 0.25);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
}

.dropdown-item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.2s ease;
}

.dropdown-item-card:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--emerald-green);
    transform: translateY(-2px);
}

.dropdown-item-card .dp-icon {
    font-size: 22px;
}

.dropdown-item-card .dp-title {
    font-size: 13px;
    font-weight: 800;
    color: #FFF;
    font-family: 'Outfit', system-ui, sans-serif;
}

.dropdown-item-card .dp-desc {
    font-size: 11px;
    color: var(--text-slate);
    line-height: 1.3;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
}

/* Mobile Slide Drawer */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(5, 8, 17, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-emerald);
    padding: 20px 24px;
    z-index: 9999;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.mobile-nav-drawer.active {
    display: flex;
}

.mobile-nav-drawer a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #FFF;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Pill Buttons */
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    min-height: 38px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 24px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-emerald {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #050811;
    font-weight: 800;
    box-shadow: 0 0 15px var(--emerald-glow);
}

.btn-emerald:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.65);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--emerald-green);
    color: var(--emerald-green);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 50px 0 40px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid var(--border-emerald);
    color: var(--emerald-green);
    border-radius: 24px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
}

.hero-h1 {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 18px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(135deg, #A7F3D0 0%, #10B981 50%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Titles */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
}

.section-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--emerald-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: block;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-white);
}

/* 3D Interactive Card Hover Tilt */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-line);
    border-radius: 18px;
    padding: 26px;
    backdrop-filter: blur(16px);
    position: relative;
}

.glass-card:hover {
    background: var(--card-hover-bg);
    border-color: var(--border-emerald);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(16, 185, 129, 0.2);
}

/* Floating 3D Telemetry Dashboard Box */
.floating-3d-box {
    background: rgba(13, 19, 36, 0.85);
    border: 1px solid var(--border-emerald);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(20px);
    text-align: left;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.7), 0 0 30px rgba(16,185,129,0.2);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.4s ease;
}

.floating-3d-box:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-4px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.8), 0 0 40px rgba(16,185,129,0.3);
}

/* 🌐 UNIFIED INDUSTRIES & TECHNOLOGY STACK MATRIX */
.ind-tech-matrix {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.ind-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.ind-matrix-card {
    background: rgba(13, 19, 36, 0.6);
    border: 1px solid var(--border-line);
    border-radius: 14px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.ind-matrix-card:hover, .ind-matrix-card.active {
    background: rgba(16, 185, 129, 0.14);
    border-color: var(--emerald-green);
    transform: translateX(4px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.ind-matrix-card .ind-icon {
    font-size: 26px;
}

.ind-matrix-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: #FFF;
}

.ind-matrix-card p {
    font-size: 11px;
    color: var(--text-slate);
}

/* Live Dynamic Tech Stack Preview Panel */
.tech-live-panel {
    background: rgba(13, 19, 36, 0.85);
    border: 1px solid var(--border-emerald);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 25px rgba(16,185,129,0.15);
}

.tech-badge-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    color: #FFF;
    margin: 4px;
    transition: all 0.2s ease;
}

.tech-badge-tag.highlight {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--emerald-green);
    color: var(--emerald-green);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Services Category Tabs */
.service-cat-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.service-cat-tab {
    padding: 10px 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-slate);
    cursor: pointer;
    transition: all 0.25s ease;
}

.service-cat-tab.active, .service-cat-tab:hover {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #050811;
    border-color: #10B981;
    box-shadow: 0 0 18px var(--emerald-glow);
}

/* Sticky Contact Trigger Button */
.sticky-contact-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    gap: 10px;
}

/* 🤖 Interactive AI Chatbot Widget Styles */
#ai-chatbot-bubble {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#ai-chatbot-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
}

#ai-chatbot-window {
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 99999;
    width: 360px;
    height: 480px;
    background: rgba(13, 19, 36, 0.96);
    border: 1px solid var(--border-emerald);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 25px rgba(16, 185, 129, 0.25);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: rgba(5, 8, 17, 0.95);
    padding: 14px;
    border-bottom: 1px solid var(--border-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-messages {
    flex: 1;
    padding: 14px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}

.chat-msg {
    max-width: 85%;
    padding: 9px 13px;
    border-radius: 12px;
    line-height: 1.45;
}

.chat-msg.bot {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--border-emerald);
    color: #FFF;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-msg.user {
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFF;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-input-area {
    padding: 10px;
    background: rgba(5, 8, 17, 0.95);
    border-top: 1px solid var(--border-line);
    display: flex;
    gap: 8px;
}

/* Footer */
.footer {
    background: rgba(3, 5, 12, 0.95);
    border-top: 1px solid var(--border-line);
    padding: 60px 0 25px;
    margin-top: 70px;
}

/* Form Controls */
.form-control {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--text-white);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    outline: none;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--emerald-green);
    box-shadow: 0 0 12px var(--emerald-glow);
}

/* 📱 COMPREHENSIVE DEVICE-FRIENDLY & MOBILE RESPONSIVE MEDIA QUERIES */

/* Global Anti-Overflow & Smooth Touch Safety */
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img, video, iframe, canvas, svg {
    max-width: 100%;
    height: auto;
}

/* Fluid Typography & Container Scaling */
.hero-h1 {
    font-size: clamp(26px, 5.5vw, 54px);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(22px, 4vw, 36px);
    line-height: 1.25;
}

/* 💻 Large Tablets & Laptops (max-width: 1150px) */
@media (max-width: 1150px) {
    .container {
        padding: 0 24px;
    }
    .nav-links { gap: 12px; }
    .nav-link { font-size: 13px; }
    .btn-pill { padding: 8px 16px; font-size: 12px; }
}

/* 📱 Tablets & Medium Screens (max-width: 992px) */
@media (max-width: 992px) {
    .header {
        height: 64px;
    }
    .nav-links { display: none !important; }
    .mobile-nav-toggle { display: flex !important; align-items: center; justify-content: center; font-size: 26px; }
    .nav-actions .trigger-consultation { display: none !important; }
    
    .ind-tech-matrix {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .ind-list-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    #ai-chatbot-window {
        width: calc(100vw - 32px);
        height: 80vh;
        max-height: 520px;
        left: 16px;
        bottom: 80px;
    }

    .footer div[style*="display: flex; justify-content: space-between"] {
        flex-direction: column !important;
        gap: 30px !important;
        align-items: flex-start !important;
    }
}

/* 📱 Mobile Devices & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
    section {
        padding: 40px 0 !important;
    }

    .container {
        padding: 0 18px !important;
    }

    .hero {
        padding: 35px 0 25px !important;
    }

    .brand {
        font-size: 15px;
        gap: 8px;
    }

    .brand-logo-img {
        width: 28px !important;
        height: 28px !important;
    }

    /* Force all layout grids to collapse cleanly into single column */
    div[style*="display: grid"],
    .service-grid-group,
    #dynamic-published-projects-container,
    #dynamic-admin-blogs-container,
    #dynamic-home-blogs-container {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* 4-column counter bar into 2x2 grid on mobile */
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .counter-val {
        font-size: 26px !important;
    }

    /* Cards & Containers Mobile Padding */
    .glass-card {
        padding: 20px !important;
        border-radius: 14px !important;
    }

    .floating-3d-box {
        padding: 16px !important;
        border-radius: 14px !important;
    }

    .floating-3d-box div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    /* Form Controls: 16px font prevents iOS Safari auto-zoom */
    .form-control, input, select, textarea {
        font-size: 16px !important;
        padding: 12px 14px !important;
        border-radius: 8px !important;
    }

    .service-cat-tabs {
        flex-direction: column !important;
        width: 100% !important;
    }
    .service-cat-tab {
        width: 100% !important;
        text-align: center !important;
    }
}

/* 📱 Compact Mobile Phones (max-width: 580px) */
@media (max-width: 580px) {
    .container {
        padding: 0 16px !important;
    }

    .hero-badge {
        font-size: 10px !important;
        padding: 4px 10px !important;
    }
    
    .btn-pill {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 12px 18px !important;
        font-size: 14px !important;
    }
    
    .hero div[style*="display: flex; justify-content: center"],
    div[style*="display: flex; justify-content: center"] {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .ind-list-grid {
        grid-template-columns: 1fr !important;
    }

    .sticky-contact-bar {
        bottom: 12px;
        right: 12px;
    }
    
    #ai-chatbot-bubble {
        bottom: 12px;
        left: 12px;
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
    
    #ai-chatbot-window {
        width: calc(100vw - 24px);
        left: 12px;
        bottom: 68px;
        height: 75vh;
        max-height: 500px;
    }

    .faq-question {
        padding: 14px 16px !important;
        font-size: 14px !important;
    }

    .faq-answer {
        font-size: 13px !important;
        padding: 0 16px 16px 16px !important;
    }

    .footer {
        padding: 40px 0 20px !important;
        margin-top: 40px !important;
    }
}

/* ❓ FAQ ACCORDION STYLES */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(13, 19, 36, 0.75);
    border: 1px solid var(--border-line);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item:hover, .faq-item.open {
    border-color: var(--border-emerald);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.15);
}

.faq-question {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
    user-select: none;
}

.faq-question .faq-icon {
    font-size: 18px;
    color: var(--emerald-green);
    transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    padding: 0 24px;
    color: var(--text-slate);
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}



