@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --mainColor: #2A6FAF;
    --secondaryColor: #6C76B4;
    --yellowColor: #59BDD5;
    --grayColor: #888888;
    --cyanColor: #59BDD5;
    --creamColor: #F7EBD3;
    --footerBG: linear-gradient(90deg, #1A1A1A 0%, #2A6FAF 100%);
    --profileBG: #6C76B4;
    --contactBG: rgba(250, 233, 201, 30%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Merriweather", serif;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

.fs-01 {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;
}

.fs-7 {
    font-size: 0.75rem;
}

.shadow {
    box-shadow: 0px 0px 20px 0px #00000026 !important;
}

.fontOpenSans {
    font-family: "Open Sans", sans-serif;
}

.themeBg {
    background: var(--mainColor);
}

.themeBgYellow {
    background: var(--yellowColor);
}

.themeColor {
    color: var(--mainColor);
}

.mxWidthAuto {
    max-width: fit-content;
    margin: 0 auto;
}

.navbar {
    background: var(--mainColor) !important;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    border-radius: 8px;
    background-color: white;
    transition: width 0.4s ease;
}

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

/* Active menu */
.nav-link.active {
    font-weight: bold;
}

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

.topLogo {
    width: 110px;
}

.nav-link-plain {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #000000 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    padding: 0;
    margin: 0;
    position: relative;
}

.nav-link-plain:hover {
    color: var(--mainColor) !important;
}

.nav-link-plain.is-active {
    color: var(--mainColor) !important;
}

.nav-link-plain.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    background: var(--mainColor);
    border-radius: 999px;
}

.dropdown-item.is-active,
.dropdown-item.is-active:focus,
.dropdown-item.is-active:hover {
    background-color: rgba(42, 111, 175, 0.1);
    color: var(--mainColor);
    font-weight: 600;
}

.school-logo-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.school-title-main {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.2;
}

.school-tagline {
    font-size: 0.95rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    margin-top: 0.25rem;
}

@media (max-width: 767.98px) {
    .stickyHeader {
        position: static;
    }

    body.header-offset {
        padding-top: 0;
    }

    .school-logo-img {
        width: 80px;
        height: 80px;
        margin-top: 0;
    }
}

.homeCaroselImg img {
    height: 100vh;
}

.normalHover {
    transition: all 0.3s ease-in-out;
}

.normalHover:hover {
    color: var(--mainColor) !important;
    transition: all 0.3s ease-in-out;
}

.topHeaderBar {
    background: #6C76B4;
}

.stickyHeader {
    position: sticky;
    top: 0;
    z-index: 1050;
}

.stickyHeader.is-fixed {
    position: fixed;
    left: 0;
    right: 0;
}

body.header-offset {
    padding-top: var(--sticky-header-height, 0px);
}

.topSocialIcon {
    transition: all 0.3s ease-in-out;
    width: 30px;
    height: 30px;
    background: #ffffff;
    color: #6C76B4;
}

.topSocialIcon:hover {
    transform: scale(1.1);
    background: #ffffff;
    color: #6C76B4;
}

/* === Enhanced Layout Components === */
.innerHero {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(243, 248, 255, 0.95) 0%, #ffffff 70%);
}

.innerHero-academics {
    background: linear-gradient(140deg, #eef4ff 0%, #ffffff 70%);
}

.innerHero-admissions {
    background: linear-gradient(140deg, #fff3f1 0%, #ffffff 70%);
}

.innerHero-facilities {
    background: linear-gradient(140deg, #f1fffb 0%, #ffffff 70%);
}

.innerHero-parents {
    background: linear-gradient(140deg, #f9f1ff 0%, #ffffff 70%);
}

.innerHero-gallery {
    background: linear-gradient(140deg, #f4f9ff 0%, #ffffff 70%);
}

.innerHero-disclosures {
    background: linear-gradient(140deg, #f7fff6 0%, #ffffff 70%);
}

.innerHero .container {
    position: relative;
    z-index: 2;
}

.heroShape {
    position: absolute;
    max-width: 200px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}

.heroShape-star {
    top: -40px;
    left: -20px;
}

.heroShape-orbit {
    bottom: -80px;
    right: -40px;
}

.heroShape-dots {
    top: 15%;
    right: 8%;
}

.innerHeroBadge {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: rgba(42, 111, 175, 0.1);
    color: var(--mainColor);
    letter-spacing: 0.04em;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.innerHeroTitle {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.innerHeroText {
    font-size: 1.05rem;
    color: #4c5b72;
    margin-bottom: 2rem;
}

.innerHeroStats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.statCard {
    background: #ffffff;
    border-radius: 1rem;
    min-width: 140px;
    padding: 1rem 1.25rem;
    box-shadow: 0 20px 45px -35px rgba(0, 47, 92, 0.45);
    border: 1px solid rgba(42, 111, 175, 0.08);
}

.statValue {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    color: var(--mainColor);
}

.statLabel {
    font-size: 0.9rem;
    color: #52627a;
}

.heroPrimaryBtn,
.heroSecondaryBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    transition: all 0.3s ease;
}

.heroPrimaryBtn {
    background: var(--mainColor);
    color: #ffffff;
    box-shadow: 0 18px 40px -25px rgba(42, 111, 175, 0.65);
}

.heroPrimaryBtn:hover {
    color: #ffffff;
    background: #1d588a;
}

.heroSecondaryBtn {
    background: rgba(42, 111, 175, 0.12);
    color: var(--mainColor);
}

.heroSecondaryBtn:hover {
    background: rgba(42, 111, 175, 0.2);
    color: var(--mainColor);
}

.innerHero-illustration {
    position: relative;
    z-index: 2;
}

.innerHero-illustration img {
    border-radius: 1.5rem;
    box-shadow: 0 35px 75px -40px rgba(0, 47, 92, 0.55);
}

.innerHero-blob {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle at center, rgba(89, 189, 213, 0.45) 0%, rgba(255, 255, 255, 0) 65%);
    border-radius: 50%;
    z-index: 1;
}

.contentSection {
    padding: 4rem 0;
    position: relative;
}

.contentSection-light {
    background: #f6f9ff;
}

.contentSection-soft {
    background: #fff7ef;
}

.contentSection-muted {
    background: #f3f6f8;
}

.sectionHeader {
    text-align: center;
    margin-bottom: 3rem;
}

.sectionHeading {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sectionDescription {
    max-width: 720px;
    margin: 0 auto;
    color: #4c5b72;
    font-size: 1rem;
}

.sectionBadge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.82rem;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.sectionBadge-sunrise {
    background: #ffe4d4;
    color: #c05a11;
}

.sectionBadge-mint {
    background: #e0f5ec;
    color: #147251;
}

.sectionBadge-violet {
    background: #ede7ff;
    color: #5e43c4;
}

.sectionBadge-amber {
    background: #fff3d4;
    color: #8a6306;
}

.sectionBadge-sky {
    background: #e3f1ff;
    color: #1f6db0;
}

.infoCard {
    position: relative;
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid rgba(42, 111, 175, 0.1);
    padding: 2rem;
    box-shadow: 0 28px 60px -45px rgba(0, 47, 92, 0.45);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infoCard--outline {
    box-shadow: none;
    border: 1px solid rgba(42, 111, 175, 0.18);
}

.infoCard--mint {
    background: #e8f8f1;
    border: 1px solid rgba(31, 155, 109, 0.2);
}

.infoCard--lavender {
    background: #f0ebff;
    border: 1px solid rgba(94, 67, 196, 0.2);
}

.infoCard--sky {
    background: #eaf3ff;
    border: 1px solid rgba(31, 109, 176, 0.2);
}

.infoCard--peach {
    background: #ffece2;
    border: 1px solid rgba(227, 121, 70, 0.2);
}

.infoCardTitle {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.infoCardText {
    font-size: 0.98rem;
    color: #4c5b72;
}

.infoCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 70px -40px rgba(0, 47, 92, 0.5);
}

.infoList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.infoList li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-family: "Open Sans", sans-serif;
    color: #4c5b72;
    font-size: 0.95rem;
}

.infoList li i {
    color: var(--mainColor);
    margin-top: 0.15rem;
}

.infoList.infoList-inline {
    flex-direction: row;
    flex-wrap: wrap;
}

.infoList.infoList-inline div {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(42, 111, 175, 0.12);
    font-size: 0.9rem;
    font-family: "Open Sans", sans-serif;
    color: var(--mainColor);
}

.infoList.infoList-inline i {
    color: inherit;
    margin-top: 0;
}

.chipList {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chipList li {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(42, 111, 175, 0.12);
    color: var(--mainColor);
    font-size: 0.9rem;
    font-family: "Open Sans", sans-serif;
}

.iconCircle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.iconCircle-sunrise {
    background: #f38a3f;
}

.iconCircle-violet {
    background: #5e43c4;
}

.iconCircle-amber {
    background: #d98228;
}

.iconCircle-mint {
    background: #1f9b6d;
}

.admissionsContactCard {
    text-align: center;
}

.admissionsContactCard .iconCircle {
    margin: 0 auto 1rem;
}

.admissionsContactCard .infoCardTitle,
.admissionsContactCard .infoCardText,
.admissionsContactCard p {
    text-align: center;
}

.accentCallout {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.4rem;
    border-radius: 1rem;
    font-family: "Open Sans", sans-serif;
    font-size: 0.95rem;
}

.accentCallout i {
    font-size: 1.25rem;
}

.accentCallout-success {
    background: #e6f7f0;
    color: #146b4f;
}

.accentCallout-warning {
    background: #fff4e5;
    color: #9a5800;
}

.accentCallout-info {
    background: #eff6ff;
    color: #1a5fa9;
}

.stepTimeline {
    border-left: 3px solid rgba(42, 111, 175, 0.14);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.stepItem {
    position: relative;
    display: flex;
    gap: 1rem;
}

.stepItem::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.8rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--mainColor);
    transform: translateX(-50%);
}

.stepIndex {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--mainColor);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.stepTitle {
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.stepText {
    margin: 0;
    color: #52627a;
}

.noticeBoard {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.noticeBoard-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(42, 111, 175, 0.12);
    box-shadow: 0 24px 60px -45px rgba(0, 47, 92, 0.5);
}

.noticeBoard-accent {
    width: 6px;
    border-radius: 999px;
    align-self: stretch;
    background: linear-gradient(180deg, #2a6faf 0%, #59bdd5 100%);
}

.noticeBoard-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.noticeBoard-meta {
    margin: 0;
    font-size: 0.9rem;
    color: #6b788c;
    font-family: "Open Sans", sans-serif;
}

.circularList {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.circularItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(42, 111, 175, 0.15);
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.circularItem:hover {
    transform: translateY(-3px);
    border-color: rgba(42, 111, 175, 0.35);
}

.circularTitle {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.circularMeta {
    font-family: "Open Sans", sans-serif;
    font-size: 0.9rem;
    color: #6b788c;
}

.circularDate {
    font-family: "Open Sans", sans-serif;
    font-size: 0.9rem;
    color: var(--mainColor);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.resourceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.resourceCard {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(42, 111, 175, 0.15);
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resourceCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px -45px rgba(0, 47, 92, 0.5);
}

.resourceIcon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(42, 111, 175, 0.12);
    color: var(--mainColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.resourceTitle {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.resourceMeta {
    font-family: "Open Sans", sans-serif;
    font-size: 0.9rem;
    color: #6b788c;
}

.quickLinks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quickLink {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    background: rgba(42, 111, 175, 0.08);
    color: var(--mainColor);
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    transition: transform 0.3s ease, background 0.3s ease;
}

.quickLink:hover {
    background: rgba(42, 111, 175, 0.15);
    transform: translateX(4px);
    color: var(--mainColor);
}

.facilityCard {
    position: relative;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(42, 111, 175, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.facilityCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 4px;
    border-radius: 999px;
    background: var(--facility-accent, var(--mainColor));
}

.facilityCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 70px -45px rgba(0, 47, 92, 0.55);
}

.facilityIcon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    background: var(--facility-accent, var(--mainColor));
}

.facilityIcon img {
    max-width: 32px;
    max-height: 32px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.activityIcon img {
    max-width: 28px;
    max-height: 28px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.facilityTitle {
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.facilityText {
    color: #4c5b72;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.facilityList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.facilityList li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-family: "Open Sans", sans-serif;
    font-size: 0.9rem;
    color: #4c5b72;
}

.facilityList li i {
    color: var(--facility-accent, var(--mainColor));
    margin-top: 0.2rem;
}

.facilityCard--ocean {
    --facility-accent: #1a8ad8;
}

.facilityCard--violet {
    --facility-accent: #7154e9;
}

.facilityCard--sunrise {
    --facility-accent: #f38a3f;
}

.facilityCard--mint {
    --facility-accent: #1f9b6d;
}

.facilityCard--peach {
    --facility-accent: #e2605f;
}

.facilityShowcase {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1rem;
}

.facilityShowcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
    box-shadow: 0 28px 60px -45px rgba(0, 47, 92, 0.5);
}

.facilityShowcase-secondary {
    display: grid;
    gap: 1rem;
}

.facilityShowcase-primary .facilityShowcase-img {
    aspect-ratio: 4 / 5;
}

.facilityShowcase-secondary .facilityShowcase-img {
    aspect-ratio: 4 / 3;
}

.galleryTabs {
    margin-bottom: 2rem;
    gap: 0.5rem;
}

.galleryTabs .nav-link {
    border: none;
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    background: rgba(42, 111, 175, 0.1);
    color: #4c5b72;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.galleryTabs .nav-link:hover {
    background: rgba(42, 111, 175, 0.18);
}

.galleryTabs .nav-link.active {
    background: var(--mainColor);
    color: #ffffff;
    transform: translateY(-1px);
}

.galleryGrid {
    margin-top: 1rem;
}

.galleryTile {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 28px 70px -50px rgba(0, 47, 92, 0.55);
}

.galleryTile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.galleryTile:hover .galleryTile-image {
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    .innerHero {
        text-align: center;
    }

    .innerHeroStats {
        justify-content: center;
    }

    .innerHero-illustration {
        margin-top: 1.5rem;
    }

    .innerHero-blob {
        width: 260px;
        height: 260px;
        top: -5%;
        right: -5%;
    }

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

    .facilityShowcase-secondary {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .innerHero {
        padding: 4rem 0;
    }

    .innerHeroTitle {
        font-size: 2.2rem;
    }

    .sectionHeading {
        font-size: 1.9rem;
    }

    .stepTimeline {
        border-left: none;
        padding-left: 0;
    }

    .stepItem::before {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .statCard {
        width: 100%;
    }

    .galleryTabs {
        flex-direction: column;
    }

    .galleryTabs .nav-link {
        width: 100%;
    }

    .circularItem {
        flex-direction: column;
        align-items: flex-start;
    }

    .circularDate {
        width: 100%;
        justify-content: space-between;
    }
}

.topMainHeading {
    padding-left: 10%;
    font-weight: 900;
}

.topMainHeading .text {
    white-space: nowrap;
    width: 0;
    max-width: fit-content;
    animation: typing 6s steps(40, end) forwards;
    vertical-align: bottom;
}

.pencil {
    opacity: 1;
    animation: fadeOut 1s ease forwards;
    animation-delay: 6s;
    color: var(--mainColor);
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

/* Mobile Responsive animation */
.topMainHeadingResp {
    padding-left: 10%;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    /* line by line */
    position: relative;
}

.topMainHeadingResp .text {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    border-right: 2px solid transparent;
    /* cursor look chahiye toh */
}

/* Pehli line typing */
.topMainHeadingResp .line1 {
    animation: typing1 4s steps(30, end) forwards;
}

/* Dusri line typing (delay ke sath) */
.topMainHeadingResp .line2 {
    animation: typing2 4s steps(30, end) forwards;
    animation-delay: 4s;
    /* pehli ke baad start hoga */
}

/* Pencil icon fade out */
.topMainHeadingResp .pencil {
    margin-top: 5px;
    opacity: 1;
    color: var(--mainColor);
    animation: fadeOut 1s ease forwards;
    animation-delay: 8s;
    /* dono line ke baad */
}

/* Keyframes */
@keyframes typing1 {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes typing2 {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

/* --- Mobile view --- */
@media (max-width: 576px) {
    .topMainHeadingResp {
        padding-left: 0%;
        font-size: 1.25rem;
        height: 80px;
        line-height: 1.2;
    }

    .topMainHeadingResp .pencil {
        align-self: flex-start;
        /* mobile mai neeche shift hoga */
    }
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.hidden {
    display: none;
}


/* top slider */

/* Caption styling */
.carousel-caption {
    top: 10%;
    transform: translateY(0%);
    text-align: left;
    left: 10%;
    right: auto;
}

.carousel-indicators {
    position: static;
    margin-top: 15px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #6E2018;
    transition: opacity 0.3s ease;
}

/* About us */

.aboutUniversities {
    margin-top: 1rem;
    position: relative;
    top: 3rem;
}

.aboutUniversities .card {
    width: 92%;
}

.aboutUniversities img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

/* .ourInstitutionsHead{
    font-size: 3.4rem;
} */

.grasGradient {
    background-image: url(../images/chairmanBG.png);
    background-size: cover;
    height: 500px;
}

.chairmanImg {
    width: 38%;
}


.btn-danger {
    transition: all 0.3s ease-in-out;
}

.btn-danger:hover {
    background-color: var(--yellowColor);
    color: #000;
    transition: all 0.3s ease-in-out;
}

.readMore {
    color: var(--mainColor);
    transition: all 0.3s ease-in-out;
}

.readMore span {
    border-bottom: 1px solid var(--mainColor);
}

.readMore:hover span {
    color: #000;
    border-bottom: 1px solid #000;
    transition: all 0.3s ease-in-out;
}

.readMore:hover i {
    color: #000;
}

.badgeStyle {
    background: var(--mainColor);
    height: 80px;
    width: 80px;
    /* margin: 36% 0% 0 4%; */
    /* top: 36%; */
}

.badgeStyleMargin {
    top: 41%;
}

.badgeStyleHome {
    top: 42%;
}

.badgeStyleMarginSingle {
    top: 37%;
}

.blogHeadingFs {
    font-size: 1.4rem;
}

.ourBlogs {
    padding-bottom: 10rem;
}

.pageFooterSpacer {
    height: 10rem;
}

.arrowCircle {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.arrowCircle:hover {
    background: var(--yellowColor) !important;
    color: #fff !important;
    transition: all 0.3s ease-in-out;
}

.circleDiveBG {
    background: linear-gradient(180deg, rgba(108, 118, 180, 0.9) 0%, rgba(108, 118, 180, 0.9) 100%);
}

.circleDive {
    width: 120px;
    height: 120px;
    transition: all 0.3s ease-in-out;
    left: 0;
    right: 0;
    top: -4rem;
    z-index: 9;
    padding: 0;
    overflow: hidden;
}

.circleDive img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.departmentsSection {
    background: #fff5e6;
    position: relative;
}

.departmentsHeading {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    font-style: normal;
    line-height: 120%;
    letter-spacing: 0%;
    color: #d9a023;
    text-transform: capitalize;
}

.departmentsHeading span {
    color: #000;
}

.departmentCard {
    background: #fbe7c6;
    border-radius: 32px;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 8px solid rgba(251, 231, 198);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.departmentImageWrap {
    border-radius: 26px;
    overflow: hidden;
    border: 6px solid #fff;
    margin-bottom: 1.6rem;
}

.departmentImageWrap img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.departmentBody {
    background: #fbe7c6;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    gap: 1rem;
}

.departmentIcon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #f8c750;
    display: flex;
    align-items: center;
    justify-content: center;
}

.departmentIcon i {
    font-size: 1.6rem;
    color: #000;
}

.departmentIcon img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.departmentBody p {
    font-size: 1.9rem;
    color: #000;
}

.departmentCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .departmentsHeading {
        font-size: 2.6rem;
    }

    .departmentIcon {
        width: 58px;
        height: 58px;
    }

    .departmentBody p {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .departmentsHeading {
        font-size: 2.3rem;
    }

    .departmentIcon {
        width: 52px;
        height: 52px;
    }

    .departmentBody p {
        font-size: 1.2rem;
    }
}

.heroBannerSection {
    min-height: 520px;
    background: linear-gradient(to right, rgba(244, 249, 255, 1) 0%, rgba(244, 249, 255, 0.95) 30%, rgba(244, 249, 255, 0.7) 45%, rgba(244, 249, 255, 0.3) 55%, rgba(244, 249, 255, 0) 100%),
        url('../images/Finalimg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.heroBannerStar {
    position: absolute;
    top: 12%;
    left: 6%;
    opacity: 0.3;
    z-index: 1;
}

.heroBannerStar img {
    margin-top: -51px;
    width: 136px;
}

.heroBannerContent {
    position: relative;
    z-index: 2;
    max-width: 480px;
}

.heroBannerTitle {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.1;
    color: #000000;
    font-family: "Poppins", sans-serif;
}

.heroBannerTitle span {
    color: #2a6faf;
}

.heroBannerSubtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: #4c4c4c;
    max-width: 420px;
}

.heroBannerButtons {
    position: relative;
    z-index: 2;
}

.heroPrimaryBtn,
.heroSecondaryBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.6rem;
    border-radius: 14px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.heroPrimaryBtn {
    background: #2a6faf;
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(42, 111, 175, 0.35);
}

.heroPrimaryBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(42, 111, 175, 0.4);
    color: #ffffff;
}

.heroSecondaryBtn {
    background: transparent;
    color: #2a6faf;
    border: 2px solid #2a6faf;
}

.heroSecondaryBtn:hover {
    background: #2a6faf;
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(42, 111, 175, 0.25);
    transform: translateY(-3px);
}

.accreditShowcaseSection {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
}

.accreditShowcaseBackground {
    background: linear-gradient(180deg, #b1bbe9 0%, #9399d4 100%);
    opacity: 0.94;
    z-index: 0;
}

.accreditShowcaseCard {
    position: relative;
    z-index: 1;
    gap: 1.1rem;
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem 1.8rem;
    box-shadow: 0 18px 45px rgba(70, 79, 145, 0.22);
    height: 100%;
}

.accreditShowcaseIcon,
.accreditShowcaseBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
}

.accreditShowcaseIcon img,
.accreditShowcaseBadge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.accreditShowcaseBadge {
    background: rgba(233, 236, 253, 0.65);
    border-radius: 18px;
    padding: 0.35rem;
}

.accreditShowcaseTitle {
    font-size: 1.2rem;
    font-weight: 800;
    color: #3f4e9b;
    margin-bottom: 0.4rem;
}

.accreditShowcaseText {
    font-family: 'Open Sans', sans-serif;
    color: #555a7a;
    font-size: 0.98rem;
    margin-bottom: 0;
}

.accreditShowcaseDots {
    position: relative;
    z-index: 1;
}

.accreditShowcaseDot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.accreditShowcaseDot.active,
.accreditShowcaseDot:hover {
    background: #ffffff;
    transform: scale(1.3);
}

.accreditationSection {
    background: #E8E8F5;
    padding: 4rem 0;
    position: relative;
}

.accreditationScrollContainer {
    display: flex;
    gap: 1.5rem;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.accreditationScrollContainer::-webkit-scrollbar {
    display: none;
}

.accreditationCard {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.safeCampusCard {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1.5rem;
}

.safeCampusCard .accreditationIcon {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.safeCampusCard .accreditationTitle {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.safeCampusCard .accreditationText {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #333333;
}

@media (max-width: 991px) {
    .accreditationCard {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 575px) {
    .accreditationCard {
        flex: 0 0 calc(100% - 0.5rem);
        min-width: calc(100% - 0.5rem);
    }
}

.accreditationCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.accreditationIcon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #6C76B4;
}

.accreditationIcon i {
    font-size: 3rem;
}

.accreditationIconImg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.safeCampusIcon {
    background: #6C76B4;
    border-radius: 12px;
    color: #ffffff;
    padding: 0.5rem;
}

.safeCampusIcon .accreditationIconImg {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.accreditationIcon.nabetLogo {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}

.nabetLogoInner {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 0.5rem;
}

.nabetLogoShape {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 8px solid #B3D9E8;
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nabetLogoShape::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: #3F4E9B;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nabetBook {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 20px;
    height: 15px;
    background: #FF8C42;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nabetBook::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 6px solid #FF8C42;
}

.nabetText {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.5px;
}

.accreditationTitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6C76B4;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.accreditationText {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 0;
}

.accreditationPagination {
    margin-top: 2rem;
}

.accreditationDot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D0D0D0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.accreditationDot.active {
    background: #ffffff;
    width: 12px;
    height: 12px;
}

.noticeUpdatesSection {
    background: #ffffff;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.noticeUpdatesSection::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(25, 110, 210, 0.15) 0%, rgba(25, 110, 210, 0) 70%);
    z-index: 0;
}

.noticeUpdatesHead {
    margin-bottom: 1.5rem;
}

.noticeUpdatesHeading {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.2;
}

.noticeUpdatesHeading span {
    color: #3498DB;
}

.noticeUpdatesSubheading {
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.03rem;
    max-width: 540px;
    font-weight: 400;
}

.noticeUpdatesTabs {
    position: relative;
    z-index: 2;
}

.noticeTab {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 800;
    font-family: 'Open Sans', sans-serif;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.noticeTab.active {
    background: #3498DB;
    color: #ffffff;
    border-color: #3498DB;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.noticeTab:hover:not(.active) {
    background: #f5f5f5;
    border-color: #D0D0D0;
}

.noticeUpdatesContent {
    position: relative;
    z-index: 2;
}

.noticeUpdatesList {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.noticeUpdatesList:not(.is-active) {
    display: none;
}

.noticeCard {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 64px 15px 52px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 62px;
    width: 89%;
    margin-left: 61px;
}

.noticeAccent {
    width: 8px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #FFD700;
    border-radius: 0;
}

.noticeText {
    font-weight: 700;
    color: #000000;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

.noticeUpdatesStar {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 222px;
    opacity: 0.15;
    z-index: 1;
    filter: brightness(0.8) saturate(0.3);
}

.aboutMisSection {
    background: linear-gradient(90deg, #fffdf8 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.aboutMisStar {
    position: absolute;
    top: -26px;
    left: 669px;
    width: 143px;
    height: 247px;
    z-index: 1;
    pointer-events: none;
}

.aboutMisDecorativeShape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 225, 168, 0.15) 0%, rgba(243, 225, 168, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.aboutMisDecorativeShape1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    opacity: 0.6;
}

.aboutMisDecorativeShape2 {
    width: 300px;
    height: 300px;
    top: 200px;
    right: -50px;
    opacity: 0.4;
}

.aboutMisHero {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 48px;
    align-items: center;
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.aboutMisContent {
    position: relative;
    z-index: 2;
}

.aboutMisEyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #0f1720;
    margin-bottom: 8px;
    line-height: 1.2;
}

.aboutMisHeading {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #0f1720;
    line-height: 120%;
    margin-bottom: 32px;
    letter-spacing: 0%;
}

.aboutMisHeading .aboutMisAccent,
.aboutMisAccent {
    color: #E6B800 !important;
    letter-spacing: 0%;
}

.aboutMisHeading .aboutMisAccentBig,
.aboutMisAccentBig {
    color: #E6B800 !important;
    font-weight: 700;
    letter-spacing: 0%;
}

.aboutMisText {
    font-family: 'Poppins', sans-serif;
    color: #3a3a3a;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
    font-weight: 400;
    max-width: 560px;
}

.aboutMisText:last-of-type {
    margin-bottom: 32px;
}

.aboutMisButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 10px;
    background: linear-gradient(180deg, #FFD65A 0%, #E6B400 100%);
    color: #ffffff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    box-shadow: 0 8px 18px rgba(230, 180, 0, 0.18);
    transition: filter 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.aboutMisButton:hover {
    filter: brightness(0.95);
    transform: translateY(-2px);
    color: #fff;
}

.aboutMisButton:focus {
    outline: 2px solid #E6B400;
    outline-offset: 2px;
}

.aboutMisImageWrap {
    position: relative;
    width: 520px;
    height: 520px;
    border-radius: 48px;
    border: 20px solid #ffffff;
    background: #ffffff;
    box-shadow: 0 25px 40px rgba(13, 17, 23, 0.06), inset 0 6px 18px rgba(0, 0, 0, 0.03);
    z-index: 2;
    overflow: hidden;
    max-width: 100%;
}

.aboutMisImage {
    border-radius: 28px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chooseMisSection {
    background: linear-gradient(180deg, #eff4ff 0%, #eff4ff 65%, #ffffff 90%);
    overflow: hidden;
    padding-bottom: 6rem;
    position: relative;
}

.chooseMisEllipse {
    position: absolute;
    top: 11px;
    left: -139px;
    width: 392px;
    height: 399px;
    border: -11px solid #6c76b45e;
    border-radius: 60%;
    opacity: 19.1;
    z-index: 0;
    pointer-events: none;
    box-sizing: border-box;
}

.chooseMisStar {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 550px;
    height: auto;
    opacity: 0.0;
    z-index: 0;
    pointer-events: none;
}

.chooseMisOverlay {
    background: linear-gradient(180deg, rgba(239, 244, 255, 0.95) 0%, rgba(239, 244, 255, 0.9) 45%, rgba(239, 244, 255, 0.6) 65%, rgba(239, 244, 255, 0.2) 85%, rgba(239, 244, 255, 0) 100%),
        url('../images/img0003.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: 0;
}

.chooseMisHeading {
    font-size: 3rem;
    font-weight: 800;
    color: #1b1b1b;
    position: relative;
    z-index: 1;
    font-family: "Poppins", sans-serif;
}

.chooseMisHeading span {
    color: #2b74d5;
}

.chooseMisSubheading {
    max-width: 720px;
    color: #4c4c4c;
    font-size: 1.05rem;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    z-index: 1;
}

.chooseMisCard {
    background: #ffffff;
    border-radius: 26px;
    padding: 2.5rem 2rem 2.25rem;
    box-shadow: 0 20px 45px rgba(23, 65, 145, 0.15);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chooseMisCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(23, 65, 145, 0.22);
}

.chooseMisIcon {
    width: 110px;
    height: 110px;
    border-radius: 24px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2b74d5;
}

.chooseMisIcon img {
    max-width: 70px;
    height: auto;
}

.chooseMisIconBlue { background: #2ab4dc; }
.chooseMisIconYellow { background: #f0c024; }
.chooseMisIconPurple { background: #5c6bd6; }
.chooseMisIconMint { background: #2faf7f; }
.chooseMisIconCoral { background: #ff6b6b; }

.chooseMisCarouselWrapper {
    position: relative;
    padding: 0 2.75rem;
}

.chooseMisCarousel {
    overflow: hidden;
}

.chooseMisTrack {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s ease;
}

.chooseMisSlide {
    flex: 0 0 calc((100% - 3rem) / 3);
    display: flex;
}

.chooseMisSlide .chooseMisCard {
    width: 100%;
}

.chooseMisTitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f1e3d;
    margin-bottom: 1rem;
}

.chooseMisText {
    color: #516074;
    font-size: 0.96rem;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 1.6rem;
}

.chooseMisLink {
    display: inline-block;
    color: #2b74d5;
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    border-radius: 10px;
    border: 2px solid #cfd9f5;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.chooseMisLink:hover {
    background: #2b74d5;
    color: #ffffff;
    border-color: #2b74d5;
}

.chooseMisArrow {
    width: 28px;
    height: 68px;
    background: #2A6FAF;
    color: #ffffff;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(42, 111, 175, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
}

.chooseMisArrowPrev {
    left: -18px;
    border-radius: 26px 0 0 26px;
}

.chooseMisArrowNext {
    right: -18px;
    border-radius: 0 26px 26px 0;
}

.chooseMisArrow:hover {
    background: #255f9f;
    box-shadow: 0 10px 22px rgba(42, 111, 175, 0.35);
}

.chooseMisArrow i {
    font-size: 1.1rem;
    font-weight: 700;
}

.chooseMisArrow.is-disabled {
    opacity: 0.35;
    pointer-events: none;
    box-shadow: none;
}

.standForSection {
    background: linear-gradient(180deg, #fdeac1 0%, #fdeac1 55%, #ffffff 55%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.standForBackground {
    height: 55%;
    background: linear-gradient(180deg, #fdeac1 0%, #f9d992 100%);
    z-index: 0;
}

.standForEllipse {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: auto;
    opacity: 3.4;
    z-index: 0;
    pointer-events: none;
}

.standForStar {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 550px;
    height: auto;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.standForHeading {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    z-index: 1;
    position: relative;
    font-family: "Poppins", sans-serif;
}

.standForHeading span {
    color: #d5a318;
}

.standForSubheading {
    max-width: 700px;
    color: #444;
    font-family: "Open Sans", sans-serif;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.standForCard {
    background: transparent;
    padding: 2rem 1.5rem 1rem;
    position: relative;
    z-index: 1;
}

.standForIcon {
    width: 170px;
    height: 170px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: #eab619;
    border: 12px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.standForIcon img {
    width: 70%;
    height: auto;
    display: block;
}

.standForTitle {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.standForText {
    color: #555;
    font-family: "Open Sans", sans-serif;
    font-size: 0.95rem;
}

.aboutHeroSection {
    background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
}
.aboutHeroOrb {
    position: absolute;
    top: -80px;
    left: -160px;
    width: 360px;
    opacity: 0.45;
    pointer-events: none;
}
.aboutHeroStar {
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 420px;
    opacity: 0.12;
    pointer-events: none;
}

.aboutPageContainer {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}
.aboutHeroBadge {
    background: rgba(43, 116, 213, 0.1);
    color: #2b74d5;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.02em;
}
.aboutHeroBadge i {
    font-size: 1.1rem;
}
.aboutHeroTitle {
    font-size: clamp(2.2rem, 3vw + 1rem, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f1e3d;
    margin: 1.5rem 0 1rem;
    font-family: 'Poppins', sans-serif;
}
.aboutHeroText {
    font-size: 1rem;
    color: #4c5c6f;
    font-family: 'Open Sans', sans-serif;
}
.aboutHeroPrimary,
.aboutHeroSecondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.65rem 1.8rem;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
}
.aboutHeroPrimary {
    background: #2b74d5;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(43, 116, 213, 0.25);
}
.aboutHeroPrimary:hover {
    background: #235fae;
    color: #ffffff;
}
.aboutHeroSecondary {
    border: 2px solid #bfd2f4;
    color: #2b74d5;
}
.aboutHeroSecondary:hover {
    border-color: #2b74d5;
    color: #ffffff;
    background: #2b74d5;
}
.aboutHeroStatsCard {
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 30, 61, 0.12);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    height: 100%;
}
.aboutHeroStatsValue {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0f1e3d;
    font-family: 'Poppins', sans-serif;
}
.aboutHeroStatsLabel {
    font-size: 0.88rem;
    color: #52627b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.aboutHeroMedia {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 30, 61, 0.18);
}
.aboutHeroMedia img {
    display: block;
    width: 100%;
    height: auto;
}
.aboutHeroMediaBadge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    color: #2b74d5;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.aboutHeroMediaBadge i {
    font-size: 1.1rem;
}
.aboutStorySection {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}
.aboutStoryImage {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(23, 65, 145, 0.18);
}
.aboutStoryImage img {
    width: 100%;
    display: block;
}
.aboutStoryHighlight {
    position: absolute;
    right: 24px;
    bottom: 24px;
    background: #ffffff;
    border-radius: 14px;
    padding: 0.9rem 1.4rem;
    color: #2b74d5;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 12px 30px rgba(43, 116, 213, 0.2);
}
.aboutSectionLabel {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #2b74d5;
}
.aboutSectionLabel::before {
    content: "";
    width: 36px;
    height: 2px;
    background: #2b74d5;
    display: inline-block;
}
.aboutSectionHeading {
    font-size: clamp(1.9rem, 2.5vw + 1rem, 2.8rem);
    font-weight: 700;
    color: #0f1e3d;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
    font-family: 'Poppins', sans-serif;
}
.aboutSectionText {
    font-size: 1rem;
    color: #516074;
    font-family: 'Open Sans', sans-serif;
}
.aboutStoryList li {
    font-family: 'Open Sans', sans-serif;
    color: #445468;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.aboutStoryList i {
    color: #2b74d5;
    font-size: 1rem;
}
.aboutPillarsSection {
    background: #ffffff;
}
.aboutPillarCard {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
    border-radius: 26px;
    padding: 2.5rem 2rem;
    box-shadow: 0 18px 45px rgba(15, 30, 61, 0.12);
    height: 100%;
}
.aboutPillarCard h5 {
    font-weight: 700;
    color: #0f1e3d;
    margin-bottom: 1rem;
}
.aboutPillarCard p {
    color: #4a5a6d;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0;
}
.aboutPillarIcon {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0.9rem;
    background: rgba(43, 116, 213, 0.12);
}
.aboutPillarIcon img {
    max-width: 100%;
    height: auto;
}
.aboutPillarIconMission { background: rgba(36, 171, 221, 0.12); }
.aboutPillarIconVision { background: rgba(240, 192, 36, 0.12); }
.aboutPillarIconValues { background: rgba(95, 107, 214, 0.12); }
.aboutPillarList li {
    color: #445468;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.aboutPillarList i {
    color: #f0c024;
}
.aboutPillarCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(15, 30, 61, 0.18);
}
.aboutLeadershipSection {
    background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
}
.aboutLeadershipGlow {
    position: absolute;
    top: -220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    width: 420px;
    opacity: 0.18;
    pointer-events: none;
}
.aboutLeadershipFigure {
    position: relative;
}
.aboutLeadershipImage {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 65px rgba(15, 30, 61, 0.2);
}
.aboutLeadershipImage img {
    width: 100%;
    display: block;
}
.aboutLeadershipBadge,
.aboutLeadershipRole {
    position: absolute;
    margin-left: -51px;
    left: 10%;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(15, 30, 61, 0.18);
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #2b74d5;
    transform: translateY(-50%);
}
.aboutPillarCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(15, 30, 61, 0.18);
}
.aboutLeadershipBadge {
    top: 12%;
}
.aboutLeadershipRole {
    top: 25%;
    color: #0f1e3d;
}
.aboutLeadershipCard {
    background: #ffffff;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 22px 60px rgba(15, 30, 61, 0.15);
}
.aboutLeadershipTitle {
    font-weight: 700;
    font-size: 1.8rem;
    margin: 1rem 0;
    color: #0f1e3d;
}
.aboutLeadershipText {
    color: #445468;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 1rem;
}
.aboutLeadershipSignature {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-family: 'Open Sans', sans-serif;
    color: #2b74d5;
    font-weight: 600;
}
.aboutLeadershipDesignation {
    color: #445468;
    font-weight: 500;
}
.aboutGoverningSection {
    background: #ffffff;
}
.aboutGoverningCard {
    background: #f8faff;
    border-radius: 24px;
    padding: 2.2rem 1.5rem;
    box-shadow: 0 15px 40px rgba(15, 30, 61, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.aboutGoverningCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(15, 30, 61, 0.18);
}
.aboutGoverningAvatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    box-shadow: 0 12px 28px rgba(43, 116, 213, 0.2);
}
.aboutGoverningAvatar img {
    margin-top: 4px;
    width: 75%;
    height: 100%;
    object-fit: cover;
}
.aboutGoverningName {
    font-weight: 700;
    color: #0f1e3d;
    margin-bottom: 0.4rem;
}
.aboutGoverningRole {
    color: #2b74d5;
    font-weight: 600;
    margin-bottom: 0;
}
.aboutTimelineSection {
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}
.aboutTimelineBackdrop {
    position: absolute;
    left: -120px;
    bottom: -160px;
    width: 520px;
    opacity: 0.18;
    pointer-events: none;
}

/* Horizontal Timeline Styles */
.horizontalTimelineWrap {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 2.5rem 1rem 1rem;
}

.horizontalTimelineContainer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
    position: relative;
}

.horizontalTimelineLine {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    background: #d8e0e9;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: translateY(-50%);
}

.timelineColumn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 1rem;
    text-align: center;
}

.timelineColumn--top {
    padding-bottom: 4.2rem;
}

.timelineColumn--bottom {
    padding-top: 4.2rem;
}

.timelineNode {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid currentColor;
    background: #ffffff;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.timelineColumn--top .timelineNode::after,
.timelineColumn--bottom .timelineNode::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 4px;
    height: 105px;
    background: currentColor;
    transform: translateX(-50%);
    top: 100%;
}

.timelineColumn--bottom .timelineNode::after {
    top: auto;
    bottom: 100%;
}

.timelineIcon {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timelineHexImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
}

.timelineIcon i {
    position: absolute;
    font-size: 2rem;
    color: currentColor;
}

.timelineInfo {
    max-width: 220px;
}

.timelineYear {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    display: block;
}

.timelineTitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f1e3d;
    margin: 0.5rem 0;
}

.timelineText {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #1f2a36;
    line-height: 1.6;
}

.timelineColumn--orange {
    color: #ed9a2e;
}

.timelineColumn--green {
    color: #58c9a8;
}

.timelineColumn--blue {
    color: #2297d3;
}

@media (max-width: 992px) {
    .horizontalTimelineContainer {
        flex-wrap: wrap;
        gap: 3rem 1.5rem;
    }

    .horizontalTimelineLine {
        display: none;
    }

    .timelineColumn {
        flex: 1 1 calc(50% - 1.5rem);
        padding: 0 !important;
    }

    .timelineColumn--top .timelineNode::after,
    .timelineColumn--bottom .timelineNode::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .horizontalTimelineContainer {
        flex-direction: column;
        align-items: center;
    }

    .timelineColumn {
        flex: 1 1 100%;
    }

    .timelineYear {
        font-size: 1.4rem;
    }
}

.homeGallerySection {
    background: #ffffff;
    padding: 5rem 0;
}

.homeGalleryHeading {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    text-align: center;
    margin-bottom: 1rem;
    font-family: "Poppins", sans-serif;
}

.homeGallerySubheading {
    max-width: 640px;
    color: #000000;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    margin: 0 auto;
    line-height: 1.6;
}

.homeGalleryCarousel {
    position: relative;
}

.homeGalleryViewport {
    overflow: visible;
    width: 100%;
}

.homeGalleryTrack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    transition: transform 0.45s ease;
}

.homeGallerySlide {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: 360px;
    display: flex;
    justify-content: center;
}

.homeGalleryArrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #2A6FAF;
    box-shadow: 0 10px 24px rgba(23, 65, 145, 0.18);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.homeGalleryArrow:hover {
    box-shadow: 0 14px 30px rgba(23, 65, 145, 0.25);
}

.homeGalleryArrowPrev {
    left: 0.75rem;
}

.homeGalleryArrowNext {
    right: 0.75rem;
}

.homeGalleryCard {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 26px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(23, 65, 145, 0.15);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
    height: 100%;
    display: block;
}

.homeGalleryCard img {
    width: 100%;
    height: 300px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
    border: 8px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 24px rgba(23, 65, 145, 0.18);
}

.homeGalleryCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(23, 65, 145, 0.2);
}

.homeGalleryDots {
    margin-top: 2rem;
}

.homeGalleryDots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    display: inline-block;
    transition: all 0.3s ease;
}

.homeGalleryDots .dot.active {
    background: #3498db;
    width: 12px;
    height: 12px;
}

@media (max-width: 991px) {
    .homeGallerySlide {
        flex: 0 0 calc(50% - 1rem);
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .homeGalleryCarousel {
        padding: 0 2.5rem;
    }

    .homeGalleryViewport {
        overflow: hidden;
    }

    .homeGalleryTrack {
        flex-wrap: nowrap;
        gap: 0;
        justify-content: flex-start;
    }

    .homeGallerySlide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .homeGalleryArrow {
        display: flex;
    }
}

.quickLinkHeading {
    margin-bottom: 6rem;
    font-family: "Poppins", sans-serif;
}

/* Admissions Snapshot Responsive */
@media (max-width: 992px) {
    .quickLinkHeading {
        margin-bottom: 4rem;
    }
    
    .circleDive {
        width: 100px;
        height: 100px;
        top: -3.5rem;
        padding: 0.6rem;
    }
    
    .circleDive img {
        width: 50px;
    }
    
    .arrowCircle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .quickLinkHeading {
        margin-bottom: 3.5rem;
        font-size: 2rem;
    }
    
    .quickLinkMb {
        margin-bottom: 3rem !important;
    }
    
    .circleDive {
        width: 90px;
        height: 90px;
        top: -3rem;
        padding: 0.5rem;
    }
    
    .circleDive img {
        width: 45px;
    }
    
    .circleDiveBG .card-body {
        padding: 1.5rem 1rem 1rem !important;
        padding-top: 3.5rem !important;
    }
    
    .circleDiveBG .card-body p {
        font-size: 1.1rem !important;
    }
    
    .arrowCircle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .quickLinkHeading {
        margin-bottom: 2.5rem;
        font-size: 1.75rem;
    }
    
    .quickLinkMb {
        margin-bottom: 2rem !important;
    }
    
    .circleDive {
        width: 80px;
        height: 80px;
        top: -2.5rem;
        padding: 0.4rem;
    }
    
    .circleDive img {
        width: 40px;
    }
    
    .circleDiveBG .card-body {
        padding: 1.25rem 0.75rem 0.75rem !important;
        padding-top: 3rem !important;
    }
    
    .circleDiveBG .card-body p {
        font-size: 1rem !important;
        line-height: 1.4;
    }
    
    .arrowCircle {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .circleDiveBG .card-body .d-flex {
        gap: 0.5rem;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .circleDiveBG .card-body .d-flex p {
        flex: 1;
        min-width: 0;
        word-wrap: break-word;
    }
}

@media (max-width: 400px) {
    .quickLinkHeading {
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }
    
    .quickLinkMb {
        margin-bottom: 1.5rem !important;
    }
    
    .circleDive {
        width: 70px;
        height: 70px;
        top: -2rem;
        padding: 0.35rem;
    }
    
    .circleDive img {
        width: 35px;
    }
    
    .circleDiveBG .card-body {
        padding: 1rem 0.5rem 0.5rem !important;
        padding-top: 2.5rem !important;
    }
    
    .circleDiveBG .card-body p {
        font-size: 0.9rem !important;
        line-height: 1.3;
    }
    
    .arrowCircle {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    .circleDiveBG .card-body .d-flex {
        gap: 0.5rem;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .circleDiveBG .card-body .d-flex p {
        flex: 1;
        min-width: 0;
        word-wrap: break-word;
        font-size: 0.85rem !important;
    }
}

/* About Page */
.aboutTopBanner {
    background: url(../images/aboutBanner.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 425px;
}

.aboutGallary {
    width: 60%;
    top: 10%;
}

.missonDiv {
    width: 35%;
    margin-left: 10%;
    margin-top: 5rem;
}

.vissionDiv {
    width: 35%;
}

.goalsDiv {
    width: 35%;
    margin-left: 10%;
}

.aboutUsGradient {
    background: linear-gradient(180deg, #FFFFFF 16.44%, #FAF3E0 100%);
}

.founderMessageSection {
    background-color: #fff;
    padding-top: 12rem;
}

.founderMessageDiv img {
    width: 65%;
}

.founderMessageDiv div {
    width: 56%;
    top: 17%;
    right: 5%;
}

.profileName {
    background: var(--profileBG);
    border: solid 2px #fff;
    width: fit-content;
    left: 15%;
}

.profileName_1 {
    background: var(--profileBG);
    border: solid 2px #fff;
    width: fit-content;
    left: -10%;
}

/* .founderCarousel img {
    width: 75%;
} */

.aboutImportImg {
    width: 350px;
}

/* Testimonials Section */
.testimonialsSection {
    background-color: #fff;
    padding: 5rem 0;
    position: relative;
}

.testimonialsHeadingWrap {
    max-width: 360px;
}

.testimonialsBadge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(108, 118, 180, 0.12);
    color: #5862c1;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.testimonialsBadge i {
    font-size: 1rem;
}

.testimonialsHeading {
    font-size: 2.6rem;
    font-weight: 800;
    color: #6C76B4;
    font-family: 'Poppins', sans-serif;
}

.testimonialsIntro {
    color: #4b5675;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
}

.testimonialsIllustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonialsLeftImage {
    width: 142%;
    max-width: 663px;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .testimonialsLeftImage {
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .testimonialsLeftImage {
        max-width: 420px;
    }
}

.testimonialsBubble {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.testimonialsBubbleImage {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    object-fit: contain;
}

.testimonialsQuoteOpen {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 8rem;
    font-weight: 700;
    color: #6C76B4;
    font-family: 'Merriweather', serif;
    line-height: 1;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

.testimonialsQuoteClose {
    position: absolute;
    bottom: 60px;
    right: 40px;
    font-size: 8rem;
    font-weight: 700;
    color: #6C76B4;
    font-family: 'Merriweather', serif;
    line-height: 1;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.testimonialsContent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5rem 1.5rem 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.testimonialsTitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    padding-left: 0.5rem;
    position: relative;
    z-index: 2;
}

.testimonialsText {
    font-size: 1rem;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonialsPagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8rem;
    margin-top: 8rem;
    margin-left: 189px;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(108, 118, 180, 0.2);
    position: relative;
    z-index: 3;
}

.testimonialsPageCurrent,
.testimonialsPageTotal {
    font-size: 1rem;
    color: #CCCCCC;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}

.testimonialsPageDivider {
    font-size: 1rem;
    color: #CCCCCC;
    font-family: 'Open Sans', sans-serif;
}

.testimonialsNav {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.testimonialsNavBtn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.testimonialsNavPrev {
    background: #CCCCCC;
    color: #ffffff;
}

.testimonialsNavNext {
    background: #6C76B4;
    color: #ffffff;
}

.testimonialsNavBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.testimonialsNavBtn.active {
    box-shadow: 0 4px 12px rgba(108, 118, 180, 0.4);
}

/* Testimonials Responsive */
@media (max-width: 1200px) {
    .testimonialsContent {
        padding: 5.5rem 2.5rem 2rem 4rem;
    }
    
    .testimonialsQuoteOpen {
        font-size: 7rem;
        top: 15px;
        left: 25px;
    }
}

@media (max-width: 992px) {
    .testimonialsSection {
        padding: 3rem 0;
    }
    
    .testimonialsHeading {
        font-size: 2.5rem;
    }
    
    .testimonialsBubble {
        min-height: 400px;
        margin-top: 2rem;
    }
    
    .testimonialsBubbleImage {
        min-height: 400px;
        object-fit: contain;
    }
    
    .testimonialsContent {
        padding: 4.5rem 2rem 2rem 3.5rem;
    }
    
    .testimonialsTitle {
        font-size: 1.35rem;
        padding-top: 0.75rem;
        padding-left: 0.5rem;
    }
    
    .testimonialsQuoteOpen {
        font-size: 5.5rem;
        top: 10px;
        left: 20px;
    }
    
    .testimonialsQuoteClose {
        font-size: 5.5rem;
        bottom: 50px;
        right: 30px;
    }

    .testimonialsPagination {
        margin-top: 2.5rem;
        margin-left: 0;
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonialsHeading {
        font-size: 2rem;
    }
    
    .testimonialsBubble {
        min-height: 350px;
    }
    
    .testimonialsBubbleImage {
        min-height: 350px;
    }
    
    .testimonialsContent {
        padding: 4rem 1.5rem 2rem 3rem;
    }
    
    .testimonialsTitle {
        font-size: 1.25rem;
        padding-top: 0.75rem;
        padding-left: 0.5rem;
        margin-bottom: 1rem;
    }

    .testimonialsPagination {
        margin-top: 2rem;
    }
    
    .testimonialsText {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .testimonialsQuoteOpen {
        font-size: 4.5rem;
        top: 8px;
        left: 15px;
        z-index: 1;
    }
    
    .testimonialsQuoteClose {
        font-size: 4.5rem;
        bottom: 40px;
        right: 20px;
    }
    
    .testimonialsPagination {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonialsSection {
        padding: 2rem 0;
    }
    
    .testimonialsHeading {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonialsBubble {
        min-height: 300px;
        margin-top: 1.5rem;
    }
    
    .testimonialsBubbleImage {
        min-height: 300px;
    }
    
    .testimonialsContent {
        padding: 3.5rem 1.25rem 1.5rem 2.5rem;
    }
    
    .testimonialsTitle {
        font-size: 1.1rem;
        padding-top: 0.5rem;
        padding-left: 0.25rem;
        margin-bottom: 0.75rem;
    }
    
    .testimonialsText {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
    
    .testimonialsQuoteOpen {
        font-size: 3.5rem;
        top: 5px;
        left: 12px;
    }
    
    .testimonialsQuoteClose {
        font-size: 3.5rem;
        bottom: 35px;
        right: 15px;
    }
    
    .testimonialsPagination {
        margin-top: 2.75rem;
        padding-top: -1px;
        margin-bottom: -58px;
        gap: 1.75rem;
        flex-wrap: wrap;
        margin-left: 51px;
        justify-content: center;
    }
    
    .testimonialsPageCurrent,
    .testimonialsPageTotal {
        font-size: 0.9rem;
    }
    
    .testimonialsNav {
        margin-left: 0.5rem;
    }
    
    .testimonialsNavBtn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .testimonialsLeftImage {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}

.aboutBodySection {
    padding-top: 8rem;
}

.bodyOuterDiv {
    width: 55%;
    margin: 0 auto;
    background: hwb(5.64deg 16.86% 24.71% / 25%);
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    height: 450px;
}

.bodyCarouselOuterDiv {
    width: 80%;
    margin: 0 auto;
    background: hwb(5.64deg 16.86% 24.71% / 25%);
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    height: 350px;
}

.bodyCarouselOuterDiv img {
    height: 400px;
    width: 340px;
    object-fit: contain;
}

.clientCarousel {
    margin-top: 8rem;
}

.timelineSection {
    height: 900px;
}

.timelineDiv {
    z-index: 9;
}

.timelineMain {
    width: 90%;
}

.timelineText_1 {
    top: 0%;
    left: 8%;
    width: 15%;
}

.timelineText_2 {
    top: 0%;
    left: 44%;
    width: 15%;
}

.timelineText_3 {
    top: 0%;
    right: 5%;
    width: 15%;
}

.timelineText_4 {
    bottom: -5%;
    left: 26%;
    width: 15%;
}

.timelineText_5 {
    bottom: -5%;
    right: 23%;
    width: 15%;
}


/* Institutions Page */
.institutionsTopBanner {
    background: url(../images/InstitutionBanner.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 425px;
}

.instituteBoxes {
    top: 5%;
    z-index: 9;
}

.InstitutionBannerBottomDiv {
    height: 990px;
}

.instituteBoxes .card-body img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}


/* Gallery Page */
.galleryTopBanner {
    background: url(../images/galleryBanner.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 425px;
}

.gallerySection {
    padding-bottom: 0rem;
}

.custom-tabs {
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
    border-bottom: 8px solid #f0dcdc;
}

.custom-tabs .nav-link {
    flex: 1 1 auto;
    text-align: center;
    color: #000;
    font-size: 16px;
    border: none;
    background: none;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-tabs .nav-link.active {
    color: var(--mainColor);
    font-weight: 600;
}

/* Active underline (animated) */
.tab-underline {
    position: absolute;
    bottom: -8px;
    height: 8px;
    background: var(--mainColor);
    transition: all 0.3s ease;
    z-index: 2;
}

.tab-content img {
    object-fit: cover;
}


/* Blogs Page */
.blogsTopBanner {
    background: url(../images/blogsBanner.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 425px;
}


/* Contact Page */
.contactTopBanner {
    background: url(../images/contactBanner.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 425px;
}

.contactSection {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    padding-bottom: 10rem;
}

.contactBG {
    background: var(--contactBG);
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgb(253 248 239) !important;
}

.contactFormHeader {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.contactMailBox {
    width: 100px;
    height: 80px;
}

.mapZindex {
    z-index: 1;
}

.contactMailIcon {
    width: 80px;
    border-right: solid 2px #cdcdcd;
}

.contactHead {
    top: 34rem;
    width: 45%;
}


/* Footer Css */
footer {
    background: var(--footerBG);
    padding-top: 10rem;
    padding-bottom: 1.5rem;
}

.borderRight {
    width: 2px;
    height: 35px;
}

.btnSubscribe {
    background: var(--yellowColor);
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.footerYellow {
    top: -16rem;
}

@media (max-width: 575.98px) {
    footer h5,
    footer p,
    footer .footerNav,
    footer .footerNav li,
    footer .footerNav a {
        text-align: center;
    }

    footer .footerLogo {
        margin: 0 auto 1.5rem auto;
        display: block;
    }

    footer .col-md-3,
    footer .col-md-4,
    footer .col-md-5,
    footer .col-lg-2,
    footer .col-lg-3,
    footer .col-lg-4,
    footer .col-xl-2,
    footer .col-xl-3,
    footer .col-xl-4 {
        text-align: center;
    }

    footer .d-flex.gap-4 {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        justify-items: center;
        gap: 1rem 2.5rem;
        margin: 0 auto;
    }

    footer .footerNav {
        margin: 0;
    }

    footer .footerNav li {
        margin-bottom: 0.75rem;
    }

    footer .footerYellow {
        top: -12rem;
    }
}