﻿/* 
   NEO | TrackMySchool 
   Premium Cinematic Styles
*/

:root {
    --primary-dark: #0B0B0B;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --accent-gold-start: #DB9310;
    --accent-gold-end: #DB9310;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 1;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
}

.gold-text {
    background: linear-gradient(to right, var(--accent-gold-start), var(--accent-gold-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.white {
    color: var(--text-white);
}

.gold-gradient {
    background: linear-gradient(to right, var(--accent-gold-start), var(--accent-gold-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* UTILITIES */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    width: 100%;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 100px 0;
}

.pill-label {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255, 233, 144, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: rgba(255, 233, 144, 0.05);
    width: max-content;
    white-space: nowrap;
}

@media(max-width: 768px) {
    .pill-label {
        width: auto;
        white-space: break-spaces;
        word-break: break-word;
    }
}

.cta-primary {
    background: linear-gradient(90deg, var(--accent-gold-start), var(--accent-gold-end));
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-primary:hover {
    transform: scale(1.05);
}

.cta-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
    border-radius: 50px;
    color: var(--text-white);
    font-weight: 600;
    margin-left: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* NAV BUTTONS */
.nav-actions {
    display: flex;
    gap: 15px;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--accent-gold-start);
    color: var(--accent-gold-start);
}

.btn-solid {
    background: linear-gradient(180deg, #FFE990, #DB9310);
    border: none;
    color: #000;
    /* Dark text on gold */
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-solid:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(219, 147, 16, 0.4);
}

/* HERO BUTTONS */
.btn-outline-large {
    background: rgba(0, 0, 0, 0.2);
    /* Slight background to ensure visibility over complex underlying layers */
    border: 1px solid rgba(255, 196, 0, 1);
    /* Fully opaque border */
    color: #FFC400;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
    /* Ensure layout integrity */
    position: relative;
    z-index: 100;
    /* Force on top */
    opacity: 1 !important;
    /* Force visibility */
}

.btn-outline-large:hover {
    background: rgba(255, 196, 0, 0.1);
    border-color: #FFC400;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 196, 0, 0.2);
}

/* GLASS CARD */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    border-color: rgba(255, 233, 144, 0.3);
    transform: translateY(-5px);
}

.glass-card .gold-underline {
    height: 2px;
    width: 40px;
    background: linear-gradient(90deg, var(--accent-gold-start), var(--accent-gold-end));
    margin-top: 20px;
    transition: width 0.3s ease;
}

.glass-card:hover .gold-underline {
    width: 60px;
}

/* PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #141414 0%, #0B0B0B 100%);
    /* Subtle vignette */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.logo-text {
    font-size: 5rem;
    letter-spacing: 10px;
    margin-bottom: 40px;
    opacity: 0;
    /* Animate in */
    position: relative;
    z-index: 2;
    font-weight: 700;
}

/* Glow behind NEO */
.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 233, 144, 0.15) 0%, rgba(11, 11, 11, 0) 70%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    /* Controlled by JS or fade in with container */
    animation: fadeInGlow 2s ease-out forwards 0.5s;
}

@keyframes fadeInGlow {
    to {
        opacity: 1;
    }
}

/* Specific Gold E override if needed, but util class is fine. Let's ensure it pops */
.gold-gradient {
    background: linear-gradient(135deg, #FFE990 0%, #DB9310 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 233, 144, 0.4);
    /* Extra glow on letter itself */
}

.loading-bar {
    width: 150px;
    height: 6px;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    opacity: 0;
    border-radius: 10px;
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    /* Initial capsule size */
    background: linear-gradient(90deg, #FFE990, #DB9310);
    border-radius: 10px;
    transform: translateX(-150%);
    /* Start further back */
    box-shadow: 0 0 10px rgba(219, 147, 16, 0.5);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.preloader-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #FFE990;
    border-radius: 50%;
    opacity: 0;
    filter: blur(0.5px);
    box-shadow: 0 0 8px rgba(255, 233, 144, 0.8);
    z-index: 2;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 150px;
    position: relative;
    /* Static Dots Background */
    background-image: radial-gradient(rgba(255, 233, 144, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Cinematic Infinite Marquee */
.marquee-section {
    width: 100%;
    background: #000;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 233, 144, 0.1);
    border-bottom: 1px solid rgba(255, 233, 144, 0.1);
}

.marquee-banner {
    width: 100%;
    background: transparent;
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee-content {
    display: flex;
    width: max-content;
    gap: 60px;
    will-change: transform;
}

.marquee-content span {
    font-size: 1.8rem;
    /* Bigger Font */
    font-weight: 800;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.marquee-content span:hover {
    color: #FFE990;
}

.marquee-content .dot-separator {
    color: #FFE990;
}



@keyframes dotFloat {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        transform: translate(var(--tx), var(--ty));
        opacity: 0;
    }
}

.hero-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    /* Massive size */
    font-weight: 700;
    z-index: 0;
    pointer-events: none;
    display: flex;
    gap: 0.1em;
    /* Closer kerning */
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 1;
}

.hero-background-text span {
    color: var(--text-white);
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 0;
}

.hero-background-text .hero-e {
    background: linear-gradient(180deg, #FFE990 0%, #DB9310 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    /* No z-index tweak on text itself effectively, standard stacking context */
}

/* Glow specifically behind the E */
.hero-background-text .hero-e::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    /* background: radial-gradient(circle, rgba(255, 233, 144, 0.25) 0%, transparent 70%); */
    z-index: -1;
    pointer-events: none;
}

.hero-character-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centered exactly */
    height: auto;
    width: 100%;
    max-width: 100%;
    z-index: 2;
    /* In front of text */
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-character {
    position: relative;
    max-height: 85vh;
    /* Large but fits viewport */
    width: auto;
    object-fit: contain;
    transform: translateY(50px);
    /* opacity: 0; Removed to let GSAP handle from() */
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
    /* Strong shadow for depth */
}

.hero-headset {
    display: none;
    /* Old element hide */
}

/* GLOBAL HEADSET */
.main-headset {
    position: fixed;
    top: -200px;
    /* Start above viewport */
    left: 50%;
    transform: translate(-50%, -50%);
    /* Corrected pivot */
    width: 220px;
    /* calibrated size */
    z-index: 9999;
    pointer-events: none;
    will-change: transform, top, left;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

/* TARGET MARKERS (Invisible) */
.headset-target {
    position: absolute;
    width: 10px;
    height: 10px;
    background: transparent;
    /* Keep invisible */
    pointer-events: none;
    z-index: 100;
}

#target-1 {
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#target-2 {
    top: 22%;
    left: 29%;
    /* Adjust based on Sitting character image */
    transform: translate(-50%, -50%);
}

#target-3 {
    top: 31%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-nav {
    position: fixed;
    /* Changed from absolute to fixed for universal scroll control */
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 10002;
    display: flex;
    justify-content: center;
    padding: 0 40px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease-out), opacity 0.4s ease, visibility 0.4s;
}

.hero-nav.nav-hidden {
    transform: translateY(-100px);
}

.nav-container-pill {
    position: relative;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 5px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.nav-logo img {
    height: 65px;
    /* More prominent logo */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links a,
.dropdown-trigger {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
}

.nav-links a:hover,
.nav-links a.active,
.dropdown-trigger:hover {
    color: var(--accent-gold-start);
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-arrow {
    margin-left: 8px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    min-width: 260px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10003;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.dropdown-menu a {
    display: block;
    padding: 14px 20px;
    font-size: 0.95rem;
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    font-family: var(--font-body);
}

.dropdown-menu a:hover {
    background: rgba(255, 233, 144, 0.08);
    color: var(--accent-gold-start);
    padding-left: 28px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.btn-nav-outline:hover {
    border-color: var(--accent-gold-start);
    color: var(--accent-gold-start);
    background: rgba(255, 233, 144, 0.05);
}

.btn-nav-solid {
    background: linear-gradient(135deg, #FFE990 0%, #DB9310 100%);
    color: #000 !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(219, 147, 16, 0.3);
    font-family: var(--font-heading);
    white-space: nowrap;
    text-align: center;
}

.btn-nav-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(219, 147, 16, 0.5);
}

/* HERO CONTENT SPLIT */
/* Left Content */
/* Left Content */
.hero-content-left {
    position: absolute;
    bottom: 40px;
    left: 5%;
    width: 35%;
    max-width: 500px;
    z-index: 10;
    /* opacity: 0; Removed */
}

.hero-content-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 15px 0;
    color: #FFE990;
    /* Initial golden hue or handled by span */
    text-align: left;
}

.hero-content-left h1 .gold-text {
    color: #FFC400;
    /* Specific match */
}

.hero-content-left p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.pill-label-small {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #FFE990;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.4);
}

/* Right Content */
/* Right Content */
.hero-content-right {
    position: absolute;
    bottom: 40px;
    right: 5%;
    width: 25%;
    max-width: 350px;
    z-index: 10;
    text-align: left;
    /* opacity: 0; Removed */
}

.gold-text-small {
    color: #FFC400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-content-right p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.about {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #080808;
    /* Deep black background */
    /* Dots background effect */
    background-image: radial-gradient(rgba(255, 233, 144, 0.05) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
}

/* Radial Glow behind character */
.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(219, 147, 16, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.about .container {
    z-index: 2;
    /* Content above glow */
}

.grid-2-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 80px;
    align-items: center;
    overflow: hidden;
    /* Strict containment */
}

.about-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-character {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Glowing dots/particles effect in background */
.about .glow-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFE990;
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 10px #FFE990;
    opacity: 0.6;
    pointer-events: none;
}

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    /* Ensure only internal carousel moves */
}

.about-right .pill-label {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 233, 144, 0.3);
    color: #FFE990;
    padding: 6px 14px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.about-right .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-desc {
    color: #B0B0B0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.feature-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    /* Prevent cards from leaking out */
    position: relative;
}

.feature-cards-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 0 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: auto;
    /* Disabled to allow GSAP to handle it snappily */
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    /* Ensure flex items don't stretch the container */
}

.feature-cards-container::-webkit-scrollbar {
    display: none;
}

.glass-card {
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px;
    min-width: 320px;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    /* height: 100% removed to allow stretch */
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 233, 144, 0.2);
}

.card-icon-box {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 233, 144, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(255, 233, 144, 0.08);
    /* Subtle gold background */
}

.card-icon-box img {
    /* width: 22px;
    height: 22px; */
    filter: brightness(1.2);
    /* Enhance the gold icon */
}

.glass-card h3 {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-weight: 700;
}

.glass-card p {
    font-size: 0.95rem;
    color: #909090;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.gold-progress-bar {
    width: 40px;
    height: 2px;
    background: #DB9310;
    /* Solid Gold */
    border-radius: 4px;
    margin-top: auto;
}

/* Carousel Nav */
.carousel-nav {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    z-index: 10;
    position: relative;
    pointer-events: all;
    padding: 5px;
    /* Ensure clicks are captured */
    /* Required for z-index to work */
}

.nav-btn {
    width: 50px;
    height: 38px;
    border: 1px solid #FFE990;
    border-radius: 8px;
    background: transparent;
    color: #FFE990;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover:not(:disabled) {
    background: rgba(255, 233, 144, 0.1);
    transform: scale(1.05);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    border-color: rgba(255, 233, 144, 0.3);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

/* TRANSFORM SECTION */
/* TRANSFORM SECTION */
/* TRANSFORM SECTION */
.transform {
    text-align: left;
    min-height: 100vh;
    /* Changed from fixed height to min-height */
    padding: 100px 0;
    /* Standard padding */
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #050505;
    /* Section A color */
}

.transform-header {
    margin-bottom: 30px;
}

.transform-header h2 {
    font-size: 2.2rem;
    /* Slightly smaller to fit 100vh */
    line-height: 1.2;
}

.transform-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* Auto center based on img height */
    gap: 30px;
    align-items: center;
    height: 100%;
}

/* Column Specifics */
.transform-col-left,
.transform-col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transform-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Reduced gap */
}

/* Center Mobile Visual */
.transform-col-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.mobile-visual-wrapper {
    position: relative;
    height: 85vh;
    /* dominate height */
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-frame-img {
    /* height: 100%; */
    width: auto;
    position: relative;
    z-index: 2;
    display: block;
    object-fit: contain;
    /* Maintain aspect ratio */
}

.mobile-char-img {
    position: absolute;
    top: 61%;
    left: 33%;
    transform: translate(-50%, -50%);
    /* height: 100%; */
    width: auto;
    z-index: 3;
    object-fit: contain;
}

/* Dialogue Bubble */
.neo-dialogue-bubble {
    position: absolute;
    top: 25%;
    /* Adjust to float near head */
    right: 5%;
    /* Positioned right side of phone screen */
    background: #000;
    border: 1px solid rgba(255, 127, 80, 0.5);
    /* Slight reddish/coral tint like reference */
    border-radius: 12px;
    padding: 10px 14px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
    min-width: 140px;
    transform: scale(0);
    /* Start hidden for animation */
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 1s;
    /* Delay appearance */
}

/* Tail of bubble */
.neo-dialogue-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: #000;
    border-bottom: 1px solid rgba(255, 127, 80, 0.5);
    border-right: 1px solid rgba(255, 127, 80, 0.5);
    transform: rotate(45deg);
}

.neo-text-white {
    color: #F0F0F0;
    font-weight: 600;
    font-size: 0.85rem;
}

.neo-text-gold {
    color: #FFC400;
    font-weight: 700;
    font-size: 0.9rem;
}

@keyframes popIn {
    to {
        transform: scale(1);
    }
}

/* Dark Glass Cards */
.glass-card-dark {
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-card-dark:hover {
    border-color: rgba(255, 233, 144, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.icon-box-gold {
    width: 40px;
    height: 40px;
    border: 1px solid #FFE990;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    box-shadow: 0 0 10px rgba(255, 233, 144, 0.1);
}

.glass-card-dark p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.glass-card-dark p strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
}

.gold-underline-short {
    width: 40px;
    height: 2px;
    background: #FFE990;
    margin-top: 10px;
}

/* MODULE LAYERS */
.module-layer {
    padding: 120px 0;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.module-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.module-card:hover {
    border-color: rgba(255, 233, 144, 0.4);
    transform: translateY(-5px);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-number {
    font-size: 0.9rem;
    color: var(--accent-gold-start);
    border: 1px solid rgba(255, 233, 144, 0.3);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-small {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.module-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.module-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold-start), transparent);
    opacity: 0.3;
}

/* CONNECTIVITY LAYER */
/* CONNECTIVITY LAYER */
/* CONNECTIVITY LAYER */
#module-connectivity {
    background-color: #080808;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#module-connectivity .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.connectivity-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.connectivity-row-centered {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.connectivity-row-centered .module-card-large {
    width: calc(33.333% - 20px);
    flex-grow: 0;
}

.connectivity-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.module-card-large {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.module-card-large:hover {
    border-color: rgba(255, 233, 144, 0.3);
    transform: translateY(-5px);
    background: #151515;
}

.module-card-large .card-number-circle {
    width: 45px;
    height: 35px;
    border: 1px solid #FFE990;
    border-radius: 8px;
    color: #FFE990;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.module-card-large h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.module-card-large p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.gold-line-bottom {
    width: 60px;
    height: 3px;
    background: #FFE990;
    border-radius: 2px;
}

/* Responsive Connectivity */
@media (max-width: 1024px) {

    .connectivity-row-centered,
    .connectivity-row-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .connectivity-row-centered .module-card-large {
        width: 100%;
    }
}

/* Responsive Connectivity */
@media (max-width: 768px) {
    .connectivity-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .connectivity-grid .module-card-large:nth-child(2n),
    .connectivity-grid .module-card-large:nth-child(2n-1) {
        margin-top: 0;
        margin-bottom: 0;
    }

    #module-connectivity .section-title {
        font-size: 2.5rem;
    }
}

.section-desc-center {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 40px;
    color: #888;
    font-size: 1.15rem;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .connectivity-grid {
        grid-template-columns: 1fr;
    }
}

/* CORE SUITE */
#module-core-suite {
    background-color: #080808;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#module-core-suite .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

#module-core-suite .pill-label {
    border: 1px solid rgba(255, 233, 144, 0.4);
    color: #FFE990;
    font-size: 0.8rem;
    padding: 6px 16px;
    background: transparent;
}

.core-suite-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.core-suite-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.core-suite-row-centered {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Horizontal Cards */
.module-card-horizontal {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.core-suite-row-centered .module-card-horizontal {
    width: 100%;
    flex-grow: 1;
}

.module-card-horizontal:hover {
    border-color: rgba(255, 233, 144, 0.3);
    transform: translateY(-5px);
    background: #151515;
}

.module-card-horizontal .card-number-circle {
    width: 45px;
    height: 35px;
    border: 1px solid #FFE990;
    border-radius: 8px;
    /* Rounded rectangle as per image */
    color: #FFE990;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0;
    flex-shrink: 0;
}

.module-card-horizontal .card-content {
    display: flex;
    flex-direction: column;
}

.module-card-horizontal h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.module-card-horizontal p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive Core Suite */
@media (max-width: 1024px) {
    .core-suite-row {
        grid-template-columns: 1fr;
    }

    .core-suite-row-centered {
        flex-direction: column;
    }

    .core-suite-row-centered .module-card-horizontal {
        width: 100%;
    }
}

/* ACADEMIC ENGINE */
#module-academic {
    background-color: #080808;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#module-academic .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.academic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .academic-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE NAVIGATION */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    /* Above overlay */
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

/* MOBILE NAVIGATION */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10002;
    /* ensure top */
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    /* Explicit white */
    transition: all 0.3s ease;
}

/* Hamburger animation state */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    /* Pure Black as requested */
    z-index: 10001;
    /* High z-index */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Submenu */
.mobile-dropdown-group {
    width: 100%;
    text-align: center;
}

.mobile-submenu {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    padding: 15px 0;
    background: rgba(255, 233, 144, 0.05);
    border-radius: 15px;
}

.mobile-submenu a {
    color: #888;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.mobile-submenu a:hover {
    color: var(--accent-gold-start);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
    text-align: left;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--accent-gold-start);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.mobile-btn {
    font-size: 1.2rem;
    padding: 12px 40px;
}

/* RESPONSIVE NAV MEDIA QUERIES */
/* RESPONSIVE NAV MEDIA QUERIES & LAYOUT FIXES (320px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-nav {
        padding: 15px;
        top: 15px;
    }

    .nav-container-pill {
        padding: 8px 15px 8px 20px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 10002;
    }

    /* Stack Grids for Tablet/Mobile */
    .transform-grid,
    .connectivity-grid,
    .academic-grid,
    .core-suite-row,
    .core-suite-row-centered,
    .grid-2-col,
    .footer-grid {
        grid-template-columns: 1fr !important;
        display: grid;
        /* Ensure grid behavior */
    }

    .core-suite-row-centered {
        flex-direction: column;
        /* Fallback if using flex */
        display: flex;
    }

    .core-suite-row-centered .module-card-horizontal {
        width: 100%;
    }

    /* Fix Hero Stacking */
    .hero {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 60px;
        overflow: visible;
    }

    .hero-content-left {
        position: relative;
        width: 100%;
        max-width: 100%;
        left: auto;
        bottom: auto;
        text-align: center;
        order: 1;
        padding: 0;
        margin-bottom: 30px;
    }

    .hero-content-left h1 {
        text-align: center;
        font-size: 2.8rem;
        /* Slightly larger but controlled */
        margin-bottom: 20px;
    }

    .hero-content-left p {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .hero-character-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: 40vh;
        order: 2;
        margin: 0 0 30px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-character {
        max-height: 100%;
        transform: none;
        /* Reset vertical offset */
    }

    .hero-headset {
        top: 10%;
        /* Adjust for mobile stacked view */
        width: 150px;
    }

    .hero-content-right {
        position: relative;
        width: 100%;
        max-width: 100%;
        right: auto;
        bottom: auto;
        text-align: center;
        order: 3;
        padding: 0;
    }

    .hero-content-right p {
        text-align: center;
    }

    /* Stakeholder Layout Fixes */
    .stakeholder-grid {
        display: flex;
        flex-direction: column !important;
        gap: 40px;
    }

    .stakeholder-card {
        padding: 30px;
        order: 1;
        /* Text first */
    }

    /* Ensure visual elements don't overlap on mobile */
    .mobile-visual-wrapper,
    .hero-character-wrapper {
        max-width: 100%;
        overflow: hidden;
    }

    .stakeholder-title {
        font-size: 2rem !important;
        padding: 0 15px;
    }
}

/* STAKEHOLDER SECTIONS */
.stakeholders-section {
    padding: 100px 0;
    background-color: #000;
}

.stakeholder-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.stakeholder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 100px;
}

.stakeholder-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stakeholder-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 233, 144, 0.2);
}

.card-icon-gold {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.stakeholder-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.stakeholder-card h4 {
    color: #FFC400;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.stakeholder-card p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-view-more {
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid #FFE990;
    color: #FFE990;
    padding: 10px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    display: inline-block;
    text-decoration: none;
}

.btn-view-more:hover {
    background: #FFE990;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 233, 144, 0.4);
}

.stakeholder-list {
    list-style: none;
    margin-bottom: 30px;
}

.stakeholder-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.stakeholder-list li::before {
    content: '•';
    color: #FFC400;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.2;
}

.stakeholder-list li strong {
    color: #fff;
}

.card-footer-quote {
    color: #DB9310;
    font-size: 0.9rem;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.student-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.student-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 233, 144, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(255, 233, 144, 0.2);
}

@media (max-width: 1024px) {
    .stakeholder-grid {
        grid-template-columns: 1fr;
    }
}


@media (min-width: 1025px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* NEW PREMIUM FOOTER */
.footer-new {
    /* background: #000; */
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.footer-top-curve {
    position: relative;
    width: 200%;
    left: -50%;
    height: 700px;
    background: #000;
    border-top: 1px solid rgba(255, 233, 144, 0.8);
    border-radius: 50% 50% 0 0;
    box-shadow: 0 -20px 80px rgba(255, 233, 144, 0.4);
    display: flex;
    justify-content: center;
    padding-top: 120px;
    margin-top: 120px;
    z-index: 5;
    margin-bottom: 0;
}

/* Atmospheric blending glow */
/* .footer-top-curve::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: radial-gradient(circle at 50% 100%, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
} */

.footer-brand-container {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

.footer-logo-circle {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.03);
}

.footer-logo-circle::after {
    content: '';
    position: absolute;
    width: 180%;
    height: 180%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    z-index: -1;
}

.footer-logo-circle::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.dots-rotator {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-radius: 50%;
    animation: rotateDots 15s linear infinite;
    z-index: 6;
}

@keyframes rotateDots {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.footer-logo-circle .logo-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFC400;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 12px #FFC400;
}

.footer-logo-circle .dot-left {
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-logo-circle .dot-right {
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-logo-circle img {
    max-width: 65%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: #FFE990;
    /* Golden color as per image */
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-subtitle {
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.footer-tagline {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-demo-glow {
    background: linear-gradient(180deg, #FFE990 0%, #DB9310 100%);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    box-shadow: 0 4px 15px rgba(219, 147, 16, 0.4);
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
}

.btn-demo-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(219, 147, 16, 0.6);
}

/* Directory Grid */
.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-info-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info-col p {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-info-col p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info-col p a:hover {
    color: #FFE990;
}

.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .footer-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-title {
        font-size: 2.8rem;
    }

    .footer-subtitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .footer-info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-top-curve {
        width: 200%;
        left: -50%;
        height: auto;
    }

    .smart-title {
        font-size: 2.5rem;
    }

    .smart-title span {
        display: block;
        font-size: 2.5rem;
    }
}

/* OLD FOOTER STYLES CLEANUP (optional, but good practice to remove if fully replaced) */
.footer {
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.footer-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.footer-neo-brand {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 15vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 0.8;
    z-index: 0;
}

.footer-character {
    position: relative;
    z-index: 1;
    max-height: 500px;
    mask-image: linear-gradient(to top, transparent, black 20%);
}

.footer-right h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.footer-sub {
    font-size: 2rem;
    color: var(--text-gray);
    font-weight: 300;
}

.cta-primary-footer {
    margin-top: 40px;
    margin-bottom: 60px;
    background: linear-gradient(90deg, var(--accent-gold-start), var(--accent-gold-end));
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.footer-links-row {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-gold-start);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    margin-top: 80px;
    color: darken(var(--text-gray), 20%);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    .grid-2-col,
    .transform-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-left {
        order: 2;
    }

    .footer-left {
        display: none;
    }

    /* Hide heavy graphic on mobile if needed, or adjust */
    .hero-content h1 {
        font-size: 3rem;
    }

    .footer-top-curve {
        margin-top: -50px;
    }

    .footer-info-grid {
        padding: 60px 25px;
    }

}

@media (max-width: 768px) {
    .hero-background-text {
        font-size: 20vw;
    }

    .section {
        padding: 60px 0;
    }

    .transform-grid {
        gap: 20px;
    }

    .footer-links-row {
        flex-direction: column;
        gap: 30px;
    }

    .footer-top-curve {
        margin-top: -90px;
    }

}

/* SPECIFIC SMALL MOBILE REFINEMENTS (320px - 450px) */
@media (max-width: 450px) {
    .container {
        padding: 0 15px;
        /* Tighter padding for narrow screens */
    }

    .footer-top-curve {
        margin-top: -112px;
    }

    .footer-info-grid {
        padding-top: 50px;
    }

    /* Text Resizing */
    .hero-content-left h1 {
        font-size: 1.6rem !important;
        /* Much smaller headline */
        line-height: 1.1;
    }

    .hero-content-left p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .hero-content-right p {
        font-size: 0.9rem;
    }

    .section-title h2,
    .transform-header h2,
    .footer-right h2 {
        font-size: 1.8rem !important;
        /* Unified smaller headings */
    }

    .footer-sub {
        font-size: 1.25rem;
    }

    .pill-label,
    .pill-label-small {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    /* Image & Wrapper Realignment */
    .hero {
        padding: 80px 15px 40px !important;
    }

    .hero-character-wrapper {
        height: 30vh !important;
        /* Scaled down for 320px-450px */
        margin: 10px 0 !important;
    }

    .hero-character {
        max-width: 80%;
        /* Ensure it doesn't hit edges */
    }

    .hero-headset {
        width: 80px !important;
        /* Small headset */
        top: 5% !important;
    }

    /* About Section Mobile Adjustments */
    .about-character {
        width: 100%;
        max-width: 250px;
        height: auto;
    }

    .feature-cards-container {
        overflow: hidden !important;
        display: flex !important;
        gap: 0 !important;
        padding-bottom: 0 !important;
    }

    .glass-card {
        min-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .feature-carousel-wrapper {
        width: 100%;
        position: relative;
    }

    /* End About Adjustments */

    .mobile-visual-wrapper {
        height: 100vh !important;
        /* Scale down the mobile graphic */
        margin: 20px 0;
    }

    .mobile-frame-img {
        height: 100%;
        width: 100%;
        position: relative;
        z-index: 2;
        display: block;
        object-fit: contain;
    }

    .neo-dialogue-bubble {
        min-width: 100px;
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .nav-logo img {
        height: 35px !important;
    }

    /* Layout & Spacing */
    .section {
        padding: 40px 0 !important;
        /* Reduced vertical spacing */
    }

    .glass-card,
    .module-card-large,
    .module-card-horizontal,
    .glass-card-dark {
        padding: 20px !important;
        /* Thinner padding */
    }

    .card-icon-box {
        width: 32px;
        height: 32px;
        margin-bottom: 12px;
    }

    .card-icon-box img {
        display: block;
        max-width: 100%;
    }

    .btn-outline-large,
    .btn-solid,
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        /* Full width buttons look better on tiny screens */
        display: block;
        margin-bottom: 10px;
    }

    .hero-background-text {
        font-size: 30vw !important;
        opacity: 0.03 !important;
    }
}

/* SPACE FOR FOOTER ARCH */
.stakeholders-section {
    padding-bottom: 250px;
    /* Space for footer arch */
}

@media (max-width: 1024px) {
    .stakeholders-section {
        padding-bottom: 50px;
    }
}

/* SCROLL TO TOP BUTTON */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFE990 0%, #DB9310 100%);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(219, 147, 16, 0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(219, 147, 16, 0.5);
}

.scroll-top-btn svg {
    transition: transform 0.3s ease;
}

.scroll-top-btn:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* LARGE DESKTOP SCALING (> 1800px) */
@media (min-width: 1800px) {
    .container {
        max-width: 1600px;
    }

    h1 {
        font-size: 3.5rem !important;
    }

    .section-title {
        font-size: 3.5rem !important;
    }

    .section-desc-center,
    .section-desc {
        font-size: 1.3rem !important;
        max-width: 900px;
    }

    #module-connectivity .section-title,
    #module-core-suite .section-title,
    #module-academic .section-title {
        font-size: 4.5rem !important;
    }
}

/* 

   TEACHER PAGE STYLES

   NEO | TrackMySchool

*/



.text-center {

    text-align: center;

}



/* Banner Section */

.teacher-banner {

    padding-top: 180px;

    padding-bottom: 100px;

    background: radial-gradient(circle at 70% 30%, rgba(219, 147, 16, 0.05) 0%, transparent 60%);

}



.banner-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}



.banner-content h1 {

    font-size: 3.8rem;

    line-height: 1.1;

    margin-bottom: 25px;

}



.banner-content p {

    font-size: 1.2rem;

    color: var(--text-gray);

    margin-bottom: 40px;

    line-height: 1.6;

}



.banner-image img {

    width: 100%;

    border-radius: 30px;

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);

    border: 1px solid rgba(255, 255, 255, 0.1);

}



/* NEO for Teachers Section */

.neo-teachers-section {

    padding: 120px 0;

}



.section-header {

    max-width: 800px;

    margin: 0 auto 80px;

}



.section-title {

    font-size: 2.5rem;

    margin-bottom: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

}



.gold-icon {

    color: var(--accent-gold-start);

}



.section-subtitle {

    font-size: 1.2rem;

    color: var(--text-gray);

    line-height: 1.6;

}



.neo-features-grid {

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 40px;

}



.neo-feature-card {

    background: rgba(255, 255, 255, 0.02);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 25px;

    padding: 50px;

    text-align: left;

}



.neo-feature-card h3 {

    font-size: 1.8rem;

    margin-bottom: 30px;

    color: var(--accent-gold-start);

}



.neo-feature-card ul {

    list-style: none;

}



.neo-feature-card ul li {

    font-size: 1.1rem;

    color: var(--text-gray);

    margin-bottom: 20px;

    position: relative;

    padding-left: 30px;

}



.neo-feature-card ul li::before {

    content: '•';

    position: absolute;

    left: 0;

    color: var(--accent-gold-start);

}



.neo-testimonial-card {

    background: rgba(255, 255, 255, 0.02);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 25px;

    padding: 50px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    text-align: left;

}



.quote-icon {

    font-size: 4rem;

    color: var(--accent-gold-start);

    opacity: 0.3;

    line-height: 1;

    margin-bottom: 10px;

}



.quote-text {

    font-size: 1.3rem;

    line-height: 1.6;

    margin-bottom: 30px;

    font-style: italic;

}



.quote-author {

    display: flex;

    align-items: center;

    gap: 15px;

}



.quote-author img {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    border: 2px solid var(--accent-gold-start);

}



.author-info strong {

    display: block;

    font-size: 1.1rem;

}



.author-info span {

    color: var(--text-gray);

    font-size: 0.9rem;

}



/* Wizard Section */

.wizard-section {

    padding: 100px 0;

}



.wizard-grid {

    display: grid;

    grid-template-columns: 350px 1fr;

    gap: 50px;

}



.wizard-tabs {

    display: flex;

    flex-direction: column;

    gap: 15px;

}



.wizard-tab {

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 15px;

    padding: 25px;

    cursor: pointer;

    transition: all 0.3s ease;

}



.wizard-tab h4 {

    font-size: 1.1rem;

    font-weight: 500;

}



.wizard-tab.active {

    background: linear-gradient(135deg, #FFE990 0%, #DB9310 100%);

    color: #000;

}



.wizard-content {
    background: transparent;
    border: none;
    padding: 0;
}



.tab-pane {

    display: none;

}



.tab-pane.active {

    display: block;

    animation: fadeIn 0.5s ease;

}



.tab-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}



.tab-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.feature-header {

    display: flex;

    align-items: center;

    border-left: 3px solid var(--accent-gold-start);

    padding-left: 15px;

    margin-bottom: 25px;

}

.tab-feature ul {
    margin-left: 0;
    list-style: none;
    padding: 0;
}

.tab-feature ul li {
    font-weight: 300;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.tab-feature ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 1.2rem;
}


.feature-header .icon {
    display: none;
}



.feature-header h5 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    color: #fff;
}



.tab-feature p {
    color: var(--text-gray);
    line-height: 1.5;
}

.tab-testimonial {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-testimonial .quote-icon {
    font-size: 3rem;
    margin-bottom: 5px;
}

.tab-testimonial .quote-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
    font-style: italic;
}

.tab-testimonial .author-info strong {
    color: var(--accent-gold-start);
    font-size: 1.1rem;
}

.tab-testimonial .author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}



/* FAQ Section */

.faq-section {

    padding: 120px 0;

}



.faq-title {

    font-size: 3rem;

    text-align: center;

    margin-bottom: 60px;

    color: var(--accent-gold-start);

}



.faq-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

}



.faq-item {

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 15px;

    margin-bottom: 20px;

    overflow: hidden;

    transition: all 0.3s ease;

}



.faq-question {

    padding: 25px;

    display: flex;

    align-items: center;

    gap: 15px;

    cursor: pointer;

    font-weight: 600;

    font-size: 1.1rem;

}



.faq-plus {

    font-size: 1.5rem;

    color: var(--accent-gold-start);

    flex-shrink: 0;

    min-width: 20px;

    text-align: center;

}



.faq-answer {

    padding: 0 25px 25px;

    display: none;

    color: var(--text-gray);

    line-height: 1.6;

}



.faq-item.active {

    background: rgba(219, 147, 16, 0.05);

    border-color: rgba(219, 147, 16, 0.2);

}



.faq-item.active .faq-answer {

    display: block;

}



/* CTA Reclaim Section */

.cta-reclaim-section {

    padding: 100px 0;

}



.cta-reclaim-card {

    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 40px;

    padding: 80px;

    overflow: hidden;

    position: relative;

}



.cta-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}



.cta-content h2 {

    font-size: 3.5rem;

    margin-bottom: 20px;

}



.cta-content p {

    font-size: 1.3rem;

    color: var(--text-gray);

    margin-bottom: 40px;

}



.cta-buttons {

    display: flex;

    gap: 20px;

}



.cta-image img {

    width: 100%;

    transform: scale(1.1);

}

@media (max-width: 768px) {
    .faq-section {
        padding-top: 20px;
    }

    .faq-grid {
        gap: 0px
    }
}


/* Testimonial Slider */

.testimonials-slider-section {

    padding: 120px 0;

    overflow: hidden;
    padding-bottom: 350px
}



.testimonials-slider-wrapper {

    margin-top: 60px;

    position: relative;

}



.testimonial-slider {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;

    perspective: 1000px;

}



.testimonial-card {

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 25px;

    padding: 40px;

    transition: all 0.5s ease;

}



.center-card {

    width: 600px;

    z-index: 5;

    background: rgba(255, 255, 255, 0.05);

    border-color: rgba(219, 147, 16, 0.3);

    transform: scale(1.1);

    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);

    position: relative;

}



.side-card {

    width: 400px;

    opacity: 0.4;

    filter: blur(2px);

}



.side-left {

    transform: translateX(50px) rotateY(15deg) scale(0.9);

}



.side-right {

    transform: translateX(-50px) rotateY(-15deg) scale(0.9);

}



.slider-arrows {

    display: flex;

    gap: 20px;

    margin-top: 40px;

    justify-content: center;

}



.slider-arrows button {

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.2);

    color: #fff;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    cursor: pointer;

    transition: all 0.3s ease;

    font-size: 1.2rem;

}



.slider-arrows button:hover {

    border-color: var(--accent-gold-start);

    color: var(--accent-gold-start);

}



/* Animations */

@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(10px);

    }



    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* Mobile Responsiveness */

@media (max-width: 1024px) {



    .banner-grid,

    .neo-features-grid,

    .wizard-grid,

    .faq-grid,

    .cta-grid {

        grid-template-columns: 1fr;

    }



    .banner-image,

    .cta-image {

        order: -1;

    }



    .center-card {

        width: 100%;

        transform: scale(1);

    }



    .side-card {

        display: none;

    }

}



@media (max-width: 768px) {

    .banner-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .banner-content p {
        font-size: 0.95rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    /* Fix footer dome overflow on mobile */
    .footer-new {
        overflow-x: hidden;
    }

    .footer-top-curve {
        width: 300%;
        left: -100%;
    }

    /* FAQ section mobile stacking */
    .faq-grid {
        grid-template-columns: 1fr !important;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-question {
        padding: 18px 20px !important;
        font-size: 1rem !important;
        gap: 15px !important;
    }

    .faq-question span:last-child:not(.faq-plus) {
        word-break: break-word;
    }

    .faq-plus {
        font-size: 1.4rem !important;
        flex-shrink: 0;
    }

    /* CTA section mobile */
    .cta-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .cta-reclaim-card {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons a {
        text-align: center;
        width: 100%;
    }

    /* Testimonials mobile */
    .testimonials-slider-wrapper {
        overflow: hidden;
    }

    .testimonial-slider {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        width: 100% !important;
        min-width: unset !important;
    }

    .testimonial-card.side-card {
        display: none;
    }

    .testimonial-card.center-card {
        width: 100% !important;
    }

    /* Tab features grid */
    .tab-features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .tab-feature {
        padding: 20px;
    }

    .tab-feature ul li {
        font-size: 0.9rem;
    }

    /* Section titles */
    .section-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .module-header h2 {
        font-size: 1.8rem;
    }

    /* Wizard section mobile padding */
    .wizard-section {
        padding: 60px 0;
    }

    /* Teacher banner section */
    .teacher-banner {
        padding-top: 100px;
    }

    .banner-image img {
        width: 100%;
        height: auto;
    }
}

/* Extra small mobile refinements (320px - 480px) */
@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    .faq-question {
        padding: 14px 15px !important;
        font-size: 0.9rem !important;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .testimonials-slider-section {
        padding: 40px 0;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* 
   HOME PAGE SPECIFIC STYLES
*/

/* 1. Hero Carousel */
.hero-carousel {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0s 0.8s;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease;
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-gold-start);
    border-color: var(--accent-gold-start);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--accent-gold-start);
}

/* Slide 1 Specifics: NEO */
.slide-neo {
    background: #000;
}


.bg-neo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24vw;
    font-weight: 900;
    color: #E6E6E6;
    /* Slightly dimmed to contrast with white mg text */
    line-height: .9;
    z-index: 1;
    pointer-events: none;
    letter-spacing: -2vw;
    /* Tighter tracking */
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2vw;
    /* Space between letters */
}

.bg-neo-text .gold-e {
    background: linear-gradient(180deg, #FFFFFF 20%, #FFC107 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.slide-neo-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    /* Align items to the bottom */
    gap: 150px;
    height: 100vh;
    padding-top: 100px;
    padding-bottom: 30px;
    /* Reduced to fit viewport */
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */
.neo-content-left {
    background: transparent;
    /* Removed card bg */
    padding: 0;
    border: none;
    text-align: left;
    padding-left: 20px;
}

.neo-main-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-gold-start);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    /* Added shadow for readability */
}

.neo-subtitle {
    font-size: 1rem;
    color: #fff;
    /* Brighter to stand out */
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 400px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    /* Strong shadow */
}

.btn-neo-action {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-neo-action:hover {
    border-color: var(--accent-gold-start);
    color: var(--accent-gold-start);
    background: rgba(0, 0, 0, 0.5);
    /* Darken bg on hover for contrast */
}

/* CENTER CHARACTER */
.neo-char-center {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: flex-end;
    /* Align character to bottom too */
}

.neo-char-center img {
    width: auto;
    max-width: 600px;
    height: auto;
    max-height: 70vh;
    /* Reduced from 85vh to fit */
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

/* RIGHT CONTENT */
.neo-content-right {
    background: transparent;
    /* Removed card bg */
    padding: 0;
    border: none;
    text-align: left !important;
    padding-right: 20px;
}

/* Override utility if needed or just styling */

.neo-product-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--accent-gold-start);
    /* Gold title */
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.neo-product-title span {
    color: #fff;
    /* "NEO" in white if desired or keep gold? Design shows gold title usually. */
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
}

.neo-product-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 400px;
}

.btn-neo-action-gold {
    background: transparent;
    border: 1px solid var(--accent-gold-start);
    color: var(--accent-gold-start);
    padding: 12px 30px;
    border-radius: 30px;
    /* Rounded pill */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-neo-action-gold:hover {
    background: var(--accent-gold-start);
    color: #000;
}

/* Slide 2 Specifics: Smart */
.slide-smart {
    background: #000 url('../assets/images/banner-second-bg.png') no-repeat center bottom;
    background-size: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.slide-smart-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 180px;
    /* CLEARANCE FOR NAVBAR */
}

.smart-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
}

.smart-title span {
    display: block;
    font-size: 3.5rem;
    margin-top: 5px;
    color: #FFC107;
}

.smart-desc {
    font-size: 1rem;
    color: #ccc;
    max-width: 1200px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-align: center;

}

.smart-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-gold-pill {
    background: #FFC107;
    /* Brighter gold */
    color: #000;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.3s;
    text-decoration: none;
}

.btn-gold-pill:hover {
    transform: scale(1.05);
}

.btn-white-pill {
    background: #f0f0f0;
    color: #000;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.3s;
    text-decoration: none;
}

.btn-white-pill:hover {
    transform: scale(1.05);
}

.monitor-display {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.monitor-image {
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 50vh;
    /* Ensure it fits */
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateX(5deg);
    /* Slight tilt */
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.monitor-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.info-glass {
    position: absolute;
    width: 260px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 16px;
    z-index: 5;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.info-glass:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 193, 7, 0.5);
}

.glass-left {
    bottom: 20%;
    left: 0;
}

.glass-right {
    bottom: 20%;
    right: 0;
}

.info-glass p {
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .slide-smart-content {
        padding-top: 100px;
        justify-content: flex-start;
    }

    .monitor-display {
        flex-direction: column;
    }

    .monitor-image {
        width: 90%;
        max-height: 40vh;
    }

    .info-glass {
        position: relative;
        width: 80%;
        margin: 10px auto;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .glass-left,
    .glass-right {
        transform: none;
    }
}


@media (max-width: 1100px) {
    .neo-main-title {
        font-size: 2.5rem;
    }

    .bg-neo-text {
        font-size: 40vw;
    }

    .glass-left {
        left: 0;
    }

    .glass-right {
        right: 0;
    }

    .info-glass {
        position: relative;
        top: 0;
        transform: none;
        margin: 20px auto;
        width: 100%;
        max-width: 400px;
    }

    .monitor-display {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .slide-neo-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .neo-content-right {
        text-align: center;
    }

    .smart-title {
        font-size: 2.5rem;
    }

    .smart-title {
        font-size: 2.5rem;
    }

    .smart-title span {
        display: block;
        font-size: 2rem;
    }

    .monitor-display {
        display: none;
    }

    .slide-smart {
        background-position: center 500px;
    }

    .slide-neo-layout {
        padding-top: 110px;
    }

    .scroll-indicator-text {
        display: none;
    }
}


/* 2. School Solutions (Horizontal Parallax) */
.solutions-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.solutions-parallax-container {
    display: flex;
    gap: 40px;
    padding: 60px 0;
    width: max-content;
    will-change: transform;
}

.solution-card {
    min-width: 380px;
    height: 280px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.solution-card:nth-child(even) {
    transform: translateY(40px);
}

.solution-card h3 {
    color: var(--accent-gold-start);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.solution-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(219, 147, 16, 0.3);
}

/* 3. Platforms Section */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* 4. Awards & Counters */
.awards-section {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(219, 147, 16, 0.05) 0%, transparent 70%);
}

.counters-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-circle {
    width: 180px;
    height: 180px;
    border: 1px dashed rgba(219, 147, 16, 0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.02);
}

.counter-circle .number-wrap {
    display: flex;
    align-items: baseline;
}

.counter-circle .number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}

.counter-circle .plus {
    color: var(--accent-gold-start);
    font-size: 1.8rem;
    margin-left: 5px;
}

.counter-label {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 5. Client Logos */
.clients-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 60px;
    align-items: center;
}

.logo-item {
    text-align: center;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.logo-item img {
    max-width: 140px;
    height: auto;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.4s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .counters-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .counters-grid {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .solutions-parallax-container {
        padding: 40px 20px;
    }

    .solution-card {
        min-width: 300px;
    }
}

/* Animations for Slides */
.carousel-slide.active .neo-main-title,
.carousel-slide.active .neo-subtitle,
.carousel-slide.active .btn-neo-action {
    animation: fadeInUp 0.8s ease forwards;
}

.carousel-slide.active .neo-main-title {
    animation-delay: 0.2s;
    opacity: 0;
}

.carousel-slide.active .neo-subtitle {
    animation-delay: 0.4s;
    opacity: 0;
}

.carousel-slide.active .btn-neo-action {
    animation-delay: 0.6s;
    opacity: 0;
}

.carousel-slide.active .neo-char-center img {
    animation: scaleIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

.carousel-slide.active .neo-product-title,
.carousel-slide.active .neo-product-desc,
.carousel-slide.active .btn-neo-action-gold {
    animation: fadeInUp 0.8s ease forwards;
}

.carousel-slide.active .neo-product-title {
    animation-delay: 0.4s;
    opacity: 0;
}

.carousel-slide.active .neo-product-desc {
    animation-delay: 0.6s;
    opacity: 0;
}

.carousel-slide.active .btn-neo-action-gold {
    animation-delay: 0.8s;
    opacity: 0;
}

.carousel-slide.active .bg-neo-text {
    animation: neoHeroReveal 1.5s ease-out forwards;
    opacity: 0;
}

/* Slide 2 Animations */
.carousel-slide.active .smart-title,
.carousel-slide.active .smart-desc,
.carousel-slide.active .smart-cta {
    animation: fadeInUp 0.8s ease forwards;
}

.carousel-slide.active .smart-title {
    animation-delay: 0.2s;
    opacity: 0;
}

.carousel-slide.active .smart-desc {
    animation-delay: 0.4s;
    opacity: 0;
}

.carousel-slide.active .smart-cta {
    animation-delay: 0.6s;
    opacity: 0;
}

.carousel-slide.active .monitor-image {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.carousel-slide.active .glass-left {
    animation: slideRightIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.carousel-slide.active .glass-right {
    animation: slideLeftIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes neoHeroReveal {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }

    to {
        opacity: 1;
        /* Fully visible */
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes slideRightIn {
    from {
        opacity: 0;
        transform: translate(-100px, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

/* SECTION 4 SPECIAL: Full Width Solutions */
.solutions-full-section {
    position: relative;
    padding: 100px 0;
    /* Reduced padding */
    min-height: 100vh;
    /* Ensure full screen */
    overflow: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0px !important;
}



.bg-el-1 {
    position: absolute;
    top: -50px;
    right: 0;
    width: auto;
    /* Use exact size */
    max-width: 800px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    /* Full visibility */
}

.bg-el-2 {
    position: absolute;
    top: 152px;
    right: 5%;
    width: auto;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.text-nowrap {
    white-space: nowrap;
}

.solutions-header-grid {
    display: grid;
    grid-template-columns: 200px 1fr 300px;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.pill-label-simple {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
}

.dot-gold {
    width: 8px;
    height: 8px;
    background: var(--accent-gold-start);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold-start);
}

.solutions-desc {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 500px;
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: right;
    position: relative;
    display: inline-block;
}

.gold-square {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--accent-gold-start);
    margin-left: 5px;
}

/* Utility Classes */
.relative {
    position: relative;
}

.z-2 {
    z-index: 2;
}

.full-scroll-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /* Break out of container */
    overflow-x: hidden;
    /* Changed from auto to hidden for GSAP control */
    padding-bottom: 40px;
    scroll-behavior: smooth;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.full-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.full-scroll-track {
    display: flex;
    gap: 30px;
    padding: 0 5vw;
    /* Start padding */
    width: max-content;
}

.solution-card-large {
    width: 350px;
    height: 250px;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
}

.solution-card-large:hover {
    transform: translateY(-10px);
    background: #161616;
    border-color: #333;
}

/* Staggered look */
.card-raised {
    margin-top: 50px;
}

.card-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold-start);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-start);
    margin-bottom: 20px;
}

.solution-card-large h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.solution-card-large p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .solutions-header-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .solutions-title {
        text-align: center;
    }

    .bg-el-1 {
        width: 300px;
        opacity: 0.4;
    }
}

/* SECTION 3 SPECIAL: Become The School */
.become-school-section {
    position: relative;
    padding: 80px 0;
    /* Reduced padding to fit 100vh */
    min-height: 100vh;
    background: #080808;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.become-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.char-col {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
}

.char-col img {
    max-height: 80vh;
    width: auto;
    filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.5));
}

.content-col {
    flex: 1;
    overflow: hidden;
    /* Important for horizontal scroll pinning */
}



.become-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 60px;
    margin-top: 110px;
}

.white-text {
    color: #fff;
}

/* Horizontal Scroll Area */
.horizontal-scroll-wrapper {
    width: 100%;
    margin-bottom: 60px;
}

.cards-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* Allows horizontal expansion */
}

.feature-card-dark {
    width: 300px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card-dark:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold-start);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon-gold {
    color: var(--accent-gold-start);
    margin-bottom: 25px;
    background: rgba(219, 147, 16, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(219, 147, 16, 0.3);
}

.feature-card-dark h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #fff;
}

.feature-card-dark p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

.btn-meet-neo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 1px solid var(--accent-gold-start);
    border-radius: 30px;
    color: var(--accent-gold-start);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-meet-neo:hover {
    background: var(--accent-gold-start);
    color: #000;
    gap: 15px;
}

.scroll-indicator-text {
    position: absolute;
    bottom: 30px;
    right: 50px;
    color: var(--accent-gold-start);
    font-size: 0.9rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@media (max-width: 991px) {
    .become-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .char-col {
        flex: 0 0 auto;
    }

    .char-col img {
        max-height: 50vh;
    }

    .become-title {
        font-size: 2rem;
    }

    /* On mobile, standard horizontal scroll, no pin needed usually */
    .cards-track {
        overflow-x: auto;
        padding-bottom: 20px;
    }
}

@keyframes slideLeftIn {
    from {
        opacity: 0;
        transform: translate(100px, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@media (max-width: 768px) {
    .card-icon-gold {
        margin: auto;
        margin-bottom: 20px;
    }
}

/* Scroll Indicator Text */
.scroll-indicator-text {
    position: absolute;
    bottom: 30px;
    right: 30px;
    /* Moved to right */
    left: auto;
    transform: none;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator-text:hover {
    color: #fff;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Ensure all major sections are full height on desktop */
@media (min-width: 992px) {

    .section,
    .stakeholders-section,
    .testimonials-section,
    #platforms,
    #testimonials,
    #faq {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 100px 0;
        padding-bottom: 40px;
    }

    /* Exceptions for specific layouts inside */
    .stakeholders-section .container,
    #platforms .container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}


/* === PLATFORMS REDESIGN v2 === */
.platforms-redesign {
    background-color: #080808;
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.platforms-header-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.ph-desc {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ph-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ph-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #aaa;
}

.ph-list li::before {
    content: "•";
    color: var(--accent-gold-start);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Tabs Layout */
.platform-tabs-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.platform-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 250px;
}

.platform-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 18px 25px;
    text-align: left;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

.platform-tab.active {
    background: linear-gradient(135deg, var(--accent-gold-start), var(--accent-gold-end));
    color: #000;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2);
}

.platform-content-area {
    flex: 1;
}

.platform-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.platform-pane.active {
    display: block;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.platform-card-dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.platform-card-dark:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 193, 7, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-start);
}

.platform-card-dark h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.platform-card-dark p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .platform-tabs-wrapper {
        flex-direction: column;
    }

    .platform-tabs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }

    .platform-tab {
        flex: 1;
        text-align: center;
        white-space: nowrap;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }
}

/* === SECTION 6: WHY CHOOSE US (Redesign) === */
.why-choose-us-section {
    background: radial-gradient(circle at 50% 10%, rgba(255, 184, 0, 0.12) 0%, rgba(255, 184, 0, 0.04) 40%, #050505 80%);
    background-color: #050505;
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.wcu-header-main {
    margin-bottom: 80px;
}

.wcu-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Ecosystem Grid */
.ecosystem-cards-wrapper {
    margin-bottom: 100px;
}

.eco-row-top {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.eco-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.eco-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 193, 7, 0.3);
}

.eco-label-sm {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 15px;
    font-weight: 600;
}

.eco-text {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.eco-card-full {
    width: 100%;
    padding: 50px;
}

.eco-text-large {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
}

.eco-subtext {
    font-size: 0.95rem;
    color: #888;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.6;
}

.eco-tagline {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: #aaa;
    letter-spacing: 0.5px;
}

/* Benefits Grid */
.benefits-wrapper {
    margin-bottom: 100px;
    padding-top: 50px;
    border-top: solid 1px #333;
}

.benefits-header {
    margin-bottom: 60px;
}

.ben-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.ben-subtitle {
    font-size: 1.2rem;
    color: var(--accent-gold-start);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.ben-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.ben-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold-start);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-start);
    font-size: 1rem;
}

.ben-card-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.ben-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ben-list li {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
    line-height: 1.5;
}

.ben-list li::before {
    content: "•";
    color: var(--accent-gold-start);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .ben-card-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Why NEO Box */
.why-neo-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 60px;
    position: relative;
}

.why-neo-title {
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #fff;
}

.why-neo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 193, 7, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-start);
    flex-shrink: 0;
}

.why-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

.gold-bar {
    width: 100px;
    height: 4px;
    background: var(--accent-gold-start);
    margin: 50px auto 0;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .eco-row-top {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .why-neo-grid {
        grid-template-columns: 1fr;
    }

    .why-neo-box {
        padding: 30px;
    }
}

/* === SECTION 7: ABOUT US === */
.about-us-section {
    background-color: #0d0d0d;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.about-bg-net {
    position: absolute;
    bottom: -100px;
    left: -100px;
    opacity: 0.15;
    z-index: 0;
    max-width: 600px;
}

.about-bg-net img {
    width: 100%;
    height: auto;
}

.about-header {
    margin-bottom: 80px;
    border-bottom: none;
    flex-wrap: nowrap;
}

.about-header .ph-left {
    flex: 0 0 15%;
}

.about-header .ph-center {
    flex: 0 0 60%;
}

.about-header .ph-right {
    flex: 0 0 20%;
}

.about-header .ph-desc {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.8;
}

.home-about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.relative-z {
    position: relative;
    z-index: 10;
}

.home-about-left {
    flex: 1;
    max-width: 450px;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-main-text {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border: 1px solid var(--accent-gold-start);
    border-radius: 50px;
    color: var(--accent-gold-start);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    width: fit-content;
    white-space: nowrap;
}

.btn-outline-pill:hover {
    background: var(--accent-gold-start);
    color: #000;
}

.home-about-right {
    flex: 1.2;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-end;
}

.home-about-img {
    width: 45%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

/* Offset the first image slightly down to match the design */
.home-about-img:first-child {
    transform: translateY(40px);
}

.home-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 3 / 4;
}

@media (max-width: 991px) {
    .about-header {
        flex-wrap: wrap;
    }

    .about-header .ph-left,
    .about-header .ph-center,
    .about-header .ph-right {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .home-about-content {
        flex-direction: column;
    }

    .home-about-left {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .home-about-right {
        justify-content: center;
    }

    .home-about-img:first-child {
        transform: translateY(20px);
    }
}

@media (max-width: 768px) {
    .about-header {
        margin-bottom: 0;
    }

    .home-about-left {
        padding-top: 5px;
    }
}

/* === SECTION 8: AWARDS & ACHIEVEMENTS === */
.awards-achievements-section {
    background-color: #080808;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.awards-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.awards-left {
    flex: 0 0 35%;
    position: relative;
}

.awards-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 2;
}

.awards-star-img {
    position: absolute;
    top: 100%;
    left: -40px;
    width: 150px;
    height: auto;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
    margin-top: 30px;
}

.awards-right {
    flex: 0 0 60%;
    position: relative;
    padding-top: 50px;
}

.awards-right-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}

.awards-right-top-line::before {
    content: "";
    position: absolute;
    left: 0px;
    top: -2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}

.awards-counters {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

.award-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* Simulate the faint circular border/progress ring effect shown in design */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.award-circle:hover {
    box-shadow: inset 0 0 0 1px rgba(255, 193, 7, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.award-circle .num-wrap {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.award-circle .num-label {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
    text-align: center;
}

.awards-desc {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.7;
    max-width: 800px;
    margin: 0;
}

@media (max-width: 991px) {
    .awards-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .awards-right {
        width: 100%;
        margin-top: 40px;
    }

    .awards-counters {
        flex-wrap: wrap;
        justify-content: center;
    }

    .award-circle {
        width: 180px;
        height: 180px;
    }
}

/* === SECTION 8 (New): HAPPY CLIENTS REDESIGN === */
.clients-redesign-section {
    background-color: #0d0d0d;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.clients-title-box {
    text-align: center;
    margin-bottom: 70px;
    z-index: 2;
    position: relative;
}

.clients-title-box .section-title {
    font-size: 3rem;
    font-weight: 700;
}

.clients-subtitle {
    max-width: 900px;
    margin: 20px auto 0;
    font-size: 0.95rem;
    color: #999;
    line-height: 1.7;
}

/* Grid Wrapper */
.custom-clients-grid-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
}

/* Mesh Lines via Absolute Divs */
.grid-hline,
.grid-vline {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.grid-hline {
    height: 1px;
    left: -50px;
    right: -50px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 15%, rgba(255, 255, 255, 0.15) 85%, rgba(255, 255, 255, 0) 100%);
}

.grid-vline {
    width: 1px;
    top: -50px;
    bottom: -50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 15%, rgba(255, 255, 255, 0.15) 85%, rgba(255, 255, 255, 0) 100%);
}

.grid-hline.hline-1 {
    top: 33.333%;
}

.grid-hline.hline-2 {
    top: 66.666%;
}

.grid-vline.vline-1 {
    left: 25%;
}

.grid-vline.vline-2 {
    left: 50%;
}

.grid-vline.vline-3 {
    left: 75%;
}

/* The 12 Logos container */
.custom-clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    position: relative;
    z-index: 2;
}

.c-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    height: 180px;
    transition: all 0.3s ease;
}

.c-logo-box:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.c-logo-box img {
    max-width: 110px;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.c-logo-box:hover img {
    transform: scale(1.05);
}

/* Dots Overlay at Line Intersections */
.grid-dots-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.grid-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #555;
    /* Base dim grey */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

@media (max-width: 991px) {
    .grid-hline {
        left: 0;
        right: 0;
    }

    .grid-vline {
        top: 0;
        bottom: 0;
    }

    .custom-clients-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }

    .grid-vline.vline-1 {
        left: 50%;
    }

    .grid-vline.vline-2 {
        display: none;
    }

    .grid-vline.vline-3 {
        display: none;
    }

    .grid-hline.hline-1 {
        top: 16.666%;
    }

    .grid-hline.hline-2 {
        top: 33.333%;
    }

    /* Will need more lines for mobile dynamically or hide lines if too complex. Best to hide grid lines on mobile for simplicity */
    .grid-hline,
    .grid-vline,
    .grid-dots-layer {
        display: none;
    }

    .c-logo-box {
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* === SECTION 9 (New): FAQ REDESIGN === */
.faq-redesign-section {
    background-color: #080808;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.faq-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* FAQ Item Styling */
.faq-item {
    background: #181818;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #1c1c1c;
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    background: #1e1e1e;
    border-color: rgba(255, 184, 0, 0.2);
    /* Subtle glow for the active card */
    box-shadow: 0 5px 20px -5px rgba(255, 184, 0, 0.05);
}

/* Question area */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 24px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    color: #e0e0e0;
    transition: color 0.3s;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    transition: color 0.3s;
}

.faq-plus {
    /* margin-right: 20px; */
    font-size: 1.5rem;
    line-height: 1;
    font-family: monospace;
    color: #fff;
    font-weight: 300;
    transition: color 0.3s;
}

.faq-item.active .faq-question h4,
.faq-item.active .faq-plus {
    color: var(--accent-gold-start);
}

/* Answer area (using grid for sliding transition) */
.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer {
    overflow: hidden;
    padding: 0 24px 0 54px;
    /* aligned with text, accommodating the plus sign width */
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

.faq-answer ul {
    list-style: none;
    padding: 15px 0 0 0;
    margin: 0;
}

.faq-answer li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    color: #999;
}

.faq-answer li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-gold-start);
    border-radius: 50%;
}

/* FLOATING COINS & GLOWS */
.faq-coin-wrap {
    position: absolute;
    z-index: 10;
    pointer-events: none;
}

.faq-coin-wrap.left {
    top: 35%;
    left: calc(50% - 680px);
    /* Positioned outside the container */
}

.faq-coin-wrap.right {
    top: 65%;
    right: calc(50% - 680px);
}

.faq-coin {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Bright gold 3D gradient */
    background: radial-gradient(circle at 30% 30%, #ffd000, #ff8c00);
    box-shadow:
        inset -3px -3px 8px rgba(0, 0, 0, 0.3),
        inset 3px 3px 10px rgba(255, 255, 255, 0.7),
        0 8px 20px rgba(255, 184, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.faq-coin-wrap.left .faq-coin {
    transform: perspective(400px) rotateY(15deg) rotateX(10deg);
}

.faq-coin-wrap.right .faq-coin {
    transform: perspective(400px) rotateY(-15deg) rotateX(10deg);
}

.faq-coin-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.25) 0%, rgba(255, 184, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Overriding large blur for left coin as shown in design */
.faq-coin-wrap.left .faq-coin-glow {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.35) 0%, rgba(255, 184, 0, 0) 70%);
}

.faq-coin-wrap.right .faq-coin-glow {
    width: 300px;
    height: 300px;
}

@media (max-width: 1400px) {
    .faq-coin-wrap.left {
        left: -20px;
    }

    .faq-coin-wrap.right {
        right: -20px;
    }
}

/* Hide Mobile UI Defaults on Desktop */
.mobile-menu-btn,
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 991px) {
    .faq-grid-new {
        grid-template-columns: 1fr;
    }

    .faq-coin-wrap {
        display: none;
    }

    /* ==== COMPREHENSIVE MOBILE RESPONSIVENESS FIXES ==== */

    /* 1. Header & Navigation Fixes */
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .nav-links,
    .nav-actions,
    .desktop-only {
        display: none !important;
    }

    /* Show mobile hamburger menu button */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        width: 35px !important;
        height: 25px !important;
        min-width: 35px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1000;
        margin-left: auto;
    }

    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-white);
        border-radius: 2px;
        transition: all 0.3s linear;
        transform-origin: 1px;
    }

    /* Hamburger Animation States */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    /* Mobile Menu Overlay Styles */
    .mobile-menu-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        /* Take full width on mobile for cleaner look */
        height: 100vh;
        background-color: #080808;
        padding-top: 120px;
        z-index: 1001;
        transition: right 0.4s ease;
        overflow-y: auto;
    }

    .mobile-menu-overlay.active {
        right: 0;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 30px;
    }

    .mobile-link {
        color: var(--text-white);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        transition: color 0.3s;
    }

    .mobile-link.active,
    .mobile-link:hover {
        color: var(--accent-gold-start);
    }

    .mobile-dropdown-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .mobile-submenu {
        display: none;
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        border-left: 1px solid rgba(255, 184, 0, 0.3);
    }

    .mobile-submenu a {
        color: #ddd;
        text-decoration: none;
        font-size: 0.95rem;
    }

    /* 2. Hero Section Mobile Fixes */
    .neo-main-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .bg-neo-text {
        display: none;
    }

    .slide-neo-layout {
        flex-direction: column-reverse;
        /* Put content above char */
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .neo-char-right {
        margin-top: 50px;
    }

    .neo-char-right img {
        max-width: 80%;
    }

    .neo-char-center {
        display: none;
    }

    /* 3. Button Stacking for mobile */
    .btn-neo-action,
    .btn-secondary-action {
        width: 100%;
        display: block;
        box-sizing: border-box;
    }

    .btn-neo-action {
        margin-bottom: 15px;
    }

    /* Feature grids (Management & Teachers) horizontal overflow */
    .management-content,
    .teacher-content {
        padding: 20px 0;
    }

    /* Awards counters horizontal crunch */
    .awards-counters {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .award-divider-line {
        width: 100%;
        height: 1px;
    }

    /* 4. Fix Cards Track & Horizontal Scrolling Overflows */
    .cards-track {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .feature-card-dark {
        width: 100%;
    }

    .solutions-header-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .pill-label-simple {
        margin: 0 auto;
    }

    .solutions-desc {
        text-align: center;
        max-width: 100%;
    }

    .full-scroll-wrapper {
        overflow-x: auto;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
    }

    .full-scroll-track {
        width: auto !important;
        /* Override inline styles if any */
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .solution-card-large {
        scroll-snap-align: center;
        min-width: 85vw;
        /* Make cards fit screen width to allow swiping */
    }
}

@media (max-width: 767px) {

    /* Hard mobile tweaks */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 15px;
    }

    .btn-hero-solid,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
    }

    .neo-main-title {
        font-size: 2rem !important;
    }

    .become-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
        margin-top: 40px;
    }

    .smart-title,
    .wcu-title,
    .awards-title,
    .section-title,
    .solutions-title {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }

    .section-title {
        flex-flow: column;
    }

    .nav-container-pill {
        padding: 5px 15px;
        /* Recover margin for very small edges */
    }

    .become-school-section {
        min-height: auto;
        padding: 60px 0;
    }

    .bg-neo-text {
        display: none;
    }

    .c-logo-box img {
        max-width: 80px;
        max-height: 60px;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand-container {
        padding: 40px 15px;
    }

    .footer-title {
        font-size: 2rem;
    }
}

/* =========================================
   ABOUT PAGE CUSTOM STYLES
   ========================================= */
.bg-banner {
    background: url('../assets/images/tms-about-banner.png') center/cover no-repeat;
    position: relative;
    padding: 160px 0 80px;
}

.bg-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(10, 10, 10, 1) 100%); */
    z-index: 1;
}

.bg-banner .container {
    position: relative;
    z-index: 2;
}

.about-us-label {
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 500;
}

.about-page-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #fff;
}

.about-hero-desc {
    font-size: 1.05rem;
    color: #cecece;
    line-height: 1.6;
}

.about-mission-vision {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.mv-card {
    padding: 40px;
    border-radius: 12px;
}

.mv-icon {
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.mv-card p {
    color: #aaa;
    line-height: 1.6;
}

.about-mid-text {
    width: 100%;
    margin: 0 auto;
    color: #cecece;
    font-size: 1.1rem;
    line-height: 1.7;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.about-systems-section {
    padding: 60px 0 100px;
}

.system-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.system-col-text,
.system-col-img {
    flex: 1;
}

.system-col-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.system-logo-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.system-desc {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.standalone-box {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(255, 233, 144, 0.1);
    border-radius: 16px;
    padding: 60px 40px;
    margin-top: 80px;
}

.value-drivers-section {
    padding: 80px 0;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.driver-card {
    padding: 30px;
    border-radius: 12px;
}

.driver-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(255, 196, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.driver-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #fff;
}

.driver-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-outcomes-section {
    padding: 80px 0;
}

.outcomes-banner-wrapper {
    margin-bottom: 40px;
    width: 100%;
    position: relative;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.outcomes-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.outcomes-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.outcomes-banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.outcomes-desc-bottom {
    font-size: 1.15rem;
    color: #eeeeee;
    margin-bottom: 50px;
    font-weight: 400;
    text-align: left;
}

@media (max-width: 768px) {
    .outcomes-banner-title {
        font-size: 2rem;
    }

    .outcomes-desc-bottom {
        font-size: 1rem;
    }
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.outcome-card {
    padding: 30px;
    border-radius: 12px;
}

.outcome-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.outcome-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 196, 0, 0.05);
    border: 1px solid rgba(255, 196, 0, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.outcome-card h3 {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
    text-align: left;
}

.outcome-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcome-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.outcome-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #FFC400;
    box-shadow: 0 0 5px rgba(255, 196, 0, 0.5);
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 1px;
}

@media(max-width: 991px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .system-row {
        flex-direction: column;
    }

    .system-row.reverse-mobile {
        flex-direction: column-reverse;
    }

    .drivers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 767px) {
    .drivers-grid {
        grid-template-columns: 1fr;
    }

    .about-page-title {
        font-size: 2.2rem;
    }
}

/* =========================================
   ERP PAGE CUSTOM STYLES
   ========================================= */

.bg-erp-banner {
    background: radial-gradient(circle at top left, rgba(255, 196, 0, 0.1), transparent 50%),
        radial-gradient(circle at bottom right, rgba(255, 196, 0, 0.05), transparent 40%);
    position: relative;
    padding: 160px 0 80px;
}

.erp-hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.erp-hero-left {
    flex: 1;
    max-width: 600px;
}

.erp-hero-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.erp-page-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.erp-hero-desc {
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.erp-hero-image-wrap {
    position: relative;
    display: inline-block;
}

.erp-hero-rating {
    position: absolute;
    bottom: -25px;
    left: 40px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.rating-icon {
    width: 44px;
    height: 44px;
    background: #FFC400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rating-icon svg {
    width: 22px;
    height: 22px;
    fill: #111;
}

.rating-text {
    display: flex;
    flex-direction: column;
}

.rating-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    line-height: 1.2;
}

.rating-value {
    font-size: 1.1rem;
    color: #111;
    font-weight: 700;
    line-height: 1.2;
}

.erp-hero-image-wrap img {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.erp-highlight-card {
    background: #FFC400;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    color: #111;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.erp-stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.erp-stat-item h2 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
}

.erp-stat-item h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.erp-stat-item p {
    margin: 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #333;
}

.erp-stat-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
}

.erp-stat-item .stat-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-erp-contact {
    background: #111;
    color: #FFC400;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-erp-contact:hover {
    background: #222;
    color: #FFC400;
}

/* Features */
.erp-features-section {
    padding: 80px 0;
}

.features-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 196, 0, 0.4);
    color: #aaa;
    padding: 8px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #FFC400;
    color: #111;
    border-color: #FFC400;
}

.erp-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.erp-feature-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s;
}

.erp-feature-card:hover {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 196, 0, 0.2);
}

.erp-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 196, 0, 0.05);
    border: 1px solid rgba(255, 196, 0, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.erp-feature-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.erp-feature-card p {
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Transform Section */
.erp-transform-section {
    padding: 80px 0;
}

.transform-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.transform-left {
    padding: 60px 40px 60px 60px;
    flex: 1;
}

.transform-left h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.transform-left p {
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.transform-actions {
    display: flex;
    gap: 20px;
}

.transform-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding: 20px 20px 20px 0;
}

.transform-right img {
    height: 100%;
    max-height: 350px;
    border-radius: 16px;
    object-fit: cover;
}

@media(max-width: 1200px) {
    .erp-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 991px) {
    .erp-hero-flex {
        flex-direction: column;
    }

    .erp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .erp-highlight-card {
        max-width: 100%;
    }

    .erp-hero-left {
        max-width: 100%;
    }

    .transform-card {
        flex-direction: column;
    }
}

@media(max-width: 767px) {
    .erp-features-grid {
        grid-template-columns: 1fr;
    }

    .transform-left {
        padding: 40px 20px;
        text-align: center;
    }

    .transform-actions {
        flex-direction: column;
        align-items: center;
    }

    .transform-right img {
        max-width: 100%;
    }

    .transform-right {
        padding: 20px
    }
}

/* =========================================
   CONTACT PAGE CUSTOM STYLES
   ========================================= */

.contact-page-section {
    padding: 160px 0 80px;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-subtitle {
    color: #888;
    font-size: 1rem;
}

.contact-form-wrapper {
    display: flex;
    gap: 0;
    margin-bottom: 60px;
    background: #0f0f0f;
    border-radius: 20px;
    overflow: hidden;
}

.contact-image-col {
    flex: 0 0 45%;
}

.contact-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form-col {
    flex: 1;
    padding: 50px 60px;
    background: #141414;
}

.tms-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tms-contact-form .form-row {
    display: flex;
    gap: 30px;
}

.tms-contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tms-contact-form label {
    font-size: 0.85rem;
    color: #bbb;
    margin-bottom: 10px;
}

.tms-contact-form input,
.tms-contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95rem;
    padding: 10px 0;
    font-family: inherit;
    transition: all 0.3s ease;
}

.tms-contact-form input:focus,
.tms-contact-form textarea:focus {
    outline: none;
    border-bottom-color: #FFC400;
}

.interest-group {
    margin-top: 10px;
}

.radio-group-wrap {
    display: flex;
    gap: 20px;
}

.custom-radio {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.custom-radio input:checked~.radio-content {
    background: rgba(255, 196, 0, 0.05);
    border-color: rgba(255, 196, 0, 0.2);
}

.radio-mark {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #555;
    position: relative;
    flex-shrink: 0;
}

.custom-radio input:checked~.radio-content .radio-mark {
    border-color: #FFC400;
}

.custom-radio input:checked~.radio-content .radio-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFC400;
}

.radio-text {
    display: flex;
    flex-direction: column;
}

.radio-text strong {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
}

.radio-text span {
    font-size: 0.75rem;
    color: #888;
}

.btn-submit-full {
    background: #FFC400;
    color: #111;
    border: none;
    border-radius: 30px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-submit-full:hover {
    background: #e6b000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 196, 0, 0.2);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.contact-detail-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.card-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-title-row .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 196, 0, 0.1);
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: #FFC400;
}

.card-title-row h4 {
    color: #FFC400;
    font-size: 1.05rem;
    margin: 0;
    font-weight: 600;
}

.contact-detail-card .company-name {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.contact-detail-card .company-address {
    color: #bbb;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-detail-card .contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-detail-card .contact-links a {
    color: #FFC400;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.contact-detail-card .contact-links a:hover {
    color: #fff;
}

@media(max-width: 1024px) {
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .contact-form-wrapper {
        flex-direction: column;
    }

    .tms-contact-form .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .radio-group-wrap {
        flex-direction: column;
        gap: 15px;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-col {
        padding: 40px 30px;
    }
}

/* =========================================
   TMS MULTI SCHOOL PAGE CUSTOM STYLES
   ========================================= */

.multi-school-hero .erp-page-title {
    font-size: 3rem;
}

.multi-hero-img-wrap {
    position: relative;
    display: inline-block;
}

.multi-hero-img-wrap img {
    border-radius: 20px;
    max-width: 100%;
}

.multi-school-widget {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #fff;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.multi-school-widget .widget-icon {
    width: 44px;
    height: 44px;
    background: #FFC400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
}

.multi-school-widget .widget-text {
    display: flex;
    flex-direction: column;
}

.multi-school-widget .widget-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
}

.multi-school-widget .widget-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.multi-process-section {
    padding: 100px 0;
}

.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    border-color: rgba(255, 196, 0, 0.3);
    background: #151515;
    transform: translateY(-5px);
}

.process-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.process-card .process-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 196, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFC400;
}

.process-card .process-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
}

.process-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.central-power-section {
    padding: 50px 0 100px;
}

.central-power-card {
    background: #111;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    background-image: radial-gradient(circle at center, rgba(255, 196, 0, 0.05) 0%, transparent 60%);
}

.central-power-card h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.central-power-card p {
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.central-stats-wrap {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.central-stat h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.central-stat p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

@media(max-width: 1024px) {
    .multi-school-hero .erp-hero-flex {
        flex-direction: column-reverse !important;
        text-align: center;
    }

    .process-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .multi-school-hero .erp-page-title {
        font-size: 2.5rem;
    }

    .process-cards-grid {
        grid-template-columns: 1fr;
    }

    .central-power-card {
        padding: 50px 20px;
    }

    .central-stats-wrap {
        gap: 30px;
        flex-direction: column;
    }

    .central-stat h3 {
        font-size: 2rem;
    }
}

/* ========================================= */
/*             TMS KIDS PAGE                 */
/* ========================================= */
.kids-hero {
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.kids-hero-top {
    margin-bottom: 50px;
}

.kids-bento-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.kids-bento-left {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kids-bento-right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kids-bento-row {
    display: flex;
    gap: 20px;
}

.kids-bento-row>div {
    flex: 1;
}

.kids-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.kids-card:hover {
    transform: translateY(-5px);
}

.kids-card-primary {
    background: #1a1a1a;
    flex: 1;
}

.kids-card-yellow {
    background: linear-gradient(135deg, #f1c40f, #d4ac0d);
    color: #000;
}

.kids-card-yellow h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.kids-card-yellow p {
    color: #111;
    font-weight: 500;
    margin: 0;
}

.kids-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.kids-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.kids-card p {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 0;
    line-height: 1.5;
}

.kids-banner-img {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.kids-banner-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Achieve Grid */
.achieve-grid {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.achieve-col {
    flex: 1;
}

.achieve-col-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.gold-line {
    display: inline-block;
    width: 5px;
    height: 25px;
    background: #f1c40f;
    border-radius: 5px;
}

.achieve-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.achieve-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #0f0f0f;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.achieve-item:hover {
    background: #1a1a1a;
    border-color: rgba(241, 196, 15, 0.3);
}

.achieve-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    overflow: hidden;
}

.achieve-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.achieve-text p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* Why Choose */
.kids-why-choose {
    background: #080808;
    padding: 80px 0;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.why-card {
    background: #111;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: #f1c40f;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Simplify Banner */
.simplify-section {
    padding: 60px 0 100px;
}

.simplify-banner {
    background: linear-gradient(135deg, #f1c40f, #d4ac0d);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: #000;
}

.simplify-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.simplify-banner p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 30px;
}

.btn-dark {
    background: #000 !important;
    color: #fff !important;
}

@media (max-width: 991px) {
    .kids-bento-row {
        flex-direction: column;
    }

    .achieve-grid {
        flex-direction: column;
    }

    .why-choose-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .kids-bento-left,
    .kids-bento-right {
        flex: 1 1 100%;
    }

    .why-choose-cards {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   TMS KIDS PAGE STYLES
   ========================================================================= */

/* Hero Banner Layout */
.kids-hero {
    padding-top: 150px;
    padding-bottom: 50px;
    background: radial-gradient(circle at 10% 50%, rgba(255, 183, 1, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 183, 1, 0.05) 0%, transparent 50%);
}

.kids-feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.kids-left-col {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 300px;
}

.kids-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 300px;
}

.kids-right-top {
    display: flex;
    gap: 30px;
}

.kids-right-top .feature-card {
    flex: 1;
}

.feature-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.icon-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: #ffb700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.feature-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.feature-card.all-in-one .kids-img-wrap {
    margin-top: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.feature-card.all-in-one img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.feature-card.yellow-card {
    background: #ffb700;
    color: #000;
}

.feature-card.yellow-card p {
    color: #000;
    font-weight: 500;
}

.counter-large {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* What TMS Kids Helps You Achieve */
.achieve-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.achieve-col {
    flex: 1;
    min-width: 300px;
}

.achieve-header {
    border-left: 4px solid #ffb700;
    padding-left: 15px;
    margin-bottom: 30px;
}

.achieve-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.achieve-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.achieve-item {
    background: #151515;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.achieve-item:hover {
    transform: translateY(-3px);
    border-color: #333;
}

.achieve-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #ffb700;
    color: #ffb700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
    overflow: hidden;
}

.achieve-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    padding: 2px;
}

.achieve-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}

.achieve-text p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Why Schools Choose TMS Kids */
.choose-kids-wrap {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 60px;
}

.choose-kids-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.choose-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.choose-icon {
    color: #ffb700;
    width: 32px;
    height: 32px;
    background: rgba(255, 183, 1, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.choose-card p {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Yellow CTA Section */
.cta-yellow-card {
    background: radial-gradient(circle at center, #ffcb36 0%, #d49800 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: #000;
}

.cta-yellow-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.cta-yellow-card p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 30px;
}

.btn-dark-pill {
    background: #111;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark-pill:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .kids-feature-grid {
        flex-direction: column;
    }

    .choose-kids-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .kids-right-top {
        flex-direction: column;
    }

    .cta-yellow-card {
        padding: 40px 20px;
    }

    .cta-yellow-card h2 {
        font-size: 2rem;
    }

    .choose-kids-wrap {
        padding: 10px;
    }
}

/* =========================================================================
   PRODUCTS PAGE STYLES
   ========================================================================= */

.products-hero-section {
    padding-top: 150px;
    background: transparent;
}

.products-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #fff;
}

.products-hero-banner {
    width: 100%;
    margin-bottom: 40px;
}

.products-hero-desc-container {
    max-width: 1000px;
    margin: 0 auto 80px auto;
}

.products-hero-desc {
    color: #dfdfdf;
    font-size: 1.1rem;
    line-height: 1.6;
}

.font-bold {
    font-weight: 700;
}

/* Explore Products */
.products-explore-section {
    padding: 60px 0;
}

.explore-top-box {
    background: #151515;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 1060px;
    margin: 0 auto 60px auto;
}

.explore-top-box h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.explore-top-box p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.products-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.products-left-col {
    padding-right: 20px;
}

.products-left-col h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.products-left-col p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== Product Flip Cards ===== */
.prod-card-flip {
    perspective: 1000px;
    min-height: 340px;
}

.prod-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 340px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.prod-card-flip:hover .prod-card-inner {
    transform: rotateY(180deg);
}

.prod-card-front,
.prod-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Front side - dark theme (original) */
.prod-card-front {
    background: #181818;
    z-index: 2;
}

/* Back side - light theme matching reference design */
.prod-card-back {
    background: #ffffff;
    transform: rotateY(180deg);
    /* border: 3px solid #7c3aed; */
    justify-content: center;
    align-items: flex-start;
}

.prod-card-back h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: var(--font-heading), serif;
}

.prod-card-back ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.prod-card-back ul li {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.prod-card-back .btn-yellow-solid-sm {
    align-self: center;
    padding: 12px 32px;
    font-size: 0.9rem;
    margin-top: auto;
}

.prod-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 183, 0, 0.1);
    color: #ffb700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.prod-card-front h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.prod-card-front h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #ccc;
}

.prod-card-front p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 25px;
}

.btn-yellow-solid-sm {
    display: inline-block;
    padding: 10px 24px;
    background: #ffb700;
    color: #000;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    align-self: flex-start;
    transition: all 0.3s;
}

.btn-yellow-solid-sm:hover {
    background: #e6a600;
    color: #000;
}

/* Need Help Section */
.products-help-section {
    padding: 100px 0 60px 0;
}

.help-flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.help-left {
    flex: 1;
}

.help-left span {
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
}

.help-left h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.help-right {
    flex: 1.5;
    background: #151515;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 40px;
}

.help-right p {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-yellow-pill {
    display: inline-block;
    background: #ffb700;
    color: #000;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-yellow-pill:hover {
    background: #e6a600;
    color: #000;
}

/* Form Section */
.products-form-section {
    padding: 60px 0 100px 0;
}

.transform-heading {
    margin-bottom: 60px;
}

.badge-rounded {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #333;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: #fff;
    color: #000;
    letter-spacing: 0.5px;
}

.transform-heading h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.transform-heading p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.transform-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.transform-left {
    flex: 1;
}

.transform-left img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.transform-right {
    flex: 1;
    background: transparent;
}

.product-demo-form {
    width: 100%;
}

.product-demo-form .form-group-outline {
    margin-bottom: 25px;
}

.product-demo-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.product-demo-form input,
.product-demo-form select,
.product-demo-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 10px 0;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.product-demo-form input:focus,
.product-demo-form select:focus,
.product-demo-form textarea:focus {
    outline: none;
    border-bottom-color: #ffb700;
}

.product-demo-form input::placeholder,
.product-demo-form textarea::placeholder {
    color: #666;
}

.product-demo-form select {
    color: #888;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg fill="%23888888" viewBox="0 0 24 24" width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 5px center;
}

.product-demo-form select option {
    background: #111;
    color: #fff;
}

.btn-yellow-full {
    width: 100%;
    background: #ffb700;
    color: #000;
    padding: 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-yellow-full:hover {
    background: #e6a600;
}

@media (max-width: 991px) {
    .products-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-left-col {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }

    .help-flex-box {
        flex-direction: column;
        text-align: center;
    }

    .transform-layout {
        flex-direction: column;
    }

    .products-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .products-grid-layout {
        grid-template-columns: 1fr;
    }
}

.mobile-submenu.active {
    display: flex !important;
}

/* Mobile Menu Top Bar */
.mobile-menu-top {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10002;
}

.mobile-menu-logo {
    width: 80px;
}

.mobile-menu-close-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close-btn svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-gold-start);
}

/* Mobile Dropdown Classes */
.dropdown-trigger-mobile {
    display: flex;
    justify-content: start;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.dropdown-trigger-mobile svg {
    margin-left: 10px
}

.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
}

/* Mobile Wizard / Accordion Tabs */
.mobile-wizard-tab {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-wizard-tab h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.mobile-wizard-tab .wizard-arrow {
    color: #fff;
    transition: transform 0.3s ease;
}

.mobile-wizard-tab.active {
    background: rgba(255, 183, 0, 0.1);
    border-color: rgba(255, 183, 0, 0.3);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
    /* Attach to content */
    border-bottom: none;
}

.mobile-wizard-tab.active h4 {
    color: var(--accent-gold-start);
}

.mobile-wizard-tab.active .wizard-arrow {
    transform: rotate(180deg);
    color: var(--accent-gold-start);
}

@media (max-width: 767px) {
    .wizard-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 40px;
    }

    .wizard-tabs {
        display: none !important;
    }

    .mobile-wizard-tab {
        display: flex;
    }

    .wizard-content {
        padding: 0;
        border: none;
        background: transparent;
    }

    .tab-pane {
        background: #151515;
        border: 1px solid rgba(255, 183, 0, 0.3);
        border-top: none;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        padding: 24px 20px;
        margin-bottom: 15px;
    }

    .tab-pane:not(.active) {
        border-color: #2a2a2a;
        margin-bottom: 15px;
    }
}

/* === NEW FAQ DESIGN (Overrides) === */
.faq-item {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    margin-bottom: 20px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.faq-item:hover {
    background: #1f1f1f !important;
}

/* Base Question styling */
.faq-question {
    padding: 24px 30px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 25px !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    color: #eeeeee !important;
}

/* Plus/Minus Icon styling */
.faq-plus {
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    color: #e0e0e0 !important;
    transition: all 0.3s ease !important;
    width: 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    line-height: 1 !important;
}

/* Base Answer styling */
.faq-answer {
    padding: 0 30px 24px 75px !important;
    color: #a0a0a0 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    background: transparent !important;
}

/* ACTIVE STATE */
.faq-item.active {
    background: #121212 !important;
    border-color: rgba(255, 184, 0, 0.1) !important;
}

/* Add the intense left edge glow when active */
.faq-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    /* Pull it slightly to the left edge */
    height: 100%;
    width: 4px;
    background: var(--accent-gold-start);
    box-shadow: 0 0 35px 12px rgba(255, 184, 0, 0.4);
    /* intense bright gold glow spilling inside */
    z-index: 2;
    border-radius: 4px 0 0 4px;
}

/* Active Text Colors */
.faq-item.active .faq-question h4,
.faq-item.active .faq-question span:not(.faq-plus) {
    color: var(--accent-gold-start) !important;
}

.faq-item.active .faq-plus {
    color: var(--accent-gold-start) !important;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px 20px !important;
        font-size: 1.1rem !important;
        gap: 15px !important;
    }

    .faq-answer {
        padding: 0 20px 20px 55px !important;
    }
}

/* === WCU NEW LAYOUT DESIGN === */
.wcu-pill-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.wcu-pill-label {
    border: 1px solid rgba(255, 184, 0, 0.4);
    color: var(--accent-gold-start);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    background: rgba(255, 184, 0, 0.05);
}

.wcu-subtitle-new {
    color: #e0e0e0;
    margin-top: 20px;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.ecosystem-cards-wrapper.new-eco-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 30px;
    text-align: center;
}

.new-eco-layout .eco-card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
    border-radius: 12px !important;
    padding: 40px 30px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
}

.new-eco-layout .eco-label-sm {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.new-eco-layout .eco-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.new-eco-layout .eco-text-large {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.new-eco-layout .eco-subtext {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.eco-tagline-new {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-top: 30px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .ecosystem-cards-wrapper.new-eco-layout {
        grid-template-columns: 1fr;
    }
}

/* TMS MOBILE APP PAGE */
.mobile-hero-section {
    position: relative;
    padding: 120px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: url(../assets/images/mobile-app-banner.png) no-repeat center center / cover;
}

.mobile-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
}

.mobile-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.mobile-hero-subtitle {
    font-size: 2rem;
    color: #FFC400;
    font-weight: 600;
    margin-bottom: 30px;
}

.mobile-features-section {
    padding: 80px 0;
    background-color: #0d0d0d;
}

.mobile-features-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.mobile-features-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mobile-feature-item {
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

.mobile-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
    color: #FFC400;
}

.mobile-features-image {
    flex: 0 0 400px;
}

.mobile-features-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.mobile-modules-section {
    padding: 80px 0;
    background-color: #0d0d0d;
}

.module-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.bento-card {
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-card-dark {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
}

.bento-card-yellow {
    background: #FFC400;
    color: #000;
}

.bento-card-light {
    background: #f4f4f4;
    color: #000;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.bento-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.bento-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin-top: auto;
}

.bento-span-2 {
    grid-column: span 2;
}

.bento-row-span-2 {
    grid-row: span 2;
}

/* ========================================================================= */
/* TMS MOBILE APP SPECIFIC STYLES                                            */
/* ========================================================================= */

.tms-mobile-hero {
    position: relative;
    padding: 180px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tms-mobile-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.tms-mobile-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tms-mobile-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
}

.tms-mobile-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.tms-mobile-hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.tms-mobile-hero-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ffc400, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    letter-spacing: -0.5px;
}

/* OUR FEATURES */
.tms-mobile-features-section {
    padding: 100px 0;
    position: relative;
    background: #0d0d0d;
}

.tms-mobile-features-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.tms-mobile-features-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.mobile-feat-item-new {
    position: relative;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-feat-item-new:nth-child(4n) {
    border-right: none;
}

.mobile-feat-item-new:nth-child(n+17) {
    border-bottom: none;
}

.mobile-feat-item-new:not(:nth-child(4n)):not(:nth-child(n+17))::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 9px;
    height: 9px;
    background: #555;
    border-radius: 50%;
    z-index: 2;
}

.mobile-feat-item-new svg,
.mobile-feat-item-new img.feat-icon-img {
    margin-bottom: 14px;
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s;
}

.mobile-feat-item-new svg {
    stroke: #666;
}

.mobile-feat-item-new span {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.3;
    transition: all 0.3s;
    font-weight: 500;
}

.mobile-feat-item-new:hover svg {
    stroke: #FFC400;
}

.mobile-feat-item-new:hover span {
    color: #FFC400;
}

.mobile-feat-item-new:hover img.feat-icon-img {
    filter: drop-shadow(0px 0px 4px rgba(255, 196, 0, 0.5));
}

/* RIGHT IMAGE FOR OUR FEATURES */
.tms-mobile-features-right {
    flex: 0 0 450px;
}

.mobile-features-img-wrap {
    width: 100%;
}

.mobile-features-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

/* BENTO GRID MODULES */
.tms-mobile-modules-section {
    padding: 100px 0;
    background-color: #0d0d0d;
}

.tms-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: 24px;
    margin-top: 40px;
}

.bento-box {
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.bento-box:hover {
    transform: translateY(-5px);
}

.bento-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bento-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.bento-dark {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
}

.bento-yellow {
    background-color: #FFC400;
    color: #0d0d0d;
}

.bento-light {
    background-color: #e5e5e5;
    color: #0d0d0d;
}

.bento-outline-white {
    background-color: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 40px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.bento-large .bento-content {
    flex: 1;
}

.bento-large .bento-img-right {
    flex: 0 0 40%;
}

.bento-large .bento-img-right img {
    width: 100%;
    border-radius: 12px;
}

.bento-features-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.bento-features-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: #ccc;
}

.bento-features-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #FFC400;
}

.bento-span-2 {
    grid-column: span 2;
}

.bento-flex-row {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.w-full {
    width: 100%;
}

.mt-3 {
    margin-top: 15px;
}

.mt-auto {
    margin-top: auto;
}

.rounded {
    border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .tms-mobile-features-layout {
        flex-direction: column;
    }

    .tms-mobile-features-right {
        max-width: 300px;
    }

    .tms-mobile-hero-title {
        font-size: 3rem;
    }

    .tms-mobile-hero-subtitle {
        font-size: 1.8rem;
    }

    .tms-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-large {
        grid-column: span 2;
        flex-direction: column;
    }

    .bento-large .bento-img-right {
        width: 100%;
    }

    .bento-span-2 {
        grid-column: span 2;
    }

    .bento-flex-row {
        flex-direction: column;
    }

    .bento-flex-row img {
        max-width: 100% !important;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .tms-mobile-hero-title {
        font-size: 2.2rem;
    }

    .tms-mobile-hero-subtitle {
        font-size: 1.5rem;
    }

    .tms-mobile-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tms-bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-span-2 {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .tms-mobile-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================================================= */
/* TMS PORTALS SECTION (STACKING GSAP)                                       */
/* ========================================================================= */

.tms-mobile-portals-section {
    padding: 100px 0;
    background: #0B0B0B;
    position: relative;
    /* overflow: hidden; removed to allow position: sticky to work */
}

.portals-bg-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    /* Super faint text */
    position: absolute;
    top: 0px;
    left: 10%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
    margin: 0;
    letter-spacing: -2px;
}

.portals-header-wrap {
    position: relative;
    z-index: 2;
}

.portals-stack-container {
    position: relative;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    /* Cards will stack using GSAP and CSS sticky */
}

/* Card basic styling */
.portal-card {
    position: sticky;
    width: 100%;
    margin-bottom: 50px;
    /* Space between sticky stacks before they overlap */
    border-radius: 20px;
    padding: 60px;
    display: flex;
    gap: 60px;
    min-height: 500px;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.05);
    /* Slight shadow to separate layers */
    transform-origin: top center;
    /* for GSAP scale effect */
}

/* Stagger cards sticking */
.portal-card:nth-child(1) {
    top: 15vh;
}

.portal-card:nth-child(2) {
    top: calc(15vh + 30px);
}

.portal-card:nth-child(3) {
    top: calc(15vh + 60px);
}

.portal-card:nth-child(4) {
    top: calc(15vh + 90px);
}

.portal-card:nth-child(5) {
    top: calc(15vh + 120px);
}

.portal-card:last-child {
    margin-bottom: 0;
}

.portal-card-left {
    flex: 0 0 35%;
}

.portal-card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.portal-card-left h3 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.2;
}

.portal-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.5;
}

.portal-card-right p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.9;
}

/* Alternate Colors */
.portal-card.bg-black {
    background: #000000;
}

.portal-card.bg-yellow {
    background: #FFC400;
}

.portal-card.bg-light {
    background: #f4f4f4;
}

.portal-card.bg-dark.grey-card {
    background: #1a1a1a;
}

.portal-card.text-white {
    color: #ffffff;
}

.portal-card.text-black {
    color: #000000;
}

@media (max-width: 991px) {
    .portal-card {
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        top: 10vh;
    }

    .portal-card-left h3 {
        font-size: 1.8rem;
    }

    .portals-bg-title {
        font-size: 5rem;
        left: 30%;
    }
}

@media (max-width: 767px) {
    .portal-card {
        padding: 30px 20px;
        top: 8vh;
    }

    .portals-bg-title {
        font-size: 3rem;
        left: 40%;
    }
}

/* TRACK MY BUS SECTION */
.trackmybus-section,
.trackmyclass-section {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #0B0B0B;
    padding: 100px 0;
}

.tmb-card {
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.tmb-card-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tmb-card-title-dark {
    font-weight: 700;
    color: #111111;
}

.tmb-card-text {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.tmb-card-text-dark {
    color: #333333;
    line-height: 1.6;
}

.tmb-card-dark {
    background: #1e1e1e;
}

.tmb-card-yellow {
    background: #FFC400;
}

.tmb-card-light {
    background: #F4F4F4;
}

.tmb-img-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex: 1;
    /* Allow it to grow to fill remaining space in the stack */
    min-height: 200px;
    /* Ensure an absolute minimum height */
}

.tmb-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fallback for gap not rendering, enforce margin */
.tmb-right-top>div:not(:last-child),
.tmb-left-bottom>div:not(:last-child) {
    margin-bottom: 24px;
}

.tmb-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 25px;
}

.tmb-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.tmb-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e0e0e0;
    font-size: 1.2rem;
    top: -2px;
}

/* Classes extracted from inline styles for TrackMyBus / TrackMyClass Sections */
.section-dark {
    background-color: #0B0B0B;
    padding: 100px 0;
}

.trackmybus-header {
    margin-bottom: 20px;
}

.tmb-svg-icon {
    margin-right: -15px;
    position: relative;
    z-index: 1;
}

.tmb-header-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.tmb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tmb-col-1-3 {
    grid-column: 1 / 3;
}

.tmb-col-3-4 {
    grid-column: 3 / 4;
}

.tmb-col-1-2 {
    grid-column: 1 / 2;
}

.tmb-col-2-4 {
    grid-column: 2 / 4;
}

.tmb-col-2-3 {
    grid-column: 2 / 3;
}

.gap-24 {
    gap: 24px;
}

.tmb-card-center-40 {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tmb-card-center-30 {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tmb-padding-30 {
    padding: 30px;
}

.tmb-padding-40 {
    padding: 40px;
}

.tmb-h3-large {
    font-size: 1.4rem;
}

.tmb-h3-medium {
    font-size: 1.25rem;
}

.tmb-subtitle-bold {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

/* Spacing Utilities */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}


/* Responsive adjustments for TrackMyBus Bento Grid */
@media (max-width: 991px) {
    .tmb-grid {
        grid-template-columns: 1fr !important;
    }

    .tmb-card,
    .tmb-right-top,
    .tmb-left-bottom,
    .tmb-img-card {
        grid-column: 1 / -1 !important;
    }

    .tmb-right-top,
    .tmb-left-bottom {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}