/* Design System - IgnitedMinds Academy */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

:root {
    /* Stable Brand Colors */
    --brand-navy: #1a2a44;
    --brand-gold: #fb8b24;
    --brand-accent: #ff6b00;

    /* Semantic Variables - Light Mode */
    --primary: var(--brand-navy);
    --secondary: var(--brand-gold);
    --accent: var(--brand-accent);

    --bg-main: #ffffff;
    --bg-main-rgb: 255, 255, 255;
    --bg-alt: #f8f9fa;
    --text-main: var(--brand-navy);
    --text-main-rgb: 26, 42, 68;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    /* Semantic Variables - Dark Mode */
    --primary: var(--brand-gold);
    --secondary: #38bdf8;
    --accent: #ffcc00;

    --bg-main: #0a1120;
    --bg-main-rgb: 10, 17, 32;
    --bg-alt: #161e2e;
    --text-main: #f8fafc;
    --text-main-rgb: 248, 250, 252;
    --text-muted: #94a3b8;
    --border: #2d3748;
    --glass: rgba(10, 17, 32, 0.85);
    --shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: transform 0.4s ease-in-out, background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

header.hide {
    transform: translateY(-100%);
}

header .container {
    max-width: 100%;
    padding-left: 5rem;
    padding-right: 5rem;
}

@media (max-width: 1400px) {
    header .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 768px) {
    header .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition);
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

/* Header Content Colors - Transparent State */
header:not(.scrolled) .nav-link,
header:not(.scrolled) .theme-toggle,
header:not(.scrolled) .mobile-toggle {
    color: #fff !important;
}


/* Ensure buttons stay visible */
header:not(.scrolled) .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.nav-link:hover {
    color: var(--primary);
    /* Use gold for hover on links */
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-content {
    display: block;
    position: absolute;
    background-color: var(--bg-main);
    min-width: 240px;
    box-shadow: var(--shadow);
    border-radius: 12px;
    z-index: 1000;
    top: 100%;
    left: 0;
    border: 1px solid var(--border);
    padding: 0.5rem 0;
    margin-top: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 0.5rem;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: var(--bg-alt);
    color: var(--brand-gold);
    padding-left: 1.8rem;
}

[data-theme="dark"] .dropdown-content {
    background-color: var(--bg-alt);
    border-color: var(--border);
}

[data-theme="dark"] .dropdown-content a:hover {
    background-color: var(--bg-main);
}


.header-ctas {
    display: flex;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
}

/* User Profile Dropdown */
.user-profile-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-left: 0.5rem;
}

.profile-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #6366f1;
    /* Modern Indigo/Blue border */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    transition: var(--transition);
    padding: 2px;
    background-clip: content-box;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-avatar i {
    font-size: 1.4rem;
    color: #94a3b8;
}

.user-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 0.5rem 0;
}

.user-profile-dropdown:hover .user-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-content a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.user-dropdown-content a:hover {
    background: var(--bg-alt);
    color: var(--brand-gold);
    padding-left: 1.5rem;
}

.user-dropdown-content a i {
    width: 20px;
    font-size: 1rem;
    opacity: 0.8;
}

header:not(.scrolled) .profile-avatar {
    border-color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background-color: var(--brand-gold);
    /* Always Gold for primary actions */
    color: var(--brand-navy) !important;
    /* Always Navy text for readability */
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--brand-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.btn-secondary {
    background-color: var(--brand-navy);
    color: #fff;
    border: 1px solid var(--brand-gold);
}

[data-theme="dark"] .btn-secondary {
    background-color: #1e293b;
}

.btn-secondary:hover {
    background-color: var(--brand-gold);
    color: var(--brand-navy);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
}

.btn-outline:hover {
    background-color: var(--brand-gold);
    color: var(--brand-navy);
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-icons {
    font-size: 4rem;
    color: var(--brand-gold);
    margin-bottom: 2rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-icon {
    animation: iconFade 1.5s infinite;
}

@keyframes iconFade {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.loading-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 500;
    letter-spacing: 2px;
}

.loading-text::after {
    content: '.';
    animation: dotAnimation 1.5s steps(4) infinite;
}

@keyframes dotAnimation {

    0%,
    20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

/* Title Section (Optimized for Team/Office Banner) */
.title-section {
    height: 45vh;
    min-height: 350px;
    margin-top: 0;
    /* Background starts from the very top */
    background-size: cover;
    background-position: center 25%;
    /* Slightly higher focus */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    padding-top: var(--header-height);
    /* Offset for the fixed header */
}

.title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.title-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.title-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    /* Responsive large title */
    text-transform: capitalize;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.title-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s 0.2s ease-out backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Top Button */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--bg-main);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.scroll-top:hover i {
    transform: translateY(-3px);
}

.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-progress circle {
    stroke: var(--secondary);
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

/* Shared Responsive Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .grid-4,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--glass);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
        z-index: 998;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
    }

    .nav-links .nav-link {
        color: var(--text-main) !important;
        font-size: 2rem !important;
        font-weight: 700;
        text-align: center;
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links.active .nav-link,
    .nav-links.active .dropdown {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links.active > *:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active > *:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active > *:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active > *:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active > *:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active > *:nth-child(6) { transition-delay: 0.35s; }

    .mobile-toggle {
        display: block !important;
        font-size: 1.8rem;
        cursor: pointer;
        order: 3;
        margin-left: 1rem;
        z-index: 1000;
        position: relative;
    }

    .header-ctas .btn-primary {
        display: none;
    }
    
    .header-ctas {
        margin-left: auto;
    }

    .dropdown {
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        min-width: 100%;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 0;
        padding: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 0;
    }

    .dropdown-content a {
        font-size: 1.2rem;
        text-align: center;
        padding: 1rem;
    }

    .dropdown-content a:hover {
        padding-left: 1rem;
        background: transparent;
    }

    .dropdown.mobile-open .dropdown-content {
        display: block;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .title-content h1 {
        font-size: 1.8rem;
    }
}

/* Theme Switcher */
.theme-toggle {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

/* Card Styles */
.card {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    text-transform: capitalize;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    display: none;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
    z-index: 1000;
    gap: 1rem;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
    }
}

/* Footer Styles - Premium Dark Design */
footer {
    background: #0b0f17;
    color: #ffffff;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Outfit', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    /* margin-bottom: 4rem; */
}

.footer-logo-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    max-width: 320px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: capitalize;
    font-family: 'Outfit', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--brand-gold);
    transform: translateX(5px);
}

.footer-contact-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-contact-info p {
    margin-bottom: 1.5rem;
}

.footer-contact-info a {
    color: var(--brand-gold);
    display: block;
    margin-top: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--brand-gold);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Base Styles Polish */
section {
    padding: 3rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

/* Advisory Board Section - High Fidelity Revamp */
.advisory-section.premium-bg {
    background: radial-gradient(circle at 10% 10%, rgba(197, 160, 89, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(26, 42, 68, 0.05) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(197, 160, 89, 0.1);
    color: var(--brand-gold);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    position: relative;
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    perspective: 1000px;
}

.advisory-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 16px;
    padding: 2rem 1rem 1rem;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.card-glow {
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--brand-gold), transparent, var(--brand-navy));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.advisory-card:hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(2deg);
    border-color: var(--brand-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.advisory-card:hover .card-glow {
    opacity: 0.3;
}

.advisory-img-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, var(--brand-gold), #fff);
}

[data-theme="dark"] .advisory-img-wrapper {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-navy));
}

.advisory-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    position: relative;
    transition: transform 0.8s;
}

.img-ring {
    position: absolute;
    inset: -15px;
    border: 1px dashed var(--brand-gold);
    border-radius: 50%;
    animation: rotateRing 15s linear infinite;
    opacity: 0.5;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.advisory-card:hover img {
    transform: scale(1.1);
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.advisory-tag {
    display: inline-block;
    background: var(--brand-navy);
    color: var(--brand-gold);
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(26, 42, 68, 0.2);
}

[data-theme="dark"] .advisory-tag {
    background: var(--brand-gold);
    color: var(--brand-navy);
}

.advisory-card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 280px;
}

.advisory-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.advisory-card:hover .advisory-img-wrapper img {
    transform: scale(1.15);
}

.advisory-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

.advisory-tag {
    background: #ff8c32;
    /* Orange-ish color from image */
    color: #fff;
    padding: 0.4rem 1.25rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 140, 50, 0.3);
}

.advisory-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-gold);
    z-index: 9999;
    transform-origin: 0 50%;
    transform: scaleX(0);
    pointer-events: none;
}

/* Enhanced Animations for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    /* Increased from 40px for more 'float' feeling */
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-left {
    transform: translateX(-40px) translateY(0);
}

.reveal-right {
    transform: translateX(40px) translateY(0);
}

/* New Zoom Influence for Faculty/Advisory Photos */
.faculty-img.reveal,
.advisory-img-wrapper.reveal {
    transform: translateY(40px) scale(0.9);
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger Effects for Containers using CSS variables */
.grid-reveal {
    display: grid;
}

.grid-reveal>.reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.grid-reveal>.reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.grid-reveal>.reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.grid-reveal>.reveal:nth-child(4) {
    transition-delay: 0.4s;
}

.grid-reveal>.reveal:nth-child(5) {
    transition-delay: 0.5s;
}

.grid-reveal>.reveal:nth-child(6) {
    transition-delay: 0.6s;
}

@media (max-width: 1200px) {
    .advisory-grid {
        gap: 2rem;
    }

    .advisory-card {
        padding: 3rem 1.5rem;
    }

    .advisory-img-wrapper {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 992px) {
    .advisory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advisory-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Faculty Section */
.faculty-section {
    background: var(--bg-main);
}

.faculty-swiper {
    padding: 2rem 1rem 5rem;
}

.faculty-card {
    text-align: left;
    transition: var(--transition);
}

.faculty-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #000;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.faculty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.faculty-card:hover .faculty-img img {
    transform: scale(1.1);
}

.faculty-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.faculty-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.faculty-socials {
    display: flex;
    gap: 0.8rem;
}

.faculty-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 0.85rem;
    transition: all 0.4s ease;
}

.faculty-socials a:hover {
    background: var(--brand-navy);
    color: #fff;
    border-color: var(--brand-navy);
    transform: translateY(-4px) rotate(8deg);
}

[data-theme="dark"] .faculty-socials a:hover {
    background: var(--brand-gold);
    color: var(--brand-navy);
    border-color: var(--brand-gold);
}

/* Faculty Swiper Navigation */
.faculty-swiper .swiper-button-next,
.faculty-swiper .swiper-button-prev {
    top: 40%;
    width: 50px;
    height: 50px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-main);
    transition: var(--transition);
}

.faculty-swiper .swiper-button-next::after,
.faculty-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.faculty-swiper .swiper-button-next:hover,
.faculty-swiper .swiper-button-prev:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.faculty-pagination {
    bottom: 1rem !important;
}

.faculty-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border);
    opacity: 1;
    transition: var(--transition);
}

.faculty-pagination .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {

    .faculty-swiper .swiper-button-next,
    .faculty-swiper .swiper-button-prev {
        display: none;
    }
}

/* Partners Marquee Section */
.partners-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
}

.partners-marquee::before,
.partners-marquee::after {
    display: none;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 10rem;
    animation: scrollRightToLeft 30s linear infinite;
}

.marquee-content img {
    height: 120px;
    width: auto;
    transition: var(--transition);
}

.marquee-content img:hover {
    transform: none;
}

@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Half of the content's width */
    }
}

/* CTA Banner Section */
.cta-banner {
    background: var(--brand-navy);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #fff;
    text-transform: capitalize;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-text h2 span {
    color: var(--brand-gold);
}

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    font-weight: 500;
}

.btn-pill {
    background: #fff;
    color: var(--brand-navy);
    padding: 1.2rem 3rem;
    border-radius: 100px;
    font-weight: 800;
    text-transform: capitalize;
    font-size: 1rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-pill i {
    font-size: 0.9rem;
    transition: transform 0.4s;
}

.btn-pill:hover {
    transform: scale(1.05) translateY(-5px);
    background: var(--brand-gold);
    color: #fff;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.3);
}

.btn-pill:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 4rem 0;
    }

    .cta-text h2 {
        font-size: 2.2rem;
    }

    .btn-pill {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* Program Showcase - Modern Floating Stage */
.program-showcase {
    background: var(--bg-alt);
    padding: 3rem 0;
    position: relative;
}

.stage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.stage-card {
    position: relative;
    background: var(--bg-main);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.stage-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: var(--secondary);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
}

/* Decorative Number */
.stage-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 15rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: rgba(197, 160, 89, 0.05);
    line-height: 1;
    pointer-events: none;
    transition: all 0.6s;
}

.stage-card:hover .stage-number {
    color: rgba(197, 160, 89, 0.1);
    transform: translateX(-20px);
}

.stage-content {
    position: relative;
    z-index: 2;
}

.stage-card .tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(197, 160, 89, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.stage-card h3 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 900;
}

.stage-features {
    flex-grow: 1;
    margin-bottom: 3rem;
}

.stage-features li {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.stage-features i {
    color: var(--secondary);
    font-size: 1rem;
}

/* Hover Image Preview */
.stage-img-preview {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 40px;
    overflow: hidden;
    transform: rotate(-15deg);
    opacity: 0.3;
    transition: all 0.6s;
    border: 5px solid var(--border);
}

.stage-card:hover .stage-img-preview {
    opacity: 1;
    transform: rotate(0) translateY(-20px);
    border-color: var(--secondary);
}

.stage-img-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .stage-card h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .stage-grid {
        grid-template-columns: 1fr;
    }

    .stage-card {
        padding: 3rem;
        min-height: auto;
    }

    .stage-number {
        font-size: 10rem;
    }

    .stage-img-preview {
        display: none;
    }
}

.bento-features li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.8;
}

.bento-features i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.bento-item .btn {
    width: fit-content;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s;
}

.bento-item:hover .btn {
    transform: translateY(0);
    opacity: 1;
}

/* Floating Icon Animation */
.bento-float-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    z-index: 2;
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-auto-rows: 300px;
    }

    .bento-item.tall,
    .bento-item.wide,
    .bento-item.standard,
    .bento-item.small {
        grid-column: span 6;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .bento-item {
        height: 400px;
        padding: 2rem;
    }

    .bento-item h3 {
        font-size: 1.8rem;
    }

    .bento-features {
        display: block;
        opacity: 1;
    }

    .bento-item .btn {
        transform: none;
        opacity: 1;
    }
}

/* Video Testimonial Cards */
.video-testimonial {
    padding: 0;
    overflow: hidden;
    text-align: left;
}

.video-thumb {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.video-testimonial:hover .video-thumb::after {
    background: rgba(0, 0, 0, 0.5);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    z-index: 5;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
}

.video-testimonial:hover .play-btn {
    transform: scale(1.1);
    background: #fff;
    color: var(--secondary);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 5;
    font-weight: 600;
}

.video-testimonial .card-body {
    padding: 2rem;
}

.video-testimonial .role {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-testimonial .quote {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Our Methodology Cycle Section - Image Inspired */
.methodology-cycle {
    /* padding: 8rem 0; */
    background: var(--bg-main);
}

.methodology-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.methodology-card {
    display: flex;
    align-items: center;
    width: calc(33.33% - 1.5rem);
    min-width: 320px;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    cursor: pointer;
    text-decoration: none;
}

.methodology-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* Pastel Themes for Cards */
.meth-1 {
    background: #e3f9f9;
}

.meth-2 {
    background: #fff9e6;
}

.meth-3 {
    background: #fff0f5;
}

.meth-4 {
    background: #f1f9ec;
}

.meth-5 {
    background: #fff5eb;
}

.meth-6 {
    background: #f5f0fa;
}

.meth-icon-circle {
    min-width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.meth-icon-circle i {
    font-size: 1.6rem;
}

/* Color Themes for Content */
.meth-1 i {
    color: #00adb5;
}

.meth-1 h3 {
    color: #00818a;
}

.meth-2 i {
    color: #fbbc05;
}

.meth-2 h3 {
    color: #c48b00;
}

.meth-3 i {
    color: #ea4335;
}

.meth-3 h3 {
    color: #af3228;
}

.meth-4 i {
    color: #34a853;
}

.meth-4 h3 {
    color: #257e3e;
}

.meth-5 i {
    color: #fb8c00;
}

.meth-5 h3 {
    color: #c86e00;
}

.meth-6 i {
    color: #9c27b0;
}

.meth-6 h3 {
    color: #6a1b9a;
}

.meth-info {
    flex: 1;
}

.meth-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.meth-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.meth-info p .sub-icon {
    font-size: 0.8rem;
    opacity: 0.6;
}

@media (max-width: 1100px) {
    .methodology-card {
        width: calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .methodology-card {
        width: 100%;
    }

    .methodology-cycle {
        padding: 3rem 0;
    }

    .methodology-card {
        padding: 1.2rem 1.5rem;
    }
}

/* Program Track Design System */
.program-hero {
    padding: 10rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-alt) 100%);
    border-bottom: 1px solid var(--border);
}

.program-hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-weight: 800;
    /* Outfit Bold */
}

.program-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Outfit', sans-serif;
}

/* --- Strategic Roadmap Design (No Tabs) --- */
.track-grid {
    padding: 6rem 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Central Journey Line */
.track-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent,
            rgba(197, 160, 89, 0.4) 10%,
            rgba(197, 160, 89, 0.4) 90%,
            transparent);
    z-index: 1;
}

.track-card {
    position: relative;
    margin-bottom: 8rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.track-card:last-child {
    margin-bottom: 0;
}

/* Milestone Point */
.track-card::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--bg-main);
    border: 4px solid var(--brand-gold);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.roadmap-content {
    width: 45%;
    background: var(--bg-main);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.track-card:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-image {
    width: 45%;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.roadmap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.track-card:hover .roadmap-content {
    transform: translateY(-10px);
    border-color: var(--brand-gold);
    box-shadow: 0 30px 60px rgba(197, 160, 89, 0.1);
}

.track-card:hover .roadmap-image img {
    transform: scale(1.1);
}

.roadmap-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.roadmap-tag {
    background: rgba(197, 160, 89, 0.1);
    color: var(--brand-gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: 0.1em;
}

.roadmap-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.track-headline {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
}

.track-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.roadmap-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.roadmap-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.roadmap-feature i {
    color: var(--brand-gold);
}

.roadmap-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.roadmap-actions .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .track-grid::before {
        left: 20px;
        transform: none;
    }

    .track-card {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }

    .track-card::after {
        left: 20px;
        transform: translate(-50%, -50%);
    }

    .roadmap-content,
    .roadmap-image {
        width: 100%;
    }

    .roadmap-image {
        height: 250px;
        margin-top: -30px;
        margin-bottom: 2rem;
        order: -1;
    }
}

@media (max-width: 768px) {
    .track-content {
        padding: 3rem 2rem;
    }

    .track-headline {
        font-size: 2.2rem;
    }

    .track-actions {
        flex-direction: column;
    }

    .track-actions .btn {
        width: 100%;
    }
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 16px;
    background: var(--bg-main);
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 1.5rem 1rem;
    background: var(--primary);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: capitalize;
    letter-spacing: 0.1em;
}

.comparison-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
}

.comparison-table td:first-child {
    text-align: left;
    padding-left: 2rem;
    color: var(--primary);
    font-weight: 700;
    background: var(--bg-alt);
    font-family: 'Outfit', sans-serif;
}

/* --- Modern FAQ Section (Two-Column Layout) --- */
.faq-section {
    padding: 8rem 0;
    background: var(--bg-alt);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.faq-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary);
    position: sticky;
    top: 120px;
}

.faq-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-trigger {
    width: 100%;
    padding: 2rem 2.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-trigger h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    padding-right: 2rem;
}

.faq-trigger i {
    width: 35px;
    height: 35px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.faq-item.active {
    border-color: var(--brand-gold);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.08);
}

.faq-item.active .faq-trigger i {
    background: var(--brand-gold);
    color: #fff;
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 2.5rem 2.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    display: none;
    font-family: 'Outfit', sans-serif;
}

.faq-item.active .faq-content {
    display: block;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .faq-header h2 {
        position: static;
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .track-layout {
        grid-template-columns: 1fr;
    }

    .track-image {
        height: 300px;
    }

    .track-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .track-features-box {
        grid-template-columns: 1fr;
    }
}

/* Breadcrumb Styles - Modern Sticky Behavior */
.breadcrumb {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    background: var(--glass);
    position: sticky;
    top: var(--header-height);
    z-index: 40;
    backdrop-filter: blur(10px);
    transition: top 0.4s ease-in-out;
}

/* Push to top when header is hidden on scroll down */
.header-hidden .breadcrumb {
    top: 0;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* --- Premium Magnetic Ring Cursor --- */
@media (hover: hover) and (pointer: fine) {
    .cursor-halo {
        position: fixed;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        border: 1.5px solid var(--secondary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
        transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1),
            height 0.4s cubic-bezier(0.23, 1, 0.32, 1),
            background-color 0.4s ease,
            border-color 0.4s ease,
            border-radius 0.4s ease;
        mix-blend-mode: soft-light;
    }

    .cursor-halo.active {
        width: 60px;
        height: 60px;
        background-color: rgba(197, 160, 89, 0.15);
        border-color: var(--secondary);
        mix-blend-mode: normal;
    }

    /* Keep the system cursor visible but themed */
    body {
        cursor: default;
    }

    a,
    button,
    .btn,
    .cs-card {
        cursor: pointer;
    }
}