.academic-links-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.headboy-section {
    padding: 80px 20px;
    background: #f5f3ef;
    padding-top: 10px;
    position: relative;
    z-index: 0;
}

/* .container {
    max-width: 1200px;
    margin: auto;
} */

/* .headboy-section .section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
} */

.headboy-section .section-title h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 100px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: .9;
    color: #111;
}

/* .headboy-section .section-title span {
    position: absolute;
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);
    font-family: 'Pinyon Script', cursive;
    font-size: 90px;
    color: #111;
} */

.headboy-section .headboy-wrapper {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 0px;
    align-items: center;
}

.headboy-section.hd-boy .headboy-wrapper {
    grid-template-columns: 1fr 340px;
}

.hd-boy {
    /* background: #fafbff; */
    padding-top: 80px;
}

/* .headboy-image {
    overflow: hidden;
} */


.headboy-image {
    /* overflow: hidden; */
    margin-right: -30px;
    padding: 10px;
    position: relative;
    /* z-index: 0; */
}

.hd-boy .headboy-image {
    margin-left: -30px;
    margin-right: 0;

}

.headboy-image img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 20px;
}

.headboy-image:after {
    content: '';
    position: absolute;
    background: #39a6dd;
    width: 90%;
    height: 90%;
    right: -5px;
    z-index: 1;
    top: 60px;
    border-radius: 20px;
}

.hd-boy .headboy-image:after {
    left: -5px;
}

.headboy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #ffffff;
}

.headboy-content p {
    /* font-family: 'Playfair Display';
    font-size: 18px; */
    /* line-height: 1.2; */
    color: #ffffff;
    margin-bottom: 40px;
    word-spacing: 3px;
}

.designation {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.4;
    letter-spacing: 0;
    font-family: 'Poppins';
}

.school {
    display: block;
    margin-top: 15px;
}

.headboy-content {
    padding: 40px;
    /* background: #f3f7ff; */
    background: url(../images/student-leaders/head-boy-bg1.webp) var(--dark-blue);
    background-size: cover;
    border-radius: 20px;
    padding-right: 40px;
    padding-left: 70px;
    border-right: 6px solid;

}

.headboy-section:after {
    content: '';
    position: absolute;
    background: url(../images/student-leaders/bg1.webp);
    top: 0;
    right: -16%;
    width: 50%;
    height: 80%;
    z-index: -1;
    background-size: cover;
    transform: rotate(313deg);
}

.headboy-section.hd-boy:after {
    content: '';
    position: absolute;
    background: url(../images/student-leaders/bg1.webp);
    top: 50%;
    left: -16%;
    width: 50%;
    height: 80%;
    z-index: -1;
    background-size: cover;
    transform: rotate(86deg);
}

.hd-boy .headboy-content {
    padding-right: 70px;
    padding-left: 40px;
    border-right: none;
    border-left: 6px solid;
}

/* .cont-section {
    padding: 60px;
} */

@media(max-width:992px) {

    .section-title h1 {
        font-size: 65px;
    }

    /* .section-title span {
        font-size: 65px;
    } */

    .headboy-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .headboy-image {
        max-width: 420px;
        margin: auto;
    }

    .headboy-content h2 {
        font-size: 42px;
    }

    .headboy-content p {
        font-size: 25px;
    }

}

@media(max-width:576px) {

    .section-title h1 {
        font-size: 42px;
    }

    /* .section-title span {
        font-size: 48px;
    } */

    .headboy-content h2 {
        font-size: 34px;
    }

    .headboy-content p {
        font-size: 20px;
    }

}





.house-info {
    padding: 80px 0px;
    background: #f5f3ef;
}


.card-container {
    max-width: 1350px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16%, 1fr));
    gap: 10px;
}

.house-card {
    position: relative;
    overflow: hidden;
    background: rgb(251 249 243);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 20px 10px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    padding-top: 120px;
}

.house-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
}

.house-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, currentColor, transparent);
}

.house-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -89px;
    top: -85px;
    border-radius: 50%;
    background: currentColor;
    opacity: .05;
}

/* .portrait {
    width: 130px;
    height: 130px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 6px solid currentColor;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    transition: .4s;
} */
.portrait {
    width: 80px;
    height: 80px;
    margin: auto;
    /* border-radius: 0 0 0 70%; */
    overflow: hidden;
    background: transparent;
    /* border: 1px dashed currentColor; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, .15); */
    transition: .4s;
    position: absolute;
    right: 16px;
    top: 16px;
}

.house-card:hover .portrait {
    transform: scale(1.08) rotate(-5deg);
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.house-name {
    margin-top: 0px;
    font-size: 26px;
    font-weight: 600;
    /* color: #00285e; */
    font-family: 'Playfair Display';
}

.house-card .dsgnation {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 12px;
    background: rgb(252 245 245);
    color: #000000;
    border-radius: 30px;
    font-size: 12px;
    /* text-transform: uppercase; */
    /* letter-spacing: 2px; */
}

.akbar .dsgnation {
    background: rgb(238 164 160 / 24%);
}

.einstein .dsgnation {
    background: rgb(164 200 237 / 42%);
}

.lincoln .dsgnation {
    background: rgb(167 221 201 / 38%);
}

.gandhi .dsgnation {
    background: rgb(247 197 132 / 40%);
}

.tagore .dsgnation {
    background: rgb(144 173 234 / 30%);
}

.vivekananda .dsgnation {
    background: rgb(203 168 213 / 50%);
}

.student-name {
    /* margin: 20px 0; */
    font-size: 18px;
    color: #444;
    margin-top: 4px;
}

/* .line {
    width: 70px;
    height: 5px;
    border-radius: 50px;
    background: currentColor;
    margin: auto;
} */

/* House Colours */
.akbar {
    color: #ccb34a;
}

.einstein {
    color: #15aac7;
}

.lincoln {
    color: #ae152e;
}

.gandhi {
    color: #286d5a;
}

.vivekananda {
    color: #1d2f74;
}

.tagore {
    color: #e3ce16;
}

@media(max-width:768px) {
    .header h1 {
        font-size: 34px;
    }

    .card-container {
        grid-template-columns: 1fr;
    }
}






/* image slider */


/* --- JNIS DESIGN SYSTEM VARIABLES --- */
:root {
    --primary-accent-blue: #38A6DD;
    --primary-dark-blue: #00285E;
    --white: #FFFFFF;
    --neutral-gray: #666666;

    /* Light Background Tones */
    --light-gray: #F8F9FA;
    --soft-academic-bg: #F5F8FF;
    --soft-blue-tint: #EEF3FB;

    /* Supporting Deep Text Tones */
    --text-deep: #17356F;
    --text-muted: #5C6E85;

    /* Typography */
    --font-body: 'Poppins', sans-serif;
    --font-ui: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Border Radius Standards */
    --radius-md: 20px;
    --radius-lg: 24px;
}

/* --- SECTION BASE STYLE --- */
/* .jnis-pta-section {
    background:
        radial-gradient(circle at 10% 15%, rgba(56, 166, 221, 0.10), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(56, 166, 221, 0.10), transparent 24%),
        linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
    padding: 34px 24px 72px;
    font-family: var(--font-body);
    color: var(--text-deep);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.pta-container {
    max-width: 1320px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(350px, 0.98fr);
    gap: 34px;
    align-items: stretch;
    padding: 32px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 255, 0.98)),
        radial-gradient(circle at top right, rgba(56, 166, 221, 0.08), transparent 24%);
    border: 1px solid rgba(56, 166, 221, 0.14);
    box-shadow: 0 20px 54px rgba(0, 40, 94, 0.10);
    position: relative;
    overflow: hidden;
}

.pta-container::before,
.pta-container::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 2px solid rgba(56, 166, 221, 0.12);
}

.pta-container::before {
    top: 18px;
    right: 18px;
    width: 132px;
    height: 132px;
    border-left: 0;
    border-bottom: 0;
}

.pta-container::after {
    bottom: 18px;
    left: 18px;
    width: 108px;
    height: 108px;
    border-right: 0;
    border-top: 0;
}

/* --- LEFT COLUMN: CONTENT --- */
.pta-content-block {
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(56, 166, 221, 0.10);
    border-radius: 20px;
    padding: 28px 30px 30px;
    box-shadow: 0 14px 32px rgba(0, 40, 94, 0.06);
    position: relative;
    z-index: 1;
}

.pta-brand-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.pta-logo {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    object-fit: contain;
}

.pta-title-group h2 {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: clamp(1.4rem, 2vw, 1.92rem);
    color: var(--primary-dark-blue);
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1.2;
}

.pta-title-group .subtitle {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--primary-accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-top: 8px;
}

/* Premium Quote Styling */
.pta-quote-box {
    position: relative;
    padding-left: 24px;
    border-left: 4px solid var(--primary-accent-blue);
    margin: 8px 0 4px;
}

.pta-quote-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    color: var(--primary-dark-blue);
    line-height: 1.32;
    margin: 0 0 8px 0;
}

.pta-quote-author {
    font-family: var(--font-ui);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #5f6780;
    font-weight: 700;
}

/* Descriptive Paragraphs */
.pta-description {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.78;
    color: var(--text-muted);
    margin: 0;
}

.pta-description strong {
    color: var(--primary-dark-blue);
}

/* --- RIGHT COLUMN: ASYMMETRIC MOSAIC GALLERY --- */
.pta-mosaic-gallery {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.9fr);
    gap: 14px;
    position: relative;
    z-index: 1;
    min-height: 100%;
    align-content: center;
    align-items: center;
    justify-self: center;
    width: min(100%, 640px);
    padding: 8px 8px 18px;
}

/* Subtle Background Decorative Graphic behind the Gallery */
.pta-mosaic-gallery::before {
    content: '';
    position: absolute;
    top: 14px;
    right: 6px;
    width: 88px;
    height: 88px;
    border-top: 2px solid rgba(56, 166, 221, 0.18);
    border-right: 2px solid rgba(56, 166, 221, 0.18);
    opacity: 0.9;
    pointer-events: none;
}

.pta-mosaic-gallery::after {
    content: '';
    position: absolute;
    left: 34px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    background:
        linear-gradient(180deg, rgba(56, 166, 221, 0.18), rgba(56, 166, 221, 0.08));
    box-shadow:
        18px -18px 0 0 rgba(56, 166, 221, 0.10),
        36px 0 0 0 rgba(56, 166, 221, 0.06);
    pointer-events: none;
}

.mosaic-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--white);
    padding: 4px;
    border: 1px solid rgba(56, 166, 221, 0.12);
    box-shadow: 0 16px 32px rgba(23, 53, 111, 0.14), 0 5px 12px rgba(56, 166, 221, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.mosaic-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
    background: #fff;
    border-radius: 14px;
    transition: transform 0.6s ease;
}

/* Option B Asymmetric Layout: Offsetting the columns */
.mosaic-col-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform: translateY(-12px);
    align-items: flex-start;
}

.mosaic-col-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 42px;
    align-items: flex-end;
}

.mosaic-col-left .mosaic-item:first-child {
    width: 96%;
}

.mosaic-col-left .mosaic-item:last-child {
    width: 88%;
    margin-right: 8%;
}

.mosaic-col-right .mosaic-item:first-child {
    width: 92%;
}

.mosaic-col-right .mosaic-item:last-child {
    width: 100%;
    margin-left: -4%;
}

.mosaic-col-left .mosaic-item:first-child img,
.mosaic-col-right .mosaic-item:last-child img {
    height: 264px;
}

.mosaic-col-left .mosaic-item:last-child img,
.mosaic-col-right .mosaic-item:first-child img {
    height: 238px;
}

/* Hover Interactions */
.mosaic-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(56, 166, 221, 0.16);
}

.mosaic-item:hover img {
    transform: scale(1.04);
}

/* --- PTA EXECUTIVE COMMITTEE SECTION --- */
.pta-committee-section {
    /* padding: 0px 314px 0px;
    background:
        radial-gradient(circle at 12% 0%, rgba(56, 166, 221, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 100%); */
}

.pta-committee-shell {
    /* max-width: 1430px; */
    margin: 0 auto;
    /* padding: 54px clamp(18px, 2.6vw, 40px) 56px; */
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.98)),
        radial-gradient(circle at top right, rgba(56, 166, 221, 0.12), transparent 22%);
    /* border: 1px solid rgba(56, 166, 221, 0.14); */
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(0, 40, 94, 0.10);
    position: relative;
    overflow: hidden;
}

.pta-committee-shell::before,
.pta-committee-shell::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(56, 166, 221, 0.12);
    pointer-events: none;
}

.pta-committee-shell::before {
    top: 16px;
    right: 18px;
    width: 110px;
    height: 110px;
    border-left: 0;
    border-bottom: 0;
}

.pta-committee-shell::after {
    left: 18px;
    bottom: 16px;
    width: 108px;
    height: 108px;
    border-right: 0;
    border-top: 0;
}

.pta-committee-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 30px;
}

.pta-committee-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--primary-accent-blue);
    margin-bottom: 14px;
}

.pta-committee-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    color: var(--primary-dark-blue);
    font-weight: 600;
}

.pta-committee-title em {
    color: var(--primary-accent-blue);
    font-style: italic;
    font-weight: 500;
}

.pta-tabs-scroll {
    position: relative;
    z-index: 2;
    margin-bottom: -26px;
}


.pta-committee-tabs {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    /* margin: 0 auto 34px; */
}

.pta-committee-tab {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1.5px solid rgba(56, 166, 221, 0.26);
    background: #fff;
    color: #29486e;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pta-committee-tab:hover,
.pta-committee-tab[aria-selected="true"] {
    background: var(--primary-dark-blue);
    color: #fff;
    border-color: var(--primary-dark-blue);
    box-shadow: 0 16px 28px rgba(0, 40, 94, 0.18);
}

.pta-committee-tab:focus-visible {
    outline: 3px solid rgba(56, 166, 221, 0.24);
    outline-offset: 2px;
}

.pta-committee-panel {
    display: none;
    position: relative;
    z-index: 1;
}

.pta-committee-panel.is-active {
    display: block;
}

.pta-badge-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 16px;
    align-items: flex-start;
    max-width: 1066px;
    margin: 0 auto;
}

.pta-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    flex: 0 1 auto;
    width: max-content;
    min-width: 178px;
    max-width: 270px;
    background: #fff;
    border-radius: 999px;
    padding: 7px 18px 7px 8px;
    border: 1px solid rgba(56, 166, 221, 0.16);
    box-shadow: 0 10px 24px rgba(0, 40, 94, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pta-badge:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 166, 221, 0.3);
    box-shadow: 0 18px 30px rgba(56, 166, 221, 0.18);
}

.pta-badge-wall .pta-badge:first-child {
    border-color: var(--primary-accent-blue);
    box-shadow: 0 14px 28px rgba(56, 166, 221, 0.14);
}

.pta-badge-initials {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-accent-blue), var(--primary-dark-blue));
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
}

.pta-badge-copy {
    min-width: 0;
}

.pta-badge-role {
    font-family: var(--font-ui);
    font-size: 0.55rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-accent-blue);
    font-weight: 700;
    white-space: nowrap;
}

.pta-badge-name {
    margin-top: 2px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.22;
    font-weight: 600;
    color: var(--primary-dark-blue);
    white-space: nowrap;
}


/* --- RESPONSIVE MEDIA QUERIES --- */

/* Optimized for Large Laptops & Middle Resolutions (e.g., 1300x649) */
@media (max-width: 1340px) {
    .pta-container {
        gap: 28px;
        padding: 26px;
    }

    .jnis-pta-section {
        padding: 28px 20px 60px;
    }

    .pta-title-group h2 {
        font-size: 1.35rem;
    }

    .pta-quote-text {
        font-size: 1.3rem;
    }

    .pta-mosaic-gallery {
        width: min(100%, 600px);
    }

    .mosaic-item img {
        height: 228px;
    }

    .mosaic-col-left .mosaic-item:first-child img,
    .mosaic-col-right .mosaic-item:last-child img {
        height: 240px;
    }

    .mosaic-col-left .mosaic-item:last-child img,
    .mosaic-col-right .mosaic-item:first-child img {
        height: 214px;
    }

    .mosaic-col-right {
        transform: translateY(-8px);
    }

    .mosaic-col-left {
        padding-top: 26px;
    }

    /* .pta-committee-section {
        padding: 0 clamp(20px, 6vw, 80px) 68px;
    } */

    /* .pta-committee-shell {
        padding: 46px 26px 48px;
    } */

    .pta-committee-tabs {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .pta-committee-tab {
        white-space: nowrap;
        font-size: clamp(0.72rem, 0.9vw, 0.8rem);
        padding: 11px clamp(14px, 1.35vw, 18px);
        letter-spacing: 0.045em;
    }

    .pta-badge-wall {
        gap: 14px;
    }

    .pta-badge {
        min-height: 56px;
        padding-right: 14px;
        flex-basis: 252px;
        max-width: 252px;
    }

    .pta-badge-name {
        font-size: 0.83rem;
    }
}

/* Tablet Viewports */
@media (max-width: 992px) {
    .pta-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 24px;
    }

    .pta-content-block {
        max-width: 800px;
        margin: 0 auto;
    }

    .pta-mosaic-gallery {
        max-width: 620px;
        margin: 0 auto;
        width: 100%;
    }

    .mosaic-col-right {
        transform: translateY(-10px);
    }

    .mosaic-col-left {
        padding-top: 34px;
    }

    .jnis-pta-section {
        padding: 60px 24px;
    }

    .pta-committee-section {
        padding: 0 20px 68px;
    }

    .pta-committee-shell {
        padding: 40px 22px 42px;
        border-radius: 24px;
    }

    .pta-committee-tabs {
        gap: 10px;
        margin-bottom: 28px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 54px 6px 0;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }

    .pta-committee-tabs::-webkit-scrollbar {
        display: none;
    }

    .pta-tabs-arrow {
        position: absolute;
        top: 1px;
        right: -2px;
        z-index: 4;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(56, 166, 221, 0.32);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.94);
        color: var(--primary-accent-blue);
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
        box-shadow: 0 12px 28px rgba(0, 40, 94, 0.14);
        cursor: pointer;
        transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
    }

    .pta-tabs-arrow:hover,
    .pta-tabs-arrow:focus-visible {
        background: var(--primary-accent-blue);
        border-color: var(--primary-accent-blue);
        color: #fff;
        transform: translateX(2px);
        outline: none;
    }

    .pta-tabs-arrow:active {
        transform: translateX(3px) scale(0.96);
    }

    .pta-tabs-arrow.is-hidden {
        opacity: 0;
        pointer-events: none;
    }

    .pta-committee-tab {
        font-size: 0.78rem;
        padding: 11px 18px;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .pta-badge-wall {
        max-width: 860px;
        gap: 14px 16px;
    }

    .pta-badge {
        min-width: 178px;
        max-width: 270px;
    }
}

/* Mobile Viewports */
@media (max-width: 576px) {
    .jnis-pta-section {
        padding: 40px 16px;
    }

    .pta-brand-header {
        flex-direction: row;
        text-align: left;
        gap: 12px;
    }

    .pta-title-group h2 {
        font-size: 1.2rem;
    }

    .pta-title-group .subtitle {
        font-size: 0.95rem;
    }

    .pta-quote-box {
        padding-left: 20px;
    }

    .pta-quote-text {
        font-size: 1.15rem;
    }

    .pta-mosaic-gallery {
        grid-template-columns: minmax(0, 0.98fr) minmax(0, 0.92fr);
        gap: 12px;
        max-width: 500px;
        padding: 4px 0 16px;
    }

    .mosaic-col-left,
    .mosaic-col-right {
        gap: 12px;
    }

    .mosaic-col-left {
        padding-top: 28px;
    }

    .mosaic-col-right {
        transform: translateY(-8px);
    }

    .mosaic-item {
        border-radius: 14px;
        padding: 3px;
    }

    .mosaic-item img,
    .mosaic-col-left .mosaic-item:first-child img,
    .mosaic-col-right .mosaic-item:last-child img {
        height: 188px;
        border-radius: 11px;
    }

    .mosaic-col-left .mosaic-item:last-child img,
    .mosaic-col-right .mosaic-item:first-child img {
        height: 170px;
    }

    .pta-committee-section {
        padding: 0 16px 54px;
    }

    .pta-committee-shell {
        padding: 34px 16px 36px;
        border-radius: 22px;
    }

    .pta-committee-shell::before,
    .pta-committee-shell::after {
        width: 64px;
        height: 64px;
    }

    .pta-committee-header {
        margin-bottom: 24px;
    }

    .pta-committee-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.22em;
    }

    .pta-committee-tabs {
        margin: 0 -2px 24px;
    }

    .pta-badge-wall {
        gap: 12px;
    }

    .pta-badge {
        border-radius: 999px;
        min-height: 54px;
        align-items: center;
        padding: 7px 16px 7px 8px;
        width: 100%;
        min-width: 0;
        max-width: 320px;
    }

    .pta-badge-name {
        font-size: 0.82rem;
    }
}

/* ============================================================
JNIS BRAND TOKENS
============================================================ */
:root {
    --blue: #38A6DD;
    --dark: #00285E;
    --deep-2: #314967;
    --deep-3: #5C6E85;
    --bg-2: #F5F8FF;
    --bg-3: #EEF3FB;
    --r-lg: 24px;
    --r-xl: 30px;
    --r-pill: 999px;

    /* ---- card + deck geometry: the only values that change per breakpoint ---- */
    --card-w: 250px;
    --card-img-h: 250px;
    --deck-h: 380px;

    /* resting (closed) deck offsets */
    --rest-1: 180px;
    /* outer pair  (t0 / t4) */
    --rest-2: 90px;
    /* inner pair  (t1 / t3) */
    --rest-lift: 0px;

    /* fanned-open offsets — reachable via hover on desktop, or baked in as the
permanent resting state on touch breakpoints (see tablet/mobile below) */
    --open-1: 320px;
    --open-2: 160px;
    --open-lift-outer: -10px;
    --open-lift-inner: -16px;
    --open-lift-center: -22px;

    --drawn-lift: -78px;
    --drawn-scale: 1.55;
    --drawn-deck-h: 470px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--deep-2);
    background: #F8F9FA;
}

.section-wrap {
    max-width: 1484px;
    margin: 0 auto;
    padding: 56px 24px;
}

.section-wrap.anand-mela-wrap {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    /* background:
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .98) 0 30%, rgba(245, 249, 255, .9) 58%, rgba(238, 245, 253, .78) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), #f7fbff 46%, rgba(255, 255, 255, 0)); */
}

h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

.kicker {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.accent {
    font-style: italic;
    color: var(--blue);
    font-weight: 500;
}

.section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
}

.section-head h2 {
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 600;
    margin-top: 14px;
}

.section-head p {
    margin-top: 14px;
    font-size: 14.5px;
    color: var(--deep-3);
    line-height: 1.8;
}

.hover-hint {
    display: inline;
}

.touch-hint {
    display: none;
}

.mela {
    background: linear-gradient(160deg, #fff, var(--bg-2));
    border-radius: var(--r-xl);
    padding: 64px 40px 72px;
    box-shadow: 0 30px 60px -30px rgba(0, 40, 94, .25);
    position: relative;
    overflow: hidden;
}

.mela::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    top: -220px;
    right: -140px;
    background: radial-gradient(circle, rgba(56, 166, 221, .18), transparent 70%);
}

.anand-mela-section {
    /* max-width: 1884px; */
    margin: 0 auto;
    min-height: clamp(440px, 48vw, 560px);
    padding: clamp(42px, 5.2vw, 66px) clamp(18px, 4vw, 40px) clamp(34px, 4.6vw, 56px);
    border-radius: 0;
    isolation: isolate;
    background: transparent;
}

.anand-mela-section::before {
    content: none;
}

.anand-mela-section .anand-bg-elements,
.anand-mela-section .anand-bg-elements span {
    position: absolute;
    pointer-events: none;
}

.anand-mela-section .anand-bg-elements {
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.anand-mela-section .anand-section-content {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    margin: 0 auto;
}

.anand-mela-section .section-head {
    margin-bottom: clamp(28px, 4vw, 46px);
}

.anand-mela-section .section-head h2 {
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.02;
}

.anand-mela-section .section-head p {
    max-width: 640px;
    margin: 12px auto 0;
    font-size: clamp(12px, 1.08vw, 14px);
    line-height: 1.65;
}

.anand-mela-section .title-right {
    color: var(--blue);
    font-style: italic;
    font-weight: 500;
}

.anand-mela-section .anand-left-circle {
    left: clamp(-210px, -14vw, -90px);
    border-radius: 50%;
    border: 1px solid rgba(56, 166, 221, .08);
}

.anand-mela-section .anand-left-circle-1 {
    width: clamp(300px, 28vw, 636px);
    height: clamp(300px, 28vw, 634px);
    /* bottom: clamp(-55px, -6vw, -90px); */
    bottom: clamp(5px, 8vw, -30px);
    background: rgba(56, 166, 221, .08);
}

.anand-mela-section .anand-left-circle-2 {
    width: clamp(230px, 25vw, 459px);
    height: clamp(230px, 28vw, 477px);
    /* bottom: clamp(-160px, -6vw, -58px); */
    bottom: clamp(-50px, 1vw, 169px);
    background: rgba(56, 166, 221, .12);
}

.anand-mela-section .anand-left-circle-3 {
    width: clamp(150px, 20vw, 604px);
    height: clamp(150px, 21vw, 480px);
    /* bottom: clamp(-92px, -6vw, 174px); */
    bottom: clamp(18px, -6vw, 174px);
    background: rgba(56, 166, 221, .18);
}

.anand-mela-section .anand-small-circle {
    width: clamp(14px, 1.8vw, 26px);
    height: clamp(14px, 1.8vw, 26px);
    border-radius: 50%;
    background: #fff;
}

.anand-mela-section .circle-gold-top {
    top: clamp(42px, 8vw, 112px);
    left: clamp(76px, 13vw, 190px);
    border: 1.5px solid rgba(236, 164, 29, .9);
}

.anand-mela-section .circle-blue-bottom {
    left: clamp(132px, 19vw, 280px);
    bottom: clamp(54px, 8vw, 112px);
    border: 1.5px solid rgba(56, 166, 221, .78);
}

.anand-mela-section .anand-right-curve {
    width: clamp(170px, 20vw, 292px);
    aspect-ratio: 292 / 437;
    right: 0;
    top: 50%;
    opacity: .92;
    transform: translateY(-50%);
    background: url('../images/last-section-rbg-element.webp') center right / contain no-repeat;
}

.anand-mela-section .anand-dot-pattern {
    display: none;
    width: clamp(72px, 8vw, 120px);
    height: clamp(86px, 9vw, 132px);
    right: clamp(84px, 12vw, 180px);
    bottom: clamp(58px, 9vw, 122px);
    opacity: .34;
    background-image: radial-gradient(rgba(56, 166, 221, .82) 1.45px, transparent 1.45px);
    background-size: 16px 16px;
}

.anand-mela-section .deck {
    height: clamp(220px, 25vw, var(--deck-h));
}

.deck {
    position: relative;
    height: var(--deck-h);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: height .3s ease;
}

.deck.has-drawn-ticket {
    height: var(--drawn-deck-h);
    z-index: 2;
}

.ticket {
    position: absolute;
    width: var(--card-w);
    background: #fff;
    border: 2px solid #3cbcec;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px -18px rgba(0, 40, 94, .4);
    backface-visibility: hidden;
    cursor: pointer;
    transform-origin: center center;
    transition: transform .38s cubic-bezier(.2, .8, .2, 1), box-shadow .38s ease, opacity .26s ease, width .3s ease;
    will-change: transform;
}

.ticket img {
    width: 100%;
    height: var(--card-img-h);
    object-fit: cover;
    display: block;
    background: var(--bg-3);
    transition: height .3s ease;
}

.ticket img.img-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue), var(--dark));
}

.ticket .stub {
    position: relative;
    padding: 14px 16px 18px;
    border-top: 2px dashed var(--blue);
}

.ticket .stub::before,
.ticket .stub::after {
    content: '';
    position: absolute;
    top: -9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-2);
}

.ticket .stub::before {
    left: -9px;
}

.ticket .stub::after {
    right: -9px;
}

.ticket .tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 9.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
}

.ticket h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--dark);
    margin: 6px 0 0;
    font-weight: 600;
}

.ticket .num {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    color: #fff;
    letter-spacing: .05em;
    background: rgba(0, 40, 94, .55);
    padding: 3px 8px;
    border-radius: 6px;
}

.deck .t0 {
    transform: translateX(calc(var(--open-1) * -1)) rotate(-14deg) translateY(var(--open-lift-outer));
    z-index: 1;
}

.deck .t1 {
    transform: translateX(calc(var(--open-2) * -1)) rotate(-7deg) translateY(var(--open-lift-inner));
    z-index: 2;
}

.deck .t2 {
    transform: translateX(0) rotate(0deg) translateY(var(--open-lift-center));
    z-index: 3;
}

.deck .t3 {
    transform: translateX(var(--open-2)) rotate(7deg) translateY(var(--open-lift-inner));
    z-index: 2;
}

.deck .t4 {
    transform: translateX(var(--open-1)) rotate(14deg) translateY(var(--open-lift-outer));
    z-index: 1;
}

.deck .ticket {
    transform: translateX(var(--ticket-x, 0px)) rotate(var(--ticket-rot, 0deg)) translateY(var(--ticket-y, var(--open-lift-center)));
    z-index: var(--ticket-z, 1);
}

.deck.has-drawn-ticket .ticket:not(.is-drawn) {
    opacity: .58;
}

.deck .ticket.is-drawn {
    border-color: rgba(0, 40, 94, .24);
    transform: translateX(0) rotate(0deg) translateY(var(--drawn-lift)) scale(var(--drawn-scale)) !important;
    box-shadow: 0 36px 62px -18px rgba(0, 40, 94, .58);
    opacity: 1;
    z-index: 20 !important;
}

.mela-arrows {
    display: none;
}

.pill-btn {
    display: inline-flex;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: var(--r-pill);
    background: var(--blue);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 14px 26px -12px rgba(56, 166, 221, .55);
    transition: transform .3s, box-shadow .3s;
}

.pill-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 32px -12px rgba(56, 166, 221, .65);
}

.center {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* ============================================================
RESPONSIVE BREAKPOINTS — only the variables change; every rule
above stays exactly the same at every screen size.
============================================================ */

/* Laptops / small desktops — e.g. 1300×649 and similar wide-but-short viewports.
Still hover-capable, so resting = closed deck, hover = fan (just scaled down). */
@media (max-width:1300px) {
    :root {
        --card-w: 220px;
        --card-img-h: 250px;
        --deck-h: 340px;
        --rest-1: 158px;
        --rest-2: 79px;
        --open-1: 280px;
        --open-2: 140px;
        --drawn-lift: -66px;
        --drawn-scale: 1.42;
        --drawn-deck-h: 420px;
    }

    .mela {
        padding: 56px 32px 64px;
    }

    .card-container {
        max-width: 1230px;
        grid-template-columns: repeat(auto-fit, minmax(14%, 1fr));
    }

    .ae-p-2 {
        width: 270px;
        height: 410px;
    }

    .ae-p-1 {
        width: 185px;
        height: 300px;
    }

    .ae-p-3 {
        width: 185px;
        height: 300px;
    }

    .ae-row {
        gap: 110px;
        padding: 120px 6%;
    }

}

@media (min-width:901px) and (max-width:1200px) {
    .anand-mela-section {
        min-height: 520px;
    }

    .anand-mela-section .anand-left-circle {
        left: -238px;
        opacity: .64;
    }

    .anand-mela-section .anand-left-circle-1 {
        width: 520px;
        height: 520px;
        bottom: -292px;
    }

    .anand-mela-section .anand-left-circle-2 {
        width: 410px;
        height: 410px;
        bottom: -232px;
    }

    .anand-mela-section .anand-left-circle-3 {
        width: 300px;
        height: 300px;
        bottom: -170px;
    }

    .anand-mela-section .circle-blue-bottom {
        bottom: 42px;
    }

    .anand-mela-section .anand-right-curve {
        width: 246px;
        right: -46px;
        opacity: .78;
    }

}

/* Tablets — no reliable hover, so the "resting" state IS the fanned look.
(--open-* is simply never triggered here since .can-hover won't usually apply.) */
@media (max-width:900px) {
    :root {
        --card-w: 180px;
        --card-img-h: 104px;
        --deck-h: 300px;
        --rest-1: 150px;
        --rest-2: 75px;
        --rest-lift: -9px;
        --drawn-lift: -48px;
        --drawn-scale: 1.32;
        --drawn-deck-h: 360px;
    }

    .mela {
        padding: 48px 26px 56px;
    }

    .anand-mela-section {
        min-height: 430px;
        padding-inline: 20px;
    }

    .anand-mela-section .anand-section-content {
        max-width: 760px;
    }

    .anand-mela-section .section-head {
        margin-bottom: 20px;
    }

    .anand-mela-section .anand-left-circle {
        left: -180px;
    }

    .anand-mela-section .anand-right-curve {
        width: 230px;
        right: -72px;
        opacity: .62;
    }

    .anand-mela-section .anand-dot-pattern {
        right: 42px;
        bottom: 54px;
        opacity: .26;
    }

    .hover-hint {
        display: none;
    }

    .touch-hint {
        display: inline;
    }
}

/* Mobile — matches the approved 390px fan preview exactly:
outer ±108px, inner ±54px, -4px lift, 150px cards. */
@media (max-width:600px) {
    :root {
        --card-w: 150px;
        --card-img-h: 88px;
        --deck-h: 280px;
        --rest-1: 108px;
        --rest-2: 54px;
        --rest-lift: -4px;
        --drawn-lift: -32px;
        --drawn-scale: 1.18;
        --drawn-deck-h: 320px;
    }

    .mela {
        padding: 40px 16px 56px;
        border-radius: var(--r-lg);
    }

    .anand-mela-section {
        min-height: 430px;
        padding: 34px 14px 44px;
    }

    .anand-mela-section .section-head p {
        max-width: 92%;
        line-height: 1.55;
    }

    .anand-mela-section .anand-left-circle {
        left: -103px;
        opacity: .72;
    }

    .anand-mela-section .circle-gold-top {
        top: 42px;
        left: 11%;
    }

    .anand-mela-section .circle-blue-bottom,
    .anand-mela-section .anand-dot-pattern {
        display: none;
    }

    .anand-mela-section .anand-right-curve {
        width: 150px;
        height: auto;
        right: -82px;
        top: 52%;
        opacity: .38;
    }

    .ticket {
        border-radius: 10px;
    }

    .mela-arrows {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-top: -14px;
        position: relative;
        z-index: 3;
    }

    .mela-arrow {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(56, 166, 221, .34);
        background: rgba(255, 255, 255, .92);
        color: var(--dark);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        line-height: 1;
        box-shadow: 0 14px 30px rgba(8, 38, 82, .14);
        cursor: pointer;
        transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
    }

    .mela-arrow:hover,
    .mela-arrow:focus-visible {
        background: var(--blue);
        border-color: var(--blue);
        color: #fff;
        box-shadow: 0 18px 34px rgba(56, 166, 221, .34);
        transform: translateY(-1px);
        outline: none;
    }

    .mela-arrow:active {
        transform: translateY(1px) scale(.96);
    }

    .ticket .stub {
        padding: 9px 10px 12px;
    }

    .ticket .stub::before,
    .ticket .stub::after {
        width: 12px;
        height: 12px;
        top: -6px;
    }

    .ticket .tag {
        font-size: 8px;
    }

    .ticket h4 {
        font-size: 12.5px;
    }

    .ticket .num {
        font-size: 7.5px;
        padding: 2px 6px;
        top: 8px;
        right: 9px;
    }

    .section-head p {
        font-size: 13px;
    }
}

:root {
    --jnis-blue: #38A6DD;
    --jnis-blue-dark: #00285E;
    --jnis-blue-rich: #17356F;
    --jnis-text: #314967;
    --jnis-muted: #5C6E85;
    --jnis-white: #FFFFFF;
    --jnis-bg: #F5F8FF;
    --jnis-bg-soft: #EEF3FB;
    --jnis-line: rgba(56, 166, 221, 0.24);
    --jnis-shadow: 0 24px 65px rgba(0, 40, 94, 0.12);
    --jnis-card-shadow: 0 16px 38px rgba(0, 40, 94, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--jnis-text);
    background: #fff;
    font-family: "Poppins", sans-serif;
}

img {
    display: block;
    width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================
PTA INTRO SECTION
========================= */
.pta-intro {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(42px, 6vw, 24px) -1px;
    background:
        radial-gradient(circle at 12% 14%, rgba(56, 166, 221, 0.13), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(56, 166, 221, 0.10), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, var(--jnis-bg) 58%, #ffffff 100%);
}

.pta-intro::before,
.pta-intro::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.pta-intro::before {
    width: 220px;
    height: 220px;
    top: -100px;
    right: -65px;
    border: 1px solid rgba(56, 166, 221, 0.20);
    border-radius: 50%;
    box-shadow:
        0 0 0 34px rgba(56, 166, 221, 0.035),
        0 0 0 70px rgba(56, 166, 221, 0.025);
}

.pta-intro::after {
    width: 120px;
    height: 72px;
    left: 3.5%;
    bottom: 7%;
    opacity: 0.55;
    background-image: radial-gradient(var(--jnis-blue) 1.6px, transparent 1.6px);
    background-size: 15px 15px;
}

.pta-intro__shell {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(24px, 3vw, 46px);
    border: 1px solid rgba(56, 166, 221, 0.16);
    border-radius: clamp(22px, 2.6vw, 30px);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--jnis-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: -35px;

}

.pta-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    gap: clamp(34px, 5vw, 76px);
    align-items: center;
}

/* COPY */
.pta-intro__copy {
    min-width: 0;
    max-width: 623px;
    margin-top: -52px;
}

.pta-intro__title {
    margin: 0 0 18px;
    color: var(--jnis-blue-dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(31px, 1.5vw, 50px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.9;
}

.pta-intro__title span {
    color: var(--jnis-blue);
    font-weight: 500;
}

.pta-intro__subtitle {
    margin: 0 0 24px;
    color: var(--jnis-blue-dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 3.2vw, 38px);
    font-weight: 500;
    line-height: 1;
}

.pta-intro__subtitle em {
    color: var(--jnis-blue);
    font-style: italic;
}

.pta-quote {
    position: relative;
    margin: 0 0 clamp(20px, 2.4vw, 28px);
    padding: 18px 22px 18px 68px;
    overflow: hidden;
    border: 1px solid rgba(56, 166, 221, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 26px rgba(0, 40, 94, 0.10);
}

.pta-quote::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--jnis-blue);
}

.pta-quote::after {
    content: "“";
    position: absolute;
    top: 13px;
    left: 23px;
    color: var(--jnis-blue);
    font: 600 58px/1 "Playfair Display", serif;
}

.pta-quote__text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--jnis-blue-dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(17px, 1.35vw, 21px);
    font-style: italic;
    font-weight: 500;
    line-height: 1.55;
    text-wrap: balance;
}

.pta-quote__author {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    color: var(--jnis-blue);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.pta-quote__author::before {
    content: "";
    width: 34px;
    height: 2px;
    flex: 0 0 auto;
    background: var(--jnis-blue);
}

.pta-intro__text {
    position: relative;
    padding-left: 0;
}

.pta-intro__text::before {
    display: none;
}

.pta-intro__text p {
    margin: 0;
    color: var(--jnis-text);
    font-size: clamp(14px, 1.02vw, 15.5px);
    line-height: 2.15;
    margin-bottom: -49px;
    margin-top: 44px;
}

.pta-intro__text p+p {
    margin-top: clamp(17px, 2vw, 24px);
}

.pta-intro__text strong {
    color: var(--jnis-blue-dark);
    font-weight: 600;
}

/* COLLAGE */
.pta-collage {
    position: relative;
    min-height: clamp(560px, 47vw, 680px);
    perspective: 1200px;
}

/* .pta-collage::before {
    content: "";
    position: absolute;
    left: 23%;
    right: 12%;
    top: 23%;
    bottom: 3%;
    z-index: -2;
    border-radius: 6px;
    background: linear-gradient(180deg, var(--jnis-blue-dark), #062b66);
    transform: rotate(3deg);
    box-shadow: 0 22px 44px rgba(0, 40, 94, 0.18);
} */

.pta-collage::after {
    content: "";
    position: absolute;
    width: 118px;
    height: 100px;
    top: 0;
    right: 4%;
    z-index: -1;
    opacity: 0.72;
    background-image: radial-gradient(var(--jnis-blue) 1.6px, transparent 1.6px);
    background-size: 15px 15px;
}

.pta-photo {
    position: absolute;
    margin: 0;
    overflow: visible;
    border: 8px solid rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--jnis-card-shadow);
    transition:
        transform 420ms cubic-bezier(.2, .8, .2, 1),
        box-shadow 420ms ease;
    will-change: transform;
}

.pta-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.pta-photo::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -14px;
    left: 50%;
    width: 76px;
    height: 20px;
    border-radius: 3px;
    background: #38a6dd;
    box-shadow: 0 3px 7px rgba(0, 40, 94, 0.08);
    transform: translateX(-50%) rotate(-2deg);
    backdrop-filter: blur(2px);
}

.pta-photo:hover,
.pta-photo:focus-within {
    box-shadow: 0 26px 55px rgba(0, 40, 94, 0.20);
    transition-delay: 0s;
}

.pta-photo--one {
    top: 4%;
    left: 12%;
    width: 68%;
    height: 35%;
    z-index: 2;
    transform: rotate(-4deg);
}

.pta-photo--one:hover {
    transform: rotate(-4deg);
}

.pta-photo--two {
    left: 2%;
    top: 30%;
    width: 43%;
    height: 30%;
    z-index: 4;
    transform: rotate(-2deg);
}

.pta-photo--two:hover {
    transform: rotate(-2deg);
}

.pta-photo--three {
    right: 4%;
    top: 32%;
    width: 53%;
    height: 29%;
    z-index: 5;
    transform: rotate(3deg);
}

.pta-photo--three:hover {
    transform: rotate(3deg);
}

.pta-photo--four {
    right: 11%;
    bottom: 7%;
    width: 62%;
    height: 36%;
    z-index: 6;
    transform: rotate(-1deg);
}

.pta-photo--four:hover {
    transform: rotate(-1deg);
}

.pta-collage__seal {
    position: absolute;
    top: 11%;
    right: 7%;
    z-index: 7;
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 7px solid #fff;
    box-shadow: 0 16px 32px rgba(0, 40, 94, 0.14);
}

.pta-collage__seal img {
    width: 72%;
    height: 72%;
    object-fit: contain;
}

.pta-collage__mission {
    position: absolute;
    left: -3%;
    bottom: 8%;
    z-index: 8;
    width: min(215px, 39%);
    padding: 18px 18px 18px 78px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 38px rgba(0, 40, 94, 0.14);
}

.pta-collage__mission-icon {
    position: absolute;
    left: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--jnis-blue);
    color: #fff;
    font-size: 17px;
}

.pta-collage__mission-title {
    margin: 0 0 5px;
    color: var(--jnis-blue);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.pta-collage__mission-text {
    margin: 0;
    color: var(--jnis-text);
    font-size: 11px;
    line-height: 1.45;
}

/* Small reveal animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 760ms ease,
        transform 760ms cubic-bezier(.2, .75, .25, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.pta-photo[data-reveal] {
    transform: translateY(26px) scale(0.97);
}

.pta-photo[data-reveal].is-visible.pta-photo--one {
    transform: rotate(-4deg);
}

.pta-photo[data-reveal].is-visible.pta-photo--two {
    transform: rotate(-2deg);
}

.pta-photo[data-reveal].is-visible.pta-photo--three {
    transform: rotate(3deg);
}

.pta-photo[data-reveal].is-visible.pta-photo--four {
    transform: rotate(-1deg);
}





.wrapper {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    padding: 30px 0px 60px;
}

.swiper.swiper-student-leader {
    width: 100%;
    overflow: visible !important;
}

.swiper-student-leader .swiper-wrapper {
    align-items: center;
}

.swiper-student-leader .swiper-slide {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.swiper-student-leader .card {
    width: 800px;
    height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
    cursor: grab;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: transparent;
    border: none;
}

.swiper-student-leader .card:active {
    cursor: grabbing;
}

.swiper-student-leader .card-image {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

/* .card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
} */

.swiper-student-leader .card-label {
    position: relative;
    z-index: 3;
    /* padding: 20px; */
    color: white;
    width: 100%;
    height: 100%;
}

.swiper-student-leader .card-label img {
    height: 100%;
    object-fit: cover;
}

/* Default state for all slides */
.swiper-student-leader .swiper-slide {
    opacity: 0.4;
    transform: scale(0.6);
    z-index: 1;
}

/* Active slide */
.swiper-student-leader .swiper-slide-active {
    opacity: 1 !important;
    transform: scale(1) !important;
    z-index: 10 !important;
}

/* Slides adjacent to active */
.swiper-student-leader .swiper-slide-active~.swiper-slide:nth-child(1n + 0):nth-child(-n + 1),
.swiper-student-leader .swiper-slide-active~.swiper-slide:nth-last-child(1n + 0):nth-last-child(-n + 1) {
    opacity: 0.7;
    transform: scale(0.8);
    z-index: 5;
}

/* Navigation arrows */
.swiper-student-leader .swiper-button-next,
.swiper-student-leader .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    color: var(--blue);
    ;
    font-size: 20px;
    font-weight: bold;
}

.swiper-student-leader .swiper-button-next::after,
.swiper-student-leader .swiper-button-prev::after {
    content: '' !important;
    display: none;
}



.swiper-student-leader .swiper-button-prev::before {
    content: '\f053';
    font-family: var(--fa-family-classic);
}

.swiper-student-leader .swiper-button-next::before {
    content: '\f054';
    font-family: var(--fa-family-classic);

}

.swiper-student-leader .swiper-button-next {
    right: 20px;
}

.swiper-student-leader .swiper-button-prev {
    left: 20px;
}

.swiper-student-leader .swiper-button-next:hover,
.swiper-student-leader .swiper-button-prev:hover {
    background: #39a6dd;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) scale(1.1);
    color: #fff;
}

.swiper-student-leader .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.swiper-student-leader .swiper-button-disabled:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%);
}

/* Pagination */
.swiper-student-leader .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 15;
}

.swiper-student-leader .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    opacity: 0.5 !important;
}

.swiper-student-leader .swiper-pagination-bullet-active {
    width: 30px;
    height: 10px;
    border-radius: 5px;
    background: var(--blue);
    opacity: 1 !important;
}

.swiper-student-leader .swiper-horizontal>.swiper-pagination-bullets,
.swiper-student-leader .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, -46px);
}

@media (max-width: 1024px) {
    .swiper-student-leader .carousel-container {
        padding: 60px 40px;
    }

    .swiper-student-leader .card {
        width: 500px;
        height: 280px;
    }

    .swiper-student-leader .card-title {
        font-size: 16px;
    }

    .swiper-student-leader .card-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .swiper-student-leader .carousel-container {
        padding: 50px 30px;
    }

    .swiper-student-leader .card {
        width: 100%;
        height: 240px;
    }

    /* .card-label {
        padding: 16px;
    } */
    .wrapper {
        overflow: visible;
    }

    .swiper-student-leader .swiper-button-next,
    .swiper-student-leader .swiper-button-prev {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .swiper-student-leader .swiper-button-prev {
        left: 10px;
    }

    .swiper-student-leader .swiper-button-next {
        right: 10px;
    }
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 1050px) {
    .pta-intro__grid {
        grid-template-columns: 1fr;
    }

    .pta-intro__copy {
        max-width: 780px;
    }

    .pta-collage {
        min-height: 650px;
        max-width: 780px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .pta-intro {
        padding-inline: 14px;
    }

    .pta-intro__shell {
        padding: 22px 18px 24px;
        border-radius: 22px;
    }

    .pta-quote {
        padding: 18px 18px 18px 58px;
        border-radius: 10px;
    }

    .pta-intro__text {
        padding-left: 0;
    }

    .pta-collage {
        display: block;
        min-height: 620px;
        padding-top: 8px;
    }

    .pta-collage::before {
        left: 24%;
        right: 11%;
        top: 25%;
        bottom: 4%;
        border-radius: 6px;
        transform: rotate(3deg);
    }

    .pta-collage::after {
        width: 86px;
        height: 72px;
        right: 0;
    }

    .pta-photo,
    .pta-photo--one,
    .pta-photo--two,
    .pta-photo--three,
    .pta-photo--four {
        border-width: 6px;
        border-radius: 15px;
    }

    .pta-photo--one {
        top: 4%;
        left: 6%;
        width: 74%;
        height: 33%;
    }

    .pta-photo--two {
        left: 1%;
        top: 30%;
        width: 44%;
        height: 29%;
    }

    .pta-photo--three {
        right: 1%;
        top: 32%;
        width: 55%;
        height: 28%;
    }

    .pta-photo--four {
        right: 8%;
        bottom: 7%;
        width: 68%;
        height: 36%;
    }

    .pta-photo:hover {
        box-shadow: 0 26px 55px rgba(0, 40, 94, 0.20);
    }

    .pta-collage__seal {
        top: 10%;
        right: 1%;
        width: 86px;
        height: 86px;
        border-width: 6px;
    }

    .pta-collage__mission {
        left: 0;
        bottom: 8%;
        width: min(205px, 48%);
        padding: 15px 14px 15px 64px;
    }

    .pta-collage__mission-icon {
        left: 14px;
        top: 15px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .pta-intro__shell {
        padding-inline: 15px;
    }

    .pta-quote__author {
        align-items: flex-start;
        line-height: 1.5;
    }

    .pta-intro__title {
        font-size: clamp(50px, 15vw, 68px);
    }

    .pta-intro__subtitle {
        font-size: clamp(25px, 8vw, 34px);
    }

    .pta-intro__text p {
        line-height: 1.72;
    }

    .pta-collage {
        min-height: 520px;
    }

    .pta-photo {
        border-width: 5px;
        border-radius: 13px;
    }

    .pta-photo::before {
        width: 50px;
        height: 15px;
        top: -10px;
    }

    .pta-collage__seal {
        width: 68px;
        height: 68px;
    }

    .pta-collage__mission {
        width: 52%;
        padding: 12px 12px 12px 52px;
    }

    .pta-collage__mission-icon {
        left: 12px;
        top: 12px;
        width: 31px;
        height: 31px;
        font-size: 13px;
    }

    .pta-collage__mission-title {
        font-size: 10.5px;
    }

    .pta-collage__mission-text {
        font-size: 9.5px;
    }
}

/* Special tuning for 1300 × 649 and other short laptop screens */
@media (min-width: 1060px) and (max-height: 700px) {
    .pta-intro {
        padding-block: 28px;
    }

    .pta-intro__shell {
        padding-block: 28px;
    }

    .pta-intro__grid {
        gap: 42px;
    }

    .pta-quote {
        margin-bottom: 20px;
        padding-block: 16px;
    }

    .pta-quote__text {
        font-size: clamp(16px, 1.18vw, 19px);
    }

    .pta-intro__text p {
        font-size: 13.6px;
        line-height: 1.68;
    }

    .pta-collage {
        min-height: 520px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

.intro {
    font-size: 2.5rem !important;
}

.intro .two {
    font-size: 2.5rem !important;
}

@media (max-width: 767px) {
    .pta-intro__copy {
        margin-top: 0;
    }

    .pta-intro__heading {
        margin-bottom: -20px;
        margin-top: 20px;
    }

    .pta-intro__heading .section-title {
        line-height: 1.08;
        margin: 0 0 4px;
    }

    .pta-intro__heading .intro {
        font-size: clamp(1.5rem, 6.8vw, 1.8rem) !important;
        line-height: 1.08;
    }
}

.pta-container,
.pta-committee-shell,
.pta-intro__shell,
.mela {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.anand-mela-section {
    background: transparent;
}

.pta-container::before,
.pta-container::after,
.pta-committee-shell::before,
.pta-committee-shell::after {
    opacity: 0.34;
}

.pta-content-block {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(56, 166, 221, 0.08);
    box-shadow: none;
}

/* .pta-committee-section,
.pta-intro {
    background:
        radial-gradient(circle at 12% 10%, rgba(56, 166, 221, 0.08), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(56, 166, 221, 0.06), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 248, 255, 0.42));
} */

.mela::before {
    opacity: 0.58;
}

.section-wrap {
    background: transparent;
}

.elec-img {
    width: 80%;
    margin: auto;
    outline: 2px solid #39a6dd;
    outline-offset: 3px;
    border-radius: 10px;
    overflow: hidden;
}

.elec-sec {
    background: linear-gradient(135deg, rgba(8, 38, 82, 0.94) 0%, rgba(15, 58, 113, 0.92) 58%, rgba(56, 166, 221, 0.9) 100%);
}

.elec-sec {
    padding: 80px 20px;
}



.gallery-wrapper {
    width: 900px;
    margin: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 120px 170px 180px 150px 140px 104px;
    grid-auto-rows: 80px;
    gap: 7px;
}

.item {
    overflow: hidden;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.item:hover img {
    transform: scale(1.05);
}

/* -------- Layout -------- */

.item1 {
    grid-column: 2;
    grid-row: 3 / span 2;
}

.item2 {
    grid-column: 3;
    grid-row: 1 / span 3;
}

.item3 {
    grid-column: 4;
    grid-row: 2 / span 2;
}

.item4 {
    grid-column: 1 / span 2;
    grid-row: 5;
}

.item5 {
    grid-column: 3 / span 2;
    grid-row: 4 / span 3;
}

.item6 {
    grid-column: 5;
    grid-row: 3 / span 3;
}

.item7 {
    grid-column: 6;
    grid-row: 4 / span 2;
}

.item8 {
    grid-column: 1;
    grid-row: 6;
}

.item9 {
    grid-column: 2;
    grid-row: 6;
}

.item10 {
    grid-column: 2 / span 2;
    grid-row: 7 / span 2;
}

.item11 {
    grid-column: 5 / span 2;
    grid-row: 6 / span 2;
}

.item12 {
    grid-column: 4;
    grid-row: 7 / span 2;
}

/* Mobile */

@media(max-width:768px) {

    .gallery-wrapper {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 50px;
    }

    /* .item {
        grid-column: auto !important;
        grid-row: auto !important;
    } */

}


.gallery-grid .item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-grid .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mfp-img {
    border-radius: 12px;
}

.galry-sec {
    /* background: url(assets/images/student-leaders/music1.webp) #f5f3ef;
background-size: cover; */
    position: relative;
    z-index: 0;
    padding: clamp(36px, 6vw, 78px) 0;
}

.galry-sec:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 50%;
    background: url(../images/student-leaders/music1.webp);
    background-size: cover;
    z-index: -1;
}

.ae-link:hover {
    color: #fff;
}

.ql-wrap {
    grid-template-columns: 0.8fr 1.4fr 1.3fr;
    gap: 10px;
}

.ql-wrap {
    align-items: flex-start;
}

.ql-section {
    background: unset;
    border: none;
    overflow: visible
}

.academic-links-panel {
    margin: 0 auto -22px;
}

.ql-corner {
    left: 60px;
}

.academic-intro {
    padding: 0px;
}

.read-more,
.read-less {
    display: none;
}


@media (max-width:1199px) {
    .card-container {
        grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
        padding: 30px;
    }

    .headboy-section .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 0px;
    }

    .headboy-section .headboy-wrapper {
        grid-template-columns: 270px 1fr;
    }

    .headboy-content {
        padding: 20px;
        padding-right: 20px;
        padding-left: 60px;
    }

    .hd-boy {
        padding-top: 20px;
    }

    .ae-row {
        gap: 50px;
        padding: 50px 3%;
    }

    .ae-collage--production {
        flex: 2.5;
        gap: 0px;
    }

    .ae-p-1 {
        width: 165px;
        height: 280px;
    }

    .ae-p-2 {
        width: 250px;
        height: 390px;
    }

    .ae-p-3 {
        width: 165px;
        height: 280px;
    }

    .galry-sec .w-50 {
        width: 80% !important;
    }

    .wrapper {
        overflow: visible;
    }
}


@media (max-width:992px) {
    .gallery-grid {
        grid-template-columns: 100px 150px 150px 110px 110px 84px;
        gap: 5px;
    }

    .gallery-wrapper {
        width: 740px;
    }


    .headboy-section.hd-boy .headboy-wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .ql-para p {
        max-width: max-content;
        text-align: justify;
    }

    .headboy-image:after {
        top: 40px;
    }

    .academic-intro {
        display: none;
    }

    .ql-heading br {
        display: none;
    }

    .ql-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ql-image {
        margin-top: 0;
    }

    .pta-committee-section {
        padding: 0 0px 54px;
    }

    .pta-committee-shell {
        padding: 0;
    }

    .ql-section {
        padding: 40px 14px 40px;
    }

    .section-title .title-left,
    .scroll-split-title .title-left {
        font-size: 2rem;
    }

    .section-title .title-right,
    .scroll-split-title .title-right {
        font-size: 2rem;
    }

    .card-container {
        grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
        padding: 14px;
    }

    .house-name {
        font-size: 22px;
        line-height: 1.4;
    }

    .house-info {
        padding: 40px 0px;
    }

    .container {
        padding: 0 0px;
    }

    .headboy-section .headboy-wrapper {
        grid-template-columns: 1fr;
    }

    .headboy-content {
        padding: 16px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .headboy-content p {
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
    }

    .headboy-image {
        max-width: 250px;
    }

    .more-content {
        display: none;
    }

    .read-more,
    .read-less {
        color: #39a6dd;
        text-decoration: none;
        margin-left: 5px;
        cursor: pointer;
        display: inline;
        text-decoration: underline;
    }

    .read-more:hover,
    .read-less:hover {
        color: #39a6dd;
    }

    .headboy-section {
        padding: 30px 20px;
    }

    .hd-boy .headboy-content {
        padding-right: 16px;
        padding-left: 16px;
        border-right: 16px;
        border-left: 6px solid;
    }

    .pta-committee-section {
        padding: 0 0px 0px;
    }

    .designation {
        width: 100%;
        display: block;
    }

    .hd-boy {
        padding-bottom: 60px !important;
    }

    .hoe-section {
        padding: 30px 14px 40px;
    }

    .pointer-section {
        padding: 28px 16px 34px;
    }

}

@media (max-width:767px) {
    .gallery-grid {
        grid-template-columns: 60px 56px 50px 50px 60px 50px;
        gap: 3px;
    }

    .gallery-wrapper {
        width: 340px;
    }

    .galry-sec .w-50 {
        width: 92% !important;
    }

    .ae-p-2 {
        width: 170px;
        height: 230px;
    }

    .ae-p-1 {
        width: 100px;
        height: 200px;
    }

    .ae-p-3 {
        width: 100px;
        height: 200px;
    }

    .ae-tape-2 {
        bottom: 40px;
    }

    .ae-tape-1 {
        top: 0px;
        left: 15%;
    }
}







/* annual production */
.experience {
    height: 280vh !important;
    background: #fff9f0;
}

.stage {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .96) 0, rgba(255, 255, 255, .68) 35%, rgba(243, 241, 237, .86) 72%),
        var(--paper);
    isolation: isolate;
}

.stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    box-shadow: inset 0 0 80px rgba(18, 18, 18, .045);
}

.progress {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, .05);
}

.progress span {
    display: block;
    height: 100%;
    width: 100%;
    transform-origin: left;
    transform: scaleX(0);
    background: var(--ink);
}

.site-header {
    position: absolute;
    z-index: 60;
    top: 0;
    left: 0;
    width: 100%;
    height: 86px;
    padding: 0 clamp(26px, 5.6vw, 86px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 11px;
}

.brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: -.02em;
}

.brand-mark {
    width: 18px;
    height: 18px;
    position: relative;
    display: inline-block;
}

.brand-mark i {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 8px 2px 8px 2px;
    background: var(--mint);
    transform-origin: 9px 9px;
}

.brand-mark i:nth-child(1) {
    transform: rotate(0deg);
}

.brand-mark i:nth-child(2) {
    transform: rotate(90deg);
}

.brand-mark i:nth-child(3) {
    transform: rotate(180deg);
}

.brand-mark i:nth-child(4) {
    transform: rotate(270deg);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 31px);
    white-space: nowrap;
}

.desktop-nav a {
    opacity: .58;
    transition: opacity .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    opacity: 1;
}

.desktop-nav a.active::before {
    content: "";
    width: 5px;
    height: 5px;
    display: inline-block;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--ink);
    vertical-align: 1px;
}

.menu-button {
    display: none !important;
}

.intro-copy {
    position: absolute;
    z-index: 0;
    top: 15%;
    left: 50%;
    width: min(88vw, 1180px);
    transform: translateX(-50%);
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: clamp(28px, 4.8vw, 72px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.065em;
    opacity: .92;
}

.intro-copy p {
    margin: 0;
}

.intro-copy p:nth-child(2) {
    color: #c7c3bd;
}

.story {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.story-one {
    z-index: 10;
}

.story-note {
    position: absolute;
    font-size: 12px;
    line-height: 1.35;
}

.note-primary {
    left: 14.3%;
    top: 27%;
}

.tiny-label {
    display: block;
    margin-bottom: 11px;
    font-size: 8px;
    letter-spacing: .14em;
    opacity: .55;
}

.note-primary h1 {
    margin: 0;
    font-size: clamp(18px, 2vw, 30px);
    line-height: .92;
    letter-spacing: -.07em;
}

.round-arrow {
    position: absolute;
    left: 110%;
    top: 42%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: white;
    background: #151515;
    display: grid;
    place-items: center;
}

.note-secondary {
    left: 18%;
    top: 53%;
    color: #555;
}

.story-pill {
    position: relative;
    z-index: 103;
    pointer-events: auto;

}

.story-two {
    /* position: relative; */
    z-index: 100;
    opacity: 0;
}

.vision-copy {
    position: absolute;
    left: 7.2%;
    top: 29%;
    width: 31%;
    z-index: 101;
}

.eyebrow {
    display: block;
    margin-bottom: 15px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #8b8882;
}

.story-two .button-group {
    position: relative;
    z-index: 102;
}

.ql-para p {
    text-align: justify;
}



.vision-copy h2 em {
    color: #c8c4be;
    font-style: normal;
    font-weight: 400;
}

.vision-copy a span {
    margin-left: 6px;
}

.icon-cloud {
    position: absolute;
    left: 8%;
    bottom: 11%;
    width: 31%;
    height: 22%;
}

.orbit-icon {
    position: absolute;
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    font-size: 22px;
    color: #52504d;
    transform: scale(.9) rotate(var(--r, 0deg));
}

.i1 {
    left: 2%;
    top: 16%;
    --r: -12deg
}

.i2 {
    left: 19%;
    top: 0
}

.i3 {
    left: 35%;
    top: 24%;
    --r: 20deg
}

.i4 {
    left: 51%;
    top: 5%;
    --r: 10deg
}

.i5 {
    left: 67%;
    top: 31%
}

.i6 {
    left: 83%;
    top: 7%;
    --r: -15deg
}

.i7 {
    left: 11%;
    top: 60%;
    --r: 7deg
}

.i8 {
    left: 29%;
    top: 72%;
    --r: -12deg
}

.i9 {
    left: 51%;
    top: 59%
}

.i10 {
    left: 68%;
    top: 76%;
    --r: 15deg
}

.i11 {
    left: 87%;
    top: 57%;
}

.collection-shell {
    position: absolute;
    left: 54.8%;
    top: 24%;
    width: 37%;
    height: 65%;
    border-radius: 12px 12px 0 0;
}

.collection-title {
    position: absolute;
    left: 0;
    right: 0;
    top: -38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.collection-title button {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .07);
    font-size: 9px;
}

.collection-title button i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #111;
}

.collection-tab {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 40px;
    border-radius: 12px 12px 0 0;
    background: #171717;
    color: #fff;
    padding: 14px 18px;
    font-size: 10px;
    letter-spacing: .04em;
}

.collection-tab::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 40px;
    background: #f6f4f1;
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%, 0 48%);
}

.art-cards {
    position: absolute;
    inset: 0;
    z-index: 22;
    pointer-events: visible;
}

.art-card {
    --card-w: clamp(105px, 20.3vw, 300px);
    position: absolute;
    left: 0;
    top: 0;
    width: var(--card-w);
    aspect-ratio: 0.79;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 17px 40px rgba(23, 20, 17, .17);
    transform-origin: center;
    will-change: transform, opacity;
    backface-visibility: hidden;
    z-index: 2;
}

.art-card>img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.art-card strong,
.art-card span,
.art-card small {
    position: absolute;
    z-index: 3;
}

.art-card small {
    font-size: 6px;
    letter-spacing: .16em;
}

.art-card strong {
    font-family: Manrope, sans-serif;
    line-height: .85;
    letter-spacing: -.07em;
}

.art-1 {
    background: #e9e6e1;
    color: #151515;
}

.paper-noise {
    position: absolute;
    inset: 0;
    opacity: .37;
    background: repeating-linear-gradient(22deg, transparent 0 6px, rgba(0, 0, 0, .08) 7px 8px);
    mix-blend-mode: multiply;
}

.art-1 small {
    left: 10%;
    top: 9%
}

.art-1 strong {
    font-size: 22px;
    left: 10%;
    top: 18%;
}

.art-1 span {
    right: 8%;
    bottom: 9%;
    font-size: 9px;
    transform: rotate(-8deg)
}



.cloud {
    position: absolute;
    background: rgba(233, 244, 255, .82);
    filter: blur(1px);
    border-radius: 50%
}

.c1 {
    width: 72%;
    height: 29%;
    left: -8%;
    top: 16%;
    transform: rotate(10deg)
}

.c2 {
    width: 83%;
    height: 34%;
    right: -17%;
    top: 39%;
    transform: rotate(-7deg)
}

.c3 {
    width: 65%;
    height: 26%;
    left: 7%;
    bottom: 8%;
    transform: rotate(4deg)
}

.art-6 strong {
    left: 9%;
    top: 9%;
    font-size: 11px;
    letter-spacing: .02em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .15)
}

.scroll-cue {
    position: absolute;
    z-index: 62;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #77736e;
}

.scroll-cue i {
    width: 1px;
    height: 24px;
    background: #222;
    transform-origin: top;
    animation: cue 1.7s ease-in-out infinite
}

.art-card a {
    display: block;
    width: 100%;
    height: 100%;

}

.art-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.gallery-popup1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-popup1 img {
    transform: scale(1);
    transition: all 0.5s linear;
}

.gallery-popup1:hover img {
    transform: scale(1.1);
    transition: all 0.5s linear;
}

.mfp-image-holder .mfp-content {
    max-width: 70%;
}

@keyframes cue {

    0%,
    100% {
        transform: scaleY(.2);
        opacity: .25
    }

    50% {
        transform: scaleY(1);
        opacity: 1
    }
}

@media (max-width: 820px) {
    .stage {
        min-height: 560px;
    }

    .site-header {
        height: 70px;
        padding: 0 20px;
        grid-template-columns: 1fr auto;
    }

    .desktop-nav {
        display: none;
    }

    .header-actions {
        grid-column: 2;
    }

    .header-actions button:first-child {
        display: none;
    }

    .menu-button {
        display: grid !important;
    }

    .intro-copy {
        top: 14%;
        font-size: clamp(31px, 9vw, 54px);
        width: 92vw;
    }

    .note-primary {
        left: 7%;
        top: 24%;
    }

    .note-secondary {
        left: 7%;
        top: 54%;
        font-size: 10px;
    }

    .story-pill {
        /* left: auto;
        right: 6%;
        top: 25%; */
        width: fit-content;
        margin-top: 0 !important;
        margin-bottom: 30px;
    }

    /* art-card: sized for a 2×2 grid in the lower viewport */
    .art-card {
        --card-w: clamp(80px, 38vw, 170px);
    }

    /* vision-copy: pinned at top so cards (in lower 50%) don't overlap */
    .vision-copy {
        left: 5%;
        top: 6%;
        width: 90%;
    }

    /* hide the long paragraph on mobile — heading + button is enough */
    /* .vision-copy .subtext {
        display: none;
    } */

    .vision-copy .section-title .title-left,
    .vision-copy .section-title .title-right {
        font-size: 1.6rem;
    }

    .subtext {
        text-align: justify;
    }


    .icon-cloud {
        left: 4%;
        bottom: 5%;
        width: 42%;
        height: 24%;
        transform: scale(.75);
        transform-origin: left bottom;
    }

    .collection-shell {
        left: 49%;
        top: 45%;
        width: 48%;
        height: 48%;
    }

    .collection-title {
        top: -32px;
    }

    .collection-title button {
        display: none;
    }

    .scroll-cue span {
        display: none;
    }

    .experience {
        height: 240vh !important;
        /* enough scroll room for the fan→grid animation on mobile */
        background: #fff9f0;
    }

    /* story-two text block: reduce font on mobile */
    .story-two {
        font-size: 0.9rem;
    }
}


/* ── Extra-small phones (≤ 480px) ─────────────────────────── */
@media (max-width: 480px) {
    .experience {
        height: 110vh !important;
        /* padding: 60px 0; */
    }

    /* .art-cards{
        margin-top: 40px;
    } */
    .stage {
        height: 110vh;
    }

    .vision-copy {
        top: 6%;
        width: 92%;
    }

    .vision-copy .section-title .title-left,
    .vision-copy .section-title .title-right {
        font-size: 1.3rem;
    }

    .art-card {
        --card-w: clamp(65px, 38vw, 150px);
    }

    .stage {
        min-height: 500px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .scroll-cue i {
        animation: none;
    }
}

/* annual production */