:root {
    --lime:       #C8FF00;
    --lime-dim:   rgba(200,255,0,.12);
    --lime-glow:  rgba(200,255,0,.25);
    --bg:         #0a0a0a;
    --nav-bg:     #0f0f0f;
    --sidebar-bg: #111214;
    --surface:    rgba(255, 255, 255, 0.03);
    --surface-2:  #1e2024;
    --border:     rgba(255,255,255,.07);
    --border-act: rgba(200,255,0,.3);
    --white:      #ffffff;
    --grey:       #6b7280;
    --grey-lt:    rgba(255, 255, 255, 0.7);
    
    --f-head:     'Poppins', sans-serif;
    --f-sub:      'Urbanist', sans-serif;
    --f-btn:      'Nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--bg);
    color: var(--white);
    font-family: var(--f-sub);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}
/* ═══════════════════════════════════════
   HERO SECTION EXACT TEAM MATCH
═══════════════════════════════════════ */
.tm-hero-section {
    position: relative;
    width: 100vw; 
    min-height: 100vh; 
    min-height: 100vh; 
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 40px;
    overflow: hidden;
    background-color: #001019;
}

.tm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.tm-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.tm-glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.13;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.blob-lime {
    top: -15%;
    right: 5%;
    width: 550px;
    height: 550px;
    background: var(--lime);
}

.blob-blue {
    bottom: 10%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: #0055ff;
}

.tm-noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.tm-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,0.8) 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,0.8) 0%, transparent 75%);
}

.tm-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
}

.tm-hero-eyebrow {
    font-family: var(--f-sub);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0; 
}

.tm-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--lime);
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--lime);
}

.tm-hero-title {
    font-family: var(--f-head);
    font-weight: 500;
    line-height: 0.95;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    opacity: 0;
}

.tm-title-line {
    display: flex;
    align-items: baseline;
    gap: 20px;
    overflow: hidden;
}

.tm-title-line--big {
    gap: 0;
}

.tm-word-fill {
    font-size: clamp(60px, 10vw, 140px);
    color: var(--white);
    letter-spacing: -0.03em;
    display: inline-block;
}

.tm-word-outline {
    font-size: clamp(60px, 10vw, 140px);
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.25);
    letter-spacing: -0.03em;
    display: inline-block;
}

.tm-hero-subtitle {
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 400;
    color: var(--grey-lt);
    max-width: 560px;
    line-height: 1.65;
    opacity: 0; 
}
.tm-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Apple Fix */
    opacity: 0; /* GSAP reveals this */
}
.tm-stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 28px;
    gap: 2px;
}

.tm-stat-num {
    font-family: var(--f-head);
    font-weight: 600;
    font-size: 22px;
    color: var(--lime);
    line-height: 1;
}

.tm-stat-lbl {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-lt);
}

.tm-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ─── SCROLL HINT FROM IMAGE ─── */
.tm-hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.tm-hero-scroll-hint span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--grey-lt);
}

.tm-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--lime), transparent);
    animation: scrollPulse 1.8s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ═══════════════════════════════════════
   SLIDER SECTION 
═══════════════════════════════════════ */
.slider-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 60px auto; 
    z-index: 10;
}

.slider-container {
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 40px;
    display: flex;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    min-height: 500px;
}

.nav-sidebar {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
    padding-right: 20px;
}

.nav-eyebrow {
    font-family: var(--f-sub);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--grey-lt);
    font-weight: 600;
    margin-bottom: 24px;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-item {
    font-size: 15px;
    color: var(--grey-lt);
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    border: 1px solid transparent;
}

.nav-item:hover {
    color: var(--white);
    background: rgba(255,255,255,0.03);
    transform: translateX(5px);
}

.nav-item.active {
    color: var(--lime);
    background: var(--lime-dim);
    border-color: var(--border-act);
    font-weight: 600;
    transform: translateX(0);
}

.content-area {
    flex: 1;
    display: grid; 
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
}

.slide {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.js-anim-elem {
    will-change: transform, opacity;
}

.service-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 20px;
}

.sub-heading {
    color: var(--grey-lt);
    font-size: 13px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.service-details h2 {
    font-family: var(--f-head);
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.1;
}

.service-details p {
    font-size: 15px;
    color: var(--grey-lt);
    line-height: 1.6;
    margin-bottom: 25px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-lime {
    font-family: var(--f-btn);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: var(--lime);
    color: #001019; /* Better contrast */
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--lime-glow);
}

.btn-lime:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--lime-glow);
    background: #d4ff33;
}

.cta-card {
    background: var(--surface-2);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    height: 100%;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    transition: transform 0.8s ease, opacity 0.5s ease;
    mix-blend-mode: luminosity;
}

.slider-container:hover .cta-bg-image {
    transform: scale(1.08);
    opacity: 0.4;
}

.cta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0) 100%);
    z-index: 1;
}

.cta-card-content {
    position: relative;
    z-index: 2;
}

.cta-card h3 {
    font-family: var(--f-head);
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-card p {
    font-size: 14px;
    color: var(--grey-lt);
    margin-bottom: 25px;
}

.btn-outline {
    font-family: var(--f-btn);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid var(--border-act);
    background: transparent;
    color: var(--lime);
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--lime-dim);
    transform: translateY(-2px);
}

.controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 15px 25px;
    margin-top: 20px;
}

.slider-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.control-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--lime);
    color: #001019;
    border-color: var(--lime);
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: var(--surface-2);
    border-radius: 4px;
    margin-left: 20px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--lime);
    width: 100%;
    transform-origin: left;
    transform: scaleX(0);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--lime-glow);
}

.site-footer {
    width: 100%;
    background-color: var(--bg);
    color: var(--white);
    padding: 60px 5% 20px;
    font-size: 14px;
    margin-top: 80px;
}

#sheo-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

/* ═══════════════════════════════════════
   RESPONSIVE (FIXED)
═══════════════════════════════════════ */
@media (max-width: 992px) {
    .slider-container {
        flex-direction: column;
        padding: 30px;
        min-height: auto;
    }
    .nav-sidebar {
        flex: none;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 20px;
    }
    .nav-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    .nav-list::-webkit-scrollbar { display: none; }
    .nav-item {
        white-space: nowrap;
        padding: 8px 16px;
    }
    .slide {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .service-details {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .tm-hero-section {
        min-height: 80vh;
        padding-top: 100px;
    }
    .tm-word-fill, .tm-word-outline {
        font-size: clamp(50px, 14vw, 80px);
    }
    .tm-title-line { gap: 12px; }
    .tm-hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 20px;
    }
    .tm-stat-divider { display: none; }

    .slider-wrapper { margin-top: 20px; }
    .slider-container { padding: 20px; }
    .service-details h2 { font-size: 32px; }
    .cta-card { min-height: 320px; padding: 25px; }
    .progress-bar { display: none; }
}

@media (max-width: 480px) {
    .tm-word-fill, .tm-word-outline {
        font-size: clamp(40px, 12vw, 60px);
    }
}

#sheo-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

/* FOOTER WIDTH FIX */
#sheo-footer {
    width: 100%;
    display: block;
    position: relative;
    clear: both;
}

