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

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

/* divider */
.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%);
}

/* ==============================================
           HERO
        ============================================= */
#hero.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--dark-bg) !important;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* scanlines */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px,
            rgba(0, 0, 0, 0.035) 2px, rgba(0, 0, 0, 0.035) 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 .container {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
}

#hero h1 {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 900 !important;
    font-size: clamp(1.8rem, 4vw, 3.2rem) !important;
    color: #fff !important;
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.72), 0 0 55px rgba(0, 212, 255, 0.28) !important;
    letter-spacing: 1px;
}

#hero p.lead {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(195, 235, 255, 0.88) !important;
    font-size: 1.15rem !important;
}

/* neon buttons */
#hero .btn-primary {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue) !important;
    padding: 12px 26px;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.22);
}

#hero .btn-primary:hover {
    background: var(--neon-blue) !important;
    color: #000 !important;
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.65) !important;
    transform: translateY(-2px);
}

#hero .btn-outline-light {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 12px 26px;
    transition: all 0.3s ease;
}

#hero .btn-outline-light:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan) !important;
    box-shadow: 0 0 18px rgba(0, 255, 234, 0.4);
    background: rgba(0, 255, 234, 0.05);
    transform: translateY(-2px);
}

/* hero image */
.hero-image-container .hero-image {
    filter: drop-shadow(0 0 35px rgba(0, 212, 255, 0.55)) drop-shadow(0 0 70px rgba(123, 47, 255, 0.25));
    max-width: 360px;
    width: 100%;
    animation: floatImg 3.5s ease-in-out infinite;
}

@keyframes floatImg {

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

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

/* wave — keep original but recolor */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
}

.hero-wave svg path {
    fill: #020e1a !important;
}

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

.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: 50px;
    left: 20px;
    border-bottom: 2px solid var(--neon-blue);
    border-left: 2px solid var(--neon-blue);
}

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

/* ==============================================
           BUSINESS SERVICES
        ============================================= */
.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 cards */
.services-section .service-card {
    background: rgba(0, 16, 34, 0.78) !important;
    border: 1px solid rgba(0, 212, 255, 0.13) !important;
    border-radius: 14px !important;
    padding: 2rem !important;
    transition: all 0.32s ease !important;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.services-section .service-card::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.3s;
}

.services-section .service-card:hover::before {
    opacity: 1;
}

.services-section .service-card:hover {
    border-color: rgba(0, 212, 255, 0.50) !important;
    transform: translateY(-7px) !important;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.16), 0 0 60px rgba(0, 212, 255, 0.05) !important;
}

.services-section .service-icon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.3s;
}

.services-section .service-card:hover .service-icon {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.3);
}

.services-section .service-icon i {
    font-size: 1.5rem;
    color: var(--neon-blue) !important;
}

.services-section .service-card h3 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fff !important;
    font-size: 0.88rem !important;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
}

.services-section .service-card p {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(175, 220, 255, 0.70) !important;
    font-size: 1rem;
    line-height: 1.7;
}

.services-section .service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.services-section .service-features li {
    font-family: 'Rajdhani', sans-serif;
    color: rgba(160, 215, 255, 0.65) !important;
    font-size: 0.95rem;
    padding: 4px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.07);
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-section .service-features li::before {
    content: '▸';
    color: var(--neon-blue);
    font-size: 0.7rem;
}

/* ==============================================
           WHY CHOOSE ME
        ============================================= */
.about-section {
    position: relative;
    background: #020b18 !important;
    overflow: hidden;
}

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

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

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

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

.about-section .feature-card:hover {
    border-color: rgba(0, 212, 255, 0.52) !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 0 26px rgba(0, 212, 255, 0.16) !important;
}

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

.about-section .feature-card p {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(175, 220, 255, 0.70) !important;
    font-size: 1rem;
}

.about-section .text-primary {
    color: var(--neon-blue) !important;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.55));
}

.about-section .feature-card:hover .text-primary {
    filter: drop-shadow(0 0 16px rgba(0, 212, 255, 0.95));
}

/* ==============================================
           QUOTE FORM
        ============================================= */
.contact-section {
    position: relative;
    background: #020e1a !important;
    overflow: hidden;
}

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

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

.contact-section h1 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fff !important;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem) !important;
    text-shadow: 0 0 14px rgba(0, 212, 255, 0.35);
}

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

.contact-section hr {
    border-color: rgba(0, 212, 255, 0.2) !important;
}

/* form inputs */
.contact-section input,
.contact-section select,
.contact-section textarea {
    background: rgba(0, 16, 34, 0.80) !important;
    border: 1px solid rgba(0, 212, 255, 0.20) !important;
    color: rgba(200, 230, 255, 0.88) !important;
    border-radius: 8px !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 1rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-section input:focus,
.contact-section select:focus,
.contact-section textarea:focus {
    background: rgba(0, 20, 44, 0.90) !important;
    border-color: rgba(0, 212, 255, 0.55) !important;
    box-shadow: 0 0 14px rgba(0, 212, 255, 0.18) !important;
    color: #fff !important;
    outline: none !important;
}

.contact-section label {
    font-family: 'Rajdhani', sans-serif !important;
    color: rgba(180, 220, 255, 0.78) !important;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.contact-section select option {
    background: #020e1a !important;
    color: rgba(200, 230, 255, 0.9) !important;
}

.contact-section .btn-outline-primary {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    border: 2px solid var(--neon-blue) !important;
    color: var(--neon-blue) !important;
    background: transparent !important;
    padding: 12px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.15) !important;
}

.contact-section .btn-outline-primary:hover {
    background: var(--neon-blue) !important;
    color: #000 !important;
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.6) !important;
    transform: translateY(-2px) !important;
}

/* ==============================================
           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;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.18);
    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;
}