﻿@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: #5A0235;
    --secondaryColor: #7a1a4d;
    --yellowColor: #FFD700;
    --grayColor: #888888;
    --cyanColor: #59BDD5;
    --creamColor: #F7EBD3;
    --footerBG: linear-gradient(90deg, #3a0125 0%, #5A0235 100%);
    --profileBG: #5A0235;
    --contactBG: rgba(250, 233, 201, 30%);

    /* Bootstrap theme overrides (replaces #0d6efd/#0b5ed7/#0a58ca) */
    --rmcetPrimary: var(--secondaryColor);
    --rmcetPrimaryDark: #5f0d2f;

    --bs-primary: var(--rmcetPrimary);
    --bs-primary-rgb: 122, 26, 77;
    --bs-link-color: var(--rmcetPrimary);
    --bs-link-hover-color: var(--yellowColor);
}

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

body {
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

/* Bootstrap primary buttons + links: hover uses #FFD700 */
.btn-primary {
    --bs-btn-bg: var(--rmcetPrimary);
    --bs-btn-border-color: var(--rmcetPrimary);
    --bs-btn-hover-bg: var(--yellowColor);
    --bs-btn-hover-border-color: var(--yellowColor);
    --bs-btn-hover-color: var(--mainColor);
    --bs-btn-active-bg: var(--rmcetPrimaryDark);
    --bs-btn-active-border-color: var(--rmcetPrimaryDark);
    --bs-btn-focus-shadow-rgb: 122, 26, 77;
    --bs-btn-disabled-bg: var(--rmcetPrimary);
    --bs-btn-disabled-border-color: var(--rmcetPrimary);
}

.btn-outline-primary {
    --bs-btn-color: var(--rmcetPrimary);
    --bs-btn-border-color: var(--rmcetPrimary);
    --bs-btn-hover-bg: var(--yellowColor);
    --bs-btn-hover-border-color: var(--yellowColor);
    --bs-btn-hover-color: var(--mainColor);
    --bs-btn-active-bg: var(--rmcetPrimaryDark);
    --bs-btn-active-border-color: var(--rmcetPrimaryDark);
    --bs-btn-disabled-color: var(--rmcetPrimary);
    --bs-btn-disabled-border-color: var(--rmcetPrimary);
}

.link-primary {
    color: var(--rmcetPrimary) !important;
}

.link-primary:focus,
.link-primary:hover {
    color: var(--yellowColor) !important;
}

/* Bootstrap components that still use hard-coded primary in bootstrap.min.css */
.form-check-input:checked {
    background-color: var(--rmcetPrimary);
    border-color: var(--rmcetPrimary);
}

.form-range::-webkit-slider-thumb {
    background-color: var(--rmcetPrimary);
}

.form-range::-moz-range-thumb {
    background-color: var(--rmcetPrimary);
}

.nav-pills {
    --bs-nav-pills-link-active-bg: var(--rmcetPrimary);
}

.pagination {
    --bs-pagination-active-bg: var(--rmcetPrimary);
    --bs-pagination-active-border-color: var(--rmcetPrimary);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(122, 26, 77, 0.25);
}

.list-group {
    --bs-list-group-active-bg: var(--rmcetPrimary);
    --bs-list-group-active-border-color: var(--rmcetPrimary);
}

.progress {
    --bs-progress-bar-bg: var(--rmcetPrimary);
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: var(--rmcetPrimary);
}

.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: #FFD25D;
}

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

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

/* Top Bar Styles */
.topBar {
    background: #5f0d2f;
    color: #f2f5ef;
    padding: 6px 0;
    font-size: 13px;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
}

.topBarLink {
    color: #f2f5ef;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
}

.topBarLink i {
    font-size: 17px;
}

.topBarLink:hover {
    color: var(--yellowColor);
}

.topBarLink.active {
    color: var(--yellowColor);
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

.topBarSocial {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s ease;
    font-size: 13px;
}

.topBarSocial:hover {
    background: var(--yellowColor);
    color: var(--mainColor);
}

.topBarLinks {
    column-gap: 14px;
    row-gap: 6px;
}

.topBarContact {
    color: #f2f5ef;
    font-size: 12px;
    font-weight: 600;
}

.topBarContact .separator {
    opacity: 0.5;
}

/* Navbar Styles */
.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbarLogo {
    width: 60px;
    height: 60px;
}

.navbarBrandText {
    line-height: 1.3;
}

.navbarBrandTitle {
    font-size: 14px;
    color: #0e2a46;
    font-weight: 600;
}

.navbarBrandSubtitle {
    font-size: 16px;
    color: #0e2a46;
    font-weight: 700;
}

/* Simple page hero and resource cards for statutory/info pages */
.pageHero {
    background: linear-gradient(135deg, rgba(95, 13, 47, 0.08), rgba(95, 13, 47, 0.02));
    padding: 48px 0 32px;
    border-bottom: 3px solid #f2e8c5;
}

.pageHeroTitle {
    font-weight: 700;
    color: #5f0d2f;
    margin-bottom: 8px;
}

.pageHeroSubtitle {
    color: #4a6075;
    max-width: 840px;
}

.resourceSection {
    padding: 48px 0;
    background: #ffffff;
}

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

.resourceCard {
    border: 1px solid #e8e9ec;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    background: #fff;
    height: 100%;
}

.resourceCard h5 {
    font-weight: 700;
    color: #0e2a46;
    margin-bottom: 10px;
}

.resourceCard p {
    color: #4a6075;
    font-size: 14px;
    margin-bottom: 12px;
}

.resourceLinks a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #5f0d2f;
    font-weight: 600;
    background: rgba(95, 13, 47, 0.06);
    transition: background 0.2s ease, transform 0.2s ease;
}

.resourceLinks a:hover {
    background: rgba(95, 13, 47, 0.12);
    transform: translateY(-1px);
}

/* Statutory/Info page styling (mirrors admissions/academics tone) */
.statHero {
    background: linear-gradient(140deg, rgba(90, 2, 53, 0.08), rgba(90, 2, 53, 0.02));
    padding: 56px 0 40px;
    border-bottom: 1px solid rgba(90, 2, 53, 0.08);
}

.statHeroBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(90, 2, 53, 0.1);
    color: #5f0d2f;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.statHeroTitle {
    font-weight: 800;
    color: #0e2a46;
    margin: 14px 0 6px;
}

.statHeroSubtitle {
    color: #4a6075;
    max-width: 840px;
    font-size: 15px;
}

.statCardsSection {
    padding: 50px 0 64px;
    background: #fff;
}

.statCard {
    border: 1px solid #e6e8ef;
    border-radius: 14px;
    padding: 18px;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.statCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.07);
}

.statCardIcon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(90, 2, 53, 0.08);
    color: #5f0d2f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.statCardTitle {
    font-weight: 700;
    color: #0e2a46;
    margin-bottom: 8px;
}

.statCardText {
    color: #4a6075;
    font-size: 14px;
    margin-bottom: 14px;
}

.statCardLinks {
    gap: 10px;
}

.statCardLink {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(90, 2, 53, 0.06);
    color: #5f0d2f;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.statCardLink:hover {
    background: rgba(90, 2, 53, 0.12);
    color: #41011e;
    transform: translateY(-1px);
}

.statSectionTitle {
    font-weight: 800;
    color: #0e2a46;
    margin-bottom: 18px;
}

.statFeature {
    padding: 48px 0;
    background: linear-gradient(135deg, #fff7fb 0%, #ffffff 55%);
}

.statFeatureCard {
    border: 1px solid #ead8e4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    background: #fff;
}

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

.statFeatureBody {
    padding: 22px;
}

.statFeatureBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(90, 2, 53, 0.08);
    border-radius: 999px;
    color: #5f0d2f;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.statFeatureTitle {
    margin: 14px 0 8px;
    color: #0e2a46;
    font-weight: 800;
}

.statFeatureText {
    color: #4a6075;
    margin-bottom: 12px;
}

.statFeatureMeta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.statMetaChip {
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(90, 2, 53, 0.07);
    color: #5f0d2f;
    font-weight: 700;
    font-size: 13px;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
    color: #333 !important;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

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

.nav-link:hover::after {
    width: calc(100% - 32px);
}

/* Active menu */
.nav-link.active {
    font-weight: bold;
    color: #5b0f2b !important;
}

/* Fix for nav-pills text color when active (e.g. in library.php sidebar) */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff !important;
}

.nav-link.active::after {
    width: calc(100% - 32px);
}

.navDropdown {
    border: 1px solid #e7e7e7;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 6px 0;
    min-width: 220px;
    max-height: 60vh;
    overflow-y: auto;
}

/* Custom Scrollbar for Dropdown */
.navDropdown::-webkit-scrollbar {
    width: 6px;
}

.navDropdown::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    margin: 4px 0;
    border-radius: 10px;
}

.navDropdown::-webkit-scrollbar-thumb {
    background: rgba(90, 2, 53, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navDropdown::-webkit-scrollbar-thumb:hover {
    background: var(--mainColor);
}

.navDropdown .dropdown-item {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #1f1f1f;
    padding: 10px 16px;
}

.navDropdown .dropdown-item:hover {
    background: rgba(90, 2, 53, 0.06);
    color: var(--mainColor);
}

.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;
}

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

.navbar-toggler {
    border: 1px solid rgba(90, 2, 53, 0.4);
    border-radius: 10px;
    padding: 6px 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: var(--mainColor);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(90, 2, 53, 0.15);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(90,2,53,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.school-logo-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: -55px;
    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;
}

.contactLinkHover {
    color: #5f0d2f;
    transition: all 0.3s ease-in-out;
}

.contactLinkHover:hover {
    color: #FFD700 !important;
}

.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;
}

/* ========================================
   RMCET WEBSITE - MAIN SECTIONS
   ======================================== */

/* RMCET Hero Section */
.rmcetHeroSection {
    position: relative;
    background: linear-gradient(135deg, #fff3f1 0%, #ffe6ef 100%);
}

.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(95, 13, 47, 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(90, 2, 53, 0.45);
    border: 1px solid rgba(95, 13, 47, 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(95, 13, 47, 0.65);
}

.heroPrimaryBtn:hover {
    color: #ffffff;
    background: #5f0d2f;
}

.heroSecondaryBtn {
    background: rgba(95, 13, 47, 0.12);
    color: var(--mainColor);
}

.heroSecondaryBtn:hover {
    background: rgba(95, 13, 47, 0.2);
    color: var(--mainColor);
}

/* About Hero Buttons (used in tnp.php and others) */
.aboutHeroPrimary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #5f0d2f;
    color: #fff !important;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #5f0d2f;
    text-decoration: none;
}

.aboutHeroPrimary:hover {
    background: #FFD700 !important;
    color: #5f0d2f !important;
    border-color: #FFD700 !important;
}

.aboutHeroSecondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.aboutHeroSecondary:hover {
    background: #fff;
    color: #5f0d2f;
    border-color: #fff;
}

.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;
}

.infoCenterSection {
    background: linear-gradient(180deg, #fbf8ff 0%, #f6f9ff 100%);
}

.infoCenterCard {
    border: none;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(30, 9, 22, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infoCenterCard::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(90, 2, 53, 0.06), rgba(255, 210, 93, 0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.infoCenterCard .card-body {
    position: relative;
    z-index: 1;
    padding: 2.25rem;
    height: 100%;
}

.infoCenterCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 38px 80px rgba(30, 9, 22, 0.16);
}

.infoCenterCard:hover::before {
    opacity: 1;
}

.infoCenterCardHead {
    display: flex;
    align-items: center;
}

.infoCenterCardIcon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #5A0235, #7a1a4d);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 18px 40px rgba(90, 2, 53, 0.28);
    flex-shrink: 0;
}

.infoCenterCardLabel {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #7c6d75;
    margin-bottom: 0;
    font-family: 'Open Sans', sans-serif;
}

.infoCenterCardTitle {
    font-size: 1.45rem;
    font-weight: 700;
    color: #1c0f17;
    margin-bottom: 0;
    font-family: 'Merriweather', serif;
}

.infoCenterCardText {
    color: #4a3f45;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0;
}

.infoCenterCardList {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.infoCenterCardList li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-family: 'Open Sans', sans-serif;
    color: #2f1f2a;
}

.infoCenterCardList i {
    color: var(--mainColor);
    font-size: 1rem;
    line-height: 1;
    margin-top: 0.15rem;
}

.infoCenterCardBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 999px;
    padding: 0.65rem 1.9rem;
    border: 1px solid rgba(90, 2, 53, 0.18);
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #4a1430;
    background: linear-gradient(135deg, #ffffff, #fff7fb);
    box-shadow: 0 12px 25px rgba(90, 2, 53, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    text-decoration: none;
}

.infoCenterCardBtn:hover {
    transform: translateY(-2px);
    color: #5A0235;
    box-shadow: 0 16px 30px rgba(90, 2, 53, 0.25);
}

.infoCenterSocialLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.infoCenterSocialLinks a {
    font-weight: 600;
    color: #2d52c3;
    border-bottom: 2px solid rgba(45, 82, 195, 0.25);
    padding-bottom: 0.15rem;
    font-family: 'Open Sans', sans-serif;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.infoCenterSocialLinks a:hover {
    color: var(--mainColor);
    border-color: var(--mainColor);
}

@media (max-width: 991.98px) {
    .infoCenterCard .card-body {
        padding: 1.9rem;
    }

    .infoCenterCardTitle {
        font-size: 1.3rem;
    }

    .infoCenterCardIcon {
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }
}

@media (max-width: 575.98px) {
    .infoCenterCard .card-body {
        padding: 1.6rem;
    }

    .infoCenterCardList {
        gap: 0.45rem;
    }
}

.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: #5b0f2b;
}

.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));
}

.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;
}

/* News and Blog Section */
.newsBlogSection {
    padding: 80px 20px 160px;
    background: #ffffff;
}

.newsBlogContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.newsBlogHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.newsBlogHeading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    margin: 0;
}

.newsBlogAccent {
    color: #5b0f2b;
    font-weight: 700;
}

.newsBlogViewAllBtn {
    background-color: #5b0f2b;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.newsBlogViewAllBtn:hover {
    background-color: #7a1a4d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 15, 43, 0.3);
}

.newsBlogGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Featured Blog Card - Left Side */
.newsBlogFeatured {
    grid-column: 1;
}

.newsBlogCard {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.newsBlogFeaturedImg {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.newsBlogDateBadge {
    position: absolute;
    top: 280px;
    left: 32px;
    background: #5b0f2b;
    color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(91, 15, 43, 0.3);
    z-index: 2;
}

.newsBlogCardContent {
    padding: 48px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.newsBlogCardTitle {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.newsBlogCardText {
    font-family: Arial, 'Helvetica Neue', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 24px 0;
    flex: 1;
}

.newsBlogReadMore {
    color: #5b0f2b;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsBlogReadMore:hover {
    color: #7a1a4d;
    gap: 12px;
}

.newsBlogReadMore i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.newsBlogReadMore:hover i {
    transform: translateX(4px);
}

/* Blog List - Right Side */
.newsBlogList {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.newsBlogSmallCard {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: row;
    transition: all 0.3s ease;
}

.newsBlogSmallCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.newsBlogSmallImg {
    width: 200px;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    flex-shrink: 0;
}

.newsBlogSmallContent {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.newsBlogSmallTitle {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.newsBlogSmallReadMore {
    color: #5b0f2b;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsBlogSmallReadMore:hover {
    color: #7a1a4d;
    gap: 12px;
}

.newsBlogSmallReadMore i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.newsBlogSmallReadMore:hover i {
    transform: translateX(4px);
}

.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, #FFD25D 0%, #FFD25D 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;
}

/* RMCET Hero Section */
.rmcetHeroSection {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px 0 120px;
}

.rmcetHeroImage {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.rmcetHeroOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 210, 93, 0.25) 14.51%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.rmcetHeroContent {
    position: relative;
    z-index: 3;
    color: #000000;
    margin-top: -238px;
}

.rmcetHeroTitle {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #3b0b23;
    font-family: Georgia, 'Times New Roman', serif;
    text-transform: none;
}

.rmcetAccent {
    color: #5A0235;
    font-weight: 900;
}

.rmcetHeroSubtitle {
    font-family: Arial, 'Helvetica Neue', sans-serif;
    font-size: 1.15rem;
    color: #333333;
    max-width: 700px;
    margin: 0 auto;
}

.rmcetPrimaryBtn {
    display: inline-block;
    padding: 14px 35px;
    background: #5A0235;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    border: 2px solid #5A0235;
}

.rmcetPrimaryBtn:hover {
    background: #7a1a4d;
    color: white;
    border-color: #7a1a4d;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(90, 2, 53, 0.3);
}

.rmcetSecondaryBtn {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #5A0235;
    border-radius: 12px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    border: 2px solid #5A0235;
}

.rmcetSecondaryBtn:hover {
    background: #5A0235;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(90, 2, 53, 0.3);
}

/* Section Styles */
.sectionHeading {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #333;
}

.sectionSubheading {
    font-size: 1.1rem;
    color: #666;
    font-family: "Open Sans", sans-serif;
}

/* About RMCET Section - Hero Style Layout */
.aboutRmcetSection {
    background: #ffffff;
    padding: 36px 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.aboutRmcetContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.aboutRmcetRow {
    display: flex;
    align-items: center;
    gap: 24px;
}

.aboutRmcetImageColumn {
    flex: 0 0 48%;
    max-width: 48%;
}

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

.aboutRmcetContentColumn {
    flex: 0 0 52%;
    max-width: 52%;
}

.aboutRmcetContentWrap {
    padding-left: 36px;
    padding-right: 12px;
    padding-top: 6px;
    box-sizing: border-box;
}

.aboutRmcetHeadingRow {
    margin-left: -258px;
    margin-top: -57px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.aboutRmcetAccentBar {
    width: 10px;
    height: 72px;
    background-color: #5b0f2b;
    margin-right: 18px;
    display: inline-block;
    flex-shrink: 0;
    border-radius: 2px;
}

.aboutRmcetHeading {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.02;
    color: #3b0b23;
    margin: 0;
    white-space: pre-line;
}

.aboutRmcetParagraph {
    font-family: Arial, 'Helvetica Neue', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 14px;
}

.aboutRmcetParagraph:last-of-type {
    margin-bottom: 20px;
}

.aboutRmcetButton {
    background-color: #5b0f2b;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.aboutRmcetButton:hover {
    background-color: #7a1a4d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 15, 43, 0.3);
}

/* New About Details */
.aboutDetailSection {
    background: #fff5f3;
    padding-bottom: 80px;
}

.aboutDetailCard {
    background: #ffffff;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(90, 2, 53, 0.12);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.aboutDetailMedia img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
}

.aboutDetailCard h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 26px;
    color: #3b0b23;
    margin-bottom: 10px;
}

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

.aboutDetailCard ul li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #4d4d4d;
}

.aboutDetailCard ul li i {
    color: #5b0f2b;
    margin-right: 8px;
}

.principalDeskCard {
    background: #ffffff;
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 26px 60px rgba(90, 2, 53, 0.12);
    border: 1px solid #f0d5e3;
    position: relative;
    overflow: hidden;
}

.presidentDeskCard {
    background: #fff;
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 26px 60px rgba(90, 2, 53, 0.12);
    border: 1px solid #f0d5e3;
    position: relative;
    overflow: hidden;
}

.presidentProfile {
    background: linear-gradient(180deg, rgba(90, 2, 53, 0.08), rgba(90, 2, 53, 0.02));
    border: 1px solid #f3dbe9;
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
}

.presidentAvatar img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(90, 2, 53, 0.18);
}

.presidentBadge {
    background: #FFD25D;
    color: #3b0b23;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.presidentRole {
    color: #555555;
    font-size: 14px;
}

.presidentMessage {
    color: #3f3f3f;
}

.presidentHeading {
    color: #3b0b23;
    font-size: 26px;
    font-weight: 800;
}

.presidentHighlight {
    background: #fff5f3;
    border: 1px dashed #e5bfd6;
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.presidentHighlight h6 {
    color: #5A0235;
    font-weight: 700;
}

.presidentLink {
    color: #5A0235;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
}

.presidentLink:hover {
    color: #7a1a4d;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .presidentDeskCard {
        padding: 20px;
    }

    .presidentProfile {
        text-align: center;
    }
}

.principalDeskCard::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 210, 93, 0.35), rgba(90, 2, 53, 0.08));
    filter: blur(6px);
    pointer-events: none;
}

.principalProfile {
    background: linear-gradient(180deg, rgba(90, 2, 53, 0.08), rgba(90, 2, 53, 0.02));
    border: 1px solid #f3dbe9;
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
}

.principalAvatar img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(90, 2, 53, 0.18);
}

.principalBadge {
    background: #FFD25D;
    color: #3b0b23;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.principalRole {
    color: #555555;
    font-size: 14px;
}

.principalMessage {
    color: #3f3f3f;
}

.principalTag {
    background: rgba(90, 2, 53, 0.08);
    color: #5A0235;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.principalHeading {
    color: #3b0b23;
    font-size: 26px;
    font-weight: 800;
}

.principalHighlight {
    background: #fff5f3;
    border: 1px dashed #e5bfd6;
    border-radius: 16px;
    padding: 14px 16px;
}

.principalHighlight h6 {
    color: #5A0235;
    font-weight: 700;
}

.principalHighlight p,
.principalHighlight ul li {
    color: #3f3f3f;
    font-size: 14px;
    line-height: 1.6;
}

.principalHighlight ul li i {
    color: #198754;
    margin-top: 3px;
}

.principalLinkCard {
    background: #ffffff;
    border: 1px solid #f0d5e3;
    border-radius: 20px;
    padding: 16px 18px;
    box-shadow: 0 18px 40px rgba(90, 2, 53, 0.08);
}

.principalLinkHeading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3b0b23;
    font-weight: 800;
    margin-bottom: 10px;
}

.principalLinkHeading i {
    color: #5A0235;
}

.principalLinkList {
    display: grid;
    gap: 10px;
}

.principalLink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(90, 2, 53, 0.06);
    color: #5A0235;
    font-weight: 700;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.principalLink:hover {
    color: #7a1a4d;
    background: #fff5f3;
    border-color: #e7c9d8;
    transform: translateY(-1px);
}

.principalPill {
    background: #ffffff;
    border: 1px solid #e7c9d8;
}

@media (max-width: 991px) {
    .principalDeskCard {
        padding: 20px;
    }

    .principalProfile {
        text-align: center;
    }

    .principalProfile .rmcetPrimaryBtn,
    .principalProfile .rmcetSecondaryBtn {
        width: 100%;
        justify-content: center;
    }
}

.leadershipMessagesSection .messageCard {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.leadershipMessagesSection .messageMedia img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 16px;
    border-radius: 18px;
}

.leadershipMessagesSection h4 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    color: #3b0b23;
    margin-bottom: 12px;
}

.leadershipMessagesSection p {
    color: #4f4f4f;
    line-height: 1.6;
}

.statutorySection,
.committeeSection {
    background: #ffffff;
    padding-bottom: 80px;
}

.cellCard,
.committeeCard {
    background: #fff6fd;
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    min-height: 220px;
    border: 1px solid rgba(91, 15, 43, 0.1);
    transition: all 0.3s ease;
}

.cellCard:hover,
.committeeCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(91, 15, 43, 0.12);
}

.cellCard i {
    font-size: 28px;
    color: #5b0f2b;
    margin-bottom: 12px;
}

.cellCard h5,
.committeeCard h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 18px;
}

.cellCard p,
.committeeCard p {
    color: #4b4b4b;
    font-size: 14px;
    line-height: 1.6;
}

/* Why Choose RMCET Section */
.whyChooseSection {
    background: #F5F5F5;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.whyChooseBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img2.0/Mane-International-School-Ratnagiri-Image-1 6.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.03;
    z-index: 1;
}

.whyChooseSection .container {
    z-index: 2;
}

.whyChooseHeading {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: #000000;
    margin-bottom: 20px;
}

.whyChooseAccent {
    color: #5A0235;
}

.whyChooseSubheading {
    font-size: 1.1rem;
    color: #333333;
    font-family: "Open Sans", sans-serif;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.whyChooseCarouselWrapper {
    position: relative;
    margin-top: 50px;
}

.whyChooseArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #5A0235;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.whyChooseArrowPrev {
    left: -25px;
}

.whyChooseArrowNext {
    right: -25px;
}

.whyChooseArrow:hover {
    background: #7a1a4d;
    transform: translateY(-50%) scale(1.1);
}

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

.whyChooseCarouselWrapper .row {
    flex-wrap: nowrap;
    /* Prevent flex centering from clipping first/last cards when content overflows */
    justify-content: flex-start !important;

    /* Keep slider behavior (JS uses scrollLeft) and avoid edge clipping */
    overflow-x: auto;
    overflow-y: visible;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    margin: 0;

    /* Hide scrollbar (Firefox + WebKit) */
    scrollbar-width: none;
}

.whyChooseCarouselWrapper .row>[class*="col-"] {
    padding: 0;
    flex: 0 0 calc((100% - 3rem) / 3);
    max-width: calc((100% - 3rem) / 3);
    scroll-snap-align: start;
}

.whyChooseCarouselWrapper .row::-webkit-scrollbar {
    display: none;
}

.whyChooseCard {
    background: white;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.whyChooseCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(90, 2, 53, 0.15);
}

.whyVideoEmbed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
}

.whyVideoEmbed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.whyChooseIcon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #5A0235, #7a1a4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(90, 2, 53, 0.2);
}

.whyChooseCardTitle {
    font-size: 1.35rem;
    font-weight: 700;
    color: #5A0235;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whyChooseCardText {
    font-size: 0.95rem;
    color: #666666;
    font-family: "Open Sans", sans-serif;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.whyChooseLearnMore {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    color: #5A0235;
    border: 2px solid #5A0235;
    border-radius: 12px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whyChooseLearnMore:hover {
    background: #5A0235;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 2, 53, 0.3);
}

.whyChooseDots {
    margin-top: 40px;
}

.whyChooseDot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(90, 2, 53, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whyChooseDot.active {
    background: #5A0235;
    width: 35px;
    border-radius: 6px;
}

.whyChooseDot:hover {
    background: #5A0235;
}

/* Admissions Snapshot Section */
.admissionsSection {
    background: white;
    padding: 80px 0;
}

.admissionsHeading {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: #000000;
    margin-bottom: 20px;
}

.admissionsAccent {
    color: #5A0235;
}

.admissionCard {
    background: linear-gradient(135deg, #FFD88F 0%, #FFC85A 100%);
    border-radius: 25px;
    padding: 0;
    position: relative;
    min-height: 200px;
    transition: all 0.3s ease;
    overflow: visible;
    box-shadow: 0 5px 20px rgba(255, 200, 90, 0.3);
}

.admissionCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 200, 90, 0.4);
}

.admissionIconCircle {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.admissionIcon {
    font-size: 3rem;
    color: #5A0235;
}

.admissionContent {
    padding: 70px 30px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.admissionTitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    font-family: "Playfair Display", serif;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.admissionTitle sup {
    font-size: 0.8rem;
    font-weight: 600;
}

.admissionArrow {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5A0235;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.admissionArrow:hover {
    background: #5A0235;
    color: white;
    transform: scale(1.1);
}

/* Department Cards */
.departmentCard {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.departmentCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(90, 2, 53, 0.15);
}

.departmentIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5A0235, #7a1a4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
}

.departmentTitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

.departmentText {
    font-size: 0.95rem;
    color: #666;
    font-family: "Open Sans", sans-serif;
    margin: 0;
}

/* RMCET Departments Section */
.rmcetDepartmentsSection {
    background: white;
    padding: 80px 0;
}

.rmcetDeptHeading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #5A0235;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
}

.rmcetDeptCard {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.rmcetDeptCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(90, 2, 53, 0.2);
}

.rmcetDeptImageWrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.rmcetDeptContent {
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
}

.rmcetDeptIcon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5A0235, #7a1a4d);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.rmcetDeptTitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    font-family: "Playfair Display", serif;
    margin: 0;
    line-height: 1.3;
}

.rmcetDeptDots {
    margin-top: 40px;
}

.rmcetDepartmentsSection .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.rmcetDepartmentsSection .row::-webkit-scrollbar {
    display: none;
}

.rmcetDepartmentsSection .row>[class*="col-"] {
    flex: 0 0 32%;
    max-width: 32%;
    scroll-snap-align: start;
}

.rmcetDeptDot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(90, 2, 53, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.rmcetDeptDot.active {
    background: #5A0235;
    width: 35px;
    border-radius: 6px;
}

.rmcetDeptDot:hover {
    background: #5A0235;
}

/* Career and Placement Section */
.careerPlacementSection {
    background: linear-gradient(135deg, #FFD88F 0%, #FFC85A 100%);
    padding: 80px 0;
}

.careerPlacementHeading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
}

.careerPlacementCard {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.careerPlacementCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.careerPlacementIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5A0235, #7a1a4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.careerPlacementContent {
    flex: 1;
    padding-top: 5px;
}

.careerPlacementTitle {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000000;
    font-family: "Playfair Display", serif;
    margin-bottom: 12px;
    line-height: 1.3;
}

.careerPlacementText {
    font-size: 1rem;
    color: #333333;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* Life @ RMCET Section */
.lifeRmcetSection {
    background: #F5F5F5;
    padding: 80px 0;
}

.lifeRmcetHeading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
}

.lifeRmcetAt {
    color: #666666;
    font-style: italic;
    font-weight: 400;
}

.lifeRmcetAccent {
    color: #5A0235;
}

.lifeRmcetSubheading {
    font-size: 1.05rem;
    color: #333333;
    font-family: "Open Sans", sans-serif;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.lifeRmcetTabs {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.lifeRmcetTab {
    padding: 14px 45px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    font-size: 1.05rem;
    background: white;
    color: #000000;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lifeRmcetTab.active {
    background: #5A0235;
    color: white;
    box-shadow: 0 4px 15px rgba(90, 2, 53, 0.3);
}

.lifeRmcetTab:hover:not(.active) {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.lifeRmcetContent {
    position: relative;
}

.lifeRmcetGallery {
    display: block;
}

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

.lifeRmcetCard {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 300px;
}

.lifeRmcetCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.lifeRmcetDots {
    margin-top: 40px;
}

.lifeRmcetDot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(90, 2, 53, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.lifeRmcetDot.active {
    background: #5A0235;
    width: 35px;
    border-radius: 6px;
}

.lifeRmcetDot:hover {
    background: #5A0235;
}


/* Facility Cards */
.facilityCard {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #5A0235;
    transition: all 0.3s ease;
}

.facilityCard:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(90, 2, 53, 0.1);
    transform: translateX(5px);
}

.facilityIcon {
    width: 60px;
    height: 60px;
    background: #5A0235;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
}

.facilityTitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.facilityText {
    font-size: 0.95rem;
    color: #666;
    font-family: "Open Sans", sans-serif;
    margin: 0;
}

/* RMCET Accreditation Section */
.rmcetAccreditationSection {
    background: linear-gradient(180deg, #FFE8A3 0%, #ffd88f29 100%);
    padding: 60px 0;
}

.rmcetAccreditCard {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.rmcetAccreditCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.rmcetAccreditLogo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    padding: 10px;
}

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

.rmcetAccreditContent {
    flex: 1;
    min-width: 0;
}

.rmcetAccreditTitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.rmcetAccreditText {
    font-size: 0.95rem;
    color: #333333;
    margin: 0;
    line-height: 1.6;
    font-family: "Open Sans", sans-serif;
    word-break: break-word;
}

.rmcetAccreditDots {
    margin-top: 30px;
}

.rmcetAccreditDot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.rmcetAccreditDot.active {
    background: #5A0235;
    width: 30px;
    border-radius: 6px;
}

.rmcetAccreditDot:hover {
    background: #5A0235;
}


.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;
}

/* Updates â€¢ Notices â€¢ Circulars â€¢ News & Events Section */
.updatesSection {
    background: #FFF8F0;
    padding: 80px 0;
    position: relative;
}

.updatesHeading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    line-height: 1.3;
}

.updatesAmpersand {
    font-style: italic;
}

.updatesSubheading {
    font-size: 1.05rem;
    color: #333333;
    font-family: "Open Sans", sans-serif;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.updatesTabs {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.updatesTab {
    padding: 14px 45px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    font-size: 1.05rem;
    background: white;
    color: #000000;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.updatesTab.active {
    background: #FF9800;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.updatesTab:hover:not(.active) {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.updatesContent {
    position: relative;
}

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

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

.updatesCard {
    background: white;
    border-radius: 15px;
    padding: 0px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.updatesCard::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #FF9800;
}

.updatesCard:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.15);
}

.updatesDate {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 6px;
    background: #FFF8F0;
    border-radius: 10px;
    border: 2px solid #FFE0B2;
}

.updatesDay {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    font-family: "Playfair Display", serif;
    line-height: 1;
}

.updatesMonth {
    font-size: 1rem;
    font-weight: 600;
    color: #666666;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
}

.updatesCardContent {
    flex: 1;
}

.updatesCardTitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    font-family: "Playfair Display", serif;
    margin-bottom: 8px;
}

.updatesCardText {
    font-size: 0.95rem;
    color: #666666;
    font-family: "Open Sans", sans-serif;
    margin: 0;
}

.updatesViewAllBtn {
    display: inline-block;
    padding: 14px 50px;
    background: transparent;
    color: #5a0235;
    border: 2px solid #5a0235;
    border-radius: 12px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.updatesViewAllBtn:hover {
    background: #5b0f2b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.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;

    .info-card {
        position: relative;
        background: #ffffff;
        border-radius: 28px;
        border: none;
        padding: 2.1rem;
        box-shadow: 0 25px 50px rgba(90, 2, 53, 0.12);
        transition: transform 0.35s ease, box-shadow 0.35s ease;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        height: 100%;
    }

    .info-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(135deg, rgba(90, 2, 53, 0.08), rgba(255, 210, 93, 0.08));
        opacity: 0;
        transition: opacity 0.35s ease;
        z-index: 0;
    }

    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 35px 65px rgba(90, 2, 53, 0.2);
    }

    .info-card:hover::before {
        opacity: 1;
    }

    .info-card>* {
        position: relative;
        z-index: 1;
    }

    .info-card-meta {
        align-items: center;
    }

    .info-card-heading {
        flex: 1;
    }

    .info-card-label {
        font-size: 0.78rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-weight: 700;
        color: #7b6571;
        font-family: 'Open Sans', sans-serif;
    }

    .info-card-title {
        font-size: 1.5rem;
        color: #200815;
        font-weight: 700;
    }

    .info-card-text {
        color: #4a3f45;
        font-family: 'Open Sans', sans-serif;
        margin-bottom: 0;
    }

    .info-card-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        background: linear-gradient(135deg, #5A0235, #7a1a4d);
        color: #fff;
        font-size: 1.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 18px 35px rgba(90, 2, 53, 0.35);
    }

    .info-card .text-uppercase {
        letter-spacing: 0.08em;
        font-weight: 700;
        color: #5c4f56 !important;
    }

    .info-card-list span {
        color: #3e2e38;
        font-weight: 600;
    }

    .info-card-list li {
        border-radius: 14px;
        padding: 0.45rem 0.5rem;
        transition: background 0.25s ease, color 0.25s ease;
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .info-card-list i {
        color: var(--mainColor);
        font-size: 1.05rem;
        line-height: 1;
    }

    .info-card-list li:hover span {
        color: var(--mainColor);
    }

    .info-card-list li:hover {
        background: rgba(90, 2, 53, 0.07);
    }

    .info-card-link {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-weight: 700;
        color: var(--mainColor);
        position: relative;
        text-decoration: none;
        padding: 0.2rem 0.35rem;
        z-index: 1;
    }

    .info-card-link::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(90, 2, 53, 0.12);
        border-radius: 999px;
        z-index: -1;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .info-card-link:hover::before,
    .info-card-link:focus-visible::before {
        opacity: 1;
        transform: translateY(1px) scale(1.05);
    }

    .info-card-link i {
        font-size: 1rem;
    }

    .info-card-btn {
        border-radius: 999px;
        border: none;
        background: linear-gradient(135deg, #5A0235, #7a1a4d);
        color: #ffffff;
        font-size: 0.96rem;
        font-weight: 600;
        padding: 0.55rem 1.8rem;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        box-shadow: 0 18px 30px rgba(90, 2, 53, 0.25);
        transition: transform 0.2s ease, box-shadow 0.25s ease;
    }

    .info-card-btn:hover,
    .info-card-btn:focus-visible {
        transform: translateY(-2px);
        box-shadow: 0 22px 35px rgba(90, 2, 53, 0.32);
        color: #ffffff;
        text-decoration: none;
    }

    .info-pill {
        border-radius: 999px;
        background: rgba(90, 2, 53, 0.08);
        padding: 0.4rem 1.1rem;
        font-size: 0.92rem;
        font-weight: 600;
        color: var(--mainColor);
        transition: all 0.25s ease;
    }

    .info-pill:hover {
        background: linear-gradient(135deg, #5A0235, #7a1a4d);
        color: #ffffff;
        border-color: transparent;
    }

    @media (max-width: 991.98px) {
        .info-card {
            padding: 1.6rem;
        }

        .info-card-title {
            font-size: 1.35rem;
        }

        .info-card-icon {
            width: 56px;
            height: 56px;
        }
    }

    @media (max-width: 575.98px) {
        .info-card {
            padding: 1.4rem;
        }

        .info-card-label {
            letter-spacing: 0.08em;
        }
    }

    .facilities-card-img {
        width: 290px;
        height: 290px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
    }

    .facilities-card-img-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 200px;
        padding: 1.4rem;
        height: 100%;
    }

    .facilities-card-img-wrapper img {
        box-shadow: 0 20px 40px rgba(90, 2, 53, 0.15);
    }

    @media (max-width: 991px) {
        .facilities-card-img {
            width: 140px;
            height: 140px;
        }
    }

    @media (max-width: 767px) {
        .info-card {
            padding: 1.5rem;
        }
    }

    justify-content: center;
    padding: 12px 26px;
    border-radius: 12px;
    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;
    padding: 0;
    margin: 0;
    width: 100%;
}

.chooseMisTrack {
    display: flex;
    gap: 0;
    transition: transform 0.45s ease;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.chooseMisSlide {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    display: flex;
    margin: 0;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.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, rgba(255, 210, 93, 0.18) 0%, #fffdf7 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(90, 2, 53, 0.08);
    color: var(--mainColor);
    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: #1f0f18;
    margin: 1.5rem 0 1rem;
    font-family: 'Poppins', sans-serif;
}

.aboutHeroText {
    font-size: 1rem;
    color: #4a3c43;
    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: var(--mainColor);
    color: #ffffff !important;
    box-shadow: 0 15px 35px rgba(90, 2, 53, 0.25);
}

.aboutHeroPrimary:hover {
    background: #ffc107 !important;
    color: #ffffff !important;
}

.aboutHeroSecondary {
    border: 2px solid rgba(90, 2, 53, 0.25);
    color: var(--mainColor);
}

.aboutHeroSecondary:hover {
    border-color: var(--mainColor);
    color: #ffffff;
    background: var(--mainColor);
}

.aboutHeroStatsCard {
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(90, 2, 53, 0.12);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    height: 100%;
}

.aboutHeroStatsValue {
    font-size: clamp(1.2rem, 4.5vw, 1.65rem);
    /* Responsive text size */
    font-weight: 800;
    color: #2b021a;
    font-family: 'Poppins', sans-serif;
    word-wrap: break-word;
    /* Prevent overflow on small mobiles */
    hyphens: auto;
}

.aboutHeroStatsLabel {
    font-size: 0.88rem;
    color: #5b4a52;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.aboutHeroMedia {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(90, 2, 53, 0.18);
}

.aboutHeroMedia img {
    display: block;
    width: 100%;
    height: auto;
}

.aboutHeroMediaBadge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 210, 93, 0.2);
    backdrop-filter: blur(6px);
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    color: var(--mainColor);
    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%, #fff6e6 100%);
}

.aboutStoryImage {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(90, 2, 53, 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: var(--mainColor);
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 12px 30px rgba(90, 2, 53, 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: var(--mainColor);
}

.aboutSectionLabel::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--mainColor);
    display: inline-block;
}

.aboutSectionHeading {
    font-size: clamp(1.9rem, 2.5vw + 1rem, 2.8rem);
    font-weight: 700;
    color: #1f0f18;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.aboutSectionText {
    font-size: 1rem;
    color: #4a3c43;
    font-family: 'Open Sans', sans-serif;
}

.aboutStoryList li {
    font-family: 'Open Sans', sans-serif;
    color: #4b3f45;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.aboutStoryList i {
    color: var(--mainColor);
    font-size: 1rem;
}

.aboutPillarsSection {
    background: #ffffff;
}

.aboutPillarCard {
    background: linear-gradient(180deg, #ffffff 0%, #fff5ec 100%);
    border-radius: 26px;
    padding: 2.5rem 2rem;
    box-shadow: 0 18px 45px rgba(90, 2, 53, 0.12);
    height: 100%;
}

.aboutPillarCard h5 {
    font-weight: 700;
    color: #1f0f18;
    margin-bottom: 1rem;
}

.aboutPillarCard p {
    color: #4b3f45;
    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(90, 2, 53, 0.08);
}

.aboutPillarIcon img {
    max-width: 100%;
    height: auto;
}

.aboutPillarIconMission {
    background: rgba(90, 2, 53, 0.08);
}

.aboutPillarIconVision {
    background: rgba(255, 210, 93, 0.25);
}

.aboutPillarIconValues {
    background: rgba(122, 26, 77, 0.12);
}

.aboutPillarList li {
    color: #4b3f45;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.aboutPillarList i {
    color: var(--yellowColor);
}

.aboutPillarCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(90, 2, 53, 0.18);
}

.aboutLeadershipSection {
    background: linear-gradient(180deg, rgba(255, 210, 93, 0.12) 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(90, 2, 53, 0.2);
}

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

.aboutLeadershipBadge,
.aboutLeadershipRole {
    position: absolute;
    margin-left: -43px;
    left: 10%;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(90, 2, 53, 0.18);
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: var(--mainColor);
    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: #321421;
}

.aboutLeadershipCard {
    background: #ffffff;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 22px 60px rgba(90, 2, 53, 0.15);
}

.aboutLeadershipTitle {
    font-weight: 700;
    font-size: 1.8rem;
    margin: 1rem 0;
    color: #1f0f18;
}

.aboutLeadershipText {
    color: #4b3f45;
    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: var(--mainColor);
    font-weight: 600;
}

.aboutLeadershipDesignation {
    color: #5b4a52;
    font-weight: 500;
}

.aboutGoverningSection {
    background: #ffffff;
}

.aboutGoverningCard {
    background: #fff8ef;
    border-radius: 24px;
    padding: 2.2rem 1.5rem;
    box-shadow: 0 15px 40px rgba(90, 2, 53, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aboutGoverningCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(90, 2, 53, 0.18);
}

.aboutGoverningAvatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    box-shadow: 0 12px 28px rgba(90, 2, 53, 0.2);
}

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

.aboutGoverningName {
    font-weight: 700;
    color: #1f0f18;
    margin-bottom: 0.4rem;
}

.aboutGoverningRole {
    color: var(--mainColor);
    font-weight: 600;
    margin-bottom: 0;
}

.aboutTimelineSection {
    background: linear-gradient(180deg, rgba(255, 210, 93, 0.12) 0%, #ffffff 100%);
}

.aboutTimelineBackdrop {
    position: absolute;
    left: -120px;
    bottom: -160px;
    width: 520px;
    opacity: 0.18;
    pointer-events: none;
}

.aboutTimelineWrap {
    position: relative;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.aboutTimelineLine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(90, 2, 53, 0.2) 0%, rgba(90, 2, 53, 0.05) 100%);
    transform: translateX(-50%);
}

.aboutTimelineItem {
    position: relative;
    width: 50%;
    padding: 1.8rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 22px 45px rgba(90, 2, 53, 0.12);
}

.aboutTimelineItem:nth-child(odd) {
    margin-left: auto;
    transform: translateY(10px);
}

.aboutTimelineItem:nth-child(even) {
    margin-right: auto;
    transform: translateY(-10px);
}

.aboutTimelineItem::before {
    content: "";
    position: absolute;
    top: 22px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 4px solid var(--timeline-accent, var(--mainColor));
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(90, 2, 53, 0.12);
}

.aboutTimelineItem:nth-child(even)::before {
    right: -9px;
}

.aboutTimelineItem:nth-child(odd)::before {
    left: -9px;
}

.aboutTimelineYear {
    display: inline-block;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--timeline-accent, var(--mainColor));
    margin-bottom: 0.6rem;
}

.aboutTimelineTitle {
    font-weight: 700;
    color: #1f0f18;
    margin-bottom: 0.4rem;
}

.aboutTimelineText {
    color: #4b3f45;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0;
}

.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;
}

.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;
}

/* Students Page Theme Overrides */
.studentsPageContent .bg-primary,
.studentsPageContent .bg-success,
.studentsPageContent .bg-danger,
.studentsPageContent .bg-info {
    background: linear-gradient(135deg, #5A0235 0%, #7a1a4d 100%) !important;
    color: #ffffff !important;
}

.studentsPageContent .bg-warning {
    background: linear-gradient(135deg, #FFD25D 0%, #FFB347 100%) !important;
    color: #5A0235 !important;
}

.studentsPageContent .bg-success-subtle {
    background: rgba(90, 2, 53, 0.07) !important;
    color: var(--mainColor) !important;
}

.studentsPageContent .bg-warning-subtle {
    background: rgba(255, 210, 93, 0.25) !important;
    color: #a35a00 !important;
}

.studentsPageContent .text-success,
.studentsPageContent .text-info,
.studentsPageContent .text-danger,
.studentsPageContent .text-primary {
    color: var(--mainColor) !important;
}

.studentsPageContent .text-warning {
    color: #c77700 !important;
}

.studentsPageContent .btn-primary {
    background: linear-gradient(135deg, #5A0235 0%, #7a1a4d 100%);
    border-color: transparent;
    box-shadow: 0 16px 30px rgba(90, 2, 53, 0.3);
}

.studentsPageContent .btn-primary:hover,
.studentsPageContent .btn-primary:focus-visible {
    background: var(--secondaryColor);
    color: #ffffff;
}

.studentsPageContent .btn-outline-success,
.studentsPageContent .btn-outline-warning,
.studentsPageContent .btn-outline-info {
    border-color: var(--mainColor);
    color: var(--mainColor);
}

.studentsPageContent .btn-outline-success:hover,
.studentsPageContent .btn-outline-warning:hover,
.studentsPageContent .btn-outline-info:hover,
.studentsPageContent .btn-outline-success:focus-visible,
.studentsPageContent .btn-outline-warning:focus-visible,
.studentsPageContent .btn-outline-info:focus-visible {
    background: var(--mainColor);
    border-color: var(--mainColor);
    color: #ffffff;
}

.studentsPageContent .btn-light {
    color: var(--mainColor);
}

/* Grievance Page Theme Overrides */
.grievancePageContent {
    background: linear-gradient(180deg, rgba(255, 210, 93, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.grievancePageContent .card {
    border-radius: 22px;
    border: none;
    box-shadow: 0 20px 45px rgba(90, 2, 53, 0.12);
}

.grievancePageContent .card-title {
    color: #1f0f18;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

.grievancePageContent .card-text,
.grievancePageContent p,
.grievancePageContent li {
    color: #4b3f45;
    font-family: 'Open Sans', sans-serif;
}

.grievancePageContent .text-primary,
.grievancePageContent .link-dark,
.grievancePageContent a {
    color: #000;
}

.grievancePageContent .card a:hover,
.grievancePageContent .card a:focus-visible {
    color: var(--secondaryColor);
}

.grievancePageContent .table thead {
    background: rgba(255, 210, 93, 0.35);
    color: #1f0f18;
    border-color: transparent;
}

.grievancePageContent .table tbody tr:nth-child(even) {
    background: rgba(255, 210, 93, 0.08);
}

.grievancePageContent .badge,
.grievancePageContent .aboutHeroPrimary,
.grievancePageContent .aboutHeroSecondary {
    box-shadow: 0 16px 35px rgba(90, 2, 53, 0.2);
}

/* Information Center Theme Overrides */
.infoCenterPageContent {
    background: linear-gradient(180deg, rgba(255, 210, 93, 0.05) 0%, #ffffff 100%);
}

.infoCenterPageContent .card {
    border-radius: 22px;
    border: none;
    box-shadow: 0 20px 45px rgba(90, 2, 53, 0.12);
}

.infoCenterPageContent .info-pill,
.infoCenterPageContent .aboutHeroPrimary,
.infoCenterPageContent .aboutHeroSecondary {
    box-shadow: 0 16px 35px rgba(90, 2, 53, 0.2);
}

.infoCenterPageContent .info-pill {
    background: rgba(255, 255, 255, 0.9);
}

.infoCenterPageContent .text-success,
.infoCenterPageContent .text-secondary,
.infoCenterPageContent .text-primary {
    color: var(--mainColor) !important;
}

.infoCenterPageContent .badge.bg-secondary-subtle {
    background: rgba(255, 210, 93, 0.25) !important;
    color: var(--mainColor) !important;
    border: 1px solid rgba(90, 2, 53, 0.15);
}

.infoCenterPageContent .btn-outline-primary {
    border-color: var(--mainColor);
    color: var(--mainColor);
    border-radius: 999px;
}

.infoCenterPageContent .btn-outline-primary:hover,
.infoCenterPageContent .btn-outline-primary:focus-visible {
    background: var(--mainColor);
    color: #ffffff;
}

.infoCenterPageContent .list-group-item {
    border-color: rgba(90, 2, 53, 0.1);
    font-family: 'Open Sans', sans-serif;
    padding-left: 0;
    padding-right: 0;
}

.infoCenterPageContent .list-group-item a {
    color: var(--mainColor);
}

.infoCenterPageContent .list-group-item:hover {
    background: rgba(255, 210, 93, 0.08);
}

.infoCenterPageContent #important-portals .d-block {
    border: 1px solid rgba(90, 2, 53, 0.15) !important;
    border-radius: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infoCenterPageContent #important-portals .d-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(90, 2, 53, 0.12);
}

.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: #ffffff;
    padding: 80px 0;
}

.testimonialsHeading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #5A0235;
    margin-bottom: 2rem;
    position: relative;
}

.testimonialsImageBox {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.testimonialsImage {
    margin-left: -149px;
    width: 120%;
    height: auto;
    border-radius: 15px;
}

.testimonialCard {
    background: #ffffff;
    background-image: url('../img2.0/Subtract.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    border-radius: 0;
    padding: 60px 50px 120px;
    position: relative;
    box-shadow: none;
    min-height: 500px;
}

.testimonialCardSvg {
    background-image: url('../img2.0/2.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.testimonialQuoteTop {
    position: absolute;
    top: 15px;
    left: 50px;
    z-index: 10;
}

.testimonialQuoteTop .testimonialQuoteIcon {
    margin-top: -51px;
    margin-right: -50px;
    margin-left: 53px;
    width: 50px;
    height: auto;
}

.testimonialQuoteBottom {
    position: absolute;
    bottom: 80px;
    right: 50px;
    z-index: 10;
}

.testimonialQuoteBottom .testimonialQuoteIcon {
    margin-right: 255px;
    margin-bottom: -9px;
    width: 50px;
    height: auto;
}

.testimonialPagination {
    position: absolute;
    left: 50px;
    right: 50px;
    bottom: 27px;
}

.testimonialNavButtons {
    justify-content: center;
}

.testimonialContent {
    padding: 34px 0;
}

.testimonialTitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.testimonialText {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #000000;
    line-height: 1.8;
    text-align: justify;
}

.testimonialPagination {
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.testimonialPageNumbers {
    margin-left: 60px;
    display: flex;
    align-items: center;
    gap: 3.1rem;
}

.testimonialCurrentPage {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}

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

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

.testimonialNavButtons {
    display: flex;
    gap: 0.5rem;
}

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

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

.testimonialPrevBtn:hover {
    background: #AAAAAA;
    transform: scale(1.05);
}

.testimonialNextBtn {
    background: #5A0235;
    color: #ffffff;
}

.testimonialNextBtn:hover {
    background: #7a1a4d;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(90, 2, 53, 0.3);
}

/* Testimonials Responsive */
@media (max-width: 991px) {
    .testimonialCard {
        padding: 50px 35px 35px;
    }

    .testimonialsImageBox {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

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

    .testimonialCard {
        padding: 40px 25px 30px;
    }

    .testimonialQuoteTop .testimonialQuoteIcon,
    .testimonialQuoteBottom .testimonialQuoteIcon {
        width: 45px;
    }

    .testimonialTitle {
        font-size: 1.1rem;
    }

    .testimonialText {
        font-size: 0.95rem;
    }
}

/* 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: 10rem;
}

.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: #fdf8ef !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;
}

.subscriberForm {
    background: #ffffff;
    border-radius: 999px;
    padding: 8px;
    gap: 12px;
    box-shadow: 0 25px 55px rgba(90, 2, 53, 0.15);
}

.subscriberInput {
    border-radius: 999px;
    padding: 12px 20px;
    background: transparent;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: #212529;
    min-width: 220px;
}

.subscriberInput::placeholder {
    color: #8a8a8a;
}

.subscriberInput:focus {
    box-shadow: none;
    background: transparent;
}

.btnSubscribe {
    background: linear-gradient(135deg, #5A0235 0%, #7a1a4d 100%);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    padding: 12px 38px;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(90, 2, 53, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-family: "Poppins", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}

.btnSubscribe::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.btnSubscribe:hover,
.btnSubscribe:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 25px 45px rgba(90, 2, 53, 0.45);
    color: #fff;
}

.btnSubscribe:active {
    transform: translateY(0);
    box-shadow: 0 15px 25px rgba(90, 2, 53, 0.35);
}

@media (max-width: 575.98px) {
    .subscriberForm {
        border-radius: 28px;
        flex-direction: column;
        align-items: stretch !important;
    }

    .subscriberInput {
        min-width: auto;
    }

    .btnSubscribe {
        width: 100%;
        justify-content: center;
    }
}

.footerYellow {
    top: -16rem;
}

/* ========================================
   COMPREHENSIVE RESPONSIVE STYLES
   ======================================== */

/* Extra Large Devices (Large Desktops, 1200px and up) */
@media (max-width: 1399.98px) {
    .rmcetHeroTitle {
        font-size: 3.5rem;
    }

    .aboutRmcetContent {
        padding-left: 2rem;
    }
}

/* Large Devices (Desktops, 992px and up) */
@media (max-width: 1199.98px) {
    .rmcetHeroTitle {
        font-size: 3.2rem;
    }

    .rmcetHeroSubtitle {
        font-size: 1.05rem;
    }

    .aboutRmcetHeading {
        font-size: 2.5rem;
    }

    .whyChooseHeading {
        font-size: 2.5rem;
    }

    .departmentsHeading {
        font-size: 2.5rem;
    }

    .careerHeading {
        font-size: 2.5rem;
    }

    .lifeRmcetHeading {
        font-size: 2.5rem;
    }

    .testimonialsHeading {
        font-size: 2.5rem;
    }

    .newsBlogHeading {
        font-size: 42px;
    }

    .newsBlogViewAllBtn {
        padding: 12px 32px;
    }

    .newsBlogGrid {
        gap: 26px;
    }
}

/* Medium Devices (Tablets, 768px and up) */
@media (max-width: 991.98px) {

    /* Hero Section */
    .rmcetHeroSection {
        min-height: 550px;
        padding: 30px 0 100px;
    }

    .rmcetHeroContent {
        margin-top: -60px;
    }

    .rmcetHeroTitle {
        font-size: 2.8rem;
    }

    .rmcetHeroSubtitle {
        font-size: 1rem;
    }

    .rmcetPrimaryBtn,
    .rmcetSecondaryBtn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    /* Accreditation Section */
    .rmcetAccreditCard {
        margin-bottom: 1.5rem;
    }

    /* About Section - Responsive */
    .aboutRmcetRow {
        flex-direction: column;
    }

    .aboutRmcetImageColumn,
    .aboutRmcetContentColumn {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .aboutRmcetImageColumn {
        margin-bottom: 2rem;
    }

    .aboutRmcetContentWrap {
        padding-left: 12px;
        padding-right: 12px;
    }

    .aboutRmcetHeading {
        font-size: 30px;
    }

    .aboutRmcetAccentBar {
        height: 60px;
        margin-right: 14px;
    }

    /* News and Blog Section - Responsive */
    .newsBlogGrid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .newsBlogFeatured,
    .newsBlogList {
        grid-column: 1;
    }

    .newsBlogHeading {
        font-size: 36px;
    }

    .newsBlogSmallImg {
        width: 160px;
        min-height: 160px;
    }

    .newsBlogSection {
        padding: 60px 24px 110px;
    }

    .newsBlogHeader {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .newsBlogViewAllBtn {
        align-self: flex-start;
    }

    /* Why Choose Section */
    .whyChooseHeading {
        font-size: 2.2rem;
    }

    .whyChooseCarouselWrapper .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 1rem 1rem;
        scroll-padding: 0 1rem;
    }

    .whyChooseCarouselWrapper .row>[class*="col-"] {
        padding: 0;
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
        scroll-snap-align: start;
    }

    .whyChooseCard {
        margin: 0 auto 1.5rem;
        width: 92%;
    }

    /* Admissions Snapshot */
    .circleDive {
        width: 100px;
        height: 100px;
    }

    .circleDive img {
        width: 50px !important;
    }

    /* Updates Section */
    .updatesHeading {
        font-size: 2.2rem;
    }

    .updatesTabs {
        flex-wrap: nowrap;
        justify-content: center;
    }

    /* Departments Section */
    .departmentsHeading {
        font-size: 2.2rem;
    }

    .departmentCard {
        margin-bottom: 1.5rem;
    }

    /* Career Section */
    .careerHeading {
        font-size: 2.2rem;
    }

    .careerStatCard {
        margin-bottom: 1.5rem;
    }

    /* Life @ RMCET */
    .lifeRmcetHeading {
        font-size: 2.2rem;
    }

    .lifeRmcetTab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Testimonials */
    .testimonialsHeading {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .testimonialsImageBox {
        margin-bottom: 2rem;
    }

    .testimonialCard {
        padding: 50px 35px 35px;
    }

    footer {
        padding-top: 6rem;
    }

    .footerYellow {
        position: static !important;
        margin-bottom: 2.5rem;
    }
}

/* Small Devices (Landscape Phones, 576px and up) */
@media (max-width: 767.98px) {

    /* Hero Section */
    .rmcetHeroSection {
        min-height: 480px;
        padding: 20px 0 80px;
    }

    .rmcetHeroContent {
        margin-top: -40px;
    }

    .rmcetHeroTitle {
        font-size: 2.2rem;
    }

    .rmcetHeroSubtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem !important;
    }

    .rmcetPrimaryBtn,
    .rmcetSecondaryBtn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .rmcetHeroButtons {
        flex-direction: row;
        flex-wrap: nowrap;
        width: auto;
        gap: 0.85rem !important;
    }

    .rmcetHeroButtons a {
        flex: 1 1 auto;
        min-width: 140px;
        max-width: 170px;
        width: auto;
        text-align: center;
        white-space: nowrap;
    }

    .rmcetDepartmentsSection .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        padding: 0 1.25rem 1rem;
        scroll-padding: 0 1.25rem;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .rmcetDepartmentsSection .row::-webkit-scrollbar {
        display: none;
    }

    .rmcetDepartmentsSection .row>[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
        scroll-snap-align: center;
    }

    .rmcetDeptCard {
        margin-inline: auto;
        width: 92%;
    }

    .rmcetDeptDots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }

    .lifeRmcetGallery .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .lifeRmcetGallery .row::-webkit-scrollbar {
        display: none;
    }

    .lifeRmcetGallery .row>[class*="col-"] {
        flex: 0 0 90%;
        max-width: 90%;
        scroll-snap-align: center;
    }

    footer .ms-0.ms-md-5 {
        margin-left: 0 !important;
        text-align: center;
    }

    footer .ms-0.ms-md-5>.d-flex {
        justify-content: center;
        flex-wrap: wrap;
    }

    footer .footerNav {
        text-align: center;
    }

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

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

    .updatesTabs {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
    }

    .updatesTab {
        flex: 1 1 0;
        padding: 10px 12px;
        font-size: 0.85rem;
        text-align: center;
    }

    /* Accreditation Section */
    .rmcetAccreditationSection {
        padding: 3rem 0;
    }

    .rmcetAccreditCard {
        padding: 2rem 1.5rem;
    }

    .rmcetAccreditationSection .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .rmcetAccreditationSection .row::-webkit-scrollbar {
        display: none;
    }

    .rmcetAccreditationSection .col-lg-4,
    .rmcetAccreditationSection .col-md-6 {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
    }

    .rmcetAccreditDots {
        display: none;
    }

    .rmcetAccreditLogo img {
        max-height: 60px;
    }

    .rmcetAccreditTitle {
        font-size: 1.1rem;
    }

    /* About Section - Mobile */
    .aboutRmcetSection {
        padding: 24px 20px;
    }

    .aboutRmcetHeading {
        font-size: 22px;
        line-height: 1.1;
    }

    .aboutRmcetAccentBar {
        width: 8px;
        height: 50px;
        margin-right: 12px;
    }

    .aboutRmcetParagraph {
        font-size: 13px;
    }

    .aboutRmcetButton {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    /* News and Blog Section - Mobile */
    .newsBlogSection {
        padding: 40px 16px 100px;
    }

    .newsBlogHeader {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 32px;
    }

    .newsBlogHeading {
        font-size: 28px;
    }

    .newsBlogViewAllBtn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .newsBlogFeaturedImg {
        height: 240px;
    }

    .newsBlogCardContent {
        padding: 40px 20px 20px;
    }

    .newsBlogCardTitle {
        font-size: 22px;
    }

    .newsBlogCardText {
        font-size: 14px;
    }

    .newsBlogSmallCard {
        flex-direction: column;
    }

    .newsBlogSmallImg {
        width: 100%;
        height: 200px;
        min-height: 200px;
    }

    .newsBlogSmallContent {
        padding: 20px;
    }

    .newsBlogSmallTitle {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .newsBlogDateBadge {
        top: 210px;
        left: 20px;
        width: 60px;
        height: 60px;
        font-size: 12px;
    }

    /* Why Choose Section */
    .whyChooseSection {
        padding: 3rem 0;
    }

    .whyChooseHeading {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .whyChooseCard {
        padding: 1.5rem;
    }

    .whyChooseIcon {
        width: 50px;
        height: 50px;
    }

    .whyChooseTitle {
        font-size: 1.1rem;
    }

    /* Admissions Snapshot */
    .admissionsSection {
        padding: 3rem 0;
    }

    .circleDive {
        width: 90px;
        height: 90px;
    }

    .circleDive img {
        width: 45px !important;
    }

    .circleDiveBG .card-body {
        padding: 3rem 1.5rem 1.5rem;
    }

    .circleDiveBG p {
        font-size: 1rem;
    }

    /* Updates Section */
    .updatesSection {
        padding: 3rem 0;
    }

    .updatesHeading {
        font-size: 1.8rem;
    }

    .updatesTabs {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .updatesTab {
        padding: 10px 18px;
        font-size: 0.85rem;
        flex: 1 1 auto;
        min-width: 0;
        text-align: center;
    }

    .updatesCard {
        flex-direction: column;
    }

    .updatesDate {
        margin-top: 12px;
        width: 40%;
        margin-bottom: 1rem;
    }

    .updatesContent {
        width: 100%;
    }

    /* Departments Section */
    .departmentsSection {
        padding: 3rem 0;
    }

    .departmentsHeading {
        font-size: 1.8rem;
    }

    .departmentCard {
        min-height: auto;
    }

    .departmentImage {
        height: 200px;
    }

    .departmentTitle {
        font-size: 1.1rem;
    }

    /* Career Section */
    .careerSection {
        padding: 3rem 0;
    }

    .careerHeading {
        font-size: 1.8rem;
    }

    .careerStatNumber {
        font-size: 2rem;
    }

    .careerStatLabel {
        font-size: 0.9rem;
    }

    /* Life @ RMCET */
    .lifeRmcetSection {
        padding: 3rem 0;
    }

    .lifeRmcetHeading {
        font-size: 1.8rem;
    }

    .lifeRmcetTabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .lifeRmcetTab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .lifeRmcetCard {
        height: 250px;
    }

    /* Testimonials */
    .testimonialsSection {
        padding: 3rem 0;
    }

    .testimonialsHeading {
        font-size: 1.8rem;
    }

    .testimonialCard {
        padding: 40px 25px 30px;
        min-height: auto;
    }

    .testimonialQuoteTop .testimonialQuoteIcon,
    .testimonialQuoteBottom .testimonialQuoteIcon {
        width: 40px;
    }

    .testimonialTitle {
        font-size: 1.1rem;
    }

    .testimonialText {
        font-size: 0.95rem;
    }

    .testimonialNavBtn {
        width: 40px;
        height: 40px;
    }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {

    /* Hero Section */
    .rmcetHeroSection {
        min-height: 420px;
        padding: 15px 0 60px;
    }

    .rmcetHeroContent {
        margin-top: -112px;
    }

    .rmcetHeroTitle {
        font-size: 1.8rem;
    }

    .rmcetHeroSubtitle {
        font-size: 0.9rem;
    }

    .rmcetPrimaryBtn,
    .rmcetSecondaryBtn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    /* Accreditation Section */
    .rmcetAccreditationSection {
        padding: 2rem 0;
    }

    .rmcetAccreditCard {
        padding: 0.3rem 0rem;
    }

    .rmcetAccreditLogo img {
        max-height: 85px;
    }

    .rmcetAccreditTitle {
        font-size: 1rem;
    }

    .rmcetAccreditText {
        font-size: 0.85rem;
    }

    /* About Section - Extra Small */

    .accreditationMarquee {
        display: block;
        overflow: hidden;
        white-space: normal;
        /* allow text inside marquee to wrap instead of spilling out */
    }

    .accreditationMarquee .row {
        flex-wrap: nowrap;
        width: max-content;
        margin-left: 0;
        margin-right: 0;
        overflow: visible !important;
    }

    .accreditationMarquee .row>[class*="col-"] {
        flex: 0 0 320px;
        max-width: 320px;
    }

    @media (max-width: 576px) {
        .accreditationMarquee .row>[class*="col-"] {
            flex-basis: 260px;
            max-width: 260px;
        }
    }

    .aboutRmcetSection {
        padding: 20px 15px;
    }

    .aboutRmcetHeading {
        margin-left: 239px;
        font-size: 20px;
    }

    .aboutRmcetAccentBar {
        width: 6px;
        height: 45px;
        margin-right: 10px;
    }

    .aboutRmcetParagraph {
        font-size: 12px;
        line-height: 1.6;
    }

    .aboutRmcetButton {
        font-size: 13px;
        padding: 11px 18px;
    }

    /* News and Blog Section - Extra Small */
    .newsBlogSection {
        padding: 30px 12px 80px;
    }

    .newsBlogHeading {
        font-size: 24px;
    }

    .newsBlogViewAllBtn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .newsBlogFeaturedImg {
        height: 200px;
    }

    .newsBlogCardContent {
        padding: 36px 16px 16px;
    }

    .newsBlogCardTitle {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .newsBlogCardText {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .newsBlogSmallImg {
        height: 180px;
        min-height: 180px;
    }

    .newsBlogSmallContent {
        padding: 16px;
    }

    .newsBlogSmallTitle {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .newsBlogDateBadge {
        top: 170px;
        left: 16px;
        width: 55px;
        height: 55px;
        font-size: 11px;
    }

    /* Why Choose Section */
    .whyChooseSection {
        padding: 2rem 0;
    }

    .whyChooseHeading {
        font-size: 1.5rem;
    }

    .whyChooseCard {
        padding: 1.2rem;
    }

    .whyChooseIcon {
        width: 45px;
        height: 45px;
    }

    .whyChooseTitle {
        font-size: 1rem;
    }

    .whyChooseText {
        font-size: 0.85rem;
    }

    /* Admissions Snapshot */
    .admissionsSection {
        padding: 2rem 0;
    }

    .circleDive {
        width: 80px;
        height: 80px;
    }

    .circleDive img {
        width: 40px !important;
    }

    .circleDiveBG .card-body {
        padding: 2.5rem 1rem 1rem;
    }

    .circleDiveBG p {
        font-size: 0.9rem;
    }

    .arrowCircle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Updates Section */
    .updatesSection {
        padding: 2rem 0;
    }

    .updatesHeading {
        font-size: 1.5rem;
    }

    .updatesTabs {
        gap: 0.3rem;
        flex-wrap: nowrap;
        width: 100%;
        justify-content: center;
    }

    .updatesTab {
        padding: 8px 12px;
        font-size: 0.8rem;
        flex: 1 1 0;
        min-width: 0;
        text-align: center;
    }

    .updatesDate {
        padding: 0.8rem;
    }

    .updatesDateDay {
        font-size: 1.5rem;
    }

    .updatesDateMonth {
        font-size: 0.75rem;
    }

    .updatesTitle {
        font-size: 1rem;
    }

    .updatesDescription {
        font-size: 0.85rem;
    }

    /* Departments Section */
    .departmentsSection {
        padding: 2rem 0;
    }

    .departmentsHeading {
        font-size: 1.5rem;
    }

    .departmentImage {
        height: 180px;
    }

    .departmentBadge {
        width: 50px;
        height: 50px;
    }

    .departmentBadge i {
        font-size: 1.2rem;
    }

    .departmentTitle {
        font-size: 1rem;
    }

    /* Career Section */
    .careerSection {
        padding: 2rem 0;
    }

    .careerHeading {
        font-size: 1.5rem;
    }

    .careerStatCard {
        padding: 1.5rem;
    }

    .careerStatNumber {
        font-size: 1.8rem;
    }

    .careerStatLabel {
        font-size: 0.85rem;
    }

    /* Life @ RMCET */
    .lifeRmcetSection {
        padding: 2rem 0;
    }

    .lifeRmcetHeading {
        font-size: 1.5rem;
    }

    .lifeRmcetTabs {
        gap: 0.3rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }

    .lifeRmcetTab {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

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

    .lifeRmcetCard {
        height: 220px;
    }

    .lifeRmcetDot {
        width: 10px;
        height: 10px;
    }

    .lifeRmcetDot.active {
        width: 28px;
    }

    /* Testimonials */
    .testimonialsSection {
        padding: 2rem 0;
    }

    .testimonialsHeading {
        font-size: 1.5rem;
    }

    .testimonialCard {
        padding: 42px 13px 100px;
    }

    .testimonialQuoteTop {
        top: 10px;
        left: 30px;
    }

    .testimonialQuoteBottom {
        bottom: 70px;
        right: 30px;
    }

    .testimonialQuoteTop .testimonialQuoteIcon,
    .testimonialQuoteBottom .testimonialQuoteIcon {
        width: 35px;
    }

    .testimonialTitle {
        font-size: 1rem;
    }

    .testimonialText {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonialNavBtn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    footer {
        padding-top: 4rem;
    }

    .footerYellow {
        margin-bottom: 2rem;
    }
}

/* Very Small Devices (less than 400px) */
@media (max-width: 399.98px) {
    .rmcetHeroTitle {
        font-size: 1.6rem;
    }

    .rmcetHeroSubtitle {
        font-size: 0.85rem;
    }

    .aboutRmcetHeading,
    .whyChooseHeading,
    .departmentsHeading,
    .careerHeading,
    .lifeRmcetHeading,
    .testimonialsHeading {
        font-size: 1.3rem;
    }

    .circleDiveBG p {
        font-size: 0.85rem;
    }

    .updatesTab {
        padding: 6px 8px;
        font-size: 0.75rem;
        flex: 1 1 0;
        min-width: 0;
    }

    .lifeRmcetTab {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .testimonialCard {
        padding: 30px 15px 20px;
    }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .rmcetHeroSection {
        min-height: 350px;
        padding: 15px 0 50px;
    }

    .rmcetHeroContent {
        margin-top: -20px;
    }

    .rmcetHeroTitle {
        font-size: 1.8rem;
        margin-bottom: 1rem !important;
    }

    .rmcetHeroSubtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
    }
}

/* Print Styles */
@media print {

    .rmcetHeroSection,
    .rmcetAccreditationSection,
    .whyChooseSection,
    .admissionsSection,
    .updatesSection,
    .departmentsSection,
    .careerSection,
    .lifeRmcetSection,
    .testimonialsSection {
        page-break-inside: avoid;
    }

    .rmcetPrimaryBtn,
    .rmcetSecondaryBtn,
    .arrowCircle,
    .testimonialNavBtn,
    .lifeRmcetTab {
        display: none;
    }
}

/* ==================== STUDENTS PAGE STYLES ==================== */

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(90, 2, 53, 0.15) !important;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--mainColor) 0%, #7a1a4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Card Styles */
.student-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(90, 2, 53, 0.1);
}

.student-card:hover {
    border-color: var(--mainColor);
    box-shadow: 0 16px 32px rgba(90, 2, 53, 0.2);
}

/* Icon Circles with Gradient */
.icon-circle-gradient {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mainColor) 0%, #7a1a4d 100%);
    position: relative;
    overflow: hidden;
}

.icon-circle-gradient::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
}

.icon-circle-gradient i {
    position: relative;
    z-index: 1;
    font-size: 2rem;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(90, 2, 53, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(90, 2, 53, 0);
    }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Badge Styles */
.badge-custom {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Quick Access Cards */
.quick-access-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.quick-access-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.quick-access-card:hover::before {
    left: 100%;
}

/* Section Title Underline */
.section-title-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--mainColor) 0%, var(--yellowColor) 100%);
    border-radius: 2px;
}

/* Facility Card Image Overlay */
.facility-image-overlay {
    position: relative;
    overflow: hidden;
}

.facility-image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 2, 53, 0.7) 0%, rgba(90, 2, 53, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.facility-image-overlay:hover::after {
    opacity: 1;
}

/* Notice Card Animation */
.notice-card {
    position: relative;
    transition: all 0.3s ease;
}

.notice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--mainColor);
    transition: height 0.3s ease;
}

.notice-card:hover::before {
    height: 100%;
}

/* Resource Card Hover Effect */
.resource-card {
    position: relative;
    overflow: hidden;
}

.resource-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--mainColor) 0%, var(--yellowColor) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.resource-card:hover::after {
    transform: scaleX(1);
}

/* Examination Section Styles */
.exam-document-card {
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.exam-document-card:hover {
    border-left-color: #198754;
    background: rgba(25, 135, 84, 0.05);
}

/* Support Link Hover */
.support-link {
    position: relative;
    transition: all 0.3s ease;
}

.support-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(90, 2, 53, 0.1) 0%, transparent 100%);
    transition: width 0.3s ease;
    border-radius: 8px;
}

.support-link:hover::before {
    width: 100%;
}

.support-link:hover {
    padding-left: 12px;
}

/* Stats Badge Animation */
.stats-badge {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.rmcetHeroStats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Gradient Background Sections */
.gradient-section-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.gradient-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(90,2,53,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

/* Button Enhancements */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-enhanced:hover::before {
    width: 300px;
    height: 300px;
}

/* Image Zoom on Hover */
.img-zoom-hover {
    overflow: hidden;
    border-radius: 16px;
}

.img-zoom-hover img {
    transition: transform 0.5s ease;
}

.img-zoom-hover:hover img {
    transform: scale(1.1);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--mainColor) 0%, #7a1a4d 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--mainColor);
}

/* Loading Skeleton */
@keyframes skeleton-loading {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 0px, #e0e0e0 40px, #f0f0f0 80px);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s infinite;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hover-lift:hover {
        transform: translateY(-4px);
    }

    .icon-circle-gradient {
        width: 60px;
        height: 60px;
    }

    .icon-circle-gradient i {
        font-size: 1.5rem;
    }
}

/* Accessibility Improvements */
.focus-visible:focus {
    outline: 3px solid var(--mainColor);
    outline-offset: 2px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .student-card {
        background: #1a1a1a;
        border-color: rgba(255, 255, 255, 0.1);
    }
}

body.apply-form-modal-open {
    overflow: hidden;
}

.applyFormModal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 9999;
}

.applyFormModal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.applyFormModalBackdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 15, 25, 0.78);
}

.applyFormModalDialog {
    position: relative;
    width: min(1060px, 100%);
    border-radius: 36px;
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.35s ease;
    z-index: 1;
}

.applyFormModal.is-visible .applyFormModalDialog {
    transform: translateY(0);
}

.applyFormCard {
    background: #fff;
    border-radius: 36px;
    box-shadow: 0 40px 120px rgba(12, 15, 25, 0.25);
    overflow: hidden;
    min-height: 540px;
}

.applyFormImageWrap {
    background: #f0f4ff;
    padding: 32px;
}

.applyFormImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 25px 65px rgba(15, 18, 30, 0.25);
}

.applyFormBody {
    background: linear-gradient(180deg, #fff, #f8f9ff 70%);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.applyFormHeader {
    border-bottom: 1px solid rgba(210, 214, 226, 0.8);
    padding-bottom: 18px;
}

.applyFormTitle {
    font-size: 2rem;
    font-weight: 600;
    color: #141c2c;
}

.applyFormSubtitle {
    color: #7b8194;
    font-size: 1rem;
}

.applyFormBody .form-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: #4d4f5c;
}

.applyFormBody .form-control {
    border-radius: 14px;
    border: 1px solid #d7d9e3;
    padding: 12px 16px;
    font-size: 0.95rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.applyFormBody .form-control:focus {
    border-color: #8db7ff;
    box-shadow: 0 0 0 3px rgba(141, 183, 255, 0.35);
}

.applyFormSubmit {
    border: none;
    border-radius: 18px;
    padding: 14px;
    font-weight: 600;
    font-size: 1rem;
    background: #5b0f2b;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 15px 35px rgba(29, 110, 216, 0.25);
}

.applyFormSubmit:hover {
    background: #115ab6;
    transform: translateY(-1px);
}

.applyFormClose {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    color: #1c2033;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(20, 24, 38, 0.15);
}

.applyFormClose:hover {
    background: #fff;
}

@media (max-width: 991.98px) {
    .applyFormImageWrap {
        display: none;
    }

    .applyFormBody {
        padding: 36px 28px 40px;
    }
}

@media (max-width: 575.98px) {
    .applyFormModalDialog {
        border-radius: 24px;
    }

    .applyFormBody {
        padding: 28px;
    }
}

/* Faculty Directory */
.facultyDirectorySection {
    background: linear-gradient(180deg, #fff, #f8f9ff 75%);
    position: relative;
}

.facultyFiltersWrap {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.facultyFilters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

.facultyFilters .nav-link {
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(12, 15, 25, 0.08);
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.6rem;
    color: #0c1121;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.facultyFilters .nav-link small {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(12, 17, 33, 0.55);
}

.facultyFilters .nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 45px rgba(12, 15, 25, 0.12);
    background: #fff;
    color: #0c1121;
}

.facultyFilters .nav-link:hover .facultyFilterIcon {
    background: rgba(91, 15, 43, 0.14);
    color: var(--mainColor);
}

.facultyFilters .nav-link.active {
    background: var(--mainColor) !important;
    color: #ffffff !important;
    box-shadow: 0 25px 45px rgba(91, 15, 43, 0.35);
}

.facultyFilters .nav-link.active:hover {
    background: #6a043a;
    color: #fff;
}

.facultyFilters .nav-link.active small {
    color: rgba(255, 255, 255, 0.75) !important;
}

.facultyFilters .nav-link.active .facultyFilterText {
    color: #ffffff !important;
}

.facultyFilterIcon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(91, 15, 43, 0.12);
    color: var(--mainColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.facultyFilters .nav-link.active .facultyFilterIcon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.facultyFilters .nav-link.active:hover .facultyFilterIcon {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.facultyTabContent {
    margin-top: 1.5rem;
}

.facultyDeptIntro {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(12, 15, 25, 0.08);
    background: #fff;
    box-shadow: 0 30px 70px rgba(12, 15, 25, 0.08);
}

.facultyDeptEyebrow {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--mainColor);
    margin-bottom: 0.35rem;
}

.facultyDeptTitle {
    font-size: 1.9rem;
    margin-bottom: 0.35rem;
}

.facultyDeptText {
    color: #566178;
    max-width: 560px;
}

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

.facultyDeptMetaItem {
    background: #f4f6ff;
    border-radius: 16px;
    padding: 0.85rem 1rem;
    text-align: center;
}

.facultyDeptMetaLabel {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #727a93;
    margin-bottom: 0.2rem;
}

.facultyDeptMetaValue {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0c1121;
}

.facultyCard {
    border-radius: 26px;
    border: 1px solid rgba(12, 15, 25, 0.08);
    background: #fff;
    box-shadow: 0 35px 60px rgba(12, 15, 25, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.facultyCardPhoto {
    position: relative;
    overflow: hidden;
    border-radius: 26px 26px 0 0;
}

.facultyCardPhoto img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    display: block;
}

.facultyRoleChip {
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 999px;
    background: rgba(91, 15, 43, 0.9);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.2rem 0.9rem;
}

.facultyCardBody {
    padding: 1.4rem 1.6rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.facultyCardName {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.facultyCardDesignation {
    color: #6c768f;
}

.facultyCardActions {
    margin-top: auto;
}

.facultyCardBtn {
    border-radius: 999px;
    padding: 0.65rem 1.4rem;
    background: rgba(91, 15, 43, 0.12);
    color: var(--mainColor);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.facultyCardBtn:hover {
    background: var(--mainColor);
    color: #fff;
    transform: translateY(-2px);
}

.facultyCardBtn-disabled {
    background: #edf0f9;
    color: #8b90a3;
    cursor: not-allowed;
}

.facultyEmptyState {
    border: 1px dashed rgba(91, 15, 43, 0.35);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    background: #fff;
    color: #657089;
}

@media (max-width: 1199.98px) {
    .facultyCardPhoto img {
        height: 260px;
    }
}

@media (max-width: 991.98px) {
    .facultyDeptIntro {
        flex-direction: column;
        text-align: center;
    }

    .facultyDeptMeta {
        width: 100%;
    }

    .facultyFilters {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .facultyFilters {
        justify-content: center;
    }

    .facultyCardBody {
        padding: 1.2rem 1.3rem 1.4rem;
    }

    .facultyCardPhoto img {
        height: 240px;
    }
}

@media (max-width: 575.98px) {
    .facultyFilters .nav-link {
        width: 100%;
        justify-content: flex-start;
    }

    .facultyCardPhoto img {
        height: 210px;
    }

    .facultyDeptTitle {
        font-size: 1.5rem;
    }
}

.pageFooterSpacer {
    height: 180px;
    width: 100%;
    display: block;
    background: transparent;
}

@media (max-width: 991px) {
    .pageFooterSpacer {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .pageFooterSpacer {
        height: 70px;
    }
}

/* Fix Testimonials Pagination Alignment on Desktop */
@media (min-width: 992px) {
    .testimonialPagination {
        justify-content: flex-end !important;
    }

    .testimonialPageNumbers {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
    }
}

/* Footer Link Hover Update */
.footer a:hover,
.footerLink:hover,
.footer-links li a:hover,
footer a:hover {
    color: #FFD25D !important;
}

/* specific footer override */
footer .normalHover:hover,
footer a.text-white:hover {
    color: #FFD25D !important;
}

/* ==================== INFO CARD & ICON CIRCLE STYLES ==================== */
.infoCard {
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    transition: all 0.3s ease;
}

.infoCard--outline {
    border: 1px solid #e2e8f0;
}

.infoCard--outline:hover {
    border-color: var(--mainColor);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.iconCircle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.iconCircle i {
    font-size: 1.5rem;
    color: #fff;
}

.iconCircle-sunrise {
    background: linear-gradient(135deg, #5b0f2b 0%, #7a1a4d 100%);
    box-shadow: 0 8px 20px rgba(255, 94, 98, 0.25);
}

/* Global Color Overrides for RMCET Theme */
:root {
    --bs-primary: #5f0d2f;
    /* Maroon */
    --bs-primary-rgb: 95, 13, 47;
    --bs-link-color: #5f0d2f;
    --bs-link-hover-color: #FFD700;
    /* Gold */
}

/* Bootstrap Component Overrides */
.text-primary {
    color: #5f0d2f !important;
}

.bg-primary {
    background-color: #5f0d2f !important;
}

.btn-primary {
    background-color: #5f0d2f;
    border-color: #5f0d2f;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: #7a1a4d;
    border-color: #FFD700;
    color: #FFD700;
}

.btn-outline-primary {
    color: #5f0d2f;
    border-color: #5f0d2f;
}

.btn-outline-primary:hover {
    background-color: #5f0d2f;
    color: #FFD700;
    border-color: #5f0d2f;
}

/* Common "Blue" overrides just in case */
.text-blue,
.bg-blue {
    color: #5f0d2f !important;
}

a:hover {
    color: #FFD700 !important;
    /* #FFD700 ye wala yelllow colour add karna hai  */
}

/* Restore Header Navigation Hover Color */
.navbar .nav-link:hover,
.navDropdown .dropdown-item:hover {
    color: var(--mainColor) !important;
}

/* Specific Hover Effects requested */
.hover-gold:hover {
    color: #FFD700 !important;
    transition: color 0.3s ease;
}

/* 
   --------------------------------------------------------------------------
   Mobile Responsive Tweaks (iPhone 12 Pro, Vivo Y100, etc.)
   Ensures layout matches Pixel 7 appearance on narrower screens (<420px)
   --------------------------------------------------------------------------
*/
@media (max-width: 420px) {

    /* --- Top Bar Optimization --- */
    .topBar {
        font-size: 11px !important;
        padding: 5px 0;
    }

    .topBarLink {
        font-size: 10px !important;
        gap: 4px;
        padding: 2px 4px;
    }

    .topBarLinks {
        column-gap: 8px !important;
        row-gap: 4px !important;
        justify-content: center;
    }

    /* Wrap content nicely if it exceeds width */
    .topBarLinks {
        display: flex;
        flex-wrap: wrap;
    }

    /* Center alignment for top bar contents */
    .topBar .container-fluid {
        justify-content: center !important;
        gap: 0.5rem !important;
        text-align: center;
    }

    .topBarContact {
        font-size: 10px !important;
        justify-content: center;
    }

    .topBarSocial {
        width: 24px !important;
        height: 24px !important;
        font-size: 11px !important;
    }


    /* --- Main Header / Navbar Optimization --- */
    .navbar {
        padding: 10px 0 !important;
    }

    /* Shrink logo slightly to fit narrower width */
    .navbarLogo {
        width: 48px !important;
        height: 48px !important;
    }

    /* Adjust Gap */
    .navbar-brand {
        gap: 0.5rem !important;
        margin-right: 0 !important;
        /* prevent pushing toggler out */
    }

    /* Scale down brand text */
    .navbarBrandTitle {
        font-size: 12px !important;
    }

    .navbarBrandSubtitle {
        font-size: 13px !important;
        line-height: 1.2;
    }

    /* Navbar Toggler Button adjustment */
    .navbar-toggler {
        padding: 4px 8px !important;
        font-size: 1rem !important;
    }

    /* Ensure container padding is minimal to maximize space */
    .navbar .container-fluid,
    .topBar .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* Strict TNP Theme Classes (User Requested) */
.btn-tnp-primary {
    background-color: #5f0d2f !important;
    border-color: #5f0d2f !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.btn-tnp-primary:hover,
.btn-tnp-primary:active,
.btn-tnp-primary:focus {
    background-color: #4a0a25 !important;
    /* Darker Maroon for contrast */
    border-color: #4a0a25 !important;
    color: #ffffff !important;
}

.btn-tnp-outline {
    background-color: transparent !important;
    border-color: #5f0d2f !important;
    color: #5f0d2f !important;
    transition: all 0.3s ease;
}

.btn-tnp-outline:hover,
.btn-tnp-outline:active,
.btn-tnp-outline:focus {
    background-color: #FFD700 !important;
    border-color: #FFD700 !important;
    color: #5f0d2f !important;
}

.text-tnp-gold {
    color: #FFD700 !important;
}

.text-tnp-gold:hover {
    color: #d4b100 !important;
}