/*=================================================
        GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=================================================
                RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--font-family);

    font-size:16px;

    color:var(--text);

    background:var(--white);

    overflow-x:hidden;

    line-height:1.7;

}

/*=================================================
                LINKS
==================================================*/

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

/*=================================================
                LIST
==================================================*/

ul{

    list-style:none;

}

/*=================================================
                IMAGE
==================================================*/

img{

    width:100%;

    display:block;

}

/*=================================================
                CONTAINER
==================================================*/

.container{

    width:90%;

    max-width:1320px;

    margin:auto;

}

/*=================================================
                SECTION
==================================================*/

section{

    padding:90px 0;

}

/*=================================================
                HEADING
==================================================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    color:var(--primary-color);

    font-size:40px;

    font-weight:700;

    margin-bottom:10px;

}

.section-title p{

    color:#777;

    max-width:700px;

    margin:auto;

}

/*=================================================
                BUTTON
==================================================*/

.btn{

    display:inline-block;

    padding:15px 35px;

    background:var(--primary-color);

    color:#fff;

    border-radius:50px;

    transition:.4s;

    font-weight:600;

}

.btn:hover{

    background:var(--secondary-color);

    color:#000;

}

/*=================================================
            SECONDARY BUTTON
==================================================*/

.btn-outline{

    display:inline-block;

    padding:15px 35px;

    border:2px solid var(--primary-color);

    color:var(--primary-color);

    border-radius:50px;

    transition:.4s;

}

.btn-outline:hover{

    background:var(--primary-color);

    color:#fff;

}

/*=================================================
                CARD
==================================================*/

.card{

    background:#fff;

    border-radius:15px;

    box-shadow:var(--shadow-small);

    overflow:hidden;

    transition:.4s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-large);

}

/*=================================================
            IMAGE ZOOM
==================================================*/

.image-box{

    overflow:hidden;

}

.image-box img{

    transition:.5s;

}

.image-box:hover img{

    transform:scale(1.08);

}

/*=================================================
            TITLE
==================================================*/

.title{

    color:var(--primary-color);

    font-weight:700;

}

/*=================================================
            TEXT CENTER
==================================================*/

.text-center{

    text-align:center;

}

/*=================================================
            SPACING
==================================================*/

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mt-40{

    margin-top:40px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-40{

    margin-bottom:40px;

}

/*=================================================
            SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eee;

}

::-webkit-scrollbar-thumb{

    background:var(--primary-color);

}

::-webkit-scrollbar-thumb:hover{

    background:var(--secondary-color);

}
/* ==========================================
   TEMPORARY CSS TEST
   ========================================== */

body {
    background-color: #eeeeee !important;
}

.top-header {
    background-color: #980227 !important;
    color: #ffffff !important;
}

/* =========================================================
   SHAHU'S GARDEN - MODERN SCHOOL HOMEPAGE
========================================================= */

:root {
    --school-red: #980227;
    --school-red-dark: #72001d;
    --school-gold: #d9af3d;
    --school-gold-light: #ead083;
    --school-black: #171717;
    --school-text: #242424;
    --school-muted: #777;
    --school-bg: #f7f7f5;
    --school-white: #ffffff;
    --school-border: #e8e8e8;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}


/* =========================================================
   HERO
========================================================= */

/* =========================================================
   HERO / MAIN SLIDER
   REFERENCE-SIZE SLIDER
========================================================= */

.home-hero-modern {

    position: relative;

    width: 100%;

    height: 450px;

    min-height: 450px;

    padding: 0;

    margin: 0;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #000;

    color: #fff;

}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            135deg,
            rgba(152, 2, 39, .28),
            transparent 65%
        );
}

.home-hero-container {

    position: relative;

    z-index: 2;

    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr;

    gap: 40px;

    align-items: center;

}

.home-hero-content {
    max-width: 680px;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 20px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    color: var(--school-gold-light);
}

.home-hero-content h1 {
    margin: 0;

    font-size: clamp(48px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -2px;
    font-weight: 700;
}

.home-hero-content h1 strong {
    color: var(--school-gold);
}

.home-hero-content p {
    max-width: 580px;
    margin: 28px 0;

    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.88);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    min-height: 52px;
    padding: 0 24px;

    border-radius: 4px;

    font-weight: 700;
    transition: .3s ease;
}

.hero-btn-primary {
    background: var(--school-gold);
    color: #171717;
}

.hero-btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

.hero-btn-light {
    border: 1px solid rgba(255,255,255,.7);
    color: #fff;
}

.hero-btn-light:hover {
    background: #fff;
    color: var(--school-red);
}


/* =========================================================
   ADMISSION CARD
========================================================= */

.hero-admission-card {
    padding: 26px;

    background: rgba(255,255,255,.97);
    color: var(--school-text);

    border-radius: 12px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.25);
}

.hero-admission-header {
    display: flex;
    justify-content: space-between;
    gap: 15px;

    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 700;
    color: var(--school-red);
}

.hero-admission-header strong {
    padding: 4px 10px;

    border: 1px solid var(--school-red);
    border-radius: 20px;
}

.hero-admission-card h3 {
    margin: 0 0 10px;

    font-size: 27px;
    line-height: 1.1;
}

.hero-admission-card p {
    margin: 0 0 20px;

    font-size: 14px;
    line-height: 1.6;
    color: var(--school-muted);
}

.hero-admission-card form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hero-admission-card input,
.hero-admission-card select {
    width: 100%;
    height: 44px;

    padding: 0 12px;

    border: 1px solid #ddd;
    border-radius: 4px;

    outline: none;
}

.hero-admission-card input:focus,
.hero-admission-card select:focus {
    border-color: var(--school-red);
}

.hero-admission-card button {
    height: 48px;

    border: 0;
    border-radius: 4px;

    background: var(--school-red);
    color: #fff;

    font-weight: 700;
    cursor: pointer;
}

.hero-admission-card button:hover {
    background: var(--school-red-dark);
}


/* =========================================================
   SCHOOL TYPE CARDS
   ORCHIDS-STYLE SCHOOL / JUNIOR COLLEGE SECTION
========================================================= */

.school-type-section {
    width: 100%;
    padding: 30px 0 55px;

    background: #fde8eb;
}


/* =========================================================
   CONTAINER
========================================================= */

.school-type-container {
    width: min(1450px, calc(100% - 110px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 60px;
}


/* =========================================================
   CARD
========================================================= */

.school-type-card {
    width: 100%;

    overflow: hidden;

    background: #ffffff;

    border-radius: 22px;

    box-shadow: none;

    border: 1px solid rgba(0, 0, 0, .08);
}


/* =========================================================
   RED HEADER
========================================================= */

.school-type-card-header {
    min-height: 120px;

    padding: 18px 25px 17px;

    background: #a9002d;

    color: #ffffff;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


/* =========================================================
   TITLE
========================================================= */

.school-type-card-header h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: clamp(26px, 2.2vw, 34px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -.5px;
}


/* =========================================================
   ACTION LINKS
========================================================= */

.school-type-actions {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 55px;

    width: 100%;
}


.school-type-actions a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.2;

    font-weight: 700;

    white-space: nowrap;

    transition: transform .25s ease,
                color .25s ease;
}


.school-type-actions a:hover {
    color: #f4d76e;

    transform: translateX(3px);
}


.school-type-actions i {
    font-size: 12px;

    transition: transform .25s ease;
}


.school-type-actions a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   IMAGE
========================================================= */

.school-type-image {
    width: 100%;

    height: 510px;

    overflow: hidden;

    background: #eeeeee;
}


.school-type-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform .5s ease;
}


.school-type-card:hover .school-type-image img {
    transform: scale(1.03);
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .school-type-container {
        width: min(1450px, calc(100% - 110px));
    }

    .school-type-card-header {
        min-height: 120px;
    }

    .school-type-image {
        height: 510px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .school-type-section {
        padding: 25px 0 45px;
    }

    .school-type-container {
        width: calc(100% - 50px);

        gap: 25px;
    }

    .school-type-card-header {
        min-height: 125px;

        padding: 18px 15px;
    }

    .school-type-card-header h2 {
        font-size: 27px;
    }

    .school-type-actions {
        gap: 25px;
    }

    .school-type-actions a {
        font-size: 15px;
    }

    .school-type-image {
        height: 400px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .school-type-section {
        padding: 20px 0 40px;
    }

    .school-type-container {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .school-type-card-header {
        min-height: 120px;

        padding: 18px 15px;
    }

    .school-type-card-header h2 {
        font-size: 28px;

        margin-bottom: 14px;
    }

    .school-type-actions {
        gap: 25px;
    }

    .school-type-actions a {
        font-size: 14px;
    }

    .school-type-image {
        height: 330px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .school-type-container {
        width: calc(100% - 20px);
    }

    .school-type-card-header {
        min-height: 125px;
    }

    .school-type-card-header h2 {
        font-size: 25px;
    }

    .school-type-actions {
        gap: 15px;
    }

    .school-type-actions a {
        font-size: 13px;
    }

    .school-type-image {
        height: 280px;
    }

}


/* =========================================================
   INTRODUCTION
========================================================= */

.school-introduction {
    padding: 110px 0;
    background: var(--school-bg);
}

.school-introduction-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.section-label,
.section-heading-modern > span,
.home-section-top span,
.school-life-heading span {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--school-red);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.school-introduction-content h2 {
    margin: 0 0 25px;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.school-introduction-content h2 strong {
    color: var(--school-red);
}

.school-introduction-content p {
    margin-bottom: 18px;

    color: #666;
    line-height: 1.8;
}

.text-arrow-link,
.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--school-red);
    font-weight: 700;
}

.school-introduction-image {
    position: relative;
}

.school-introduction-image img {
    width: 100%;
    height: 500px;

    object-fit: cover;

    border-radius: 22px;
}

.image-badge {
    position: absolute;
    left: -25px;
    bottom: 25px;

    padding: 20px 25px;

    background: var(--school-red);
    color: #fff;

    border-radius: 10px;

    box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

.image-badge strong,
.image-badge span {
    display: block;
}

.image-badge strong {
    font-size: 20px;
}

.image-badge span {
    margin-top: 4px;

    color: var(--school-gold);
    font-size: 10px;
    letter-spacing: 2px;
}


/* =========================================================
   WHY SCHOOL
========================================================= */

.why-school-section {
    padding: 110px 0;
    background: #fff;
}

.section-heading-modern {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading-modern h2 {
    margin: 0 0 18px;

    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.05;
}

.section-heading-modern h2 strong {
    color: var(--school-red);
}

.section-heading-modern p {
    color: #777;
    line-height: 1.7;
}

.why-school-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-school-card {
    padding: 30px;

    border: 1px solid #e6e6e6;
    border-radius: 14px;

    background: #fff;

    transition: .3s ease;
}

.why-school-card:hover {
    transform: translateY(-8px);

    border-color: var(--school-red);

    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.why-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: rgba(152,2,39,.08);
    color: var(--school-red);

    font-size: 21px;
}

.why-school-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.why-school-card p {
    margin: 0;

    color: #777;
    line-height: 1.7;
}


/* =========================================================
   SCHOOL LIFE
========================================================= */

.school-life-section {
    padding: 100px 0;

    background: var(--school-black);
    color: #fff;
}

.school-life-heading {
    margin-bottom: 45px;
}

.school-life-heading h2 {
    margin: 0;

    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
}

.school-life-heading h2 strong {
    color: var(--school-gold);
}

.school-life-heading span {
    color: var(--school-gold);
}

.school-life-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 20px;
}

.school-life-card {
    position: relative;
    height: 480px;

    overflow: hidden;
    border-radius: 18px;
}

.school-life-card:not(.school-life-large) {
    height: 480px;
}

.school-life-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.school-life-card:hover img {
    transform: scale(1.06);
}

.school-life-overlay {
    position: absolute;
    inset: auto 0 0;

    padding: 35px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.9)
        );
}

.school-life-overlay span {
    color: var(--school-gold);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.school-life-overlay h3 {
    margin: 10px 0;

    font-size: 32px;
    line-height: 1.05;
}

.school-life-overlay i {
    color: var(--school-gold);
}


/* =========================================================
   STATS
========================================================= */

.school-stats-section {
    background: var(--school-red);
    color: #fff;
}

.school-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.school-stat {
    padding: 42px 20px;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.18);
}

.school-stat:last-child {
    border-right: 0;
}

.school-stat strong {
    display: block;

    margin-bottom: 7px;

    color: var(--school-gold);

    font-size: 42px;
}

.school-stat span {
    font-size: 13px;
    color: rgba(255,255,255,.8);
}


/* =========================================================
   FACILITIES
========================================================= */

.facilities-home-section {
    padding: 110px 0;
    background: #fff;
}

.facility-home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.facility-home-card {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    border: 1px solid #e4e4e4;

    background: #fff;

    transition: .3s ease;
}

.facility-home-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

.facility-image {
    height: 300px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .5s ease;
}

.facility-home-card:hover .facility-image img {
    transform: scale(1.05);
}

.facility-content {
    position: relative;

    padding: 24px 28px;
}

.facility-content span {
    color: var(--school-red);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.facility-content h3 {
    margin: 8px 0 0;
    font-size: 24px;
}

.facility-content i {
    position: absolute;
    right: 28px;
    top: 35px;

    color: var(--school-red);
}


/* =========================================================
   HOME GALLERY
========================================================= */

.home-gallery-section {
    padding: 110px 0;
    background: var(--school-bg);
}

.home-section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 40px;
}

.home-section-top h2 {
    margin: 0;

    font-size: clamp(35px, 4vw, 52px);
    line-height: 1;
}

.home-section-top h2 strong {
    color: var(--school-red);
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-gallery-card {
    position: relative;

    height: 330px;

    overflow: hidden;

    border-radius: 16px;

    background: #ddd;
}

.home-gallery-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.home-gallery-card:hover img {
    transform: scale(1.07);
}

.home-gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 25px;

    color: #fff;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.85)
        );
}

.home-gallery-caption span {
    color: var(--school-gold);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.home-gallery-caption h3 {
    margin: 6px 0 0;
    font-size: 21px;
}

.home-gallery-empty {
    grid-column: 1 / -1;

    padding: 50px;

    text-align: center;

    background: #fff;
    border-radius: 15px;
}


/* =========================================================
   EVENTS
========================================================= */

.home-events-section {
    padding: 100px 0;
    background: #fff;
}

.home-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-event-card {
    display: grid;
    grid-template-columns: 55px 1fr 20px;
    gap: 18px;
    align-items: center;

    padding: 25px;

    border: 1px solid #e5e5e5;
    border-radius: 12px;

    color: var(--school-text);

    transition: .3s ease;
}

.home-event-card:hover {
    border-color: var(--school-red);
    transform: translateY(-4px);
}

.event-date {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(152,2,39,.08);
    color: var(--school-red);
}

.home-event-card span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;

    color: var(--school-red);
}

.home-event-card h3 {
    margin: 6px 0 0;
    font-size: 18px;
}

.home-event-card > i {
    color: var(--school-red);
}

.home-event-empty {
    grid-column: 1 / -1;
    text-align: center;
}


/* =========================================================
   ADMISSION CTA
========================================================= */

.home-admission-cta {
    padding: 90px 0;

        background:black;

    color: #fff;
}

.home-admission-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.home-admission-content > div {
    max-width: 750px;
}

.home-admission-content span {
    color: var(--school-gold);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.home-admission-content h2 {
    margin: 12px 0;

    font-size: clamp(38px, 5vw, 60px);
    line-height: 1;
}

.home-admission-content h2 strong {
    color: var(--school-gold);
}

.home-admission-content p {
    color: rgba(255,255,255,.8);
}

.cta-gold-button {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 17px 27px;

    border-radius: 5px;

    background: var(--school-gold);
    color: #171717;

    font-weight: 800;
}

.cta-gold-button:hover {
    background: #fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .home-hero-container {
        grid-template-columns: 1fr;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-admission-card {
        max-width: 500px;
    }

    .school-introduction-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-school-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-home-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 760px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .home-hero-modern {
        min-height: auto;
    }

    .home-hero-content h1 {
        font-size: 46px;
    }

    .school-type-grid,
    .school-life-grid,
    .facility-home-grid,
    .home-gallery-grid,
    .home-events-grid {
        grid-template-columns: 1fr;
    }

    .school-life-card,
    .school-life-card:not(.school-life-large) {
        height: 380px;
    }

    .school-stats {
        grid-template-columns: 1fr 1fr;
    }

    .school-stat:nth-child(2) {
        border-right: 0;
    }

    .school-stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.18);
    }

    .home-section-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-admission-content {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 520px) {

    .hero-form-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        justify-content: center;
    }

    .why-school-grid {
        grid-template-columns: 1fr;
    }

    .school-stats {
        grid-template-columns: 1fr;
    }

    .school-stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.18);
    }

    .school-stat:last-child {
        border-bottom: 0;
    }

    .school-introduction-image img {
        height: 350px;
    }

}
/* =========================================================
   MODERN HEADER
========================================================= */

.main-site-header {
    position: relative;
    z-index: 1000;

    background: #fff;
}

.top-school-bar {
    min-height: 34px;

    background: #fafafa;

    border-bottom: 1px solid #eee;

    font-size: 11px;
    color: #777;
}

.top-school-bar-inner {
    min-height: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-school-bar-inner > div {
    display: flex;
    gap: 20px;
}

.top-school-bar a {
    color: #555;
}

.main-navigation {
    background: #fff;

    border-bottom: 1px solid #eee;

    box-shadow: 0 3px 15px rgba(0,0,0,.04);
}

.nav-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    gap: 30px;
}

.school-logo {
    flex-shrink: 0;
}

.school-logo img {
    width: 175px;
    max-height: 58px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    flex: 1;
}

.nav-links a {
    position: relative;

    color: #222;

    font-size: 13px;
    font-weight: 600;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: -8px;

    height: 2px;

    background: var(--school-red);

    transition: .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--school-red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    right: 0;
}

.nav-admission-button {
    flex-shrink: 0;

    padding: 13px 20px;

    border-radius: 30px;

    background: var(--school-gold);
    color: #222;

    font-size: 12px;
    font-weight: 800;

    transition: .25s ease;
}

.nav-admission-button:hover {
    background: var(--school-red);
    color: #fff;
}

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;

    color: var(--school-red);

    font-size: 22px;
}


@media (max-width: 1100px) {

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 12px;
    }

}


@media (max-width: 900px) {

    .top-school-bar {
        display: none;
    }

    .nav-inner {
        min-height: 70px;
        justify-content: space-between;
    }

    .mobile-menu-button {
        display: block;
        order: 3;
    }

    .nav-admission-button {
        margin-left: auto;
    }

    .nav-links {
        display: none;
    }

}
/* =========================================================
   HERO IMAGE SLIDESHOW
========================================================= */

.home-hero-modern {
    position: relative;
    overflow: hidden;
}

/* =========================================================
   HERO SLIDESHOW
========================================================= */

.hero-slideshow {

    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: 0;

}


.hero-slide {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center center;

    opacity: 0;

    transition:
        opacity 1.2s ease-in-out;

}


.hero-slide.active {

    opacity: 1;

}


/* Keep overlay above images */

.home-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;
}


/* Keep hero content above slideshow */

.home-hero-container {
    position: relative;
    z-index: 2;
}

.home-hero-content {
    position: relative;
    z-index: 2;
}
/* =========================================================
   METHODOLOGY SECTION
========================================================= */

.methodology-section {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 42px 20px 55px;
    overflow: hidden;
}

.methodology-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.methodology-heading {
    text-align: center;
    margin-bottom: 48px;
}

.methodology-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}


/* =========================================================
   GRID
========================================================= */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: start;
    gap: 18px;
    padding: 0 25px;
}


/* =========================================================
   CARD
========================================================= */

.methodology-card {
    position: relative;

    height: 250px;
     min-width: 0;

    border-radius: 14px;

    overflow: visible;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    isolation: isolate;
}


/* =========================================================
   ALTERNATING CARD POSITION
========================================================= */

.methodology-card-top {
    margin-top: 0;
}

.methodology-card-bottom {
    margin-top: 85px;
}


/* =========================================================
   YELLOW CARD
========================================================= */

.methodology-yellow {
    background: #f0ca4e;
}


/* =========================================================
   BLUE CARD
========================================================= */

.methodology-blue {
    background: #73c8d1;
}


/* =========================================================
   CARD TITLE
========================================================= */

.methodology-card-title {
    position: relative;

    z-index: 4;

    width: 100%;

    padding: 15px 10px 0;

    color: #111;

    font-size: 24px;

    line-height: 1.05;

    font-weight: 600;

    min-height: 62px;
}


/* =========================================================
   LARGE BACKGROUND LETTER
========================================================= */

.methodology-letter {
    position: absolute;

    left: 50%;

    top: 60px;

    transform: translateX(-50%);

    z-index: 1;

    font-size: 175px;

    line-height: 1;

    font-weight: 700;

    pointer-events: none;
}


/* Yellow letters */

.methodology-yellow .methodology-letter {
    color: rgba(205, 145, 0, 0.75);
}


/* Blue letters */

.methodology-blue .methodology-letter {
    color: rgba(48, 159, 170, 0.72);
}


/* =========================================================
   STUDENT IMAGE
========================================================= */

.methodology-student {
    position: absolute;

    z-index: 5;

    bottom: -4px;

    left: 50%;

    transform: translateX(-50%);

    width: 100%;

    max-width: 235px;

    height: auto;

    max-height: 245px;

    object-fit: contain;

    object-position: bottom center;

    pointer-events: none;
}


/* =========================================================
   SLIGHT DIFFERENCE FOR LARGE STUDENTS
========================================================= */

.methodology-card:nth-child(3) .methodology-student,
.methodology-card:nth-child(4) .methodology-student {
    max-width: 245px;
}

.methodology-card:nth-child(5) .methodology-student,
.methodology-card:nth-child(6) .methodology-student {
    max-width: 240px;
}


/* =========================================================
   HOVER
========================================================= */

.methodology-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.methodology-card:hover {
    transform: translateY(-8px);
}

.methodology-card-bottom:hover {
    transform: translateY(-8px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .methodology-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .methodology-card-bottom {
        margin-top: 0;
    }

    .methodology-card {
        height: 300px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .methodology-section {
        padding: 35px 16px 45px;
    }

    .methodology-heading {
        margin-bottom: 35px;
    }

    .methodology-heading h2 {
        font-size: 27px;
    }

    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 16px;
        padding: 0;
    }

    .methodology-card,
    .methodology-card-bottom {
        height: 260px;
        margin-top: 0;
    }

    .methodology-card-title {
        font-size: 18px;
        min-height: 55px;
    }

    .methodology-letter {
        font-size: 145px;
        top: 65px;
    }

    .methodology-student {
        max-width: 190px;
        max-height: 215px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .methodology-card,
    .methodology-card-bottom {
        width: 250px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .methodology-heading h2 {
        font-size: 24px;
    }

}

/* =========================================================
   TRUSTED BY PARENTS
   ORCHIDS-STYLE RIBBON SECTION
========================================================= */

.trusted-parents-section {
    position: relative;

    width: 100%;

    height: 430px;

    padding: 0;

    margin: 0;

    background: #ffffff;

    overflow: visible;

    z-index: 1;
}


/* =========================================================
   PINK RIBBON BACKGROUND
========================================================= */

.trusted-parents-section::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: 31px;

    height: 368px;

    background: #fde8eb;

    z-index: 0;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.trusted-parents-container {
    position: relative;

    width: min(1500px, 100%);

    height: 430px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    z-index: 2;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.trusted-parents-content {
    position: relative;

    z-index: 3;

    padding-left: 80px;

    padding-right: 45px;

    margin-top: 0;
}


/* =========================================================
   SMALL LABEL
========================================================= */

.trusted-parents-label {
    display: block;

    margin-bottom: 14px;

    color: #980227;

    font-size: 13px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.trusted-parents-content h2 {
    margin: 0 0 16px;

    color: #111111;

    font-size: clamp(38px, 3.5vw, 52px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.2px;

    text-transform: uppercase;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.trusted-parents-content p {
    max-width: 650px;

    margin: 0 0 22px;

    color: #171717;

    font-size: 16px;

    line-height: 1.5;

    font-weight: 400;
}


/* =========================================================
   ENQUIRE BUTTON
========================================================= */

.trusted-parents-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 48px;

    padding: 0 22px;

    background: #980227;

    color: #ffffff;

    border: 0;

    border-radius: 5px;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background .3s ease,
        transform .3s ease;
}


.trusted-parents-button i {
    font-size: 13px;

    transition: transform .3s ease;
}


.trusted-parents-button:hover {
    background: #72001d;

    color: #ffffff;

    transform: translateY(-2px);
}


.trusted-parents-button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.trusted-parents-image {
    position: relative;

    width: 700px;

    height: 430px;

    margin-top: -31px;

    margin-left: 0;

    z-index: 5;

    overflow: hidden;

    border-radius: 0;
}


.trusted-parents-image img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    border-radius: 0;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .trusted-parents-container {
        grid-template-columns: 1fr 700px;
    }

    .trusted-parents-content {
        padding-left: 80px;
        padding-right: 40px;
    }

}


/* =========================================================
   MEDIUM DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .trusted-parents-container {
        width: calc(100% - 40px);

        grid-template-columns: 1fr 48%;
    }

    .trusted-parents-image {
        width: 100%;

        height: 400px;
    }

    .trusted-parents-content {
        padding-left: 35px;
        padding-right: 30px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .trusted-parents-section {
        height: auto;

        padding-bottom: 50px;
    }

    .trusted-parents-section::before {
        top: 30px;

        height: calc(100% - 80px);
    }

    .trusted-parents-container {
        width: calc(100% - 40px);

        height: auto;

        grid-template-columns: 1fr;

        gap: 0;
    }

    .trusted-parents-content {
        padding: 70px 30px 35px;
    }

    .trusted-parents-image {
        width: 100%;

        height: 400px;

        margin-top: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .trusted-parents-section {
        height: auto;

        padding-bottom: 30px;
    }

    .trusted-parents-section::before {
        top: 20px;

        height: calc(100% - 50px);
    }

    .trusted-parents-container {
        width: calc(100% - 28px);
    }

    .trusted-parents-content {
        padding: 50px 18px 30px;
    }

    .trusted-parents-label {
        margin-bottom: 12px;

        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .trusted-parents-content h2 {
        margin-bottom: 15px;

        font-size: 34px;

        line-height: 1.05;

        letter-spacing: -.5px;
    }

    .trusted-parents-content p {
        margin-bottom: 20px;

        font-size: 15px;

        line-height: 1.5;
    }

    .trusted-parents-button {
        min-height: 46px;

        padding: 0 19px;

        font-size: 14px;
    }

    .trusted-parents-image {
        height: 300px;

        margin-top: 0;
    }

}
/* =========================================================
   SHAHU'S GARDEN
   REFERENCE STYLE TOP HEADER
   FINAL HEADER OVERRIDE
========================================================= */


/* =========================================================
   MAIN HEADER
========================================================= */

.main-site-header {

    position: relative;

    z-index: 1000;

    width: 100%;

    background: #ffffff;

}


/* =========================================================
   TOP MAROON BAR
========================================================= */

.main-site-header .top-school-bar {

    width: 100%;

    min-height: 60px;

    background: #980227;

    border: 0;

    color: #ffffff;

}


.main-site-header .top-school-bar-inner {

    width:
        min(
            1450px,
            calc(100% - 50px)
        );

    min-height: 60px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   SCHOOL BRAND
========================================================= */

.main-site-header .school-brand {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    gap: 14px;

    color: #ffffff;

    text-decoration: none;

}


/* =========================================================
   SCHOOL LOGO
========================================================= */

.main-site-header .school-brand-logo {

    display: block;

    width: 50px;

    height: 50px;

    object-fit: contain;

    flex-shrink: 0;

}


/* =========================================================
   SCHOOL NAME
========================================================= */

.main-site-header .school-brand-name {

    max-width: 300px;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 17px;

    line-height: 1.25;

    font-weight: 700;

}


/* =========================================================
   TOP ACTIONS
========================================================= */

.main-site-header .top-school-actions {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 30px;

    margin-left: auto;

}


/* =========================================================
   ADMISSIONS BUTTON
========================================================= */

.main-site-header .top-admission-button {

    min-height: 48px;

    padding: 0 18px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    background: #171717;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 16px;

    font-weight: 700;

    white-space: nowrap;

    text-decoration: none;

    transition: .25s ease;

}


.main-site-header .top-admission-button:hover {

    background: #ffffff;

    color: #980227;

}


/* =========================================================
   PHONE / EMAIL
========================================================= */

.main-site-header .top-info-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 15px;

    font-weight: 600;

    white-space: nowrap;

    text-decoration: none;

    transition: .25s ease;

}


.main-site-header .top-info-link i {

    font-size: 18px;

}


.main-site-header .top-info-link:hover {

    color: #ead083;

}


/* =========================================================
   LANGUAGE SELECTOR
========================================================= */

.main-site-header .language-selector {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #ffffff;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    white-space: nowrap;

}


.main-site-header .language-selector
.fa-globe {

    font-size: 18px;

}


.main-site-header .language-selector
.fa-chevron-down {

    font-size: 9px;

    margin-left: 2px;

}


.main-site-header .language-selector:hover {

    color: #ead083;

}


/* =========================================================
   WHITE MAIN NAVIGATION
========================================================= */

.main-site-header .main-navigation {

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    box-shadow:
        0 3px 15px rgba(0,0,0,.05);

}


/* =========================================================
   NAV INNER
========================================================= */

.main-site-header .nav-inner {

    width:
        min(
            1450px,
            calc(100% - 50px)
        );

    min-height: 76px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 20px;

}


/* =========================================================
   NAV LINKS
========================================================= */

.main-site-header .nav-links {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 1;

    gap:
        clamp(
            17px,
            2vw,
            32px
        );

}


/* =========================================================
   NAV LINK
========================================================= */

.main-site-header .nav-links a {

    position: relative;

    display: inline-flex;

    align-items: center;

    padding: 10px 0;

    color: #293248;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    text-decoration: none;

    transition:
        color .25s ease;

}


/* =========================================================
   NAV UNDERLINE
========================================================= */

.main-site-header .nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    right: 100%;

    bottom: 0;

    height: 2px;

    background: #980227;

    transition:
        right .25s ease;

}


.main-site-header .nav-links a:hover {

    color: #980227;

}


.main-site-header .nav-links a:hover::after {

    right: 0;

}


/* =========================================================
   ADMISSION OPEN
========================================================= */

.main-site-header .nav-admission-button {

    flex-shrink: 0;

    min-height: 46px;

    padding: 0 21px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 28px;

    background: #d9af3d;

    color: #171717;

    font-size: 12px;

    font-weight: 800;

    white-space: nowrap;

    text-decoration: none;

    transition: .25s ease;

}


.main-site-header .nav-admission-button:hover {

    background: #980227;

    color: #ffffff;

}


/* =========================================================
   MOBILE SCHOOL BRAND
========================================================= */

.main-site-header .mobile-school-brand {

    display: none;

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.main-site-header .mobile-menu-button {

    display: none;

    width: 42px;

    height: 42px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #980227;

    font-size: 22px;

    align-items: center;

    justify-content: center;

    cursor: pointer;

}


/* =========================================================
   1200px
========================================================= */

@media (max-width: 1200px) {

    .main-site-header .top-school-bar-inner,
    .main-site-header .nav-inner {

        width:
            calc(100% - 35px);

    }


    .main-site-header .top-school-actions {

        gap: 18px;

    }


    .main-site-header .school-brand-name {

        font-size: 17px;

        max-width: 240px;

    }


    .main-site-header .school-brand-logo {

        width: 62px;

        height: 62px;

    }


    .main-site-header .nav-links {

        gap: 14px;

    }


    .main-site-header .nav-links a {

        font-size: 12px;

    }

}


/* =========================================================
   1050px
========================================================= */

@media (max-width: 1050px) {

    .main-site-header .top-school-actions {

        gap: 13px;

    }


    .main-site-header .top-info-link {

        font-size: 12px;

    }


    .main-site-header .top-admission-button {

        font-size: 13px;

        padding: 0 13px;

    }


    .main-site-header .language-selector {

        font-size: 12px;

    }


    .main-site-header .nav-links {

        gap: 10px;

    }


    .main-site-header .nav-admission-button {

        padding: 0 14px;

    }

}
/* =========================================================
   SHAHU'S GARDEN
   FINAL STICKY NAVIGATION
   REFERENCE STYLE
========================================================= */


/* =========================================================
   MAIN HEADER
========================================================= */

.main-site-header {

    position: relative;

    width: 100%;

    z-index: 1000;

}


/* =========================================================
   TOP MAROON INFORMATION BAR

   IMPORTANT:
   This bar does NOT stick.
   It scrolls away just like the reference website.
========================================================= */

.main-site-header .top-school-bar {

    position: relative;

    z-index: 1000;

}


/* =========================================================
   WHITE NAVIGATION BAR
========================================================= */

.main-site-header .main-navigation {

    position: relative;

    width: 100%;

    height: 40px;

    min-height: 40px;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.06);

    z-index: 9999;

}


/* =========================================================
   FIXED NAVIGATION
   ACTIVATED AFTER SCROLLING
========================================================= */

.main-site-header .main-navigation.navbar-fixed {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    width: 100%;

    height: 40px;

    min-height: 40px;

    z-index: 99999;

    background: #ffffff;

    box-shadow:
        0 3px 15px rgba(0, 0, 0, 0.10);

    animation:
        navbarSlideDown .20s ease;

}


/* =========================================================
   NAVBAR SLIDE DOWN ANIMATION
========================================================= */

@keyframes navbarSlideDown {

    from {

        transform: translateY(-100%);

    }

    to {

        transform: translateY(0);

    }

}


/* =========================================================
   SPACE LEFT WHEN NAVBAR BECOMES FIXED
========================================================= */

.navbar-placeholder {

    width: 100%;

    height: 52px;

}


/* =========================================================
   NAVIGATION INNER
========================================================= */

.main-site-header .main-navigation .nav-inner {

    width:
        min(
            1450px,
            calc(100% - 50px)
        );

    height: 40px;

    min-height: 40px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 20px;

}


/* =========================================================
   NAVIGATION LINKS CONTAINER
========================================================= */

.main-site-header .main-navigation .nav-links {

    height: 40px;

    min-height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 1;

    gap:
        clamp(
            18px,
            2vw,
            32px
        );

}


/* =========================================================
   NAVIGATION LINK
========================================================= */

.main-site-header .main-navigation .nav-links a {

    position: relative;

    display: inline-flex;

    align-items: center;

    height: 40px;

    padding: 0;

    color: #293248;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1;

    font-weight: 600;

    white-space: nowrap;

    text-decoration: none;

    transition:
        color .25s ease;

}


/* =========================================================
   NAV LINK UNDERLINE
========================================================= */

.main-site-header
.main-navigation
.nav-links
a::after {

    content: "";

    position: absolute;

    left: 0;

    right: 100%;

    bottom: 7px;

    height: 2px;

    background: #980227;

    transition:
        right .25s ease;

}


.main-site-header
.main-navigation
.nav-links
a:hover {

    color: #980227;

}


.main-site-header
.main-navigation
.nav-links
a:hover::after {

    right: 0;

}


/* =========================================================
   ADMISSION OPEN BUTTON
========================================================= */

.main-site-header
.main-navigation
.nav-admission-button {

    flex-shrink: 0;

    height: 30px;

    min-height: 30px;

    padding: 0 18px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 22px;

    background: #d9af3d;

    color: #171717;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    line-height: 1;

    font-weight: 800;

    white-space: nowrap;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease;

}


.main-site-header
.main-navigation
.nav-admission-button:hover {

    background: #980227;

    color: #ffffff;

}



/* =========================================================
   MOBILE SCHOOL BRAND
========================================================= */

.main-site-header
.mobile-school-brand {

    display: none;

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.main-site-header
.main-navigation
.mobile-menu-button {

    display: none;

    width: 38px;

    height: 38px;

    min-width: 38px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #980227;

    font-size: 20px;

    align-items: center;

    justify-content: center;

    cursor: pointer;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .main-site-header
    .main-navigation
    .nav-inner {

        width:
            calc(100% - 35px);

    }


    .main-site-header
    .main-navigation
    .nav-links {

        gap: 15px;

    }


    .main-site-header
    .main-navigation
    .nav-links a {

        font-size: 12px;

    }


    .main-site-header
    .main-navigation
    .nav-admission-button {

        padding: 0 14px;

        font-size: 10px;

    }

}


/* =========================================================
   SMALL TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

    /* -----------------------------------------------------
       STICKY NAV
    ----------------------------------------------------- */

    .main-site-header
    .main-navigation {

        height: 60px;

        min-height: 60px;

    }


    .main-site-header
    .main-navigation
    .nav-inner {

        width:
            calc(100% - 28px);

        height: 60px;

        min-height: 60px;

        gap: 10px;

    }


    /* -----------------------------------------------------
       MOBILE SCHOOL BRAND
    ----------------------------------------------------- */

    .main-site-header
    .mobile-school-brand {

        display: flex;

        align-items: center;

        gap: 8px;

        color: #293248;

        text-decoration: none;

        flex-shrink: 0;

    }


    .main-site-header
    .mobile-school-brand img {

        width: 42px;

        height: 42px;

        object-fit: contain;

    }


    .main-site-header
    .mobile-school-brand span {

        max-width: 190px;

        color: #293248;

        font-family:
            "Poppins",
            Arial,
            sans-serif;

        font-size: 11px;

        line-height: 1.2;

        font-weight: 700;

    }


    /* -----------------------------------------------------
       HIDE DESKTOP LINKS
    ----------------------------------------------------- */

    .main-site-header
    .main-navigation
    .nav-links {

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        height: auto;

        min-height: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        padding:
            8px 20px 18px;

        background: #ffffff;

        border-top:
            1px solid #eeeeee;

        box-shadow:
            0 12px 25px rgba(0,0,0,.12);

        z-index: 10000;

    }


    /* -----------------------------------------------------
       OPEN MOBILE MENU
    ----------------------------------------------------- */

    .main-site-header
    .main-navigation
    .nav-links.mobile-nav-open {

        display: flex;

    }


    /* -----------------------------------------------------
       MOBILE LINKS
    ----------------------------------------------------- */

    .main-site-header
    .main-navigation
    .nav-links a {

        width: 100%;

        height: auto;

        min-height: 44px;

        padding: 12px 5px;

        border-bottom:
            1px solid #eeeeee;

        font-size: 14px;

        line-height: 1.2;

    }


    .main-site-header
    .main-navigation
    .nav-links a:last-child {

        border-bottom: 0;

    }


    .main-site-header
    .main-navigation
    .nav-links a::after {

        display: none;

    }


    .main-site-header
    .main-navigation
    .nav-links a:hover {

        color: #980227;

        background: #fff7f8;

    }


    /* -----------------------------------------------------
       ADMISSION BUTTON
    ----------------------------------------------------- */

    .main-site-header
    .main-navigation
    .nav-admission-button {

        margin-left: auto;

        height: 38px;

        min-height: 38px;

        padding: 0 14px;

        font-size: 10px;

    }


    /* -----------------------------------------------------
       HAMBURGER
    ----------------------------------------------------- */

    .main-site-header
    .main-navigation
    .mobile-menu-button {

        display: flex;

        flex-shrink: 0;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .main-site-header
    .main-navigation {

        height: 58px;

        min-height: 58px;

    }


    .main-site-header
    .main-navigation
    .nav-inner {

        height: 58px;

        min-height: 58px;

        width:
            calc(100% - 20px);

    }


    .main-site-header
    .mobile-school-brand img {

        width: 40px;

        height: 40px;

    }


    .main-site-header
    .mobile-school-brand span {

        display: none;

    }


    .main-site-header
    .main-navigation
    .nav-admission-button {

        height: 36px;

        min-height: 36px;

        padding: 0 11px;

        font-size: 9px;

    }


    .main-site-header
    .main-navigation
    .mobile-menu-button {

        width: 38px;

        height: 38px;

        font-size: 19px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .main-site-header
    .main-navigation
    .nav-inner {

        width:
            calc(100% - 14px);

    }


    .main-site-header
    .main-navigation
    .nav-admission-button {

        padding: 0 9px;

        font-size: 8px;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .main-site-header
    .main-navigation
    .nav-admission-button {

        display: none;

    }

}
/* =========================================================
   SHAHU'S GARDEN
   COMPLETE HEADER FIXED UNTIL END OF PAGE
========================================================= */


/* =========================================================
   COMPLETE HEADER
   TOP MAROON BAR + WHITE NAVIGATION
========================================================= */

.main-site-header {

    position: fixed !important;

    top: 0;

    left: 0;

    right: 0;

    width: 100%;

    z-index: 99999;

    background: #ffffff;

}


/* =========================================================
   HEADER SHADOW
========================================================= */

.main-site-header {

    box-shadow:
        0 3px 18px rgba(0, 0, 0, 0.10);

}


/* =========================================================
   TOP MAROON BAR
========================================================= */

.main-site-header .top-school-bar {

    position: relative;

    z-index: 2;

}


/* =========================================================
   WHITE NAVIGATION
========================================================= */

.main-site-header .main-navigation {

    position: relative !important;

    top: auto;

    left: auto;

    right: auto;

    width: 100%;

    z-index: 3;

}


/* =========================================================
   CANCEL OLD NAVBAR-FIXED BEHAVIOUR

   The COMPLETE header is fixed now, so the individual
   navigation bar must NOT become separately fixed.
========================================================= */

.main-site-header .main-navigation.navbar-fixed {

    position: relative !important;

    top: auto !important;

    left: auto !important;

    right: auto !important;

    width: 100% !important;

    animation: none !important;

}


/* =========================================================
   HEADER PLACEHOLDER

   Keeps page content from going underneath the fixed header.
========================================================= */

.site-header-placeholder {

    width: 100%;

    display: block;

}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 901px) {

    .main-site-header .top-school-bar {

        min-height: 60px;

    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

    .main-site-header {

        width: 100%;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .main-site-header {

        width: 100%;

    }

}
/* =========================================================
   SHAHU'S GARDEN
   ORCHIDS-STYLE STUDENT ACHIEVEMENT SECTION
========================================================= */


/* =========================================================
   PINK INTRODUCTION SECTION
========================================================= */

.student-achievement-intro {

    width: 100%;

    padding: 48px 20px 42px;

    background: #fde8eb;

    text-align: center;

}


.student-achievement-intro-container {

    width: min(1200px, calc(100% - 40px));

    margin: 0 auto;

}


/* =========================================================
   INTRO HEADING
========================================================= */

.student-achievement-intro h2 {

    margin: 0;

    color: #20232a;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: clamp(
        34px,
        4vw,
        48px
    );

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -.8px;

    text-transform: uppercase;

}


/* =========================================================
   INTRO DESCRIPTION
========================================================= */

.student-achievement-intro p {

    max-width: 1000px;

    margin: 22px auto 0;

    color: #20232a;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 17px;

    line-height: 1.65;

    font-weight: 400;

}


.student-achievement-intro p strong {

    font-weight: 800;

}


/* =========================================================
   BEIGE ACHIEVEMENT SECTION
========================================================= */

.student-achievement-section {

    position: relative;

    width: 100%;

    padding: 18px 0 38px;

    margin: 0;

    background: #e4d8a6;

    overflow: hidden;

}


/* =========================================================
   ACHIEVEMENT CONTAINER
========================================================= */

.student-achievement-container {

    width: min(
        1530px,
        calc(100% - 30px)
    );

    margin: 0 auto;

}


/* =========================================================
   ACHIEVEMENT HEADING
========================================================= */

.student-achievement-title {

    width: 100%;

    margin: 0 auto 12px;

    text-align: center;

}


.student-achievement-title h2 {

    margin: 0;

    color: #111111;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: clamp(
        27px,
        2.4vw,
        36px
    );

    line-height: 1.2;

    font-weight: 800;

}


.student-achievement-title h2 strong {

    color: #111111;

    font-weight: 800;

}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.student-slider-wrapper {

    position: relative;

    width: 100%;

}


/* =========================================================
   SLIDER
========================================================= */

.student-achievement-slider {

    display: flex;

    align-items: flex-end;

    gap: 50px;

    width: 100%;

    overflow-x: auto;

    overflow-y: visible;

    padding:
        55px 10px 0;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    -ms-overflow-style: none;

}


.student-achievement-slider::-webkit-scrollbar {

    display: none;

}


/* =========================================================
   STUDENT CARD
========================================================= */

.student-achievement-card {

    position: relative;

    flex:
        0 0
        275px;

    width: 275px;

    height: 205px;

    margin-top: 0;

    overflow: visible;

    border-radius: 11px;

    background: #dfc37e;

    scroll-snap-align: start;

    box-shadow: none;

    transition:
        transform .3s ease;

}


/* =========================================================
   CARD HOVER
========================================================= */

.student-achievement-card:hover {

    transform:
        translateY(-4px);

}


/* =========================================================
   STUDENT IMAGE AREA
========================================================= */

.student-card-image {

    position: absolute;

    left: -8px;

    bottom: 0;

    width: 53%;

    height: 245px;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    z-index: 4;

    pointer-events: none;

}


/* =========================================================
   STUDENT IMAGE
========================================================= */

.student-card-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

    object-position: center bottom;

    max-width: none;

    filter: none;

}


/* =========================================================
   INFORMATION AREA
========================================================= */

.student-card-info {

    position: absolute;

    top: 0;

    right: 0;

    width: 55%;

    height: 100%;

    padding:
        40px 18px 15px 8px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    z-index: 3;

}


/* =========================================================
   STUDENT NAME
========================================================= */

.student-card-info h3 {

    margin: 0 0 2px;

    color: #625333;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 18px;

    line-height: 1.1;

    font-weight: 800;

}


/* =========================================================
   SCHOOL NAME
========================================================= */

.student-card-info span {

    display: block;

    margin: 0 0 7px;

    color: #75613b;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 11px;

    line-height: 1.25;

    font-weight: 500;

}


/* =========================================================
   PERCENTAGE
========================================================= */

.student-card-info strong {

    display: block;

    color: #625333;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 24px;

    line-height: 1;

    font-weight: 800;

}


/* =========================================================
   DECORATIVE BOTTOM SHAPE
========================================================= */

.student-achievement-card::after {

    content: "";

    position: absolute;

    right: -1px;

    bottom: -1px;

    width: 105px;

    height: 85px;

    border-radius:
        80px 0 0 0;

    background:
        rgba(
            157,
            119,
            39,
            .35
        );

    z-index: 1;

}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.student-slider-arrow {

    position: absolute;

    top: 50%;

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #111111;

    color: #ffffff;

    cursor: pointer;

    z-index: 20;

    transform:
        translateY(-50%);

    box-shadow:
        0 4px 12px
        rgba(0,0,0,.22);

    transition:
        background .25s ease,
        transform .25s ease;

}


.student-slider-arrow:hover {

    background: #980227;

    transform:
        translateY(-50%)
        scale(1.08);

}


.student-slider-arrow i {

    font-size: 15px;

}


.student-slider-prev {

    left: -8px;

}


.student-slider-next {

    right: -8px;

}


/* =========================================================
   HIDE DOTS
   Reference screenshot does not show dots
========================================================= */

.student-slider-dots {

    display: none !important;

}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .student-achievement-container {

        width:
            min(
                1530px,
                calc(100% - 30px)
            );

    }


    .student-achievement-slider {

        gap: 50px;

        padding-left: 10px;

        padding-right: 10px;

    }


    .student-achievement-card {

        flex-basis: 275px;

        width: 275px;

    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .student-achievement-container {

        width:
            calc(100% - 70px);

    }


    .student-achievement-slider {

        gap: 28px;

    }


    .student-achievement-card {

        flex-basis: 270px;

        width: 270px;

    }


    .student-card-image {

        height: 235px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .student-achievement-intro {

        padding:
            42px 20px 38px;

    }


    .student-achievement-intro h2 {

        font-size: 36px;

    }


    .student-achievement-intro p {

        font-size: 15px;

    }


    .student-achievement-section {

        padding:
            18px 0 35px;

    }


    .student-achievement-container {

        width:
            calc(100% - 45px);

    }


    .student-achievement-title h2 {

        font-size: 27px;

    }


    .student-achievement-slider {

        gap: 22px;

        padding-top: 50px;

    }


    .student-achievement-card {

        flex:
            0 0 265px;

        width: 265px;

        height: 195px;

    }


    .student-card-image {

        height: 225px;

    }


    .student-card-info {

        padding-top: 36px;

    }


    .student-slider-prev {

        left: -12px;

    }


    .student-slider-next {

        right: -12px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .student-achievement-intro {

        padding:
            35px 16px 32px;

    }


    .student-achievement-intro-container {

        width:
            calc(100% - 10px);

    }


    .student-achievement-intro h2 {

        font-size: 27px;

        line-height: 1.12;

    }


    .student-achievement-intro p {

        margin-top: 16px;

        font-size: 14px;

        line-height: 1.55;

    }


    .student-achievement-section {

        padding:
            16px 0 28px;

    }


    .student-achievement-container {

        width:
            calc(100% - 28px);

    }


    .student-achievement-title {

        margin-bottom: 5px;

    }


    .student-achievement-title h2 {

        font-size: 22px;

        line-height: 1.2;

    }


    .student-achievement-slider {

        gap: 16px;

        padding:
            45px 5px 0;

    }


    .student-achievement-card {

        flex:
            0 0 275px;

        width: 275px;

        height: 190px;

    }


    .student-card-image {

        width: 54%;

        height: 220px;

    }


    .student-card-info {

        width: 55%;

        padding:
            32px 12px 12px 5px;

    }


    .student-card-info h3 {

        font-size: 16px;

    }


    .student-card-info span {

        font-size: 9px;

    }


    .student-card-info strong {

        font-size: 21px;

    }


    .student-slider-arrow {

        width: 36px;

        height: 36px;

    }


    .student-slider-prev {

        left: -7px;

    }


    .student-slider-next {

        right: -7px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .student-achievement-intro h2 {

        font-size: 24px;

    }


    .student-achievement-intro p {

        font-size: 13px;

    }


    .student-achievement-title h2 {

        font-size: 20px;

    }


    .student-achievement-slider {

        padding-top: 40px;

    }


    .student-achievement-card {

        flex:
            0 0 265px;

        width: 265px;

        height: 185px;

    }


    .student-card-image {

        height: 210px;

    }

}
/* =========================================================
   FINAL FIX
   STUDENT ACHIEVEMENT → TRUSTED BY PARENTS
   REFERENCE STYLE
========================================================= */


/* =========================================================
   STUDENT ACHIEVEMENT
   END DIRECTLY — NO GREY MARGIN
========================================================= */

.student-achievement-section {

    margin-bottom: 0 !important;

}


/* =========================================================
   TRUSTED BY PARENTS
   WHITE TOP GAP
========================================================= */

.trusted-parents-section {

    position: relative;

    height: 430px;

    margin-top: 0 !important;

    padding: 0;

    background: #ffffff !important;

    overflow: visible;

}


/* =========================================================
   PINK BACKGROUND
   START LOWER DOWN TO CREATE WHITE GAP
========================================================= */

.trusted-parents-section::before {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    top: 77px;

    height: 353px;

    background: #fde8eb;

    z-index: 0;

}


/* =========================================================
   TRUSTED PARENTS CONTAINER
========================================================= */

.trusted-parents-container {

    position: relative;

    height: 430px;

    z-index: 2;

}


/* =========================================================
   TRUSTED PARENTS IMAGE
   MOVE IT DOWN INTO THE WHITE GAP
========================================================= */

.trusted-parents-image {

    position: relative;

    top: 40px;

    margin-top: 0 !important;

    z-index: 5;

}


/* =========================================================
   TRUSTED CONTENT
========================================================= */

.trusted-parents-content {

    position: relative;

    z-index: 3;

}

/* =========================================================
   FINAL HERO TEXT BLUR
   ONLY IMAGE BEHIND TEXT IS BLURRED
========================================================= */

.home-hero-content {

    position: relative;

    z-index: 2;

}


/* =========================================================
   TEXT AREA
========================================================= */

.hero-text-blur {

    position: relative;

    isolation: isolate;

    width: fit-content;

    max-width: 720px;

    padding: 28px 32px 30px;

    margin: -28px 0 -30px -32px;

    border-radius: 18px;

}


/* =========================================================
   BLURRED IMAGE BEHIND TEXT
========================================================= */

.hero-text-blur::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    background: rgba(0, 0, 0, .20);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.10);

}


/* =========================================================
   LIGHTER FULL HERO OVERLAY
========================================================= */

.home-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            135deg,
            rgba(0,0,0,.08),
            transparent 65%
        );

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .hero-text-blur {

        max-width: 650px;

        padding: 24px 26px 26px;

        margin: -24px 0 -26px -26px;

        border-radius: 16px;

    }

    .hero-text-blur::before {

        border-radius: 16px;

        backdrop-filter: blur(9px);

        -webkit-backdrop-filter: blur(9px);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .hero-text-blur {

        width: calc(100% + 20px);

        max-width: none;

        padding: 22px 20px 24px;

        margin: -22px 0 -24px -20px;

        border-radius: 14px;

    }

    .hero-text-blur::before {

        border-radius: 14px;

        backdrop-filter: blur(8px);

        -webkit-backdrop-filter: blur(8px);

    }

}
/* =========================================================
   EXPLORE OUR LABORATORIES
   ORCHIDS-STYLE IMAGE CARD SECTION
========================================================= */

.explore-labs-section {

    width: 100%;

    padding: 90px 0 100px;

    background: #ffffff;

}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.explore-labs-container {

    width: min(1280px, calc(100% - 60px));

    margin: 0 auto;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.explore-labs-heading {

    max-width: 950px;

    margin: 0 auto 45px;

    text-align: center;

}


.explore-labs-heading h2 {

    margin: 0 0 12px;

    color: #111111;

    font-size: clamp(32px, 3.2vw, 44px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -.8px;

}


.explore-labs-heading p {

    max-width: 850px;

    margin: 0 auto;

    color: #333333;

    font-size: 17px;

    line-height: 1.6;

    font-weight: 400;

}


/* =========================================================
   CARD GRID
========================================================= */

.explore-labs-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 34px 18px;

}


/* =========================================================
   CARD
========================================================= */

.explore-lab-card {

    position: relative;

    display: block;

    width: 100%;

    height: 400px;

    overflow: hidden;

    background: #ffffff;

    border-radius: 25px;

    text-decoration: none;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, .08);

}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.explore-lab-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

}


/* =========================================================
   IMAGE
========================================================= */

.explore-lab-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform .55s ease;

}


/* =========================================================
   IMAGE HOVER
========================================================= */

.explore-lab-card:hover
.explore-lab-image img {

    transform: scale(1.06);

}


/* =========================================================
   SUBTLE IMAGE OVERLAY
========================================================= */

.explore-lab-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 50%,
            rgba(0,0,0,.08)
        );

    pointer-events: none;

}


/* =========================================================
   RED CAPTION
========================================================= */

.explore-lab-caption {

    position: absolute;

    left: 32%;

    right: 0;

    bottom: 0;

    min-height: 74px;

    display: flex;

    align-items: center;

    padding: 14px 22px 14px 58px;

    background: #a9002d;

    color: #ffffff;

    z-index: 3;

    overflow: visible;

}


/* =========================================================
   YELLOW DIAMOND
========================================================= */

.explore-lab-diamond {

    position: absolute;

    left: -30px;

    top: 50%;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform:
        translateY(-50%)
        rotate(45deg);

    background: #f7c928;

    color: transparent;

    font-size: 0;

    z-index: 4;

}


/* =========================================================
   SMALL WHITE STAR INSIDE DIAMOND
========================================================= */

.explore-lab-diamond::after {

    content: "✦";

    position: absolute;

    color: #ffffff;

    font-size: 25px;

    transform: rotate(-45deg);

}


/* =========================================================
   CAPTION TEXT
========================================================= */

.explore-lab-caption-text {

    width: 100%;

}


.explore-lab-caption h3 {

    margin: 0;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.2;

    font-weight: 700;

}


/* =========================================================
   CARD HOVER
========================================================= */

.explore-lab-card {

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.explore-lab-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 16px 35px rgba(0,0,0,.15);

}


/* =========================================================
   ACCESSIBILITY / FOCUS
========================================================= */

.explore-lab-card:focus-visible {

    outline: 3px solid #f7c928;

    outline-offset: 4px;

}

/* =========================================================
   MOBILE HOME HERO IMAGE FIX
========================================================= */

@media (max-width: 767px) {

    .home-hero-modern {

        width: 100%;

        height: 420px;

        min-height: 420px;

        max-height: 420px;

        overflow: hidden;

    }


    .hero-slideshow {

        width: 100%;

        height: 100%;

        overflow: hidden;

    }


    .hero-slide {

        width: 100%;

        height: 100%;

        background-size: cover;

        background-position: center center;

        background-repeat: no-repeat;

    }

}