:root {
    --neon-blue: #00d4ff;
    --neon-cyan: #00ffea;
    --neon-purple: #7b2fff;
    --dark-bg: #020b18;
}

body {
    background: var(--dark-bg) !important;
    color: rgba(200, 230, 255, 0.88) !important;
}

/* ---- reusable canvas layer ---- */
.sec-bg-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}

/* ---- section divider ---- */
.sec-divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 212, 255, 0.35) 25%,
            rgba(0, 255, 234, 0.50) 50%,
            rgba(0, 212, 255, 0.35) 75%,
            transparent 100%);
}

/* ==============================================
           HERO / PAGE HEADER
        ============================================= */
#hero.page-header {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    background: #020b18 !important;
    overflow: hidden;
}

#hero.page-header canvas {
    z-index: 0;
}

/* scanlines */
#hero.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px,
            rgba(0, 0, 0, 0.04) 2px, rgba(0, 0, 0, 0.04) 4px);
    z-index: 1;
    pointer-events: none;
    animation: scanlines 10s linear infinite;
}

@keyframes scanlines {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 100px;
    }
}

/* vignette */
#hero.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%,
            rgba(2, 11, 24, 0.25) 0%, rgba(2, 11, 24, 0.65) 100%);
    z-index: 1;
    pointer-events: none;
}

#hero.page-header .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 60px;
}

#hero.page-header h1 {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 900 !important;
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    color: #ffffff !important;
    text-shadow:
        0 0 25px rgba(0, 212, 255, 0.75),
        0 0 55px rgba(0, 212, 255, 0.30) !important;
    letter-spacing: 3px;
}

#hero.page-header p.lead {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(180, 225, 255, 0.80) !important;
    font-size: 1.15rem !important;
    letter-spacing: 1px;
}

/* corner decorators */
.page-header-corner {
    position: absolute;
    width: 44px;
    height: 44px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.6;
}

.phc-tl {
    top: 18px;
    left: 18px;
    border-top: 2px solid var(--neon-blue);
    border-left: 2px solid var(--neon-blue);
}

.phc-tr {
    top: 18px;
    right: 18px;
    border-top: 2px solid var(--neon-blue);
    border-right: 2px solid var(--neon-blue);
}

.phc-bl {
    bottom: 18px;
    left: 18px;
    border-bottom: 2px solid var(--neon-blue);
    border-left: 2px solid var(--neon-blue);
}

.phc-br {
    bottom: 18px;
    right: 18px;
    border-bottom: 2px solid var(--neon-blue);
    border-right: 2px solid var(--neon-blue);
}

/* animated breadcrumb line under title */
.hero-title-line {
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    margin: 12px auto 0;
    border-radius: 2px;
    animation: titleLine 1.2s 0.4s ease forwards;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
}

@keyframes titleLine {
    to {
        width: 140px;
    }
}

/* ==============================================
           ABOUT STORY SECTION
        ============================================= */
.about-story {
    position: relative;
    background: #020e1a !important;
    overflow: hidden;
}

.about-story .container {
    position: relative;
    z-index: 1;
}

.about-story h2 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fff !important;
    font-size: clamp(1.4rem, 3vw, 2.1rem) !important;
    text-shadow: 0 0 18px rgba(0, 212, 255, 0.45);
    letter-spacing: 1px;
}

.about-story p {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(185, 225, 255, 0.78) !important;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-story p.lead {
    color: rgba(200, 235, 255, 0.90) !important;
    font-weight: 500 !important;
}

/* logo image glow */
.about-story img {
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.45)) drop-shadow(0 0 60px rgba(123, 47, 255, 0.20)) !important;
    border: 1px solid rgba(0, 212, 255, 0.18) !important;
    background: rgba(0, 20, 42, 0.50) !important;
}

/* ==============================================
           MISSION & VALUES
        ============================================= */
.mission-values {
    position: relative;
    background: #020b18 !important;
    overflow: hidden;
}

.mission-values .container {
    position: relative;
    z-index: 1;
}

.mission-values h2 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fff !important;
    font-size: clamp(1.4rem, 3vw, 2.1rem) !important;
    text-shadow: 0 0 18px rgba(0, 212, 255, 0.45);
}

.mission-values p.lead {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(180, 220, 255, 0.72) !important;
}

.value-card {
    background: rgba(0, 18, 38, 0.78) !important;
    border: 1px solid rgba(0, 212, 255, 0.13) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(8px);
    transition: all 0.35s ease !important;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.value-card:hover {
    border-color: rgba(0, 212, 255, 0.55) !important;
    transform: translateY(-7px) !important;
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.18), 0 0 55px rgba(0, 212, 255, 0.06) !important;
}

.value-card h3 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    letter-spacing: 1.5px;
}

.value-card p {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(175, 220, 255, 0.72) !important;
    font-size: 1.02rem;
}

.value-card .text-primary {
    color: var(--neon-blue) !important;
    filter: drop-shadow(0 0 9px rgba(0, 212, 255, 0.65));
    transition: filter 0.3s;
}

.value-card:hover .text-primary {
    filter: drop-shadow(0 0 18px rgba(0, 212, 255, 1));
}

/* ==============================================
           EXPERTISE SECTION
        ============================================= */
.expertise-section {
    position: relative;
    background: #020e1a !important;
    overflow: hidden;
}

.expertise-section .container {
    position: relative;
    z-index: 1;
}

.expertise-section h2 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fff !important;
    font-size: clamp(1.4rem, 3vw, 2.1rem) !important;
    text-shadow: 0 0 18px rgba(0, 212, 255, 0.45);
}

.expertise-section p.lead {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(180, 220, 255, 0.72) !important;
}

.expertise-card {
    background: rgba(0, 16, 34, 0.75) !important;
    border: 1px solid rgba(0, 212, 255, 0.12) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(6px);
    transition: all 0.35s ease !important;
    position: relative;
    overflow: hidden;
}

/* left accent bar */
.expertise-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--neon-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.expertise-card:hover {
    border-color: rgba(0, 212, 255, 0.48) !important;
    transform: translateY(-6px) translateX(3px) !important;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.16), 0 0 60px rgba(0, 212, 255, 0.05) !important;
}

.expertise-card h3 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fff !important;
    font-size: 0.88rem !important;
    letter-spacing: 1.5px;
}

.expertise-card p {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(175, 220, 255, 0.70) !important;
    font-size: 1.02rem;
    line-height: 1.75;
}

.expertise-card .text-primary {
    color: var(--neon-blue) !important;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
    transition: filter 0.3s, transform 0.3s;
}

.expertise-card:hover .text-primary {
    filter: drop-shadow(0 0 16px rgba(0, 212, 255, 1));
    transform: scale(1.15);
}

/* ==============================================
           CTA SECTION
        ============================================= */
.cta-section {
    position: relative;
    background: #030d1c !important;
    overflow: hidden;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* top/bottom neon lines */
.cta-section .cta-line-top,
.cta-section .cta-line-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 2;
    pointer-events: none;
}

.cta-section .cta-line-top {
    top: 0;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.4;
}

.cta-section .cta-line-bottom {
    bottom: 0;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    opacity: 0.4;
}

.cta-section h2 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fff !important;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem) !important;
    text-shadow: 0 0 28px rgba(0, 212, 255, 0.6), 0 0 55px rgba(0, 212, 255, 0.2);
}

.cta-section p.lead {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(190, 230, 255, 0.80) !important;
    font-size: 1.15rem;
}

.cta-section .btn-primary {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan) !important;
    padding: 14px 40px;
    transition: all 0.3s ease;
    box-shadow: 0 0 18px rgba(0, 255, 234, 0.22), inset 0 0 18px rgba(0, 255, 234, 0.03);
}

.cta-section .btn-primary:hover {
    background: var(--neon-cyan) !important;
    color: #000 !important;
    box-shadow: 0 0 38px rgba(0, 255, 234, 0.70) !important;
    transform: translateY(-3px) scale(1.03);
}

/* ==============================================
           FOOTER
        ============================================= */
.footer {
    position: relative;
    background: #010810 !important;
    border-top: 1px solid rgba(0, 212, 255, 0.18) !important;
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer h4 {
    color: #fff !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.95rem !important;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.footer h5 {
    color: var(--neon-blue) !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.72rem !important;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(155, 205, 235, 0.62) !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 0.95rem;
}

.footer a {
    color: rgba(155, 205, 235, 0.62) !important;
    transition: color 0.25s, text-shadow 0.25s;
    text-decoration: none !important;
}

.footer a:hover {
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.5);
}

.footer hr {
    border-color: rgba(0, 212, 255, 0.14) !important;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.45rem;
    font-family: 'Rajdhani', sans-serif;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 1rem;
}

.footer .footer-logo {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

/* back to top */
.back-to-top {
    background: rgba(0, 212, 255, 0.10) !important;
    border: 1px solid rgba(0, 212, 255, 0.38) !important;
    color: var(--neon-blue) !important;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease !important;
}

.back-to-top:hover {
    background: var(--neon-blue) !important;
    color: #000 !important;
    box-shadow: 0 0 26px rgba(0, 212, 255, 0.6) !important;
}