﻿/* =========================================================
   PURE STUDIO SNOW & EMERALD - MODERN LIGHT THEME (SCOPED)
   ========================================================= */

:root {
    /* Crisp Snow & Emerald Palette */
    --navy: #0f172a; /* Deep Midnight Slate */
    --navy-2: #1e293b; /* Slate Dark */
    --navy-3: #334155; /* Muted Slate Text */

    --gold: #059669; /* Vibrant Emerald Green Accent */
    --gold-light: #10b981; /* Soft Mint Green Highlight */

    --emerald: #047857; /* Rich Emerald Badge */
    --emerald-light: #059669;
    --cream: #f8fafc; /* Cool Snow Light Background */
    --cream-dim: #f1f5f9; /* Slate Light Fill */

    --maroon: #dc2626; /* Modern Red Accent */
    --ink: #0f172a;
    --muted: #64748b; /* Crisp Slate Muted Gray */

    --line: #e2e8f0; /* Soft Modern Border */
    --line-light: rgba(255, 255, 255, 0.18);
    --shadow-soft: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    --shadow-lift: 0 16px 36px -6px rgba(15, 23, 42, 0.08);
    --shadow-gold: 0 8px 20px -4px rgba(5, 150, 105, 0.22);
    --radius: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Base Canvas Setup */
body {
    font-family: 'Work Sans', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

    /* No Noise Texture for Pure Crisp Canvas */
    body::before {
        display: none;
    }

h1, h2, h3, h4, h5 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--navy);
    line-height: 1.15;
}

.mono {
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: .02em;
}

a {
    text-decoration: none;
}

.section-pad {
    padding: 90px 0;
}

@media(max-width:767px) {
    .section-pad {
        padding: 60px 0;
    }
}

/* Eyebrows & Accents */
.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    font-size: 11.5px;
    letter-spacing: .16em;
    color: #29758b;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

    .eyebrow::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
    }

    .eyebrow.light {
        color: var(--gold-light);
    }

    .eyebrow.emerald {
        color: var(--emerald-light);
    }

        .eyebrow.emerald::before {
            background: var(--emerald-light);
        }

/* Solid Crisp Text Highlight */
.foil-text {
    color: var(--gold);
    background: none;
    font-weight: 700;
    animation: none;
}

/* Modern Emerald Solid Buttons */
.btn-gold {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    transition: all .2s ease;
}

    .btn-gold:hover {
        background: #29758b;
        border-color:#29758b;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px -4px rgba(5, 150, 105, 0.35);
    }

.btn-outline-gold {
    border: 1.5px solid #29758b;
    color: #29758b;
    font-weight: 600;
    border-radius: 8px;
    background: transparent;
    transition: all .2s ease;
}

    .btn-outline-gold:hover {
        background: #29758b;
        color: #ffffff;
        box-shadow: #29758b;
    }

.btn-navy {
    background: var(--navy);
    border: 1px solid var(--navy);
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
}

    .btn-navy:hover {
        background: var(--navy-2);
        color: #ffffff;
    }

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.icn {
    width: 20px;
    height: 20px;
    vertical-align: -5px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.icn-star {
    width: 15px;
    height: 15px;
    vertical-align: -2px;
    fill: #f59e0b; /* Bright Warm Star */
    stroke: none;
}

/* Minimal Dividers */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto;
    width: 100%;
    max-width: 320px;
    padding: 0;
}

    .ornament::before, .ornament::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--line);
    }

    .ornament .diamond {
        width: 6px;
        height: 6px;
        background: var(--gold);
        transform: rotate(45deg);
        flex-shrink: 0;
    }

    .ornament.on-dark::before, .ornament.on-dark::after {
        background: var(--line-light);
    }

    .ornament.on-dark .diamond {
        background: #ffffff;
    }

.divider-wrap {
    padding: 48px 0;
    display: flex;
    justify-content: center;
}

    .divider-wrap.on-navy {
        background: var(--navy);
    }

    .divider-wrap.on-cream {
        background: var(--cream);
    }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .marquee-track {
        animation: none !important;
    }
}


html, body {
    overflow-x: clip;
    position: relative;
}

html, body {
    overflow-x: clip !important;
    position: relative;
}

/* ================= TOP BAR ================= */
.topbar {
    background: #ffffff;
    color: var(--muted, #64748b);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line, #e2e8f0);
    position: relative;
    z-index: 10;
}

    .topbar .wrap-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .topbar .contacts {
        display: flex;
        align-items: center;
        gap: 22px;
        flex-shrink: 0;
    }

        .topbar .contacts a {
            color: var(--navy-2, #1e293b);
            font-weight: 500;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

            .topbar .contacts a:hover {
                color: #29758b;
            }

        .topbar .contacts .icn {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

.marquee-wrap {
    flex: 1;
    overflow: hidden;
    max-width: 800px;
	background-color:#e3d073;
	
    position: relative;
}

.marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-left 22s linear infinite;
    gap: 60px;
}

    .marquee-track span {
        color: var(--navy, #0f172a);
        font-weight: 600;
		font-size:15px;
    }

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.topbar .socials {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

    .topbar .socials a {
        width: 35px;
        height: 35px;
        border: 1px solid var(--line, #e2e8f0);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #000;
        background: #ffffff;
        text-decoration: none;
        transition: all .2s ease;
    }

        .topbar .socials a:hover {
            border-color: #29758b;
            color: #29758b;
        }

/* ================= HEADER (STICKY NAVBAR) ================= */
.site-header {
    background: #ffffff;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important; /* Always stays above Hero slider */
    border-bottom: 1px solid var(--line, #e2e8f0);
    transition: padding .3s ease, box-shadow .3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

    .site-header.scrolled {
        box-shadow: var(--shadow-soft, 0 10px 25px rgba(0, 0, 0, 0.1));
    }

.navbar {
    padding: 0;
    transition: padding .3s;
}

.site-header.scrolled .navbar {
    padding: 8px 0;
}

/* Logo Fixes */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

    .brand-logo .mark {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
        position: relative;
		background:transparent;
    }

    .brand-logo .txt {
        color: #29758b;
        font-family: 'Fraunces', serif;
        font-weight: 700;
        font-size: 23px;
        line-height: 1.1;
    }

        .brand-logo .txt small {
            display: block;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12px;
            letter-spacing: .12em;
            color: #000;
            font-weight: 500;
            text-transform: uppercase;
            margin-top: 2px;
        }

.navbar-nav .nav-link {
    color: var(--navy-2, #1e293b);
    font-weight: 500;
    font-size: 14.5px;
    margin: 0 12px;
    position: relative;
    transition: color .2s ease;
}

    .navbar-nav .nav-link:hover {
        color: var(--gold, #059669);
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background: var(--gold, #059669);
        border-radius: 2px;
        transition: width .25s ease;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

.navbar-toggler {
    border-color: var(--line, #e2e8f0);
}

/* ================= HERO SECTION (LOWER STACKING) ================= */
.hero {
    background: var(--cream, #fdfbf7);
    padding: 30px 0 60px;
    position: relative;
    z-index: 1 !important; /* High Z-index header ke neeche isolated rahega */
}

.hero-crest {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    opacity: 0.15;
    z-index: 0;
    stroke: var(--navy, #0f172a);
}

.hero-carousel {
    border-radius: var(--radius, 12px);
    overflow: hidden;
    box-shadow: var(--shadow-lift, 0 10px 30px rgba(0, 0, 0, 0.08));
    border: 1px solid var(--line, #e2e8f0);
    width: 100%;
    position: relative;
    z-index: 2;
}

    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        height: 100%;
    }

.hero-slide {
    min-height: 480px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 44px;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

    .hero-slide .hero-bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 1;
    }

    .hero-slide .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .hero-slide .hero-content {
        position: relative;
        z-index: 3;
    }

    .hero-slide .tag {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 11px;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 6px 14px;
        border-radius: 20px;
        display: inline-block;
        width: fit-content;
    }

    .hero-slide h3 {
        color: #ffffff;
        font-size: clamp(28px, 3.4vw, 40px);
        margin-top: 14px;
        max-width: 500px;
        font-family: 'Fraunces', serif;
        line-height: 1.2;
    }

    .hero-slide p {
        margin-top: 10px;
        color: rgba(255, 255, 255, 0.88);
        max-width: 420px;
        font-size: 15px;
    }

.hero-carousel .carousel-indicators {
    z-index: 4;
}

    .hero-carousel .carousel-indicators [data-bs-target] {
        background: #ffffff;
        width: 24px;
        height: 4px;
        border-radius: 2px;
        border: none;
        opacity: 0.5;
    }

    .hero-carousel .carousel-indicators .active {
        opacity: 1;
    }

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    z-index: 4;
}

/* ================= OTP CARD ================= */
.otp-card {
    background: #ffffff;
    border-radius: var(--radius, 12px);
    box-shadow: var(--shadow-lift, 0 10px 30px rgba(0, 0, 0, 0.08));
    padding: 36px 32px;
    position: relative;
    z-index: 2;
    border: 1px solid var(--line, #e2e8f0);
    min-height: 480px;
    width: 100%;
}

    .otp-card .badge-live {
        position: absolute;
        top: -12px;
        right: 24px;
        background:#29758b;
        color: #ffffff;
        font-size: 11px;
        padding: 5px 14px;
        border-radius: 20px;
        font-weight: 600;
        letter-spacing: .03em;
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
    }

    .otp-card .eyebrow {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .08em;
        color:#29758b;
        font-weight: 600;
    }

    .otp-card h4 {
        font-size: 22px;
        color: var(--navy, #0f172a);
        margin-top: 4px;
    }

    .otp-card .sub {
        font-size: 13.5px;
        color: var(--muted, #64748b);
        margin-top: 6px;
    }

    .otp-card .form-control,
    .otp-card .form-select {
        border: 1px solid var(--line, #e2e8f0);
        padding: 12px 14px;
        font-size: 14.5px;
        border-radius: 8px;
        background-color: var(--cream-dim, #f8fafc);
        color: var(--navy, #0f172a);
    }

        .otp-card .form-control:focus {
            background-color: #ffffff;
            border-color: var(--gold, #059669);
            box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
        }

    .otp-card .form-label {
        font-size: 13px;
        font-weight: 600;
        color: var(--navy-2, #1e293b);
        margin-bottom: 6px;
    }

.btn-gold {
    background: #29758b;
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .btn-gold:hover {
        background: #235e70;
        color: #ffffff;
    }

.mono {
    font-family: 'IBM Plex Mono', monospace;
}

.otp-boxes {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

    .otp-boxes input {
        width: 44px;
        height: 50px;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        font-family: 'IBM Plex Mono', monospace;
        border: 1px solid var(--line, #e2e8f0);
        border-radius: 8px;
        background: var(--cream-dim, #f8fafc);
        color: var(--navy, #0f172a);
        transition: all .2s ease;
    }

        .otp-boxes input:focus {
            background: #ffffff;
            border-color: var(--gold, #059669);
            outline: none;
            box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
        }

.otp-step {
    display: none;
}

    .otp-step.active {
        display: block;
    }

.otp-success {
    text-align: center;
    padding: 20px 0;
}

    .otp-success .tick {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: #dcfce7;
        color: var(--emerald, #10b981);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
    }

.trust-row {
    display: flex;
    gap: 18px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line, #e2e8f0);
    flex-wrap: wrap;
}

    .trust-row div {
        font-size: 12px;
        color: var(--muted, #64748b);
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .trust-row div b {
            color: var(--navy, #0f172a);
            font-family: 'IBM Plex Mono', monospace;
            font-weight: 600;
        }

.icn {
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ================= COUNTER STRIP ================= */
/* .counter-strip{background:#fff; border-bottom:1px solid var(--line);}
.counter-strip .row{padding:44px 0;}
.counter-item{text-align:center; padding:0 10px;}
.counter-item .ic{width:48px; height:48px; margin:0 auto 12px; border-radius:50%; background:var(--cream-dim); display:flex; align-items:center; justify-content:center; color:var(--navy-2); font-size:20px;}
.counter-item b{display:block; font-family:'Fraunces',serif; font-size:32px; color:var(--navy);}
.counter-item span{font-size:12.5px; color:var(--muted); text-transform:uppercase; letter-spacing:.04em;} */







/* ================= ABOUT EXAM ================= */
/* =========================================================
   ABOUT EXAM & ACHIEVEMENTS - STUDIO SNOW & EMERALD STYLE
   ========================================================= */
/* Base Styles */
.about-exam {
    background: #ffffff;
    padding: 60px 0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

    .info-list li {
        display: flex;
        gap: 16px;
        padding: 16px 0;
        border-bottom: 1px solid var(--line, #e2e8f0);
    }

    .info-list .ic {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--cream-dim, #f8fafc);
        color: var(--navy, #0f172a);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 17px;
        border: 1px solid var(--line, #e2e8f0);
    }

    .info-list h6 {
        font-family: 'Fraunces', serif;
        font-size: 16px;
        margin-bottom: 4px;
        font-weight: 600;
        color: var(--navy, #0f172a);
    }

    .info-list p {
        font-size: 13.5px;
        color: var(--muted, #64748b);
        margin: 0;
    }

/* 4 Achievement Cards Grid */
.badge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.achieve-card {
    position: relative;
    border-radius: var(--radius, 12px);
    overflow: hidden;
    box-shadow: var(--shadow-soft, 0 4px 12px rgba(0,0,0,0.05));
    background: linear-gradient(155deg, #34a0a4, #22577a 80%);
    padding: 26px 20px 22px;
    color: #ffffff;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .achieve-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-gold, 0 8px 20px rgba(0,0,0,0.15));
        border-color: var(--gold, #d4af37);
    }

    .achieve-card .ribbon {
        position: absolute;
        top: 14px;
        right: -32px;
        background: var(--maroon, #800000);
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .05em;
        padding: 5px 38px;
        transform: rotate(40deg);
        text-transform: uppercase;
    }

    .achieve-card .icon-wrap {
        width: 64px;
        height: 64px;
        margin: 0 auto 14px;
        border-radius: 50%;
        border: 1.5px solid var(--gold, #d4af37);
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(43, 196, 147, 0.12);
        color: var(--gold-light, #fef08a);
    }

    .achieve-card h6 {
        font-family: 'Fraunces', serif;
        font-size: 15.5px;
        margin-bottom: 6px;
        color: #ffffff;
    }

    .achieve-card p {
        font-size: 12px;
        color: rgba(241, 245, 249, 0.7);
        margin: 0;
    }

/* Bottom Result Section - Centered Grid Layout */
/* Center-align Wrapper */
.result-box-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Main Box Container */
.result-box {
    background: #d8f3dc;
    border-radius: var(--radius, 14px);
    padding: 24px;
    width: 100%;
    max-width: 960px; /* Perfect centered container width */
    box-sizing: border-box;
    display: grid;
    /* Desktop: 4 Columns | Tablet/Mobile: Auto responsive */
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Individual Cards */
.res-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 16px;
    background: linear-gradient(155deg, #34a0a4, #22577a 80%);
    border-left: 4px solid var(--gold-light, #fef08a);
    border-radius: 8px;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .res-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 16px rgba(34, 87, 122, 0.25);
    }

    /* Text Styles */
    .res-card .lbl {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: white;
    }

    .res-card .val {
        font-family: 'Fraunces', serif;
        font-size: 15.5px;
        margin-top: 6px;
        color: #ffffff;
        font-weight: 600;
        line-height: 1.3;
    }

    .res-card .sub-text {
        font-size: 12px;
        color: rgba(241, 245, 249, 0.8);
        margin-top: 4px;
    }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .result-box {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2x2 Grid */
    }
}

@media (max-width: 576px) {
    .result-box {
        grid-template-columns: 1fr; /* Mobile: Single Column */
        padding: 16px;
    }
}

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

    .result-box {
        grid-template-columns: 1fr;
    }
}




/* ================= DETAILED DESCRIPTION ================= */
/* =========================================================
   DETAIL DESC & STAT STRIP - STUDIO SNOW & EMERALD STYLE
   ========================================================= */

/* =========================================================
   DETAIL DESC & FLOATING BADGE - FIXED CLEAN CSS
   ========================================================= */

.detail-desc {
    background: var(--cream-dim);
    color: var(--navy);
}

    .detail-desc p {
        color: var(--navy); /* Clean Slate Text */
        font-size: 15.5px;
    }

/* Kicker List */
.detail-kicker-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .detail-kicker-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        font-size: 14px;
        color: var(--navy);
    }

        .detail-kicker-list li .chk {
            color: #29758b; /*  Teal Bullet Check Accent */
            font-family: 'IBM Plex Mono', monospace;
            flex-shrink: 0;
            margin-top: 2px;
        }

/* ---------------------------------------------------------
   IMAGE FRAME & FLOATING BADGE (FIXED OVERFLOW & POSITION)
   --------------------------------------------------------- */

.detail-img-frame {
    position: relative;
    min-height: 440px;
    height: 100%;
    margin-bottom: 45px; /* Badge ke neeche latakne ke liye space */
    /* NOTE: Yahan overflow: hidden BILKUL mat lagana */
}

    /* 1. Border radius direct Image par */
    .detail-img-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        min-height: 440px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lift);
    }

    /* 2. Gradient Overlay with rounded corners */
    .detail-img-frame::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.65) 100%);
        border-radius: var(--radius);
        pointer-events: none;
        z-index: 1;
    }

    /* Corner Accents */
    .detail-img-frame .corner {
        position: absolute;
        width: 26px;
        height: 26px;
        border: 1.5px solid var(--gold-light);
        opacity: .85;
        z-index: 2;
    }

        .detail-img-frame .corner.tl {
            top: 16px;
            left: 16px;
            border-right: none;
            border-bottom: none;
        }

        .detail-img-frame .corner.br {
            bottom: 16px;
            right: 16px;
            border-left: none;
            border-top: none;
        }

/* 3. Image Floating Badge (Bahar nikalne ki negative position) */
.detail-img-badge {
    position: absolute;
    bottom: -35px; /* Ab yeh 35px image frame ke neeche pop outdoor karega */
    left: 28px;
    background: linear-gradient(155deg, #34a0a4, #22577a 80%);
    border: 2px solid var(--navy);
    border-radius: 8px;
    padding: 25px 26px;
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.3); /* Stronger shadow for 3D floating effect */
    z-index: 10; /* Clean overlap on top of elements */
}

    .detail-img-badge b {
        font-family: 'Fraunces', serif;
        font-size: 25px;
        color: #d8f3dc;
        display: block;
        line-height: 1;
    }

    .detail-img-badge span {
        font-size: 10.5px;
        color: #d8f3dc;
        text-transform: uppercase;
        letter-spacing: .07em;
    }

/* ---------------------------------------------------------
   STAT STRIP GRID
   --------------------------------------------------------- */

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 56px;
    border-radius: var(--radius);
    overflow: hidden;
}

    .stat-strip div {
        background: var(--navy);
        padding: 26px 20px;
        text-align: center;
    }

    .stat-strip b {
        display: block;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 28px;
        color: var(--gold-light);
    }

    .stat-strip span {
        font-size: 12px;
        color: rgba(241, 245, 249, 0.65);
    }

@media (max-width: 767px) {
    .stat-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}





/* ================= WHY CHOOSE US ================= */
/* =========================================================
   WHY US SECTION - STUDIO SNOW & EMERALD STYLE
   ========================================================= */

.why-us {
    background: var(--cream-dim); /* Modern Slate White Fill (#F1F5F9) */
}

.why-img-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    height: 100%;
    min-height: 460px;
    border: 1px solid var(--line);
}

    .why-img-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        min-height: 460px;
    }

    .why-img-frame::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.88) 100%); /* Slate Gradient Overlay */
    }

/* Floating Card inside Image */
.why-img-badge {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.96); /* Clean Studio White */
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 18px 22px;
    box-shadow: var(--shadow-soft);
    border-left: 3.5px solid var(--gold); /* Emerald Accent Border */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .why-img-badge b {
        display: block;
        font-family: 'Fraunces', serif;
        font-size: 21px;
        color: var(--navy);
        line-height: 1.1;
    }

    .why-img-badge span {
        font-size: 11px;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .06em;
    }

/* Feature List Items */
.why-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-feature-item {
    display: flex;
    gap: 20px;
    padding: 24px 4px;
    border-bottom: 1px solid var(--line);
    transition: padding-left .3s ease, border-color .3s ease;
}

    .why-feature-item:first-child {
        padding-top: 0;
    }

    .why-feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .why-feature-item:hover {
        padding-left: 12px;
        border-color: rgba(5, 150, 105, 0.4); /* Smooth Emerald Hover Line */
    }

    .why-feature-item .num {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 12.5px;
        color: var(--gold); /* Mint/Emerald Numbering */
        flex-shrink: 0;
        width: 38px;
        padding-top: 5px;
        font-weight: 600;
    }

    .why-feature-item h5 {
        font-size: 17.5px;
        margin-bottom: 6px;
        color: var(--navy);
    }

    .why-feature-item p {
        font-size: 13.5px;
        color: var(--muted);
        margin: 0;
    }




/* ================= SCHOLARSHIP SLAB ================= */
/* =========================================================
   SLAB SECTION & TABLE - STUDIO SNOW & EMERALD STYLE
   ========================================================= */

.slab-section {
    background: #ffffff;
}

.slab-table-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
}

table.slab-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}

.slab-table thead th {
    background: linear-gradient(155deg, #34a0a4, #22577a 80%); /* Dark Slate Header */
    color: white; /* Vibrant Mint Emerald Text */
    text-align: left;
    padding: 16px 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
}

.slab-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--navy-2);
}

.slab-table tbody tr:last-child td {
    border-bottom: none;
}

.slab-table tbody tr:hover td {
    background: var(--cream-dim); /* Soft Slate Light Hover Effect */
}

.slab-table .pct {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--emerald); /* Crisp Emerald Green */
    font-size: 17px;
}

/* Top Rank Highlight Row - Emerald Mint Glow Gradient */
.slab-table tr.top-rank td {
    background: linear-gradient(90deg, rgba(5, 150, 105, 0.08), transparent);
}

.slab-table tr.top-rank .pct {
    color: var(--gold); /* Bold Emerald Accent */
    font-size: 19px;
    font-weight: 700;
}




/* ================= PULL QUOTE ================= */
/* Pull Quote Section */
/* =========================================================
   PULL QUOTE & REGISTER MODES - STUDIO SNOW & EMERALD
   ========================================================= */

/* Pull Quote Section */
.pull-quote {
    background: var(--cream); /* Modern Cool Snow Light (#F8FAFC) */
    padding: 100px 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--line);
}

    .pull-quote .mark {
        font-family: 'Fraunces', serif;
        font-size: 110px; /* Impactful Font Size */
        color: var(--gold); /* Vibrant Emerald Accent */
        line-height: 0;
        position: relative;
        top: 32px;
        opacity: 0.85;
    }

    .pull-quote blockquote {
        font-family: 'Fraunces', serif;
        font-style: italic;
        font-weight: 500;
        font-size: clamp(26px, 3.8vw, 38px);
        max-width: 820px;
        margin: 0 auto;
        color: var(--navy); /* High-Contrast Deep Slate Ink */
        line-height: 1.45;
    }

    .pull-quote cite {
        display: block;
        margin-top: 26px;
        font-family: 'IBM Plex Mono', monospace;
        font-style: normal;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--muted); /* Crisp Slate Muted Gray */
    }

/* Register Modes Section */
.register-modes {
    background: var(--cream-dim); /* Soft Slate Light Fill (#F1F5F9) */
}

.mode-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 28px;
    height: 100%;
    text-align: center;
    position: relative;
    background: #ffffff; /* Pure Studio White */
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

    .mode-card:hover {
        box-shadow: var(--shadow-gold); /* Modern Emerald Glow Shadow */
        transform: translateY(-8px);
        border-color: rgba(5, 150, 105, 0.4); /* Emerald Hover Border */
    }

    .mode-card .step-no {
        position: absolute;
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gold); /* Vibrant Emerald Step Badge */
        color: #ffffff;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'IBM Plex Mono', monospace;
        font-weight: 700;
        font-size: 14px;
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    }

    .mode-card .m-icon {
        width: 76px;
        height: 76px;
        margin: 20px auto 18px;
        border-radius: 50%;
        background: var(--cream-dim);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: var(--navy);
        border: 1px solid var(--line);
    }

    .mode-card h6 {
        font-family: 'Fraunces', serif;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--navy);
    }

    .mode-card p {
        font-size: 15px;
        line-height: 1.5;
        color: var(--muted);
        margin-bottom: 0;
    }

    .mode-card .mono-tag {
        display: inline-block;
        margin-top: 16px;
        font-size: 13px;
        font-weight: 500;
        background: linear-gradient(155deg, #34a0a4, #22577a 80%); /* Midnight Slate Pill Background */
        color: white; /* Mint Green Accent Text */
        padding: 6px 14px;
        border-radius: 20px;
        font-family: 'IBM Plex Mono', monospace;
    }

/* QR Visual Block */
.qr-visual {
    width: 80px;
    height: 80px;
    margin: 20px auto 18px;
    background: repeating-linear-gradient(0deg, var(--navy) 0 6px, transparent 6px 12px), repeating-linear-gradient(90deg, var(--navy) 0 6px, transparent 6px 12px);
    background-blend-mode: multiply;
    border: 6px solid #ffffff;
    outline: 1px solid var(--line);
    border-radius: 8px;
}





/* ================= SYLLABUS ================= */
/* =========================================================
   SYLLABUS & ACHIEVERS WALL - STUDIO SNOW & EMERALD
   ========================================================= */

/* Syllabus Section */
.syllabus {
    background: #ffffff;
}

.syl-tabs {
    border: none;
    gap: 8px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

    .syl-tabs .nav-link {
        border: 1px solid var(--line);
        border-radius: 6px;
        color: var(--navy-2);
        font-weight: 600;
        font-size: 14px;
        padding: 11px 22px;
        background: #ffffff;
        transition: all .2s ease;
    }

        .syl-tabs .nav-link:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .syl-tabs .nav-link.active {
            background: #22577a; /* Dark Slate Active Tab */
            color: white; /* Fresh Mint Green Accent */
            border-color: var(--navy);
        }

.syl-panel {
    background: var(--cream-dim); /* Clean Slate Light Fill (#F1F5F9) */
    border-radius: 0 8px 8px 8px;
    padding: 36px;
    box-shadow: var(--shadow-soft);
    margin-top: -1px;
    border: 1px solid var(--line);
}

.syl-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

    .syl-table th {
        text-align: left;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--muted);
        border-bottom: 2px solid var(--navy);
        padding: 10px 12px;
    }

    .syl-table td {
        padding: 13px 12px;
        border-bottom: 1px solid var(--line);
        vertical-align: top;
        color: var(--navy-2);
    }

    .syl-table tr:hover td {
        background: #ffffff;
    }

.weight-pill {
    display: inline-block;
    background: #22577a;
    color: white; /* Mint Emerald Weight Pill */
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Exam Pattern Box */
.pattern-box {
    background: linear-gradient(155deg, #34a0a4, #22577a 80%); /* Dark Slate Pattern Box */
    color: #ffffff;
    border-radius: 8px;
    padding: 26px;
    margin-top: 30px;
}

    .pattern-box h6 {
        font-family: 'IBM Plex Mono', monospace;
        color: white; /* Mint Green Title */
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: .1em;
        margin-bottom: 16px;
    }

    .pattern-box table {
        width: 100%;
        font-size: 13.5px;
        color: white;
    }

        .pattern-box table th {
            text-align: left;
            font-weight: 500;
            color: white;
            padding: 8px 10px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .06em;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .pattern-box table td {
            padding: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

/* ================= ACHIEVERS WALL ================= */

.achievers {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #ffffff;
}

.achiever-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    text-align: center;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

    .achiever-card:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--gold); /* Emerald Highlight Border on Hover */
    }

/* Vibrant Emerald Avatar Badge */
.avatar-mono {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(150deg, var(--gold-light), var(--gold));
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.achiever-card h6 {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    margin-bottom: 2px;
    color: #ffffff;
}

.achiever-card .rank-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    color: var(--gold-light); /* Fresh Mint Rank Tag */
    text-transform: uppercase;
    letter-spacing: .06em;
}

.achiever-card p {
    font-size: 13px;
    color: rgba(241, 245, 249, 0.68); /* Crisp Slate Muted Quote */
    margin-top: 12px;
    font-style: italic;
}






/* ================= TESTIMONIALS ================= */
/* =========================================================
   TESTIMONIALS SECTION - STUDIO SNOW & EMERALD STYLE
   ========================================================= */

.testimonials {
    background: var(--cream-dim); /* Modern Slate Light Fill (#F1F5F9) */
}

.testi-card {
    background: #ffffff; /* Pure Studio White */
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    border: 1px solid var(--line);
    transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}

    .testi-card:hover {
        box-shadow: var(--shadow-gold); /* Mint & Emerald Soft Glow Shadow */
        border-color: rgba(5, 150, 105, 0.35); /* Subtle Emerald Green Border */
        transform: translateY(-4px);
    }

    .testi-card .stars {
        color: var(--gold); /* Vibrant Emerald Accent Stars */
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .testi-card p.quote {
        font-size: 14.5px;
        color: var(--ink); /* Deep Slate Text */
        font-style: italic;
        min-height: 110px;
    }

.testi-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

    /* User Avatar Initial Circle */
    .testi-foot .av {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #22577a; /* Dark Midnight Slate Fill */
        color: white; /* Fresh Mint Initial Text */
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Fraunces', serif;
        font-weight: 600;
        font-size: 15px;
        flex-shrink: 0;
    }

    .testi-foot b {
        display: block;
        font-size: 14px;
        color: var(--navy);
    }

    .testi-foot span {
        font-size: 12px;
        color: var(--muted);
    }




/* ================= FAQ ================= */
/* =========================================================
   FAQ, FOOTER, FLOATING CTA & MODALS - STUDIO SNOW & EMERALD
   ========================================================= */

/* FAQ Section */
.faq-section {
    background: #ffffff;
}

.accordion-item {
    border: 1px solid var(--line);
    border-radius: 8px !important;
    margin-bottom: 14px;
    overflow: hidden;
}

.accordion-button {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    background: #ffffff;
    padding: 20px 24px;
}

    .accordion-button:not(.collapsed) {
        background: var(--cream-dim); /* Soft Slate Fill on Open */
        color: var(--navy);
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: var(--gold);
    }

    .accordion-button::after {
        filter: none;
    }

.accordion-body {
    font-size: 14.5px;
    color: var(--muted);
    padding: 4px 24px 22px;
}

/* ================= FOOTER ================= */

footer.site-footer {
    background: #22577a;
    color: white;
    padding-top: 70px;
}

    footer.site-footer h6 {
        color: white;
        font-family: 'Fraunces', serif;
        font-size: 16px;
        margin-bottom: 18px;
    }

    footer.site-footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        footer.site-footer ul li {
            margin-bottom: 10px;
        }

    footer.site-footer a {
        color: white;
        font-size: 13.5px;
        text-decoration: none;
        transition: color .2s ease;
    }

        footer.site-footer a:hover {
            color: var(--gold-light, #fef08a);
        }

    footer.site-footer p {
        font-size: 13.5px;
        color: white;
    }

/* =========================================
   SOCIAL ICONS STYLING (SEPARATED & FLEXIBLE)
   ========================================= */

/* Main Container for Icons */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px; /* Icons ke beech ka gap */
}

    /* Individual Icon Buttons */
    .footer-socials .social-icon {
        /* --- YAHAN SE SIZE CHANGER KAREIN --- */
        width: 40px; /* Circle ki width */
        height: 40px; /* Circle ki height */
        font-size: 18px; /* Icon ka size */
        /* ---------------------------------- */

        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: white;
        background: transparent;
        transition: all .25s ease;
    }

        /* Hover State */
        .footer-socials .social-icon:hover {
            border-color: var(--gold, #d4af37);
            color: var(--gold-light, #fef08a);
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px); /* Subtle Floating Effect */
        }

/* Footer Bottom */
.footer-sub .form-control {
    border-radius: 4px 0 0 4px;
    border-color: rgba(255, 255, 255, 0.15);
}

.footer-sub .btn {
    border-radius: 0 4px 4px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding: 20px 0;
    font-size: 12.5px;
    color: white;
}

/* ================= FLOATING ELEMENTS ================= */

.floating-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
}

    .floating-cta.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .floating-cta .fab {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-lift);
        font-size: 20px;
        border: none;
        cursor: pointer;
        transition: transform .2s ease, box-shadow .2s ease;
    }

        .floating-cta .fab:hover {
            transform: scale(1.08);
        }

.fab-apply {
    background: var(--gold); /* Primary Emerald Action */
    color: #ffffff;
}

.fab-call {
    background: linear-gradient(155deg, #34a0a4, #22577a 80%); /* Deep Slate Call Button */
    color: white;
    border: 1px solid white !important;
}

.fab-top {
    background: var(--cream-dim); /* Studio Light Scroll Top */
    color: var(--navy);
    border: 1px solid var(--line) !important;
}

/* ================= LOGIN MODAL ================= */

.modal-content {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
}

.modal-header {
    border-bottom: 1px solid var(--line);
    background: var(--cream-dim);
}

.modal-title {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    color: var(--navy);
}

/* =========================================================
   RESPONSIVE FIX FOR RIGHT-SIDE OVERFLOW / EXTRA SPACE
   ========================================================= */

/* Mobile view par right space aur width ko manage karein */
@media (max-width: 767px) {
    .floating-cta {
        right: 14px; /* 24px se ghata kar 14px kiya taaki screen ke bahar na jaaye */
        bottom: 14px;
        max-width: calc(100vw - 28px); /* Screen width se hamesha andar rakhega */
    }

        .floating-cta .fab {
            width: 46px; /* Mobile par FAB button thoda sleek rakhein */
            height: 46px;
            font-size: 18px;
        }

    /* Modal ki vajah se severe overflow hota hai agar fixed margins na hatayein */
    .modal-dialog {
        margin: 12px auto !important;
        max-width: calc(100% - 24px) !important;
    }
}

/* Global Safety Layer (Mandatory for Horizontal Overflow) */
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Right side waale extra blank space ko globally cut kar dega */
}



/* ================= RESPONSIVE BREAKPOINTS ================= */

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

    .stat-strip {
        grid-template-columns: 1fr 1fr;
    }

    .topbar .marquee-wrap {
        max-width: 220px;
    }

    .counter-strip .row > div {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .stat-strip {
        grid-template-columns: 1fr;
    }

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

    .topbar .contacts span.d-none-mobile {
        display: none;
    }

    .hero-slide {
        min-height: 300px;
        padding: 28px;
    }

    .otp-card {
        min-height: auto;
    }

    .detail-img-frame, .detail-img-frame img {
        min-height: 280px;
    }

    .detail-img-badge {
        position: static;
        margin-top: 16px;
        display: inline-block;
    }

    .why-img-frame, .why-img-frame img {
        min-height: 280px;
    }
}
