:root {
    /* Core palette closely matching InterstellarX vibes */
    --bg: #06020f;
    --surface: #0b0716;
    --card: #121025;
    --line: rgba(255,255,255,0.08);
    --text: #F2F2F5;
    --muted: #B8B8C7;
    --primary: #6A0DAD;    /* deep purple */
    --primary-2: #A100FF;  /* brighter purple */
    --accent: #E100FF;     /* magenta */
    --cyan: #00E5FF;       /* cyan for subtle edges */
    --success: #21e1a8;
    --shadow: 0 10px 30px rgba(161,0,255,0.15);
    --radius: 16px;
    --radius-lg: 22px;
    --maxw: 1200px;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease;
}
.loader-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    animation: pulse 1.2s infinite ease-in-out;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
    0%, 100% { transform: scale(0.6); opacity: 0; }
    50% { transform: scale(1); opacity: 1; }
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
    font-family: 'Urbanist', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
    margin: 0;
    color: var(--text);
    background: radial-gradient(1200px 1200px at 20% -10%, rgba(106,13,173,0.35), transparent 70%),
                radial-gradient(800px 800px at 85% 110%, rgba(225,0,255,0.25), transparent 70%),
                radial-gradient(600px 600px at 50% 50%, rgba(0,229,255,0.08), transparent 70%),
                var(--bg);
    background-attachment: fixed;
    overflow-x: hidden;
    visibility: hidden; /* Hide body content until preloader is done */
    letter-spacing: 0.7px;
}

:target { scroll-margin-top: 96px; }
/* Gradient glowing backgrounds */
body::before {
    content: "";
    position: fixed;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(106,13,173,0.6), transparent 70%);
    z-index: -2;
    filter: blur(100px);
}

body::after {
    content: "";
    position: fixed;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225,0,255,0.6), transparent 70%);
    z-index: -2;
    filter: blur(100px);
}
.nav {
    position: fixed; inset-inline: 0; top: 0; z-index: 50;
    display: flex; align-items: center; justify-content: center;
    padding: 14px 18px; transition: background .3s ease, box-shadow .3s ease;
    background: linear-gradient(180deg, rgba(6,2,15,.75), rgba(6,2,15,.25));
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.nav.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.nav-inner { width: min(var(--maxw), 92vw); display:flex; align-items:center; gap:16px; }

.brand { display:flex; gap:12px; align-items:center; text-decoration:none; color:var(--text); }
.brand img { width:115px; height:55px; object-fit:contain; filter: drop-shadow(0 0 12px rgba(161,0,255,.5)); }
.brand span { font-weight:800; letter-spacing:.4px; }

.nav-links { margin-left:auto; display:flex; gap:24px; align-items:center; }
.nav-links a {
    text-decoration:none; color:var(--muted); font-weight:600; letter-spacing:.3px;
    position:relative; padding:8px 0; transition:color .25s ease;
}
.nav-links a:hover { color:var(--text); }
.nav-links a::after {
    content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition:width .25s ease;
}
.nav-links a:hover::after { width:100%; }

.cta {
    margin-left: 10px;
    padding: 10px 18px; border-radius: 999px; font-weight:700; letter-spacing:.3px;
    border:1px solid rgba(225,0,255,.35);
    background: linear-gradient(180deg, rgba(18,16,37,.85), rgba(18,16,37,.4));
    box-shadow: var(--shadow);
    color: var(--text); text-decoration: none; position: relative; overflow:hidden;
}
.cta::before {
    content:""; position:absolute; inset:0; background:
    radial-gradient(600px 80px at var(--mx,50%) -40px, rgba(225,0,255,.35), transparent 60%);
    pointer-events:none; transition: .2s ease;
}
.cta:hover { transform: translateY(-2px); }

.hero {
    position: relative; min-height: 100svh; display:grid; place-items:center; text-align:center;
    padding: 120px 20px 80px;
}
#particles-js { position:absolute; inset:0; z-index:0; }

.glows { position:absolute; inset:0; pointer-events:none; z-index:0; }
.glow {
    position:absolute; width:700px; height:700px; border-radius:50%; filter: blur(120px);
    opacity:.45; mix-blend-mode: screen; will-change: transform;
}
.glow.purple { background: radial-gradient(circle, rgba(106,13,173,.9), transparent 60%); top:-200px; left:-200px; }
.glow.pink { background: radial-gradient(circle, rgba(225,0,255,.8), transparent 60%); bottom:-220px; right:-180px; }
.glow.cyan { background: radial-gradient(circle, rgba(0,229,255,.7), transparent 60%); bottom:-100px; left:-150px; opacity:.4; }

.hero-inner { position:relative; z-index:1; max-width: 980px; }
.eyebrow {
    display:inline-flex; align-items:center; gap:8px; padding:6px 12px; border-radius:999px;
    border:1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(11,7,22,.8), rgba(11,7,22,.35));
    color: var(--muted); font-weight:600; letter-spacing:.4px; margin-bottom:18px;
}
.dot { width:8px; height:8px; border-radius:50%; background: linear-gradient(90deg, var(--primary), var(--accent)); box-shadow:0 0 16px rgba(161,0,255,.8); }

.title { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.05; margin: 0 0 16px 0; font-weight: 800; }
.title .grad { background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 55%, var(--cyan) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent; }

.subtitle { color: var(--muted); font-size: clamp(1.05rem, 2.4vw, 1.25rem); max-width: 760px; margin: 0 auto 28px; }

.hero-cta { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn-neon {
    padding: 12px 22px; border-radius: 999px; font-weight: 700; letter-spacing:.3px;
    color: #fff; text-decoration:none; position:relative; border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(180deg, rgba(23,20,46,.95), rgba(23,20,46,.55));
    box-shadow: 0 0 0 1px rgba(161,0,255,.25) inset, 0 10px 30px rgba(0,0,0,.35);
}
.btn-neon:hover { box-shadow: 0 0 0 1px rgba(0,229,255,.3) inset, 0 18px 40px rgba(161,0,255,.28); transform: translateY(-2px); }
.btn-outline { background: transparent; border:1px solid rgba(0,229,255,.35); }

/* Modified .section styles for seamless flow */
.section { 
    position:relative; 
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 96px;
    margin-top: -30px; /* Pull the section up to blend with the previous background */
}
.container { width: min(var(--maxw), 92vw); margin-inline:auto; }
.section .heading { 
    font-size: clamp(1.6rem, 4vw, 2.4rem); 
    margin: 80px 0 14px; /* Added top margin to heading to push it down from the top of the section */
    font-weight:800; 
}
.section .lead { color: var(--muted); margin: 0 0 42px; }
.lead.services-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 42px;
}

.grid-2 { display:grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items:center; }
@media (max-width: 980px) { .grid-2 { grid-template-columns: 1fr; } }

.about-card {
    background: linear-gradient(180deg, rgba(18,16,37,.7), rgba(18,16,37,.25));
    border:1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; position:relative;
    box-shadow: var(--shadow);
}
.about-media { position:relative; }
.about-media .frame {
    aspect-ratio: 16/10; width:100%; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #1a1835, #0d0a1c);
    border:1px solid rgba(255,255,255,.06);
    overflow:hidden;
}
.about-media .orb { position:absolute; width:220px; height:220px; border-radius:50%; filter:blur(60px);
    background: radial-gradient(circle, rgba(0,229,255,.4), transparent 60%); right:-40px; top:-40px; opacity:.7; }

.cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }

.card {
    background: linear-gradient(180deg, rgba(13,10,28,.9), rgba(13,10,28,.5));
    border:1px solid rgba(255,255,255,.06); border-radius: var(--radius);
    padding: 24px; position:relative; overflow:hidden; isolation:isolate;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    box-shadow: 0 0 0 1px rgba(0,229,255,.08) inset;
}
.card img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.card .btn {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 999px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}
.card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225,0,255,0.4);
}

/* Hero */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
#particles-js {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}
.card:hover { transform: translateY(-8px); border-color: rgba(161,0,255,.35); box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 0 1px rgba(161,0,255,.25) inset; }
.card h4 { margin: 6px 0 8px; font-size: 1.25rem; }
.card p { color: var(--muted); margin: 0; }
.card .shine { position:absolute; inset: -1px; background:
    radial-gradient(600px 120px at var(--px,50%) -50px, rgba(161,0,255,.18), transparent 60%),
    radial-gradient(220px 140px at var(--px,50%) var(--py,120%), rgba(0,229,255,.12), transparent 60%);
    opacity:.9; mix-blend-mode: screen; pointer-events:none; transition: .2s; }

.marquee {
    position: relative; overflow: hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    background: linear-gradient(180deg, rgba(10,7,21,.6), rgba(10,7,21,.3));
}
.track { white-space: nowrap; will-change: transform; display:flex; gap:48px; padding: 22px 0; }
.chip { display:inline-flex; align-items:center; gap:10px; padding:10px 14px; border-radius:999px; border:1px solid rgba(255,255,255,.08);
    background: rgba(18,16,37,.55); color:var(--muted); }
.chip .dot { width:10px; height:10px; }

/* Team Section Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
    gap: 24px;
    margin-top: 42px;
}
.team-member-card {
    background: linear-gradient(180deg, rgba(13,10,28,.9), rgba(13,10,28,.5));
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 0 0 1px rgba(0,229,255,.08) inset;
}
.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 0 1px rgba(161,0,255,.25) inset;
}
.team-member-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(161,0,255,.5);
    margin-bottom: 12px;
    filter: drop-shadow(0 0 10px rgba(161,0,255,.4));
}
.team-member-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}
.team-member-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 4px 0 0;
}

.cta-block { text-align:center; background: linear-gradient(180deg, rgba(18,16,37,.7), rgba(18,16,37,.35)); border:1px solid var(--line);
    border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }

/* Footer Grid and Newsletter Form */
footer { 
    padding: 46px 20px 80px; 
    border-top:1px solid var(--line); 
    background: linear-gradient(180deg, rgba(10,6,20,.7), rgba(10,6,20,.2));
}
.footer-grid { 
    display:grid; 
    grid-template-columns: 1.2fr .9fr .9fr 1.5fr; 
    gap: 26px; 
}
@media (max-width: 980px){ 
    .footer-grid { 
        grid-template-columns: 1fr; 
    } 
}
.footer-col h5 { 
    margin: 0 0 12px; 
    font-size: 1rem; 
    color:#e7daf2; 
}
.footer-col a { 
    display:block; 
    text-decoration:none; 
    color: var(--muted); 
    padding:6px 0; 
}
.footer-col a:hover { 
    color: var(--text); 
}
.copyright { 
    margin-top: 28px; 
    color: var(--muted); 
    text-align:center; 
    font-size:.95rem; 
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1rem;
}
.newsletter-form input[type="email"] {
    background: rgba(18,16,37,.7);
    border: 1px solid var(--line);
    color: var(--text);
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: 1rem;
    outline: none;
}
.newsletter-form input[type="email"]::placeholder {
    color: var(--muted);
    opacity: 0.6;
}
.newsletter-form button {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225,0,255,0.4);
}

:root {
    /* Core palette closely matching InterstellarX vibes */
    --bg: #06020f;
    --surface: #0b0716;
    --card: #121025;
    --line: rgba(255,255,255,0.08);
    --text: #F2F2F5;
    --muted: #B8B8C7;
    --primary: #6A0DAD;    /* deep purple */
    --primary-2: #A100FF;  /* brighter purple */
    --accent: #E100FF;     /* magenta */
    --cyan: #00E5FF;       /* cyan for subtle edges */
    --success: #21e1a8;
    --shadow: 0 10px 30px rgba(161,0,255,0.15);
    --radius: 16px;
    --radius-lg: 22px;
    --maxw: 1200px;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease;
}
.loader-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    animation: pulse 1.2s infinite ease-in-out;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
    0%, 100% { transform: scale(0.6); opacity: 0; }
    50% { transform: scale(1); opacity: 1; }
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
    font-family: 'Urbanist', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Oxygen, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
    margin: 0;
    color: var(--text);
    background: radial-gradient(1200px 1200px at 20% -10%, rgba(106,13,173,0.35), transparent 70%),
                radial-gradient(800px 800px at 85% 110%, rgba(225,0,255,0.25), transparent 70%),
                radial-gradient(600px 600px at 50% 50%, rgba(0,229,255,0.08), transparent 70%),
                var(--bg);
    background-attachment: fixed;
    overflow-x: hidden;
    visibility: hidden; /* Hide body content until preloader is done */
    letter-spacing: 0.7px;
}

:target { scroll-margin-top: 96px; }
/* Gradient glowing backgrounds */
body::before {
    content: "";
    position: fixed;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(106,13,173,0.6), transparent 70%);
    z-index: -2;
    filter: blur(100px);
}

body::after {
    content: "";
    position: fixed;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225,0,255,0.6), transparent 70%);
    z-index: -2;
    filter: blur(100px);
}
.nav {
    position: fixed; inset-inline: 0; top: 0; z-index: 50;
    display: flex; align-items: center; justify-content: center;
    padding: 14px 18px; transition: background .3s ease, box-shadow .3s ease;
    background: linear-gradient(180deg, rgba(6,2,15,.75), rgba(6,2,15,.25));
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.nav.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.nav-inner { width: min(var(--maxw), 92vw); display:flex; align-items:center; gap:16px; }

.brand { display:flex; gap:12px; align-items:center; text-decoration:none; color:var(--text); }
.brand img { width:115px; height:55px; object-fit:contain; filter: drop-shadow(0 0 12px rgba(161,0,255,.5)); }
.brand span { font-weight:800; letter-spacing:.4px; }

.nav-links { margin-left:auto; display:flex; gap:24px; align-items:center; }
.nav-links a {
    text-decoration:none; color:var(--muted); font-weight:600; letter-spacing:.3px;
    position:relative; padding:8px 0; transition:color .25s ease;
}
.nav-links a:hover { color:var(--text); }
.nav-links a::after {
    content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition:width .25s ease;
}
.nav-links a:hover::after { width:100%; }

.cta {
    margin-left: 10px;
    padding: 10px 18px; border-radius: 999px; font-weight: 700; letter-spacing: .3px;
    border: 1px solid rgba(225, 0, 255, .35);
    background: linear-gradient(180deg, rgba(18, 16, 37, .85), rgba(18, 16, 37, .4));
    box-shadow: var(--shadow);
    color: var(--text);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 80px at var(--mx, 50%) -40px, rgba(225, 0, 255, .35), transparent 60%);
    pointer-events: none;
    transition: .2s ease;
}

.cta:hover {
    transform: translateY(-2px);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 120px 20px 80px;
}
#particles-js {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.glows {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .45;
    mix-blend-mode: screen;
    will-change: transform;
}
.glow.purple {
    background: radial-gradient(circle, rgba(106, 13, 173, .9), transparent 60%);
    top: -200px;
    left: -200px;
}
.glow.pink {
    background: radial-gradient(circle, rgba(225, 0, 255, .8), transparent 60%);
    bottom: -220px;
    right: -180px;
}
.glow.cyan {
    background: radial-gradient(circle, rgba(0, 229, 255, .7), transparent 60%);
    bottom: -100px;
    left: -150px;
    opacity: .4;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(11, 7, 22, .8), rgba(11, 7, 22, .35));
    color: var(--muted);
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 18px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    box-shadow: 0 0 16px rgba(161, 0, 255, .8);
}

.title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.05;
    margin: 0 0 16px 0;
    font-weight: 800;
}
.title .grad {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 55%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    color: var(--muted);
    font-size: clamp(1.05rem, 2.4vw, 1.25rem);
    max-width: 760px;
    margin: 0 auto 28px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-neon {
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .3px;
    color: #fff;
    text-decoration: none;
    position: relative;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(23, 20, 46, .95), rgba(23, 20, 46, .55));
    box-shadow: 0 0 0 1px rgba(161, 0, 255, .25) inset, 0 10px 30px rgba(0, 0, 0, .35);
}
.btn-neon:hover {
    box-shadow: 0 0 0 1px rgba(0, 229, 255, .3) inset, 0 18px 40px rgba(161, 0, 255, .28);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1px solid rgba(0, 229, 255, .35);
}

/* Modified .section styles for seamless flow */
.section {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 96px;
    margin-top: -80px; /* Pull the section up to blend with the previous background */
}
.container {
    width: min(var(--maxw), 92vw);
    margin-inline: auto;
}
.section .heading {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin: 80px 0 14px; /* Added top margin to heading to push it down from the top of the section */
    font-weight: 800;
}
.section .lead {
    color: var(--muted);

    margin: 0 0 42px;
}
.lead.services-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 42px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    align-items: center;
}
@media (max-width: 980px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.about-card {
    background: linear-gradient(180deg, rgba(18, 16, 37, .7), rgba(18, 16, 37, .25));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
    position: relative;
    box-shadow: var(--shadow);
}
.about-media {
    position: relative;
}
.about-media .frame {
    aspect-ratio: 16/10;
    width: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #1a1835, #0d0a1c);
    border: 1px solid rgba(255, 255, 255, .06);
    overflow: hidden;
}
.about-media .orb {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(60px);
    background: radial-gradient(circle, rgba(0, 229, 255, .4), transparent 60%);
    right: -40px;
    top: -40px;
    opacity: .7;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
}

.card {
    background: linear-gradient(180deg, rgba(13, 10, 28, .9), rgba(13, 10, 28, .5));
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    box-shadow: 0 0 0 1px rgba(0, 229, 255, .08) inset;
}
.card img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.card .btn {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 999px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}
.card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 0, 255, 0.4);
}

/* Hero */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
#particles-js {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.card:hover {
    transform: translateY(-8px);
    border-color: rgba(161, 0, 255, .35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45), 0 0 0 1px rgba(161, 0, 255, .25) inset;
}
.card h4 {
    margin: 6px 0 8px;
    font-size: 1.25rem;
}
.card p {
    color: var(--muted);
    margin: 0;
}
.card .shine {
    position: absolute;
    inset: -1px;
    background: radial-gradient(600px 120px at var(--px, 50%) -50px, rgba(161, 0, 255, .18), transparent 60%), radial-gradient(220px 140px at var(--px, 50%) var(--py, 120%), rgba(0, 229, 255, .12), transparent 60%);
    opacity: .9;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: .2s;
}

.marquee {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(10, 7, 21, .6), rgba(10, 7, 21, .3));
}
.track {
    white-space: nowrap;
    will-change: transform;
    display: flex;
    gap: 48px;
    padding: 22px 0;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(18, 16, 37, .55);
    color: var(--muted);
}
.chip .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    box-shadow: 0 0 16px rgba(161, 0, 255, .8);
}

/* Team Section Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
    gap: 24px;
    margin-top: 42px;
}
.team-member-card {
    background: linear-gradient(180deg, rgba(13, 10, 28, .9), rgba(13, 10, 28, .5));
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 0 0 1px rgba(0, 229, 255, .08) inset;
}
.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45), 0 0 0 1px rgba(161, 0, 255, .25) inset;
}
.team-member-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(161, 0, 255, .5);
    margin-bottom: 12px;
    filter: drop-shadow(0 0 10px rgba(161, 0, 255, .4));
}
.team-member-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}
.team-member-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 4px 0 0;
}

.cta-block {
    text-align: center;
    background: linear-gradient(180deg, rgba(18, 16, 37, .7), rgba(18, 16, 37, .35));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form-container {
    background: linear-gradient(180deg, rgba(18,16,37,.7), rgba(18,16,37,.25));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 5px;
}
.form-group input, .form-group textarea {
    background: rgba(18,16,37,.7);
    border: 1px solid var(--line);
    color: var(--text);
    padding: 12px;
    border-radius: var(--radius);
    font-size: 1rem;
    outline: none;
    resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}
@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-list {
    list-style: none;
    padding: 0;
}
.contact-list li {
    margin-bottom: 10px;
    color: var(--muted);
}
.contact-list a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-list a:hover {
    color: var(--text);
}

/* Testimonial Section Styles */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    padding: 30px;
    text-align: left;
}
.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--muted);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}
.author-name {
    font-weight: 700;
    margin: 0;
    color: var(--text);
}
.author-title {
    font-size: 0.9rem;
    margin: 0;
    color: var(--muted);
}
.testimonial-slider-container {
    position: relative;
    overflow: hidden;
}
.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-slider .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
}
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--muted);
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}
.stars {
    color: gold;
    margin-bottom: 10px;
}
.stars .star {
    font-size: 1.2rem;
}
/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}
@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-info {
    padding-right: 20px;
}
.contact-info .heading, .contact-info .lead {
    text-align: left;
}
.contact-list {
    list-style: none;
    padding: 0;
}
.contact-list li {
    margin-bottom: 10px;
    color: var(--muted);
}
.contact-list a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-list a:hover {
    color: var(--text);
}
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}
.contact-form-container {
    background: linear-gradient(180deg, rgba(18,16,37,.7), rgba(18,16,37,.25));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 5px;
}
.form-group input, .form-group textarea {
    background: rgba(18,16,37,.7);
    border: 1px solid var(--line);
    color: var(--text);
    padding: 12px;
    border-radius: var(--radius);
    font-size: 1rem;
    outline: none;
    resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
}
