: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;
}

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

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

/* =============================================
           PAGE HEADER
        ============================================= */
#hero.page-header {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    background: var(--dark-bg) !important;
    overflow: hidden;
    padding: 0;
}

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

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

    to {
        background-position: 0 100px
    }
}

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

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

.hero-corner {
    position: absolute;
    width: 48px;
    height: 48px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.65;
}

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

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

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

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

.hero-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue) 30%, var(--neon-cyan) 50%, var(--neon-blue) 70%, transparent);
    z-index: 3;
    pointer-events: none;
    animation: scanLine 5s ease-in-out infinite;
}

@keyframes scanLine {
    0% {
        top: 10%;
        opacity: 0
    }

    8% {
        opacity: .55
    }

    92% {
        opacity: .25
    }

    100% {
        top: 90%;
        opacity: 0
    }
}

#hero.page-header h1 {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 900 !important;
    font-size: clamp(2rem, 5vw, 3.4rem) !important;
    color: #fff !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(185, 225, 255, 0.80) !important;
    font-size: 1.1rem !important;
}

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

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

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

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

.services-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);
}

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

/* service row blocks */
.service-row {
    background: rgba(0, 14, 30, 0.75);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s, box-shadow 0.35s;
}

.service-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

.service-row:hover::before {
    opacity: 1;
}

.service-row:hover {
    border-color: rgba(0, 212, 255, 0.42) !important;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.12), 0 4px 40px rgba(0, 0, 0, 0.4) !important;
}

.service-row h3 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fff !important;
    font-size: clamp(0.9rem, 2vw, 1.1rem) !important;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.30);
    margin-bottom: 1rem !important;
}

.service-row p {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(175, 220, 255, 0.72) !important;
    font-size: 1.03rem;
    line-height: 1.75;
}

/* service feature list */
.service-features {
    list-style: none !important;
    padding: 0 !important;
    margin-top: 1rem !important;
}

.service-features li {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(175, 220, 255, 0.70) !important;
    font-size: 0.98rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.07);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '▸';
    color: var(--neon-blue);
    font-size: 0.70rem;
    flex-shrink: 0;
}

/* service images */
.service-row img {
    border: 1px solid rgba(0, 212, 255, 0.15) !important;
    border-radius: 12px !important;
    filter: brightness(0.72) saturate(0.80);
    transition: filter 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.service-row:hover img {
    filter: brightness(0.88) saturate(1.05);
    transform: scale(1.02);
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.18) !important;
}

/* =============================================
           TECHNOLOGIES SECTION
        ============================================= */
.technologies-section {
    position: relative;
    background: #020b18 !important;
    overflow: hidden;
}

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

.technologies-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);
}

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

.tech-card {
    background: rgba(0, 18, 38, 0.75) !important;
    border: 1px solid rgba(0, 212, 255, 0.13) !important;
    border-radius: 14px !important;
    transition: all 0.32s ease !important;
}

.tech-card:hover {
    border-color: rgba(0, 212, 255, 0.58) !important;
    transform: translateY(-8px) scale(1.04) !important;
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.20), 0 0 55px rgba(0, 212, 255, 0.07) !important;
}

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

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

.tech-card h4 {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(200, 235, 255, 0.85) !important;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem !important;
    margin: 0;
}

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

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

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.4;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    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.4rem, 3.5vw, 2.5rem) !important;
    text-shadow: 0 0 28px rgba(0, 212, 255, 0.55), 0 0 55px rgba(0, 212, 255, 0.20);
}

.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.76rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan) !important;
    padding: 13px 38px;
    transition: all 0.3s ease;
    box-shadow: 0 0 16px rgba(0, 255, 234, 0.20), inset 0 0 16px rgba(0, 255, 234, 0.03);
}

.cta-section .btn-primary:hover {
    background: var(--neon-cyan) !important;
    color: #000 !important;
    box-shadow: 0 0 36px 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 10px rgba(0, 212, 255, 0.35);
}

.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(150, 200, 230, 0.60) !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 0.95rem;
}

.footer a {
    color: rgba(150, 200, 230, 0.60) !important;
    text-decoration: none !important;
    transition: color 0.25s, text-shadow 0.25s;
}

.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.13) !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 8px rgba(0, 212, 255, 0.35));
}

.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;
    transition: all 0.3s ease !important;
}

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