/* =====================================================================
   DR Health Care Services — Futuristic Landing Styles
   css/landing.css
   ===================================================================== */

/* ---- Google Font: Orbitron (futuristic) + Inter (body) ---- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ------------------------------------------------------------------ */
/*  CSS VARIABLES                                                       */
/* ------------------------------------------------------------------ */
:root {
    --cyan:     #00D4FF;
    --purple:   #7B2FFF;
    --green:    #00FF88;
    --pink:     #FF2D78;
    --bg:       #030a18;
    --bg2:      #050f26;
    --bg3:      #071430;
    --card-bg:  rgba(0,212,255,0.04);
    --glass:    rgba(255,255,255,0.04);
    --border:   rgba(0,212,255,0.18);
    --text:     rgba(255,255,255,0.88);
    --muted:    rgba(255,255,255,0.45);
    --glow-c:   0 0 20px rgba(0,212,255,0.45), 0 0 60px rgba(0,212,255,0.15);
    --glow-p:   0 0 20px rgba(123,47,255,0.45), 0 0 60px rgba(123,47,255,0.15);
    --glow-g:   0 0 20px rgba(0,255,136,0.45);
    --radius:   14px;
    --radius-lg:22px;
}

/* ------------------------------------------------------------------ */
/*  RESET / BASE                                                        */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- Selection colour ---- */
::selection { background: rgba(0,212,255,0.3); color: #fff; }

/* ------------------------------------------------------------------ */
/*  GLOBAL CYBER GRID OVERLAY                                           */
/* ------------------------------------------------------------------ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ------------------------------------------------------------------ */
/*  SCROLLBAR                                                           */
/* ------------------------------------------------------------------ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cyan), var(--purple));
    border-radius: 3px;
}

/* ------------------------------------------------------------------ */
/*  NAVBAR                                                              */
/* ------------------------------------------------------------------ */
.dr-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}
.dr-nav.scrolled {
    background: rgba(3,10,24,0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 0 1px var(--cyan);
}

/* Brand */
.dr-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.dr-logo-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    box-shadow: var(--glow-c);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.dr-logo-icon::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    animation: shimmerSweep 3s infinite;
}
@keyframes shimmerSweep {
    0%   { transform: translateX(-100%) rotate(0deg); }
    100% { transform: translateX(100%) rotate(0deg); }
}
.dr-brand-text strong {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.1;
}
.dr-brand-text small {
    display: block;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--cyan);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav links */
.nav-lnk {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    letter-spacing: 0.3px;
    position: relative;
}
.nav-lnk::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 16px; right: 16px;
    height: 1px;
    background: var(--cyan);
    transform: scaleX(0);
    transition: transform 0.3s;
    box-shadow: 0 0 6px var(--cyan);
}
.nav-lnk:hover { color: #fff; }
.nav-lnk:hover::after { transform: scaleX(1); }

/* Book button */
.btn-nav-book {
    background: transparent;
    border: 1.5px solid var(--cyan);
    color: var(--cyan);
    border-radius: 50px;
    padding: 9px 22px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: inset 0 0 20px rgba(0,212,255,0), 0 0 10px rgba(0,212,255,0.2);
    letter-spacing: 0.3px;
}
.btn-nav-book:hover {
    background: var(--cyan);
    color: var(--bg);
    box-shadow: 0 0 25px rgba(0,212,255,0.6);
    transform: translateY(-2px);
}

/* Mobile toggle */
.mob-toggle {
    background: rgba(0,212,255,0.08);
    border: 1px solid var(--border);
    color: var(--cyan);
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}
.mob-toggle:hover { background: rgba(0,212,255,0.15); }

/* Mobile menu */
.mob-menu {
    display: none;
    padding: 16px 0 8px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
}
.mob-menu .nav-lnk { display: block; margin-bottom: 4px; padding: 10px 16px; }

/* ------------------------------------------------------------------ */
/*  HERO                                                                */
/* ------------------------------------------------------------------ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Particle canvas */
#particleCanvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.7;
}

/* Radial glow background */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 2;
}
.hg-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,212,255,0.18), transparent 70%);
    top: -150px; right: -100px;
    animation: glowPulse 6s ease-in-out infinite;
}
.hg-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(123,47,255,0.18), transparent 70%);
    bottom: -100px; left: -80px;
    animation: glowPulse 6s ease-in-out infinite 3s;
}
.hg-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,255,136,0.12), transparent 70%);
    top: 40%; right: 30%;
    animation: glowPulse 8s ease-in-out infinite 1.5s;
}
@keyframes glowPulse {
    0%,100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.12); }
}

/* Floating medical icons */
.flt-icon {
    position: absolute;
    animation: iconDrift 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}
.flt-icon i {
    color: transparent;
    background: linear-gradient(135deg, rgba(0,212,255,0.5), rgba(123,47,255,0.5));
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(0,212,255,0.4));
}
.fi-a { font-size: 64px; top: 12%;  left: 3%;   animation-delay: 0s; }
.fi-b { font-size: 96px; top: 55%;  left: 0.5%; animation-delay: 2s; }
.fi-c { font-size: 70px; top: 15%;  right: 5%;  animation-delay: 4s; }
.fi-d { font-size: 88px; bottom: 15%; right: 3%; animation-delay: 6s; }
.fi-e { font-size: 52px; top: 44%;  left: 16%;  animation-delay: 1s; }
@keyframes iconDrift {
    0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    33%      { transform: translateY(-18px) rotate(4deg); opacity: 1; }
    66%      { transform: translateY(10px) rotate(-3deg); opacity: 0.7; }
}

.hero-content { position: relative; z-index: 10; }

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.3);
    color: var(--cyan);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeInDown 0.7s ease both;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0,212,255,0.1);
}
.badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: dotBlink 1.8s infinite;
}
@keyframes dotBlink {
    0%,100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
    50%      { opacity: 0.4; box-shadow: 0 0 4px var(--green); }
}

/* Hero headline */
.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease 0.1s both;
}
.hero h1 .hl {
    background: linear-gradient(90deg, var(--cyan), var(--purple), var(--green));
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s linear infinite;
}
@keyframes gradientShift {
    0%   { background-position: 0%; }
    100% { background-position: 200%; }
}

/* Typewriter subtitle */
.hero-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.78;
    max-width: 480px;
    margin-bottom: 40px;
    animation: fadeInUp 0.7s ease 0.2s both;
    min-height: 52px;
}
.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: var(--cyan);
    margin-left: 3px;
    vertical-align: middle;
    animation: cursorBlink 0.8s step-end infinite;
    box-shadow: 0 0 6px var(--cyan);
}
@keyframes cursorBlink {
    0%,100% { opacity: 1; }
    50%      { opacity: 0; }
}

/* Hero buttons */
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
}
.btn-neon {
    position: relative;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    overflow: hidden;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}
.btn-neon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}
.btn-neon:hover::before { transform: translateX(100%); }
.btn-neon-cyan {
    background: linear-gradient(135deg, var(--cyan), #0099cc);
    color: var(--bg);
    box-shadow: 0 0 25px rgba(0,212,255,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-neon-cyan:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(0,212,255,0.7), 0 10px 30px rgba(0,0,0,0.3);
    color: var(--bg);
}
.btn-neon-ghost {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
}
.btn-neon-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0,212,255,0.2);
}

/* Hero glass card (portal quick access) */
.hero-glass {
    background: rgba(0,212,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    animation: fadeInRight 0.8s ease 0.4s both;
    box-shadow: 0 0 40px rgba(0,212,255,0.05), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.hero-glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.6;
}
.hero-glass h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-glass h4::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}

/* Portal pills */
.pp {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}
.pp:last-child { margin-bottom: 0; }
.pp::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    border-radius: 3px 0 0 3px;
    transition: box-shadow 0.3s;
}
.pp.pp-patient::before { background: var(--cyan);   box-shadow: 0 0 10px var(--cyan); }
.pp.pp-doctor::before  { background: var(--green);  box-shadow: 0 0 10px var(--green); }
.pp.pp-admin::before   { background: var(--purple); box-shadow: 0 0 10px var(--purple); }
.pp:hover {
    background: rgba(0,212,255,0.06);
    border-color: rgba(0,212,255,0.25);
    transform: translateX(6px);
    color: #fff;
}
.pp-ico {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.pp-patient .pp-ico { background: rgba(0,212,255,0.15); color: var(--cyan); }
.pp-doctor  .pp-ico { background: rgba(0,255,136,0.12); color: var(--green); }
.pp-admin   .pp-ico { background: rgba(123,47,255,0.15); color: var(--purple); }
.pp-txt { flex: 1; }
.pp-txt strong { display: block; font-size: 13.5px; font-weight: 600; color: #fff; }
.pp-txt small  { display: block; font-size: 11px; color: var(--muted); margin-top: 1px; }
.pp-arr { font-size: 11px; color: var(--muted); }
.pp:hover .pp-arr { color: var(--cyan); }

/* ------------------------------------------------------------------ */
/*  STATS BAR                                                           */
/* ------------------------------------------------------------------ */
.stats-bar {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}
.stats-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.03), transparent);
    animation: scanLine 4s linear infinite;
}
@keyframes scanLine {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.stat-item {
    text-align: center;
    padding: 12px 16px;
    border-right: 1px solid var(--border);
    position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: none;
    filter: drop-shadow(0 0 8px rgba(0,212,255,0.4));
}
.stat-lbl {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* ------------------------------------------------------------------ */
/*  SHARED SECTION STYLES                                               */
/* ------------------------------------------------------------------ */
.lp-section { padding: 100px 0; position: relative; z-index: 1; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,212,255,0.06);
    border: 1px solid rgba(0,212,255,0.2);
    color: var(--cyan);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-badge::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan);
}
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
    line-height: 1.2;
}
.section-sub {
    font-size: 15.5px;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.78;
}

/* ------------------------------------------------------------------ */
/*  PORTAL CARDS                                                        */
/* ------------------------------------------------------------------ */
.portals-section { background: var(--bg2); }

.portal-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    position: relative;
    height: 100%;
    /* tilt handled by JS */
    transform-style: preserve-3d;
}
.portal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    transition: box-shadow 0.4s;
}
.portal-card.pc-patient::before { background: linear-gradient(90deg, transparent, var(--cyan), transparent); box-shadow: 0 0 12px var(--cyan); }
.portal-card.pc-doctor::before  { background: linear-gradient(90deg, transparent, var(--green), transparent); box-shadow: 0 0 12px var(--green); }
.portal-card.pc-admin::before   { background: linear-gradient(90deg, transparent, var(--purple), transparent); box-shadow: 0 0 12px var(--purple); }
.portal-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,212,255,0.4);
}
.portal-card.pc-patient:hover { box-shadow: 0 20px 60px rgba(0,212,255,0.2), 0 0 0 1px rgba(0,212,255,0.15); }
.portal-card.pc-doctor:hover  { box-shadow: 0 20px 60px rgba(0,255,136,0.2), 0 0 0 1px rgba(0,255,136,0.15); }
.portal-card.pc-admin:hover   { box-shadow: 0 20px 60px rgba(123,47,255,0.2), 0 0 0 1px rgba(123,47,255,0.15); }

.pc-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: saturate(0.7) brightness(0.7); }
.portal-card:hover .pc-img img { transform: scale(1.08); filter: saturate(0.9) brightness(0.75); }
.pc-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg2) 0%, rgba(3,10,24,0.5) 50%, transparent 100%);
}
.pc-badge {
    position: absolute; bottom: 12px; right: 14px;
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    backdrop-filter: blur(10px);
}
.pc-patient .pc-badge { background: rgba(0,212,255,0.15); color: var(--cyan); border: 1px solid rgba(0,212,255,0.3); box-shadow: 0 0 15px rgba(0,212,255,0.3); }
.pc-doctor  .pc-badge { background: rgba(0,255,136,0.12); color: var(--green); border: 1px solid rgba(0,255,136,0.3); box-shadow: 0 0 15px rgba(0,255,136,0.3); }
.pc-admin   .pc-badge { background: rgba(123,47,255,0.15); color: var(--purple); border: 1px solid rgba(123,47,255,0.3); box-shadow: 0 0 15px rgba(123,47,255,0.3); }
.pc-body { padding: 24px 26px 28px; }
.pc-body h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.pc-body p { font-size: 13px; color: var(--muted); line-height: 1.68; margin-bottom: 22px; }
.btn-portal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}
.pc-patient .btn-portal { border: 1.5px solid var(--cyan);   color: var(--cyan);   background: rgba(0,212,255,0.06); }
.pc-patient .btn-portal:hover { background: var(--cyan); color: var(--bg); box-shadow: 0 0 25px rgba(0,212,255,0.5); }
.pc-doctor  .btn-portal { border: 1.5px solid var(--green);  color: var(--green);  background: rgba(0,255,136,0.06); }
.pc-doctor  .btn-portal:hover { background: var(--green); color: var(--bg); box-shadow: 0 0 25px rgba(0,255,136,0.5); }
.pc-admin   .btn-portal { border: 1.5px solid var(--purple); color: var(--purple); background: rgba(123,47,255,0.06); }
.pc-admin   .btn-portal:hover { background: var(--purple); color: #fff; box-shadow: 0 0 25px rgba(123,47,255,0.5); }

/* ------------------------------------------------------------------ */
/*  SERVICES                                                            */
/* ------------------------------------------------------------------ */
.services-section { background: var(--bg); }

.svc-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 22px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: default;
}
.svc-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(123,47,255,0.08));
    opacity: 0;
    transition: opacity 0.35s;
}
.svc-card:hover::after { opacity: 1; }
.svc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,212,255,0.4);
    box-shadow: 0 20px 50px rgba(0,212,255,0.12), 0 0 0 1px rgba(0,212,255,0.1);
}
.svc-card > * { position: relative; z-index: 1; }
.svc-icon {
    width: 68px; height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(123,47,255,0.12));
    border: 1px solid rgba(0,212,255,0.2);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--cyan);
    transition: all 0.35s;
    box-shadow: 0 0 20px rgba(0,212,255,0.15);
}
.svc-card:hover .svc-icon {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--bg);
    box-shadow: 0 0 35px rgba(0,212,255,0.5);
    border-color: transparent;
}
.svc-card h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}
.svc-card:hover h5 { color: var(--cyan); }
.svc-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 0; }

/* ------------------------------------------------------------------ */
/*  ABOUT                                                               */
/* ------------------------------------------------------------------ */
.about-section {
    background: var(--bg3);
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(0,212,255,0.07), transparent 60%),
        radial-gradient(ellipse at 90% 50%, rgba(123,47,255,0.07), transparent 60%);
    pointer-events: none;
}
.about-img-wrap {
    position: relative;
}
.about-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 40px rgba(0,212,255,0.1), 0 30px 80px rgba(0,0,0,0.5);
    position: relative;
}
.about-img-frame::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--bg3) 100%);
}
.about-img-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: saturate(0.6) brightness(0.75);
}
/* Scanning line effect over the image */
.about-img-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    animation: imgScan 3s linear infinite;
    z-index: 2;
    box-shadow: 0 0 8px var(--cyan);
}
@keyframes imgScan {
    0%   { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0.3; }
}
.about-tag {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--bg2), var(--bg3));
    border: 1px solid var(--border);
    color: #fff;
    padding: 20px 28px;
    border-radius: var(--radius);
    margin-top: 18px;
    box-shadow: 0 0 30px rgba(0,212,255,0.15);
}
.at-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(0,212,255,0.5));
}
.at-lbl { font-size: 11px; font-weight: 500; color: var(--muted); text-align: center; margin-top: 5px; letter-spacing: 0.5px; }

.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
}
.about-lead {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 36px;
}
.about-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all 0.3s;
    background: transparent;
}
.about-feat:hover {
    background: rgba(0,212,255,0.04);
    border-color: var(--border);
}
.af-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(0,212,255,0.08);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--cyan);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0,212,255,0.15);
}
.af-text h6 { color: #fff; font-weight: 700; margin-bottom: 3px; font-size: 14px; }
.af-text p  { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-bottom: 0; }

/* ------------------------------------------------------------------ */
/*  GALLERY                                                             */
/* ------------------------------------------------------------------ */
.gallery-section { background: var(--bg2); }

.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
}
.flt-btn {
    padding: 7px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}
.flt-btn:hover, .flt-btn.active {
    background: rgba(0,212,255,0.1);
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 15px rgba(0,212,255,0.2);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}
.g-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border);
}
.g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    filter: saturate(0.5) brightness(0.65);
    display: block;
}
.g-item:hover img { transform: scale(1.1); filter: saturate(0.9) brightness(0.75); }
.g-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.75), rgba(123,47,255,0.75));
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.4s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay i { font-size: 28px; color: #fff; transform: scale(0.7); transition: transform 0.4s; }
.g-item:hover .g-overlay i { transform: scale(1); }
.g-overlay span {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

/* ------------------------------------------------------------------ */
/*  CONTACT                                                             */
/* ------------------------------------------------------------------ */
.contact-section { background: var(--bg); }

.contact-info-panel {
    background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(123,47,255,0.06));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-info-panel::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.contact-info-panel h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cyan);
    letter-spacing: 0.3px;
}
.contact-info-panel > p { font-size: 13.5px; color: var(--muted); line-height: 1.72; margin-bottom: 30px; }
.c-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}
.c-info-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(0,212,255,0.08);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: var(--cyan);
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(0,212,255,0.15);
}
.c-info-item h6 { margin-bottom: 2px; font-size: 10px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.c-info-item p  { margin-bottom: 0; font-size: 14px; font-weight: 600; color: #fff; }

.contact-form-panel {
    background: rgba(0,212,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-form-panel::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
}
.cf-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 8px;
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cf-input {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 16px;
    font-size: 14px;
    transition: all 0.3s;
    background: rgba(255,255,255,0.03);
    width: 100%;
    display: block;
    margin-bottom: 18px;
    outline: none;
    font-family: 'Inter', sans-serif;
    color: #fff;
}
.cf-input::placeholder { color: rgba(255,255,255,0.2); }
.cf-input:focus {
    border-color: var(--cyan);
    background: rgba(0,212,255,0.04);
    box-shadow: 0 0 20px rgba(0,212,255,0.1);
}
.btn-send {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 0 25px rgba(0,212,255,0.3);
}
.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 45px rgba(0,212,255,0.5);
}

/* ------------------------------------------------------------------ */
/*  FOOTER                                                              */
/* ------------------------------------------------------------------ */
.site-footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 70px 0 36px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
    box-shadow: 0 0 15px var(--cyan);
}
.footer-brand-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 0 20px rgba(0,212,255,0.4);
    flex-shrink: 0;
}
.footer-logo-text strong {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.footer-logo-text small { font-size: 9px; color: var(--cyan); letter-spacing: 1.5px; text-transform: uppercase; }
.site-footer p { font-size: 13.5px; color: var(--muted); line-height: 1.8; max-width: 270px; }
.footer-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
    color: var(--muted);
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '';
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 4px var(--cyan);
    flex-shrink: 0;
    transition: box-shadow 0.3s;
}
.footer-links a:hover { color: var(--cyan); padding-left: 6px; }
.footer-links a:hover::before { box-shadow: 0 0 10px var(--cyan); }
.footer-divider { border-color: var(--border); margin: 40px 0 22px; }
.footer-bottom {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom a { color: var(--cyan); text-decoration: none; }

/* ------------------------------------------------------------------ */
/*  SCROLL-TO-TOP                                                       */
/* ------------------------------------------------------------------ */
.scroll-top-btn {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(0,212,255,0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s;
}
.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(0,212,255,0.6);
}
.scroll-top-btn.visible { display: flex; }

/* ------------------------------------------------------------------ */
/*  SCROLL-REVEAL                                                       */
/* ------------------------------------------------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------------------------------------ */
/*  KEYFRAMES                                                           */
/* ------------------------------------------------------------------ */
@keyframes fadeInDown {
    from { opacity:0; transform:translateY(-24px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInUp {
    from { opacity:0; transform:translateY(24px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInRight {
    from { opacity:0; transform:translateX(36px); }
    to   { opacity:1; transform:translateX(0); }
}

/* ------------------------------------------------------------------ */
/*  RESPONSIVE                                                          */
/* ------------------------------------------------------------------ */
@media (max-width: 1199px) {
    .hero h1 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
}
@media (max-width: 991px) {
    .hero         { padding: 130px 0 70px; min-height: auto; }
    .lp-section   { padding: 76px 0; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item    { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
    .about-img-frame img { height: 300px; }
}
@media (max-width: 767px) {
    .lp-section   { padding: 60px 0; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .contact-form-panel, .contact-info-panel { padding: 26px; }
    .hero h1      { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .hero-btns    { flex-direction: column; max-width: 280px; }
    .btn-neon     { justify-content: center; }
    .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .stat-num     { font-size: 26px; }
    .portal-card  { margin-bottom: 20px; }
}
