/* 
   PREMIUM INTEGRATED TIMELINE CSS
   ====================================================
*/

/* --- 1. Ambient Background & Depth Layers (Points 5, 16) --- */
.integration-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff5e0, #FFF8EB);
    z-index: 1;
}

.timeline-depth-layers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.tl-layer {
    position: absolute;
    inset: 0;
}

/* Very soft moving radial lights */
.tl-radial-lights {
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(26, 122, 138, 0.08) 0%, transparent 40%);
    animation: tlLightsMove 40s infinite alternate ease-in-out;
}

@keyframes tlLightsMove {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.3) translate(-5%, 5%); }
}

/* Floating musical symbols */
.tl-symbol {
    position: absolute;
    font-size: 24px;
    opacity: 0.03;
    color: #d4af37;
    animation: tlFloatUp 60s infinite linear;
}

@keyframes tlFloatUp {
    0% { transform: translateY(110vh) rotate(0deg); }
    100% { transform: translateY(-10vh) rotate(360deg); }
}

/* --- 2. High-Performance Glass Panels (Smooth 60FPS) --- */
.ir-cell-left, .ir-cell-right {
    position: relative;
    background: rgba(255, 253, 245, 0.95);
    border-radius: 16px;
    padding: 24px;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 6px 20px rgba(92, 58, 33, 0.05);
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ir-cell-right {
    border-color: rgba(26, 122, 138, 0.35);
    background: rgba(250, 253, 254, 0.95);
}

.ir-cell-left:hover {
    transform: translateY(-4px) translateZ(0);
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 12px 28px rgba(180, 130, 40, 0.15);
}

.ir-cell-right:hover {
    transform: translateY(-4px) translateZ(0);
    border-color: rgba(26, 122, 138, 0.7);
    box-shadow: 0 12px 28px rgba(26, 122, 138, 0.15);
}

/* Glass Refraction Sweep (Hover Only) */
.ir-cell-left::before, .ir-cell-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    border-radius: 16px;
    z-index: 1;
    opacity: 0;
}

.ir-cell-left:hover::before, .ir-cell-right:hover::before {
    opacity: 1;
    animation: smoothSweep 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Typography Hierarchy */
.ir-cell-text {
    font-size: 15.5px;
    font-weight: 600;
    color: #3a2510;
    line-height: 1.6;
    letter-spacing: 0.2px;
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

/* --- 3. Living Timeline Spine & Scroll Beam (Points 1, 10, 13) --- */
.integration-roadmap {
    position: relative;
    padding: 20px 0;
}

/* The ambient base line */
.integration-roadmap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.2) 10%, rgba(26, 122, 138, 0.2) 90%, transparent);
    transform: translateX(-50%);
    z-index: 1;
}

/* The animated scroll progress beam */
#scroll-progress-beam {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 0%; /* updated via JS */
    background: linear-gradient(180deg, #d4af37, #1a7a8a);
    transform: translateX(-50%);
    z-index: 2;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    transition: height 0.1s ease-out;
}

/* --- 4. Animated Timeline Nodes (Point 2) --- */
.ir-center-dot {
    position: relative;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    animation: tlNodeBreathe 6s infinite alternate ease-in-out;
}

.ir-dot-inner {
    width: 10px;
    height: 10px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 8px #d4af37;
    transition: all 0.4s ease;
}

@keyframes tlNodeBreathe {
    0% { box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1); transform: scale(1); }
    100% { box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4); transform: scale(1.05); }
}

/* Node Halo */
.ir-center-dot::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: tlNodeHalo 4s infinite alternate;
    pointer-events: none;
}

@keyframes tlNodeHalo {
    0% { transform: scale(0.8); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0.8; }
}

/* Orbiting Sparkle */
.tl-orbit-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 6px #fff, 0 0 12px #d4af37;
    animation: tlOrbit 8s infinite linear;
}

@keyframes tlOrbit {
    0% { transform: rotate(0deg) translateX(22px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(22px) rotate(-360deg); }
}

/* --- 5. Floating Labels (Point 11) --- */
.ir-cell-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
    animation: tlLabelFloat 4s infinite alternate ease-in-out;
}

.ir-label-h { color: #8B5A2B; border-color: rgba(212, 175, 55, 0.3); }
.ir-label-c { color: #1a7a8a; border-color: rgba(26, 122, 138, 0.3); }

@keyframes tlLabelFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-3px); }
}

/* --- 6. Section Header Enhancement (Point 7) --- */
.ir-headers {
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.ir-h-left, .ir-h-right {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #3a2510;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.ir-h-left { border-bottom: 3px solid #d4af37; }
.ir-h-right { border-bottom: 3px solid #1a7a8a; color: #0d5a6a; }

.ir-h-left i, .ir-h-right i {
    animation: tlIconWobble 4s infinite alternate ease-in-out;
    display: inline-block;
}

@keyframes tlIconWobble {
    0% { transform: rotate(-3deg); }
    100% { transform: rotate(3deg); }
}

.ir-h-center {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 20px;
    animation: tlStarSpin 10s infinite linear;
}

@keyframes tlStarSpin {
    100% { transform: rotate(360deg); }
}

/* --- 7. Intelligent Spotlight (Point 9) --- */
.ir-row.tl-focused .ir-cell-left,
.ir-row.tl-focused .ir-cell-right {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
}

.ir-row.tl-focused .ir-center-dot {
    border-color: #d4af37;
    background: #fff;
}

.ir-row.tl-focused .ir-dot-inner {
    transform: scale(1.4);
    box-shadow: 0 0 15px #d4af37, 0 0 30px #fff;
}

/* Structural Grid Base (Desktop) */
.ir-row { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; align-items: center; position: relative; z-index: 1; margin-bottom: 30px; }
.ir-headers { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: center; }

/* Connectors (Desktop) */
.ir-cell-left::after { content: ''; position: absolute; right: -30px; top: 50%; width: 30px; height: 2px; background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.8)); transform: translateY(-50%); z-index: -1; animation: tlConnectPulse 4s infinite alternate; }
.ir-cell-right::after { content: ''; position: absolute; left: -30px; top: 50%; width: 30px; height: 2px; background: linear-gradient(90deg, rgba(26, 122, 138, 0.8), rgba(26, 122, 138, 0)); transform: translateY(-50%); z-index: -1; animation: tlConnectPulse 4s infinite alternate; animation-delay: 2s; }
@keyframes tlConnectPulse { 0% { opacity: 0.3; } 100% { opacity: 1; filter: drop-shadow(0 0 5px currentColor); } }

/* --- 8. Responsive Mobile Transformation (Up to 1024px) --- */
@media (max-width: 1024px) {
    .ir-headers {
        display: flex !important;
        gap: 10px !important;
        margin-bottom: 24px !important;
        padding-left: 45px !important;
    }

    .ir-h-left, .ir-h-right {
        flex: 1 !important;
        padding: 12px 14px !important;
        font-size: 13.5px !important;
        text-align: center !important;
        border-radius: 12px !important;
    }

    .ir-h-center {
        display: none !important;
    }

    .integration-roadmap::before,
    #scroll-progress-beam {
        left: 20px !important;
        transform: none !important;
    }

    .ir-row {
        display: flex !important;
        flex-direction: column !important;
        padding-left: 45px !important;
        position: relative !important;
        margin-bottom: 24px !important;
        gap: 12px !important;
    }

    .ir-center-dot {
        position: absolute !important;
        left: 4px !important;
        top: 18px !important;
        width: 32px !important;
        height: 32px !important;
        transform: none !important;
        z-index: 3 !important;
    }

    .ir-cell-left, .ir-cell-right {
        text-align: left !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 16px 18px !important;
        border-radius: 14px !important;
        margin: 0 !important;
    }

    .ir-cell-left::after,
    .ir-cell-right::after,
    .ir-cell-left::before,
    .ir-cell-right::before {
        display: none !important;
    }
}


/* --- 9. Integrated Curriculum Includes (Premium Showcase - Image Matched) --- */

.curr-showcase-section {
    position: relative;
    padding: 80px 24px 90px;
    background: radial-gradient(ellipse at 50% 30%, #F9F1E1 0%, #EFE1C5 50%, #E3CCA3 100%);
    border-radius: 28px;
    overflow: hidden;
    margin-top: 70px;
    box-shadow: inset 0 0 80px rgba(180, 130, 40, 0.12), 0 12px 40px rgba(92, 58, 33, 0.08);
    border: 1.5px solid rgba(225, 185, 95, 0.6);
}

/* Background Ambient Glows & Floating Notes */
.curr-bg-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 230, 150, 0.45) 0%, rgba(212, 175, 55, 0.12) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.curr-floating-notes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.curr-note {
    position: absolute;
    color: rgba(180, 130, 40, 0.28);
    font-size: 26px;
    animation: currNoteFloat 14s ease-in-out infinite alternate;
}

.cn-1 { top: 12%; left: 5%; font-size: 38px; animation-duration: 12s; }
.cn-2 { top: 38%; left: 3%; font-size: 24px; animation-duration: 16s; animation-delay: -2s; }
.cn-3 { top: 72%; left: 7%; font-size: 30px; animation-duration: 10s; animation-delay: -4s; }
.cn-4 { top: 15%; right: 5%; font-size: 34px; animation-duration: 15s; animation-delay: -1s; }
.cn-5 { top: 48%; right: 3%; font-size: 26px; animation-duration: 13s; animation-delay: -3s; }
.cn-6 { top: 78%; right: 6%; font-size: 32px; animation-duration: 11s; animation-delay: -5s; }

@keyframes currNoteFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-15px) rotate(10deg); opacity: 0.45; }
    100% { transform: translateY(10px) rotate(-10deg); opacity: 0.2; }
}

.curr-wavy-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.curr-wave-svg {
    width: 100%;
    height: 100%;
}

/* Header */
.curr-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.curr-lotus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.curr-lotus-line {
    width: 45px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #c8911a, transparent);
}

.curr-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', 'Cinzel', Georgia, serif !important;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3 !important;
    color: #4A2E12;
    letter-spacing: -0.5px;
    margin: 0 0 10px 0 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.curr-subtitle {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-style: italic;
    font-size: 17px;
    line-height: 1.5 !important;
    color: #7A5533;
    margin: 0 0 10px 0 !important;
}

.curr-header-diamond {
    color: #c8911a;
    font-size: 13px;
    opacity: 0.85;
    margin-top: 2px;
}

/* Showcase Grid */
.curr-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 280px 1fr;
    gap: 24px;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.curr-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Center Emblem */
.curr-emblem-wrap {
    position: relative;
    width: 270px;
    height: 270px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.curr-orbit-ring {
    position: absolute;
    inset: 4px;
    border: 1.5px dashed rgba(212, 175, 55, 0.65);
    border-radius: 50%;
    animation: currOrbitSpin 25s linear infinite;
}

.curr-orbit-ring-outer {
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.curr-orbit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FFE58F;
    border-radius: 50%;
    box-shadow: 0 0 10px #FFD700;
}

.node-1 { top: -4px; left: 50%; transform: translateX(-50%); }
.node-2 { bottom: -4px; left: 50%; transform: translateX(-50%); }
.node-3 { left: -4px; top: 50%; transform: translateY(-50%); }
.node-4 { right: -4px; top: 50%; transform: translateY(-50%); }

@keyframes currOrbitSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.curr-emblem-circle {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #4a270a 0%, #261103 70%, #120701 100%);
    position: relative;
    border: 4px solid #E6B84C;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.55), inset 0 0 25px rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.curr-emblem-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.3) 0%, transparent 65%);
    animation: emblemPulse 4s ease-in-out infinite alternate;
}

@keyframes emblemPulse {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

.curr-emblem-notes .en-note {
    position: absolute;
    color: rgba(255, 230, 150, 0.65);
    pointer-events: none;
}
.en-1 { top: 25px; left: 35px; font-size: 24px; }
.en-2 { bottom: 30px; right: 35px; font-size: 20px; }
.en-3 { top: 40px; right: 30px; font-size: 18px; }

.curr-flute-graphic {
    width: 175px;
    height: 175px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.6));
    transition: transform 0.4s ease;
}

.curr-emblem-circle:hover .curr-flute-graphic {
    transform: scale(1.08) rotate(3deg);
}

/* Card Styles */
.curr-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 253, 245, 0.96) 0%, rgba(248, 237, 212, 0.92) 100%);
    border: 1.5px solid rgba(225, 185, 95, 0.7);
    border-radius: 40px 18px 18px 40px;
    padding: 14px 20px 14px 14px;
    position: relative;
    box-shadow: 0 8px 24px rgba(180, 130, 40, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.95);
    transform: translateZ(0);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: default;
}

.curr-col-right .curr-card {
    border-radius: 40px 18px 18px 40px;
}

.curr-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f7da8b, #c48c28);
    color: #4a2508;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(196, 140, 40, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    transition: transform 0.35s ease;
}

.curr-card-content {
    flex: 1;
}

.curr-card-title {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 15.5px;
    font-weight: 700;
    color: #38210C;
    margin-bottom: 2px;
    line-height: 1.3;
}

.curr-card-desc {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 13px;
    color: #6E533A;
    line-height: 1.45;
    margin: 0;
}

.curr-card-star {
    color: #d4af37;
    font-size: 11px;
    opacity: 0.75;
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover Effects on Cards */
.curr-card:hover {
    transform: translateY(-4px) scale(1.015);
    background: linear-gradient(135deg, rgba(255, 255, 250, 0.98) 0%, rgba(252, 242, 220, 0.95) 100%);
    border-color: rgba(225, 185, 70, 0.95);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.28), inset 0 1px 3px #ffffff;
}

.curr-card:hover .curr-card-icon {
    transform: scale(1.08) rotate(6deg);
    background: radial-gradient(circle at 30% 30%, #ffe49e, #d99c2d);
}

.curr-card:hover .curr-card-star {
    transform: scale(1.4) rotate(90deg);
    opacity: 1;
    color: #f5c227;
}

/* Bottom Cards Row */
.curr-bottom-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 920px;
    margin: 24px auto 45px;
    position: relative;
    z-index: 2;
}

.curr-card-wide {
    border-radius: 40px 18px 18px 40px;
}

/* Bottom Maroon Feature Banner Bar */
.curr-maroon-banner {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    background: linear-gradient(135deg, #4A0E17 0%, #2D070C 50%, #4A0E17 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.55);
    border-radius: 35px;
    padding: 22px 36px;
    box-shadow: 0 16px 40px rgba(45, 7, 12, 0.4), inset 0 1px 2px rgba(255, 215, 0, 0.3);
    z-index: 2;
}

.curr-banner-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.curr-banner-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
}

.curr-banner-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.curr-banner-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.curr-banner-text h5 {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 15px;
    font-weight: 700;
    color: #f5d78e;
    margin-bottom: 3px;
    line-height: 1.3;
}

.curr-banner-text p {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 12.5px;
    color: #e5b9b9;
    line-height: 1.4;
    margin: 0;
}

.curr-banner-pendant {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    background: #2D070C;
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    border-top: none;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pendant-dot {
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 6px #ffd700;
}

/* Responsive Media Queries (Flawless All Devices) */
@media (max-width: 1024px) {
    .curr-showcase-section {
        padding: 60px 20px 70px;
        margin-top: 50px;
        border-radius: 24px;
    }
    .curr-title {
        font-size: 34px;
    }
    .curr-subtitle {
        font-size: 15.5px;
    }
    .curr-showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .curr-col-center {
        grid-column: 1 / -1;
        order: -1;
        margin-bottom: 24px;
    }
    .curr-emblem-wrap {
        width: 230px;
        height: 230px;
    }
    .curr-emblem-circle {
        width: 195px;
        height: 195px;
    }
    .curr-flute-graphic {
        width: 145px;
        height: 145px;
    }
    .curr-bottom-cards-row {
        gap: 20px;
        margin: 20px auto 36px;
    }
    .curr-banner-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
    }
    .curr-banner-item:nth-child(2)::after {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .curr-showcase-section {
        padding: 40px 14px 50px;
        margin-top: 36px;
        border-radius: 20px;
    }
    .curr-header {
        margin-bottom: 32px;
    }
    .curr-title {
        font-size: 26px;
        line-height: 1.35;
    }
    .curr-subtitle {
        font-size: 14px;
    }
    .curr-showcase-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .curr-col {
        gap: 14px;
    }
    .curr-card {
        padding: 12px 14px;
        border-radius: 24px !important;
        gap: 12px;
    }
    .curr-card-icon {
        width: 44px;
        height: 44px;
    }
    .curr-card-icon svg {
        width: 20px;
        height: 20px;
    }
    .curr-card-title {
        font-size: 14.5px;
    }
    .curr-card-desc {
        font-size: 12.5px;
    }
    .curr-bottom-cards-row {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 14px auto 30px;
    }
    .curr-maroon-banner {
        padding: 20px 16px;
        border-radius: 22px;
    }
    .curr-banner-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
    }
    .curr-banner-item::after {
        display: none !important;
    }
    .curr-banner-item {
        align-items: center;
        gap: 12px;
    }
    .curr-banner-text h5 {
        font-size: 14px;
    }
    .curr-banner-text p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .curr-showcase-section {
        padding: 32px 10px 40px;
        border-radius: 16px;
    }
    .curr-title {
        font-size: 22px;
    }
    .curr-subtitle {
        font-size: 13px;
    }
    .curr-emblem-wrap {
        width: 190px;
        height: 190px;
    }
    .curr-emblem-circle {
        width: 160px;
        height: 160px;
    }
    .curr-flute-graphic {
        width: 120px;
        height: 120px;
    }
    .curr-card {
        padding: 10px 12px;
        gap: 10px;
    }
    .curr-card-icon {
        width: 40px;
        height: 40px;
    }
    .curr-card-icon svg {
        width: 18px;
        height: 18px;
    }
    .curr-card-title {
        font-size: 14px;
    }
    .curr-card-desc {
        font-size: 12px;
    }
    .curr-card-star {
        display: none;
    }
}

/* Performance Optimization: Pause all animations when off-screen */
.integration-section:not(.tl-anim-active) .ir-cell-left,
.integration-section:not(.tl-anim-active) .ir-cell-right,
.integration-section:not(.tl-anim-active) .ir-cell-left::before,
.integration-section:not(.tl-anim-active) .ir-cell-right::before,
.integration-section:not(.tl-anim-active) .ir-center-dot,
.integration-section:not(.tl-anim-active) .tl-orbit-sparkle,
.integration-section:not(.tl-anim-active) .ir-cell-label,
.integration-section:not(.tl-anim-active) .ir-h-left i,
.integration-section:not(.tl-anim-active) .ir-h-right i,
.integration-section:not(.tl-anim-active) .ir-h-center,
.integration-section:not(.tl-anim-active) .curr-orbit-ring,
.integration-section:not(.tl-anim-active) .curr-emblem-bg,
.integration-section:not(.tl-anim-active) .curr-note,
.integration-section:not(.tl-anim-active) .tl-radial-lights {
    animation-play-state: paused !important;
}


/* ======================================================
   HOW OUR TEACHING IS UNIQUE (PREMIUM SHOWCASE CSS)
   ====================================================== */

.teaching-unique-section {
    position: relative;
    padding: 85px 0 95px;
    background: radial-gradient(ellipse at 50% 30%, #FAF2E3 0%, #EFE0C4 50%, #E2CBA2 100%);
    overflow: hidden;
    border-top: 1.5px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.4);
    box-shadow: inset 0 0 80px rgba(180, 130, 40, 0.1);
}

.tu-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 230, 150, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.teaching-unique-section .container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.tu-header {
    text-align: center;
    margin-bottom: 45px;
}

.tu-lotus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
}

.tu-lotus-line {
    width: 45px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #c8911a, transparent);
}

.tu-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', 'Cinzel', Georgia, serif !important;
    font-size: 40px;
    font-weight: 800;
    color: #4A2E12;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.tu-subtitle {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-style: italic;
    font-size: 16.5px;
    color: #7A5533;
    margin-bottom: 10px;
}

.tu-header-diamond {
    color: #c8911a;
    font-size: 13px;
    opacity: 0.85;
}

/* Wrapper Grid */
.tu-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Points Column */
.tu-points-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Glassmorphic Card */
.tu-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 253, 245, 0.95) 0%, rgba(248, 237, 212, 0.9) 100%);
    border: 1.5px solid rgba(225, 185, 95, 0.65);
    border-radius: 20px;
    padding: 16px 20px;
    position: relative;
    box-shadow: 0 8px 24px rgba(180, 130, 40, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.95);
    transform: translateZ(0);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.tu-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f7da8b, #c48c28);
    color: #4a2508;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(196, 140, 40, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    transition: transform 0.35s ease;
}

.tu-card-body {
    flex: 1;
}

.tu-card-heading {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    color: #38210C;
    margin-bottom: 3px;
    line-height: 1.3;
}

.tu-card-text {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 13.5px;
    color: #6E533A;
    line-height: 1.5;
    margin: 0;
}

.tu-highlight {
    color: #8C4E00;
    font-weight: 700;
    background: linear-gradient(120deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.3));
    padding: 1px 6px;
    border-radius: 4px;
}

.tu-card-star {
    color: #d4af37;
    font-size: 11px;
    opacity: 0.75;
    flex-shrink: 0;
    margin-top: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Card Hover */
.tu-card:hover {
    transform: translateY(-4px) translateZ(0);
    background: linear-gradient(135deg, rgba(255, 255, 250, 0.98) 0%, rgba(252, 242, 220, 0.95) 100%);
    border-color: rgba(225, 185, 70, 0.95);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.25), inset 0 1px 3px #ffffff;
}

.tu-card:hover .tu-card-icon {
    transform: scale(1.08) rotate(6deg);
    background: radial-gradient(circle at 30% 30%, #ffe49e, #d99c2d);
}

.tu-card:hover .tu-card-star {
    transform: scale(1.4) rotate(90deg);
    opacity: 1;
    color: #f5c227;
}

/* Image Column (Golden Frame) */
.tu-image-col {
    position: relative;
}

.tu-image-frame {
    position: relative;
    border-radius: 24px;
    padding: 6px;
    background: linear-gradient(135deg, #FFE79A 0%, #C48C28 50%, #8C580C 100%);
    box-shadow: 0 20px 50px rgba(92, 58, 33, 0.2), 0 4px 15px rgba(212, 175, 55, 0.3);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.tu-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tu-image-frame:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 28px 60px rgba(92, 58, 33, 0.28), 0 8px 25px rgba(212, 175, 55, 0.45);
}

.tu-image-frame:hover .tu-img {
    transform: scale(1.03);
}

/* Image Overlay Badge */
.tu-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #4A0E17 0%, #2D070C 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.7);
    border-radius: 30px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(45, 7, 12, 0.5);
    z-index: 2;
}

.badge-icon {
    font-size: 14px;
}

.badge-text {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 13px;
    font-weight: 700;
    color: #f5d78e;
    letter-spacing: 0.3px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .teaching-unique-section {
        padding: 60px 0 70px;
    }
    .tu-title {
        font-size: 34px;
    }
    .tu-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .tu-image-col {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .teaching-unique-section {
        padding: 40px 0 50px;
    }
    .tu-title {
        font-size: 26px;
    }
    .tu-subtitle {
        font-size: 14px;
    }
    .tu-card {
        padding: 14px 16px;
        border-radius: 16px;
        gap: 12px;
    }
    .tu-card-icon {
        width: 40px;
        height: 40px;
    }
    .tu-card-icon svg {
        width: 18px;
        height: 18px;
    }
    .tu-card-heading {
        font-size: 15px;
    }
    .tu-card-text {
        font-size: 12.8px;
    }
    .tu-image-badge {
        bottom: 14px;
        left: 14px;
        padding: 6px 14px;
    }
    .badge-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .tu-title {
        font-size: 22px;
    }
    .tu-card {
        padding: 12px 14px;
    }
    .tu-card-star {
        display: none;
    }
}


/* ======================================================
   LIVE INTERACTIVE GALLERY SHOWCASE (PREMIUM CSS)
   ====================================================== */

.gallery-showcase {
    position: relative;
    padding: 85px 0 95px;
    background: radial-gradient(ellipse at 50% 30%, #3D0A13 0%, #25050C 60%, #150205 100%);
    overflow: hidden;
    border-top: 1.5px solid rgba(212, 175, 55, 0.45);
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.45);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.6);
}

.gal-bg-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(139, 0, 0, 0.1) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.gal-floating-notes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.gal-note {
    position: absolute;
    color: rgba(245, 215, 142, 0.2);
    font-size: 28px;
    animation: galNoteFloat 15s ease-in-out infinite alternate;
}

.gn-1 { top: 15%; left: 4%; font-size: 36px; }
.gn-2 { top: 70%; left: 6%; font-size: 24px; animation-delay: -3s; }
.gn-3 { top: 20%; right: 5%; font-size: 32px; animation-delay: -1s; }
.gn-4 { top: 75%; right: 4%; font-size: 26px; animation-delay: -4s; }

@keyframes galNoteFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-15px) rotate(8deg); opacity: 0.35; }
    100% { transform: translateY(10px) rotate(-8deg); opacity: 0.15; }
}

.gallery-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.gal-header {
    text-align: center;
    margin-bottom: 45px;
}

.gal-lotus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
}

.gal-lotus-line {
    width: 45px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #f5d78e, transparent);
}

.gal-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', 'Cinzel', Georgia, serif !important;
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(90deg, #FFE79A 0%, #E5B23A 50%, #FFE79A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.gal-subtitle {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-style: italic;
    font-size: 16.5px;
    color: #e5b9b9;
    margin-bottom: 10px;
}

.gal-header-diamond {
    color: #d4af37;
    font-size: 13px;
    opacity: 0.85;
}

/* Main Grid */
.gal-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.gal-right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Cards & Golden Frames */
.gal-card {
    position: relative;
    height: 100%;
}

.gal-frame {
    position: relative;
    height: 100%;
    border-radius: 24px;
    padding: 5px;
    background: linear-gradient(135deg, #FFE79A 0%, #C48C28 50%, #8C580C 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 4px 15px rgba(212, 175, 55, 0.25);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.gal-img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: block;
    border-radius: 19px;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gal-card-main .gal-img {
    min-height: 480px;
}

.gal-frame:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.6), 0 8px 25px rgba(212, 175, 55, 0.4);
}

.gal-frame:hover .gal-img {
    transform: scale(1.04);
}

/* Top Live Tag */
.gal-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(20, 3, 6, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 20px;
    padding: 6px 14px;
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 11px;
    font-weight: 700;
    color: #FFE58F;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.gal-pulse-dot {
    width: 7px;
    height: 7px;
    background: #ff4d4f;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff4d4f;
    animation: liveDotPulse 1.5s infinite ease-in-out;
}

@keyframes liveDotPulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* Caption Overlay */
.gal-caption {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 2, 4, 0.85) 40%, rgba(15, 2, 4, 0.96) 100%);
    border-radius: 0 0 19px 19px;
    padding: 24px 20px 16px;
    z-index: 2;
    pointer-events: none;
}

.gal-cap-title {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    color: #f5d78e;
    margin-bottom: 2px;
    line-height: 1.3;
}

.gal-cap-desc {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 12.5px;
    color: #e5b9b9;
    margin: 0;
    line-height: 1.4;
}

/* Bottom Stats Ribbon Banner */
.gal-stats-banner {
    margin-top: 45px;
    background: linear-gradient(135deg, rgba(255, 252, 245, 0.08) 0%, rgba(248, 237, 212, 0.04) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    border-radius: 28px;
    padding: 20px 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.gal-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.gal-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.gal-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.stat-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.stat-info h5 {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 14.5px;
    font-weight: 700;
    color: #f5d78e;
    margin-bottom: 2px;
    line-height: 1.3;
}

.stat-info p {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 12px;
    color: #e5b9b9;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .gallery-showcase {
        padding: 60px 0 70px;
    }
    .gal-title {
        font-size: 34px;
    }
    .gal-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .gal-card-main .gal-img {
        min-height: 360px;
    }
    .gal-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
    }
    .gal-stat-item:nth-child(2)::after {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .gallery-showcase {
        padding: 40px 0 50px;
    }
    .gal-title {
        font-size: 26px;
    }
    .gal-subtitle {
        font-size: 14px;
    }
    .gal-card-main .gal-img {
        min-height: 280px;
    }
    .gal-img {
        min-height: 200px;
    }
    .gal-stats-banner {
        padding: 18px 16px;
        border-radius: 20px;
    }
    .gal-stats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .gal-stat-item::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .gal-title {
        font-size: 22px;
    }
    .gal-card-main .gal-img {
        min-height: 220px;
    }
}


/* ======================================================
   WHO CAN JOIN (PREMIUM SHOWCASE CSS)
   ====================================================== */

.who-join-section {
    position: relative;
    padding: 85px 0 95px;
    background: radial-gradient(ellipse at 50% 30%, #FAF2E3 0%, #EFE0C4 50%, #E2CBA2 100%);
    overflow: hidden;
    border-top: 1.5px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.4);
    box-shadow: inset 0 0 80px rgba(180, 130, 40, 0.1);
}

.wj-bg-glow {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 230, 150, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.who-join-section .container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.wj-header {
    text-align: center;
    margin-bottom: 45px;
}

.wj-lotus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
}

.wj-lotus-line {
    width: 45px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #c8911a, transparent);
}

.wj-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', 'Cinzel', Georgia, serif !important;
    font-size: 40px;
    font-weight: 800;
    color: #4A2E12;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.wj-subtitle {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-style: italic;
    font-size: 16.5px;
    color: #7A5533;
    margin-bottom: 10px;
}

.wj-header-diamond {
    color: #c8911a;
    font-size: 13px;
    opacity: 0.85;
}

/* Top Cards Grid (3 Columns) */
.wj-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 45px;
}

.wj-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 253, 245, 0.95) 0%, rgba(248, 237, 212, 0.9) 100%);
    border: 1.5px solid rgba(225, 185, 95, 0.65);
    border-radius: 20px;
    padding: 20px 22px;
    position: relative;
    box-shadow: 0 8px 24px rgba(180, 130, 40, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.95);
    transform: translateZ(0);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.wj-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f7da8b, #c48c28);
    color: #4a2508;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(196, 140, 40, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    transition: transform 0.35s ease;
}

.wj-card-body {
    flex: 1;
}

.wj-card-heading {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    color: #38210C;
    margin-bottom: 4px;
    line-height: 1.3;
}

.wj-card-text {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 13.5px;
    color: #6E533A;
    line-height: 1.5;
    margin: 0;
}

.wj-highlight {
    color: #8C4E00;
    font-weight: 700;
    background: linear-gradient(120deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.3));
    padding: 1px 6px;
    border-radius: 4px;
}

.wj-card-star {
    color: #d4af37;
    font-size: 11px;
    opacity: 0.75;
    flex-shrink: 0;
    margin-top: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Card Hover */
.wj-card:hover {
    transform: translateY(-4px) translateZ(0);
    background: linear-gradient(135deg, rgba(255, 255, 250, 0.98) 0%, rgba(252, 242, 220, 0.95) 100%);
    border-color: rgba(225, 185, 70, 0.95);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.25), inset 0 1px 3px #ffffff;
}

.wj-card:hover .wj-card-icon {
    transform: scale(1.08) rotate(6deg);
    background: radial-gradient(circle at 30% 30%, #ffe49e, #d99c2d);
}

.wj-card:hover .wj-card-star {
    transform: scale(1.4) rotate(90deg);
    opacity: 1;
    color: #f5c227;
}

/* Bottom Images Grid (2 Columns) */
.wj-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.wj-img-card {
    position: relative;
}

.wj-frame {
    position: relative;
    border-radius: 24px;
    padding: 6px;
    background: linear-gradient(135deg, #FFE79A 0%, #C48C28 50%, #8C580C 100%);
    box-shadow: 0 20px 50px rgba(92, 58, 33, 0.2), 0 4px 15px rgba(212, 175, 55, 0.3);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.wj-img {
    width: 100%;
    height: 320px;
    display: block;
    border-radius: 18px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wj-frame:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 28px 60px rgba(92, 58, 33, 0.28), 0 8px 25px rgba(212, 175, 55, 0.45);
}

.wj-frame:hover .wj-img {
    transform: scale(1.03);
}

/* Image Badge Overlay */
.wj-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(74, 14, 23, 0.94) 0%, rgba(45, 7, 12, 0.96) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.7);
    border-radius: 18px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(45, 7, 12, 0.5);
    z-index: 2;
}

.wj-img-badge .badge-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.wj-img-badge .badge-content h5 {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 14.5px;
    font-weight: 700;
    color: #f5d78e;
    margin-bottom: 1px;
    line-height: 1.3;
}

.wj-img-badge .badge-content p {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 12px;
    color: #e5b9b9;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .who-join-section {
        padding: 60px 0 70px;
    }
    .wj-title {
        font-size: 34px;
    }
    .wj-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .wj-images-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .wj-img {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .who-join-section {
        padding: 40px 0 50px;
    }
    .wj-title {
        font-size: 26px;
    }
    .wj-subtitle {
        font-size: 14px;
    }
    .wj-card {
        padding: 14px 16px;
        border-radius: 16px;
        gap: 12px;
    }
    .wj-card-icon {
        width: 40px;
        height: 40px;
    }
    .wj-card-icon svg {
        width: 18px;
        height: 18px;
    }
    .wj-card-heading {
        font-size: 15px;
    }
    .wj-card-text {
        font-size: 12.8px;
    }
    .wj-img-badge {
        bottom: 14px;
        left: 14px;
        right: 14px;
        padding: 8px 12px;
    }
    .wj-img-badge .badge-content h5 {
        font-size: 13px;
    }
    .wj-img-badge .badge-content p {
        font-size: 11.5px;
    }
}

@media (max-width: 480px) {
    .wj-title {
        font-size: 22px;
    }
    .wj-card {
        padding: 12px 14px;
    }
    .wj-card-star {
        display: none;
    }
    .wj-img {
        height: 210px;
    }
}

/* ======================================================
   SYLLABUS CATEGORY NAVIGATION HUB & PANE SWITCHER
   ====================================================== */
.syllabus-nav-hub {
    max-width: 1400px;
    margin: 25px auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.snh-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.snh-card {
    background: linear-gradient(145deg, rgba(255, 248, 235, 0.95), rgba(245, 230, 205, 0.9));
    border: 1.5px solid rgba(200, 145, 26, 0.4);
    border-radius: 20px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(74, 46, 18, 0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
    width: 100%;
}

.snh-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.snh-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A2E12, #2B1605);
    border: 1.5px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.snh-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.snh-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #8C6527;
}

.snh-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    color: #4A2E12 !important;
    margin: 2px 0 4px 0 !important;
}

.snh-subtitle {
    font-family: 'Outfit', sans-serif !important;
    font-size: 12.5px;
    color: #6E5136;
    margin: 0;
    line-height: 1.4;
}

.snh-indicator {
    margin-top: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #4A2E12;
    background: linear-gradient(90deg, #d4af37, #f5d78e, #d4af37);
    padding: 3px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
}

/* Hover States */
.snh-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.22);
}

.snh-card:hover .snh-card-glow {
    opacity: 1;
}

.snh-card:hover .snh-icon-badge {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

/* Active State */
.snh-card.active {
    background: linear-gradient(145deg, #3D1E0B, #200D03);
    border-color: #f5d78e;
    box-shadow: 0 16px 40px rgba(43, 22, 5, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.snh-card.active .snh-card-glow {
    opacity: 1;
    background: radial-gradient(circle at 50% 0%, rgba(245, 215, 142, 0.3), transparent 75%);
}

.snh-card.active .snh-icon-badge {
    background: linear-gradient(135deg, #d4af37, #966f12);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(245, 215, 142, 0.6);
}

.snh-card.active .snh-tag {
    color: #f5d78e;
}

.snh-card.active .snh-title {
    color: #ffffff !important;
}

.snh-card.active .snh-subtitle {
    color: #e5cdb0;
}

.snh-card.active .snh-indicator {
    opacity: 1;
    transform: translateY(0);
}

/* Category Panes */
.syllabus-panes-wrapper {
    position: relative;
    width: 100%;
}

.syllabus-category-pane {
    width: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.syllabus-category-pane.pane-hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(15px);
}

.syllabus-category-pane.pane-active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    animation: paneFadeIn 0.45s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes paneFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hub */
@media (max-width: 1200px) {
    .snh-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .snh-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 576px) {
    .snh-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .snh-card {
        padding: 16px 14px;
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
    }
    .snh-icon-badge {
        margin-bottom: 0;
        width: 44px;
        height: 44px;
        font-size: 18px;
        flex-shrink: 0;
    }
    .snh-card-info {
        align-items: flex-start;
        flex-grow: 1;
    }
    .snh-indicator {
        margin-top: 0;
        align-self: center;
    }
}


