/* ==============================================
       NAVBAR CSS (Light Theme)
    =============================================== */
.premium-nav-light {
    background: transparent;
    padding: 1.5rem 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1030;
}

.premium-nav-light.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.brand-text-light {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #001f3f !important;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
    font-family: sans-serif;
}

.brand-subtext-light {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: #64748b;
    margin-top: 2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-link-light {
    color: #64748b !important;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin: 0 12px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 0;
}

.nav-link-light:hover,
.nav-link-light.active {
    color: #001f3f !important;
}

.nav-link-light::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #00b4d8;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link-light:hover::before,
.nav-link-light.active::before {
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
}

.glass-dropdown-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin-top: 15px;
}

.dropdown-item-light {
    color: #475569;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.dropdown-menu[data-bs-popper] {
    left: -85px !important;
}

.dropdown-item-light:hover {
    background: rgba(0, 180, 216, 0.05);
    color: #00b4d8;
    padding-left: 25px;
}

/* ==============================================
       MOBILE NAVBAR (Non-transparent & Readable)
    =============================================== */
@media (max-width: 991.98px) {
    .premium-nav-light {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .premium-nav-light .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.25rem 1.5rem;
        margin-top: 0.75rem;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .premium-nav-light .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
        gap: 0.25rem;
    }

    .premium-nav-light .nav-item {
        width: 100%;
    }

    .premium-nav-light .nav-link-light {
        display: block;
        width: 100%;
        padding: 0.6rem 0;
        margin: 0;
        color: #001f3f !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .premium-nav-light .nav-item:last-child .nav-link-light {
        border-bottom: none;
    }

    .premium-nav-light .nav-link-light::before {
        display: none;
    }

    .premium-nav-light .dropdown-menu[data-bs-popper] {
        left: 0 !important;
        transform: none !important;
        width: 100%;
        margin-top: 8px;
    }
}

/* ==============================================
       HERO BANNER CSS (WITH BG IMAGE)
    =============================================== */
.hero-banner-light {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;

    /* ADDED BACKGROUND IMAGE WITH LIGHT TRANSLUCENT OVERLAY */
    background: linear-gradient(135deg, rgba(240, 250, 255, 0.85) 0%, rgba(255, 255, 255, 0.95) 100%),
        url('../img/banner.webp') center/cover no-repeat;

    background-attachment: fixed;
    /* Optional: Adds a subtle parallax to the BG image */
    overflow: hidden;
    padding-top: 80px;
}

.hero-content-light {
    position: relative;
    z-index: 5;
}

.hero-title-light {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #001f3f;
    font-family: "cursive";
}

.text-gradient-water-light {
    background: linear-gradient(to right, #0051ff 0%, #00b4d8 50%, #0051ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlowLight 5s linear infinite;
}

@keyframes waterFlowLight {
    to {
        background-position: 200% center;
    }
}

.ban-img {
    object-fit: contain !important;
}

.hero-subtitle-light {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 400;
    color: #475569;
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-group-custom-light {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-premium-light {
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-solid-blue {
    background: #0051ff;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 81, 255, 0.2);
}

.btn-solid-blue:hover {
    background: #003cc2;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 81, 255, 0.4);
}

.btn-outline-dark {
    background: rgba(255, 255, 255, 0.5);
    color: #001f3f;
    border: 1px solid #cbd5e1;
    backdrop-filter: blur(10px);
}

.btn-outline-dark:hover {
    border-color: #001f3f;
    background: rgba(0, 31, 63, 0.05);
    transform: translateY(-4px);
}

.hero-image-wrapper {
    position: relative;
}

.image-backdrop-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    filter: blur(40px);
}

/* ==============================================
       WAVES & SWIMMER ANIMATION CSS
    =============================================== */
.wave-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 260px;
    overflow: hidden;
    z-index: 1;
}

.hero-water-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 55%;
}

.wave1 {
    animation: animateWave 14s linear infinite;
    z-index: 1;
    opacity: 0.85;
}

.wave2 {
    animation: animateWave 18s linear infinite reverse;
    z-index: 2;
    opacity: 0.95;
}

.wave3 {
    animation: animateWave 11s linear infinite;
    z-index: 4;
}

@keyframes animateWave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Realistic Swimmer Animation CSS */
.swimmer-animation {
    position: absolute;
    bottom: 45px;
    left: -130px;
    z-index: 3;
    animation: realisticSwimAcross 13s cubic-bezier(0.42, 0, 0.58, 1) infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 180, 216, 0.45));
}

.swimmer-graphic-container {
    position: relative;
    display: inline-block;
    animation: strokeBobbing 1.6s ease-in-out infinite alternate;
}

.swimmer-svg {
    filter: drop-shadow(0 4px 12px rgba(0, 81, 255, 0.6));
    transition: transform 0.3s ease;
}

.swimmer-water-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.4) 0%, rgba(0, 81, 255, 0.18) 50%, transparent 75%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: auraPulse 1.6s ease-in-out infinite alternate;
}

@keyframes strokeBobbing {
    0% {
        transform: translateY(0px) rotate(4deg) scale(1);
    }

    33% {
        transform: translateY(-9px) rotate(-3deg) scale(1.03);
    }

    66% {
        transform: translateY(7px) rotate(5deg) scale(0.98);
    }

    100% {
        transform: translateY(-5px) rotate(-2deg) scale(1);
    }
}

@keyframes auraPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.45;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 0.9;
    }
}

@keyframes realisticSwimAcross {
    0% {
        transform: translateX(-130px) translateY(0px);
    }

    18% {
        transform: translateX(20vw) translateY(-14px);
    }

    38% {
        transform: translateX(42vw) translateY(10px);
    }

    58% {
        transform: translateX(64vw) translateY(-16px);
    }

    82% {
        transform: translateX(86vw) translateY(8px);
    }

    100% {
        transform: translateX(calc(100vw + 160px)) translateY(0px);
    }
}

/* Water Splash Droplets Generated by Swimmer */
.hero-splash-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, #00b4d8 70%, transparent 100%);
    pointer-events: none;
    z-index: 3;
    animation: heroSplashFade 0.65s ease-out forwards;
}

@keyframes heroSplashFade {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.95;
    }

    100% {
        transform: translate(var(--dx), var(--dy)) scale(0.1);
        opacity: 0;
    }
}

/* about section */
/* ==============================================
   ABOUT SECTION CSS (UNIQUE CLASSES)
=============================================== */
.isaac-bio-wrapper {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Creative Image Layout */
.bio-visual-container {
    position: relative;
    z-index: 2;
}

.bio-portrait-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    /* Asymmetrical water-droplet curve for creative flair */
    border-radius: 40px 180px 40px 40px;
    box-shadow: 0 25px 50px rgba(0, 31, 63, 0.1);
    transition: transform 0.5s ease;
    object-position: top center;
    /* Ensures his face stays in frame */
}

.bio-portrait-img:hover {
    transform: scale(1.02);
}

/* Decorative element behind the image */
.bio-portrait-backdrop {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border-radius: 40px 180px 40px 40px;
    border: 2px dashed rgba(0, 180, 216, 0.4);
    z-index: -1;
    transition: all 0.5s ease;
}

/* Floating Glass Quote */
.bio-glass-quote-box {
    position: absolute;
    bottom: 40px;
    right: -40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 180, 216, 0.2);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 5;
    max-width: 320px;
    border-left: 4px solid #0051ff;
    animation: floatBioElement 6s ease-in-out infinite;
}

@keyframes floatBioElement {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.bio-quote-mark {
    font-size: 3rem;
    color: rgba(0, 180, 216, 0.2);
    position: absolute;
    top: -15px;
    left: 15px;
    z-index: 0;
}

.bio-quote-headline {
    font-size: 1.3rem;
    font-weight: 700;
    color: #001f3f;
    font-family: sans-serif;
    position: relative;
    z-index: 1;
    margin: 0;
    line-height: 1.4;
}

/* Text Column Styling */
.bio-top-label {
    color: #00b4d8;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.bio-main-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #001f3f;
    line-height: 1.2;
    font-family: sans-serif;
}

.bio-separator-dot {
    color: #00b4d8;
    font-weight: 300;
    margin: 0 5px;
    opacity: 0.5;
}

.bio-paragraph-group {
    position: relative;
    padding-left: 25px;
    border-left: 2px solid rgba(0, 180, 216, 0.2);
    margin-bottom: 40px;
}

.bio-paragraph-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.bio-paragraph-text strong {
    color: #001f3f;
    font-weight: 700;
}

.bio-action-link {
    color: #0051ff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.bio-action-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.bio-action-link:hover {
    color: #001f3f;
    border-bottom: 2px solid #001f3f;
}

.bio-action-link:hover i {
    transform: translateX(6px);
}

/* Mobile Responsiveness for Creative Section */
@media (max-width: 991px) {
    .bio-glass-quote-box {
        bottom: -20px;
        right: 10px;
        max-width: 280px;
        padding: 25px;
    }

    .bio-portrait-img {
        height: 450px;
        border-radius: 30px 120px 30px 30px;
    }

    .bio-portrait-backdrop {
        border-radius: 30px 120px 30px 30px;
    }

    .bio-paragraph-group {
        padding-left: 15px;
    }
}


/* early days */
/* ==============================================
   EARLY YEARS SECTION CSS
=============================================== */
.early-redesigned-wrapper {
    padding: 80px 0;
    background-color: #eef7f9;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.early-badge {
    display: inline-block;
    background: rgba(0, 180, 216, 0.15);
    color: #0089a7;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.early-heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #001f3f;
    line-height: 1.1;
    font-family: sans-serif;
}

.early-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #0051ff, #00b4d8);
    border-radius: 4px;
    margin-top: 20px;
}

.early-body-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.early-body-text strong {
    color: #001f3f;
    font-weight: 700;
}

.early-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.1);
    border-color: rgba(0, 180, 216, 0.2);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: #f0faff;
    color: #0051ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
}

.feature-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #001f3f;
    font-size: 1rem;
}

.school-cards-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.school-card {
    position: absolute;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.5s ease;
}

.school-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.school-img-box {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.school-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-back {
    top: 0;
    right: 0;
    width: 280px;
    z-index: 2;
    transform: scale(0.9) rotate(3deg);
    opacity: 0.8;
}

.card-front {
    bottom: 0;
    left: 0;
    width: 320px;
    z-index: 3;
    box-shadow: 0 30px 60px rgba(0, 51, 255, 0.1);
}

.school-cards-container:hover .card-back {
    transform: scale(0.95) rotate(5deg) translateX(20px);
    opacity: 1;
}

.school-cards-container:hover .card-front {
    transform: translateY(-10px);
}

.deco-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border: 2px dashed rgba(0, 180, 216, 0.3);
    border-radius: 50%;
    z-index: 1;
    animation: spinRing 20s linear infinite;
}

@keyframes spinRing {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .school-cards-container {
        height: 350px;
        margin-top: 40px;
    }

    .card-back {
        right: 5%;
        width: 240px;
    }

    .card-front {
        left: 5%;
        width: 280px;
    }
}


/* ==============================================
   TERTIARY DAYS SECTION CSS
=============================================== */
.tert-section-wrapper {
    padding: 80px 0;
    background-color: #ffffff;
    /* Crisp white to contrast with the previous blue section */
    position: relative;
    overflow: visible;
}

.gsap-tert-left {
    position: relative;
}

/* Left Side: Typography & Quote (Fixed Sticky Scroll) */
.tert-sticky-content {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    z-index: 10;
    padding-bottom: 20px;
}

@media (max-width: 991px) {
    .tert-sticky-content {
        position: relative;
        top: 0;
    }
}

.tert-badge {
    display: inline-block;
    background: rgba(0, 81, 255, 0.1);
    color: #0051ff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.tert-heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #001f3f;
    line-height: 1.1;
    font-family: sans-serif;
}

.tert-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #00b4d8, #0051ff);
    border-radius: 4px;
    margin-top: 20px;
}

.tert-body-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.tert-body-text strong {
    color: #001f3f;
    font-weight: 700;
}

.tert-quote-box {
    background: #f4faff;
    border-left: 4px solid #00b4d8;
    padding: 30px;
    border-radius: 0 20px 20px 0;
    position: relative;
}

.tert-quote-icon {
    font-size: 2.5rem;
    color: rgba(0, 180, 216, 0.2);
    position: absolute;
    top: -10px;
    left: 20px;
}

.tert-quote-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #001f3f;
    font-family: sans-serif;
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Right Side: Vertical Timeline */
.tert-timeline-container {
    position: relative;
    padding-left: 40px;
    border-left: 2px dashed rgba(0, 180, 216, 0.3);
}

.tert-timeline-card {
    position: relative;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 31, 63, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tert-timeline-card:last-child {
    margin-bottom: 0;
}

.tert-timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 180, 216, 0.1);
    border-color: rgba(0, 180, 216, 0.2);
}

/* Timeline Dot indicator */
.tert-timeline-dot {
    position: absolute;
    left: -47px;
    /* Aligns with the dashed border */
    top: 40px;
    width: 12px;
    height: 12px;
    background: #00b4d8;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(0, 180, 216, 0.2);
    transition: all 0.3s ease;
}

.tert-timeline-card:hover .tert-timeline-dot {
    background: #0051ff;
    box-shadow: 0 0 0 8px rgba(0, 81, 255, 0.2);
    transform: scale(1.2);
}

/* Card Content */
.tert-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 81, 255, 0.05);
    color: #0051ff;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tert-timeline-card:hover .tert-card-icon {
    background: #0051ff;
    color: #ffffff;
}

.tert-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #001f3f;
    font-family: sans-serif;
    margin-bottom: 12px;
}

.tert-milestone-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 31, 63, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tert-timeline-card:hover .tert-milestone-img {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 81, 255, 0.15);
}

.tert-card-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.tert-card-desc strong {
    color: #001f3f;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .tert-sticky-content {
        position: relative;
        top: 0;
    }

    .tert-timeline-container {
        margin-top: 50px;
        padding-left: 30px;
    }

    .tert-timeline-dot {
        left: -37px;
    }
}

/* Accolades Section */
/* ==============================================
       ACCOLADES EDITORIAL SLIDER CSS
    =============================================== */
#accolades {
    margin: 0;
    padding: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #070e18;
    color: #f8fafc;
    overflow-x: hidden;
}

.isaac-magazine-acc {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.mag-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    top: 10%;
    right: -10%;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.mag-badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00f0ff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mag-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    font-family: sans-serif;
    letter-spacing: -1px;
}

.mag-divider {
    width: 80px;
    height: 3px;
    background: #00f0ff;
    border-radius: 3px;
    margin-top: 25px;
}

.mag-body-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #94a3b8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 600px;
}

.mag-swiper-container {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 60px;
}

.mag-slide-card {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
}

.mag-slide-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.4);
}

.mag-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    filter: brightness(0.8) contrast(1.1);
}

.mag-slide-card:hover .mag-bg-image {
    transform: scale(1.08);
}

.mag-gradient-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 8, 19, 0.95) 0%, rgba(2, 8, 19, 0.5) 50%, transparent 100%);
    z-index: 2;
}

.mag-content-area {
    position: relative;
    z-index: 3;
}

.mag-index-stamp {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: sans-serif;
    color: rgba(255, 255, 255, 0.3);
    z-index: 3;
    transition: color 0.3s ease;
}

.mag-slide-card:hover .mag-index-stamp {
    color: #00f0ff;
}

.mag-category-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00f0ff;
    margin-bottom: 12px;
    display: block;
}

.mag-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: sans-serif;
    margin-bottom: 15px;
    line-height: 1.15;
}

.mag-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 450px;
}

.mag-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.mag-progress-container {
    flex-grow: 1;
    max-width: 400px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    margin: 0 40px;
}

.mag-progress-container .swiper-pagination,
.mag-progress-container .swiper-pagination-progressbar {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px;
    overflow: hidden;
}

.mag-progress-container .swiper-pagination-progressbar-fill {
    background: #00f0ff !important;
    border-radius: 4px;
}

.mag-nav-group {
    display: flex;
    gap: 15px;
}

.mag-arrow-btn {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mag-arrow-btn:hover {
    background: #00f0ff;
    color: #020813;
    border-color: #00f0ff;
    transform: scale(1.05);
}

.mag-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 35px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.mag-cta-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mag-cta-btn:hover {
    background: #ffffff;
    color: #020813;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.mag-cta-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .mag-slide-card {
        height: 450px;
        padding: 30px;
    }

    .mag-title {
        font-size: 1.7rem;
    }

    .mag-controls-bar {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .mag-progress-container {
        width: 100%;
        margin: 0;
    }
}


/* testimonial */
/* ==============================================
       TESTIMONIALS REDESIGNED SECTION CSS (UNIQUE PREFIX: tst-)
    =============================================== */
.tst-section-wrapper {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Ambient background glow */
.tst-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Section Header */
.tst-badge {
    display: inline-block;
    background: rgba(0, 180, 216, 0.12);
    color: #0089a7;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.tst-heading {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    color: #001f3f;
    line-height: 1.1;
    font-family: sans-serif;
    letter-spacing: -1px;
}

.tst-divider {
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, #00b4d8, #0051ff);
    border-radius: 4px;
    margin-top: 20px;
}

.tst-body-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #64748b;
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 600px;
}

/* Swiper Viewport */
.tst-swiper-viewport {
    width: 100%;
    padding: 40px 10px 60px 10px;
    position: relative;
    z-index: 1;
}

/* Modern Card Layout */
.tst-card {
    height: 100%;
    background: #ffffff;
    border-radius: 30px;
    padding: 45px 35px;
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.04);
    border: 1px solid rgba(0, 31, 63, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media screen and (min-width:768px) {
    .tst-card {
        min-height: 480px !important;
    }
}

/* Highlight style when card is active/centered in Swiper */
.swiper-slide-active .tst-card {
    background: #001f3f;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 31, 63, 0.2);
    transform: translateY(-8px);
    border-color: rgba(0, 180, 216, 0.3);
}

.tst-quote-icon-bg {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 3rem;
    color: rgba(0, 180, 216, 0.1);
    transition: color 0.4s ease;
}

.swiper-slide-active .tst-quote-icon-bg {
    color: rgba(0, 180, 216, 0.2);
}

.tst-stars-row {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: flex;
    gap: 4px;
}

.tst-quote-text {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 35px;
    transition: color 0.4s ease;
}

.swiper-slide-active .tst-quote-text {
    color: #e2e8f0;
}

.tst-author-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    transition: border-color 0.4s ease;
}

.swiper-slide-active .tst-author-meta {
    border-color: rgba(255, 255, 255, 0.1);
}

.tst-author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(0, 180, 216, 0.15);
    color: #0051ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-family: sans-serif;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.swiper-slide-active .tst-author-avatar {
    background: #00b4d8;
    color: #001f3f;
}

.tst-author-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #001f3f;
    font-family: sans-serif;
    margin: 0;
    transition: color 0.4s ease;
}

.swiper-slide-active .tst-author-name {
    color: #ffffff;
}

.tst-author-title {
    font-size: 0.8rem;
    color: #64748b;
    margin: 2px 0 0 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color 0.4s ease;
}

.swiper-slide-active .tst-author-title {
    color: #94a3b8;
}

/* Controls & Navigation Row */
.tst-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.tst-nav-buttons-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tst-arrow-btn {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #001f3f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 31, 63, 0.04);
}

.tst-arrow-btn:hover:not(.swiper-button-disabled) {
    background: #0051ff;
    color: #ffffff;
    border-color: #0051ff;
    transform: scale(1.05);
}

.tst-arrow-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Counter Indicator */
.tst-fraction-pagination {
    font-family: sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #001f3f;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tst-fraction-divider {
    color: #cbd5e1;
    font-weight: 400;
}

.swiper-pagination-fraction {
    color: #001f3f;
}

.swiper-pagination-current {
    color: #001f3f;
}

.swiper-pagination-total {
    color: #94a3b8;
}

/* CTA Link */
.tst-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0051ff;
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 81, 255, 0.25);
    transition: all 0.4s ease;
}

.tst-cta-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.tst-cta-link:hover {
    background: #001f3f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 31, 63, 0.3);
}

.tst-cta-link:hover i {
    transform: translate(3px, -3px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tst-controls-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .tst-controls-row div:last-child {
        width: 100%;
    }

    .tst-cta-link {
        width: 100%;
        justify-content: center;
    }
}

/* ==============================================
       MINIMAL QUOTE SECTION CSS (PREFIX: min-qte-)
    =============================================== */
.min-qte-wrapper {
    min-height: 80vh;
    padding: 120px 20px;
    /* Change this background or add your background image URL below */
    background: linear-gradient(rgba(7, 14, 24, 0.85), rgba(7, 14, 24, 0.85)),
        url('../img/quote-bg.webp') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.min-qte-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Subtle top accent line */
.min-qte-line {
    width: 40px;
    height: 2px;
    background: #00b4d8;
    margin: 0 auto 35px auto;
    opacity: 0.8;
}

/* Quote Text */
.min-qte-text {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: #ffffff;
    font-family: sans-serif;
    line-height: 1.4;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}

/* Minimal Author Attribution */
.min-qte-author {
    font-size: 0.95rem;
    font-weight: 500;
    color: #94a3b8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .min-qte-wrapper {
        padding: 80px 20px;
        min-height: 40vh;
    }

    .min-qte-text {
        font-size: 1.5rem;
    }
}

/* ==============================================
       ULTRA-MINIMAL WATER-ANIMATED FOOTER CSS
   =============================================== */
.minimal-water-footer {
    position: relative;
    background: #060b14;
    color: #94a3b8;
    padding-top: 90px;
    padding-bottom: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
    border-top: 1px solid rgba(0, 180, 216, 0.12);
}

.water-canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 1;
}

.minimal-contact-section {
    position: relative;
    margin-bottom: 50px;
}

.minimal-subhead {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #00b4d8;
}

.water-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00b4d8;
    box-shadow: 0 0 12px #00b4d8;
    display: inline-block;
    margin-right: 10px;
    animation: waterDotPulse 2s ease-in-out infinite alternate;
}

@keyframes waterDotPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
        box-shadow: 0 0 6px #00b4d8;
    }

    100% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 16px #00b4d8;
    }
}

.minimal-headline {
    font-family: sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-top: 16px;
    margin-bottom: 32px;
    letter-spacing: -1px;
    max-width: 780px;
}

.minimal-email-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.minimal-email-link {
    font-family: sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.minimal-email-link .liquid-line {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0051ff 0%, #00b4d8 100%);
    transform: scaleX(0.25);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.minimal-email-link:hover {
    color: #00b4d8 !important;
}

.minimal-email-link:hover .liquid-line {
    transform: scaleX(1);
    background: linear-gradient(90deg, #00b4d8 0%, #90e0ef 100%);
}

.minimal-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.minimal-copy-btn:hover {
    background: rgba(0, 180, 216, 0.15);
    border-color: #00b4d8;
    color: #ffffff;
    transform: translateY(-2px);
}

.minimal-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    display: inline-block;
}

.minimal-divider-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.minimal-brand {
    font-family: sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff !important;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: uppercase;
}

.accent-cyan {
    color: #00b4d8;
}

.minimal-role {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00b4d8;
    margin-top: 4px;
    margin-bottom: 12px;
    font-weight: 600;
}

.minimal-bio {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 18px;
    max-width: 420px;
}

.minimal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.m-tag {
    font-size: 0.72rem;
    color: #64748b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
}

.minimal-col-title {
    font-family: sans-serif;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.minimal-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.minimal-links li {
    margin-bottom: 10px;
}

.minimal-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.minimal-links a:hover {
    color: #00b4d8;
    transform: translateX(4px);
}

.m-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.m-social-icon:hover {
    border-color: #00b4d8;
    color: #00b4d8;
    background: rgba(0, 180, 216, 0.1);
    transform: translateY(-3px);
}

.minimal-copy-text {
    font-size: 0.83rem;
    color: #64748b;
    margin: 0;
}

.minimal-copy-text strong {
    color: #cbd5e1;
}

.minimal-footer-link {
    color: #64748b;
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.minimal-footer-link:hover {
    color: #00b4d8;
}

.minimal-sep {
    color: #334155;
    font-size: 0.8rem;
}

.minimal-top-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #00b4d8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.minimal-top-btn:hover {
    background: #00b4d8;
    color: #ffffff;
    border-color: #00b4d8;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .minimal-water-footer {
        padding-top: 60px;
    }

    .minimal-email-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .minimal-email-link {
        font-size: 1.5rem;
    }
}

/* ==============================================
       SITE-WIDE WATER CURSOR EFFECT
   =============================================== */

/* Hide default cursor on desktop devices supporting hover */

/* Custom Cursor Dot */
.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #00b4d8;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(0, 180, 216, 0.8), 0 0 20px rgba(0, 81, 255, 0.6);
    transition: transform 0.15s ease-out, width 0.25s ease, height 0.25s ease, background 0.25s ease;
}

/* Custom Cursor Ring */
.custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(0, 180, 216, 0.5);
    background: rgba(0, 180, 216, 0.05);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

/* Hover States for Interactive Elements */
.custom-cursor-ring.cursor-hover {
    width: 58px;
    height: 58px;
    border-color: #00b4d8;
    background: rgba(0, 180, 216, 0.15);
    box-shadow: 0 0 25px rgba(0, 180, 216, 0.35);
}

.custom-cursor-dot.cursor-hover {
    width: 6px;
    height: 6px;
    background: #ffffff;
    box-shadow: 0 0 15px #ffffff;
}

/* Water Click Ripple Animation */
.water-click-ripple {
    position: fixed;
    border-radius: 50%;
    border: 2px solid #00b4d8;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    animation: waterClickExpand 0.6s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes waterClickExpand {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0.9;
        border-width: 3px;
    }

    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
        border-width: 1px;
    }
}

/* Water Trail Droplet */
.water-trail-drop {
    position: fixed;
    width: 5px;
    height: 5px;
    background: rgba(0, 180, 216, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99996;
    transform: translate(-50%, -50%);
    animation: waterTrailFade 0.5s ease-out forwards;
}

@keyframes waterTrailFade {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -20%) scale(0.2);
        opacity: 0;
    }
}

/* Disable Custom Cursor on Mobile / Touch Devices */


/* COMMON BANNER */
/* ==============================================
       EXACT 300PX MINIMAL BANNER CSS (PREFIX: banner-300-)
    =============================================== */
.banner-300-wrapper {
    padding-top: 60px;
    height: 300px;
    width: 100%;
    background: linear-gradient(135deg, rgba(240, 250, 255, 0.95) 0%, rgba(248, 250, 252, 1) 100%);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-300-container {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

/* Minimal Eyebrow / Tag */
.banner-300-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #0051ff;
    margin-bottom: 10px;
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Main Title */
.banner-300-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #001f3f;
    font-family: sans-serif;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

/* Minimal Breadcrumbs */
.banner-300-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.banner-300-breadcrumb a {
    color: #0051ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.banner-300-breadcrumb a:hover {
    color: #001f3f;
}

.banner-300-breadcrumb span {
    color: #cbd5e1;
}

.banner-300-breadcrumb .current {
    color: #64748b;
}

/* ACC */
.acc-main-wrapper {
    padding: 80px 0 80px 0;
    background: #ffffff;
    position: relative;
}

.acc-featured-card iframe {
    border-radius: 20px;
}

.acc-section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0051ff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 15px;
}

.acc-editorial-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #001f3f;
    font-family: sans-serif;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.acc-intro-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    max-width: 750px;
    margin-bottom: 30px;
}

.acc-featured-card {
    position: relative;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    padding: 60px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.04);
    margin-bottom: 80px;
}

.acc-bg-year {
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 16rem;
    font-weight: 800;
    font-family: sans-serif;
    color: rgba(0, 81, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.acc-featured-content {
    position: relative;
    z-index: 1;
}

.acc-featured-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.acc-featured-badge {
    display: inline-block;
    background: rgba(0, 81, 255, 0.1);
    color: #0051ff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.acc-featured-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #001f3f;
    font-family: sans-serif;
    margin-bottom: 20px;
    line-height: 1.2;
}

.acc-featured-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
}

.acc-meta-list {
    display: flex;
    gap: 30px;
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
}

.acc-meta-item span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.acc-meta-item strong {
    font-size: 1rem;
    color: #001f3f;
    font-family: sans-serif;
}

/* ==============================================
       03 & 04 — INTERACTIVE RECOGNITION NAV & CARDS
    =============================================== */
.acc-interactive-wrapper {
    background: #ffffff;
    padding-bottom: 80px;
}

.acc-nav-tabs-custom {
    display: flex;
    gap: 15px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 50px;
    overflow-x: auto;
    /* padding-bottom: 10px; */
}

.acc-tab-btn {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #94a3b8;
    font-family: sans-serif;
    padding: 15px 25px;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.acc-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.acc-tab-btn.active {
    color: #0051ff;
    background: rgba(0, 81, 255, 0.04);
}

.acc-tab-btn.active::after {
    background: #0051ff;
}

/* Dynamic Card View */
.acc-dynamic-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 31, 63, 0.05);
    transition: all 0.4s ease;
}

.acc-dynamic-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.acc-step-counter {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #00b4d8;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.acc-dynamic-title {
    font-size: 2rem;
    font-weight: 800;
    color: #001f3f;
    font-family: sans-serif;
    margin-bottom: 20px;
}

.acc-dynamic-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
}

.acc-dynamic-org {
    display: inline-block;
    background: #f1f5f9;
    color: #001f3f;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ==============================================
       PEOPLE BEHIND THE JOURNEY (DARK NAVY & CYAN THEME)
    =============================================== */
.journey-dark-wrapper {
    background-color: #070e18;
    /* Deep clean dark navy background replacing pink */
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.journey-dark-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.07) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.journey-top-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-family: sans-serif;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px auto;
    line-height: 1.6;
    font-weight: 500;
    color: #94a3b8;
}

/* Clean Bento Grid Layout for Photos */
.journey-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.journey-bento-item {
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.journey-bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journey-bento-item:hover img {
    transform: scale(1.08);
}

/* Sleek Modern Glass Card for Content */
.journey-content-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.journey-section-title {
    font-size: 2rem;
    font-weight: 800;
    font-family: sans-serif;
    margin-bottom: 25px;
    line-height: 1.15;
    color: #ffffff;
}

.journey-lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 40px;
}

/* Modern Minimalist Mentor Badges / Columns */
.mentors-category-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #00f0ff;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 25px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mentors-names-list {
    font-size: 1.05rem;
    line-height: 1.8;
    font-family: sans-serif;
    font-weight: 600;
    color: #f8fafc;
}

.mentors-names-list span {
    color: #00b4d8;
    margin: 0 8px;
}

/* ==============================================
       05 — CLOSING STATEMENT
    =============================================== */
.acc-closing-wrapper {
    padding: 140px 0;
    background-color: #020813;
    color: #ffffff;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.acc-closing-quote {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: sans-serif;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.acc-closing-quote span {
    color: #00f0ff;
    display: block;
}

.acc-closing-desc {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.acc-closing-motto {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00f0ff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {

    .banner-300-title {
        font-size: 1.5rem;
    }

    .acc-featured-card {
        padding: 30px;
    }

    .journey-content-card {
        padding: 35px;
    }

    .journey-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* acc quote */
.bg-qte-wrapper {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    /* Replace the URL below with your actual background image */
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.7) 0%, rgba(0, 180, 216, 0.3) 100%),
        url('../img/acc-quote.webp') center/cover no-repeat;
    background-attachment: fixed;
    /* Creates a premium parallax scrolling effect */
}

/* Dark Frosted Glass Card */
.bg-qte-card {
    position: relative;
    z-index: 10;
    background: rgba(15, 23, 42, 0.65);
    /* Dark translucent background */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 80px 60px;
    max-width: 950px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease, border-color 0.5s ease;
}

.bg-qte-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.4);
}

/* Large Decorative Background Quote Mark inside the card */
.bg-qte-watermark {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

/* Main Quote Typography */
.bg-qte-text {
    position: relative;
    z-index: 2;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    font-family: sans-serif;
    line-height: 1.35;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}

/* Animated Gradient Highlight for "Abundance" */
.bg-qte-highlight {
    background: linear-gradient(to right, #00f0ff, #0051ff, #00f0ff);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 4s linear infinite;
    display: inline-block;
    font-style: italic;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Author Section */
.bg-qte-author-box {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.bg-qte-line {
    width: 40px;
    height: 2px;
    background: #00f0ff;
    opacity: 0.7;
}

.bg-qte-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: #cbd5e1;
    /* Soft slate color */
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .bg-qte-wrapper {
        padding: 100px 20px;
    }

    .bg-qte-card {
        padding: 50px 30px;
        border-radius: 20px;
    }

    .bg-qte-watermark {
        font-size: 6rem;
        top: 10px;
    }

    .bg-qte-text {
        font-size: 1.7rem;
    }
}

/* ==============================================
   ABOUT PAGE CUSTOM STYLES
=============================================== */
.bg-navy-dark {
    background-color: #060b14 !important;
}

.abt-highlight-quote {
    background: #f0f9ff !important;
    border-left-color: #00b4d8 !important;
}

.border-cyan {
    border-color: #00b4d8 !important;
}

.color-blue {
    color: #0051ff !important;
}

.abt-motto-box {
    background: linear-gradient(135deg, #001f3f 0%, #0051ff 100%);
    box-shadow: 0 15px 35px rgba(0, 81, 255, 0.2);
}

.abt-pillar-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.abt-pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.pillar-icon-box {
    width: 55px;
    height: 55px;
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.pillar-title {
    font-family: sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.pillar-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.abt-role-card {
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.abt-role-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 81, 255, 0.1) !important;
    border-color: rgba(0, 81, 255, 0.3) !important;
}

.role-num {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: sans-serif;
    color: rgba(0, 81, 255, 0.2);
}

.role-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 81, 255, 0.08);
    color: #0051ff;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
}

.role-title {
    font-family: sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 12px;
}

.role-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.abt-philosophy-banner {
    background: linear-gradient(135deg, #060b14 0%, #001f3f 60%, #0051ff 100%);
    max-width: 950px;
}

.bg-dark-accent {
    background: rgba(255, 255, 255, 0.03);
}

/* ==============================================
   TESTIMONIALS GALLERY & LIGHTBOX CSS
=============================================== */
.tst-img-card {
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.tst-img-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 81, 255, 0.12) !important;
    border-color: rgba(0, 81, 255, 0.3) !important;
}

.tst-img-wrapper {
    height: 380px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tst-gallery-img {
    height: 100%;
    /* width: 100%; */
    /* object-fit: cover; */
    transition: transform 0.6s ease;
}

.tst-img-card:hover .tst-gallery-img {
    transform: scale(1.06);
}

.tst-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 11, 20, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tst-img-card:hover .tst-img-overlay {
    opacity: 1;
}

.tst-img-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(6, 11, 20, 0.75);
    backdrop-filter: blur(8px);
    color: #00f0ff;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: sans-serif;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    z-index: 2;
}

/* Lightbox Modal CSS */
.tst-lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(6, 11, 20, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.tst-lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.tst-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tst-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.tst-lightbox-meta {
    color: #cbd5e1;
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 20px;
}

#lightboxCounter {
    color: #00f0ff;
}

.tst-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.tst-lightbox-close:hover {
    background: #00f0ff;
    color: #060b14;
    transform: scale(1.1);
}

.tst-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.tst-lightbox-prev {
    left: 40px;
}

.tst-lightbox-next {
    right: 40px;
}

.tst-lightbox-arrow:hover {
    background: #00f0ff;
    color: #060b14;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .tst-lightbox-prev {
        left: 15px;
    }

    .tst-lightbox-next {
        right: 15px;
    }

    .tst-lightbox-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .tst-lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

/* ==============================================
   VOLUNTEER PAGE CUSTOM STYLES
=============================================== */
.vol-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.vol-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 81, 255, 0.12) !important;
    border-color: rgba(0, 81, 255, 0.3) !important;
}

.vol-card-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.4rem;
    font-weight: 800;
    font-family: sans-serif;
    color: rgba(0, 81, 255, 0.15);
}

.vol-icon-box {
    width: 55px;
    height: 55px;
    background: rgba(0, 81, 255, 0.08);
    color: #0051ff;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vol-card-title {
    font-family: sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #001f3f;
}

.vol-img-wrapper {
    height: 240px;
    position: relative;
    cursor: pointer;
    background: #060b14;
}

.vol-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vol-img-wrapper:hover .vol-img {
    transform: scale(1.06);
}

.vol-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 11, 20, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vol-img-wrapper:hover .vol-img-overlay {
    opacity: 1;
}

.vol-roles-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vol-roles-list li {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: #334155;
    display: flex;
    align-items: center;
}

.vol-num-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 180, 216, 0.08);
    color: #00b4d8;
    font-family: sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hover-lift {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 81, 255, 0.08) !important;
    border-color: rgba(0, 180, 216, 0.3) !important;
}

/* ==============================================
   VOLUNTEER LUXURY DARK GLASSMORPHISM STYLES
=============================================== */
.text-cyan {
    color: #00f0ff !important;
}

.text-slate-light {
    color: #94a3b8 !important;
}

.border-cyan-subtle {
    border-color: rgba(0, 240, 255, 0.25) !important;
}

.bg-cyan-glow {
    background: rgba(0, 240, 255, 0.08) !important;
}

.hero-water-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.25) 0%, rgba(6, 11, 20, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
}

.vol-glass-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-family: sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.vol-quote-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 180, 216, 0.08) 100%);
    backdrop-filter: blur(20px);
}

.quote-water-mark {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: rgba(0, 240, 255, 0.05);
    line-height: 1;
    pointer-events: none;
}

.vol-motto-badge {
    display: inline-block;
    background: linear-gradient(135deg, #001f3f 0%, #0051ff 100%);
    color: #00f0ff;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 25px rgba(0, 81, 255, 0.3);
}

/* Bento Card Design */
.vol-bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.vol-bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 81, 255, 0.15);
}

.vol-glow-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.vol-bento-number {
    font-family: sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.15);
}

.vol-bento-img-container {
    height: 240px;
    background: #060b14;
    cursor: pointer;
}

.vol-bento-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vol-bento-card:hover .vol-bento-img {
    transform: scale(1.06);
}

.vol-bento-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 11, 20, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.vol-bento-card:hover .vol-bento-overlay {
    opacity: 1;
}

.btn-vol-glow {
    background: #00f0ff;
    color: #060b14;
    font-family: sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    display: inline-flex;
    align-items: center;
}

.video-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.media-title {
    background: #00203f;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: -6px;
    font-size: 19px;
    padding-bottom: 16px;
}