:root {
    --brand-primary: #0b5ed7;
    --brand-primary-dark: #084298;
    --brand-accent: #00b4d8;
    --brand-dark: #0b132b;
    --brand-light: #f8fbff;
    --text-main: #101828;
    --text-soft: #5d6b82;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Google Sans", "Product Sans", sans-serif;
    color: var(--text-main);
    background: #f5f7fb;
}

p {
    text-align: justify;
}


.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    z-index: 9999;
}

.site-header {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(11, 19, 43, 0.08);
}

.sticky-nav-row {
    position: static;
}

.is-fixed-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 990;
}

.top-contact-bar {
    background: linear-gradient(100deg, #0b132b, #0b5ed7 58%, #00b4d8);
    color: #fff;
}

.top-contact-wrap {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 0.45rem 0;
}

.top-contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 22px;
}

.top-contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.top-contact-link:hover {
    color: #fff;
    opacity: 1;
}

.top-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.top-social-link:hover {
    background: #fff;
    color: var(--brand-primary);
    transform: translateY(-2px);
}

.brand-logo img {
    width: min(320px, 55vw);
    height: auto;
    object-fit: contain;
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    color: #1e3a8a;
}

.brand-subtitle {
    font-size: 0.87rem;
    color: var(--text-soft);
}

.admission-box .admission-text {
    font-size: 0.86rem;
    color: var(--text-soft);
    margin-bottom: 2px;
}

.apply-btn {
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    font-size: 0.86rem;
    padding: 0.42rem 1rem;
    font-weight: 600;
}

.apply-btn:hover {
    background: linear-gradient(90deg, #1d4ed8, #1e40af);
    color: #fff;
}

.menu-icon {
    color: var(--brand-dark);
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #eef2ff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.menu-icon i {
    font-size: 2rem;
}

.menu-icon:hover {
    background: #dbeafe !important;
}


.hero-banner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.35rem 1rem;
    background: #fff;
}

.hero-banner {
    width: min(70%, 1000px);
    margin: 0;
    display: block;
    max-height: 220px;
    object-fit: contain;
    padding: 0.4rem 0;
    flex: 0 1 auto;
}

.hero-banner-side-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-side-badge__image {
    width: min(128px, 10vw);
    height: auto;
    display: block;
    object-fit: contain;
}

.desktop-nav {
    background: linear-gradient(95deg, #0b5ed7, #084298);
    box-shadow: 0 10px 25px rgba(8, 66, 152, 0.35);
    padding: 0;
}

.mobile-header-bar {
    display: none;
    background: #ffffff;
    border-top: 1px solid #e8edf5;
    border-bottom: 1px solid #e8edf5;
}

.compact-toggle-bar {
    display: none;
    background: linear-gradient(95deg, #0b5ed7, #084298);
    box-shadow: 0 10px 25px rgba(8, 66, 152, 0.25);
}

.compact-toggle-wrap {
    min-height: 58px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    overflow: visible;
}

.compact-quick-menu {
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    overflow: visible;
}

.compact-item {
    flex: 0 0 auto;
    position: relative;
}

.compact-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.2px;
    padding: 0.7rem 0.6rem;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap;
}

.compact-link:hover,
.compact-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.compact-toggle-btn {
    grid-column: 3;
    justify-self: end;
    background: rgba(255, 255, 255, 0.14);
    flex: 0 0 auto;
}

.mobile-header-wrap {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0.4rem 0;
}

.mobile-banner-img {
    width: min(90%, 420px);
    max-height: 56px;
    object-fit: contain;
}

.desktop-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.desktop-menu .nav-item {
    width: auto;
}

.desktop-menu .nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem 0.72rem;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.desktop-menu .nav-link.active,
.desktop-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.desktop-menu .dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(2, 6, 23, 0.18);
    padding: 0.4rem;
}

.desktop-menu .dropdown-item {
    font-weight: 500;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.desktop-menu .dropdown-item.active {
    background: #2a5d96;
    color: #fff;
}

.desktop-menu .dropdown-item:hover,
.desktop-menu .dropdown-item:focus-visible {
    background: #255482;
    color: #fff;
}

.compact-toggle-bar .dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(2, 6, 23, 0.18);
    padding: 0.4rem;
    z-index: 1100;
    overflow: visible;
}

.compact-toggle-bar .dropdown-item {
    font-weight: 500;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.compact-toggle-bar .dropdown-item.active {
    background: #2a5d96;
    color: #fff;
}

.compact-toggle-bar .dropdown-item:hover,
.compact-toggle-bar .dropdown-item:focus-visible {
    background: #255482;
    color: #fff;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
}

.dropdown-submenu-menu {
    top: -0.35rem;
    left: calc(100% - 0.1rem);
    margin-top: 0;
    z-index: 1110;
}

.dropdown-submenu-menu.show {
    display: block;
}

.compact-toggle-bar .dropdown-submenu-menu {
    top: 0;
    left: calc(100% + 6px);
}

.compact-toggle-bar .dropdown-submenu {
    position: relative;
}

.desktop-menu .dropdown-submenu:hover > .dropdown-submenu-menu,
.compact-toggle-wrap .dropdown-submenu:hover > .dropdown-submenu-menu {
    display: block;
}

.nav-toggler {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 10px;
    padding: 0.35rem 0.5rem;
}

.nav-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.22);
}

.nav-toggler .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%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
    width: min(88vw, 390px) !important;
}

.mobile-offcanvas {
    background: #f8fbff;
}

.mobile-offcanvas .offcanvas-header {
    border-bottom: 1px solid #dbe7f8;
    background: linear-gradient(95deg, #0b5ed7, #084298);
    color: #fff;
}

.mobile-offcanvas .btn-close {
    filter: invert(1) brightness(100);
}

.mobile-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    display: block;
    border-radius: 8px;
}

.mobile-sublink {
    color: #334155;
    text-decoration: none;
    font-size: 0.94rem;
}

.mobile-subgroup + .mobile-subgroup {
    margin-top: 0.25rem;
}

.mobile-sublink-toggle {
    padding-right: 0.25rem;
}

.mobile-nested-link {
    font-size: 0.9rem;
    color: #475569;
}

.mobile-link.active,
.mobile-sublink.active {
    color: #1d4ed8;
    font-weight: 700;
}

.social-link {
    color: #334155;
}

.social-link:hover {
    color: #1d4ed8;
}

/* .home-main {
    padding-bottom: 92px;
} */

.home-hero-slider {
    width: 100%;
    margin: 0;
}

.home-banner-swiper {
    width: 100%;
    height: clamp(260px, 42vw, 460px);
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.home-banner-swiper img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: fill;
    display: block;
}

.home-banner-swiper .swiper-wrapper,
.home-banner-swiper .swiper-slide {
    height: 100%;
}

.home-banner-swiper .swiper-slide {
    display: flex;
    align-items: stretch;
}

.home-banner-swiper .swiper-slide.image-fluid img {
    object-fit: fill;
    background: transparent;
}

.home-banner-swiper .swiper-button-prev,
.home-banner-swiper .swiper-button-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.58);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition: all 0.2s ease;
}

.home-banner-swiper .swiper-button-prev:hover,
.home-banner-swiper .swiper-button-next:hover {
    background: rgba(11, 94, 215, 0.88);
}

.home-banner-swiper .swiper-button-prev::after,
.home-banner-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}



.home-about-section {
    background: #f2f5fb;
}

.about-media-card,
.about-years-card {
    aspect-ratio: 16 / 9;
}

.about-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-years-card {
    background: linear-gradient(145deg, #355fe2 0%, #1f43ba 55%, #15348f 100%);
}

.about-kicker {
    color: #2453c7;
    letter-spacing: 0.08em;
}

.about-title {
    color: #1e2f60;
}

.about-copy,
.about-points li {
    color: #4f5f7a;
}

.about-check {
    background: #2b55cf;
    color: #fff;
}

.about-btn {
    color: #fff;
    border: 0;
    background: linear-gradient(130deg, #2d5fe5, #1d42b8);
}

.about-btn:hover {
    color: #fff;
    background: linear-gradient(130deg, #234ac5, #17389f);
}

.inner-hero-section {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 0;
    isolation: isolate;
}

.inner-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.08);
    filter: blur(1px);
}

.inner-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.72), rgba(11, 94, 215, 0.52));
    z-index: 0;
}

.inner-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.inner-hero-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.inner-hero-title {
    font-weight: 800;
    margin-bottom: 22px;
}

@media (min-width: 992px) {
    .inner-hero-title {
        white-space: nowrap;
        font-size: clamp(2rem, 2.7vw, 3.05rem);
    }
}

.inner-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.inner-breadcrumb .breadcrumb-item,
.inner-breadcrumb .breadcrumb-item.active,
.inner-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.inner-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.inner-breadcrumb a:hover {
    color: #dbeafe;
}

.about-page-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.about-intro-wrap {
    margin-bottom: 36px;
}

.about-intro-wrap .row {
    align-items: stretch !important;
}

.about-page-image-stack {
    height: 100%;
    display: grid;
    grid-template-rows: 1.2fr 0.8fr;
    gap: 18px;
}

.about-page-image-card,
.about-purpose-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(11, 19, 43, 0.14);
    background: #fff;
}

.about-page-image-card img,
.about-purpose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.about-page-image-card-secondary {
    min-height: 0;
}

.about-page-image-card::after,
.about-purpose-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 35%;
    background: linear-gradient(180deg, rgba(11, 19, 43, 0), rgba(11, 19, 43, 0.18));
}

.about-page-content {
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.about-page-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #2453c7;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-page-title {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 18px;
    color: #1e2f60;
}

.about-page-content p {
    color: #4f5f7a;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-page-highlight {
    margin-top: 22px;
    padding: 18px 22px;
    border-left: 5px solid #2b55cf;
    border-radius: 18px;
    background: linear-gradient(135deg, #eef5ff, #f8fbff);
    color: #1e2f60;
    font-weight: 600;
}

.placement-mini-stat {
    padding: 24px 18px;
    border-radius: 24px;
    background: linear-gradient(145deg, #355fe2 0%, #1f43ba 55%, #15348f 100%);
    color: #fff;
    box-shadow: 0 22px 48px rgba(21, 52, 143, 0.22);
}

.placement-mini-stat__value {
    display: block;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
}

.placement-mini-stat__label {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.about-page-feature-list {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.about-feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 20px;
    border: 1px solid #e0e8f5;
    border-radius: 20px;
    background: #f8fbff;
}

.about-feature-icon,
.about-stat-icon,
.about-purpose-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon {
    background: #e7efff;
    color: #2453c7;
    font-size: 1.35rem;
}

.about-feature-card h3,
.about-purpose-card h3 {
    margin: 0 0 6px;
    color: #14213d;
    font-size: 1.2rem;
    font-weight: 800;
}

.about-feature-card p,
.about-purpose-card p,
.about-page-note {
    margin: 0;
    color: #4f5f7a;
    line-height: 1.85;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 8px 0 36px;
}

.about-stat-card {
    padding: 28px 18px;
    text-align: center;
    border: 1px solid #e1e8f3;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
}

.about-stat-icon {
    margin: 0 auto 20px;
    background: #edf2ff;
    color: #244bc5;
    font-size: 1.3rem;
}

.about-stat-label {
    display: block;
    margin-bottom: 10px;
    color: #50627f;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-stat-value {
    display: block;
    color: #162b63;
    font-size: clamp(1.9rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1;
}

.about-purpose-wrap {
    margin-bottom: 30px;
}

.about-purpose-stack {
    display: grid;
    gap: 22px;
}

.about-purpose-card {
    padding: 28px 30px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.about-purpose-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.about-purpose-icon {
    font-size: 1.5rem;
}

.about-purpose-icon--vision {
    background: #e8efff;
    color: #0f4ea8;
}

.about-purpose-icon--mission {
    background: #ffe8ec;
    color: #dc3545;
}

.about-page-note {
    padding: 24px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f7faff, #edf4ff);
    border: 1px solid #dce6f6;
}

.message-page-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.message-page-card {
    height: 100%;
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.message-page-title {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 800;
    margin-bottom: 18px;
    color: #1e2f60;
}

.message-page-card p {
    color: #4f5f7a;
    line-height: 1.85;
    margin-bottom: 16px;
}

.message-page-image-card {
    position: relative;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(11, 19, 43, 0.14);
}

.message-page-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.message-page-sign {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #dbe5f4;
}

.message-page-sign strong {
    display: block;
    color: #14213d;
    font-size: 1.15rem;
    font-weight: 800;
}

.message-page-sign span {
    display: block;
    margin-top: 4px;
    color: #2453c7;
    font-weight: 600;
}

.department-page-section {
    background: #f3f6fb;
}

.department-tabs-card {
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.department-tab-nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    background: #0d5aa1;
}

.department-tab-nav .nav-item {
    min-width: 0;
}

.department-tab-nav .nav-link {
    width: 100%;
    border: 0;
    border-radius: 0;
    padding: 1.35rem 1rem;
    color: #fff;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 86px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.department-tab-nav .nav-item:last-child .nav-link {
    border-right: 0;
}

.department-tab-nav .nav-link.active {
    color: #0f2d5e;
    background: #fff;
    box-shadow: inset 0 4px 0 #0d5aa1;
}

.department-tab-mobile-select {
    display: none;
    padding: 18px 18px 0;
    background: #fff;
}

.department-tab-mobile-select .dropdown {
    width: 100%;
}

.department-tab-mobile-toggle {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d5aa1, #0b4a85);
    color: #fff;
    padding: 0.9rem 1rem;
    box-shadow: 0 16px 34px rgba(13, 90, 161, 0.18);
}

.department-tab-mobile-toggle:hover,
.department-tab-mobile-toggle:focus,
.department-tab-mobile-toggle:active,
.department-tab-mobile-toggle.show {
    background: linear-gradient(135deg, #0d5aa1, #0b4a85);
    color: #fff;
    box-shadow: 0 18px 36px rgba(13, 90, 161, 0.22);
}

.department-tab-mobile-toggle::after {
    margin-left: auto;
}

.department-tab-mobile-toggle-inner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: calc(100% - 18px);
}

.department-tab-mobile-toggle-icon,
.department-tab-mobile-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
}

.department-tab-mobile-toggle-icon {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.department-tab-mobile-toggle-icon i,
.department-tab-mobile-toggle-icon svg,
.department-tab-mobile-item-icon i,
.department-tab-mobile-item-icon svg {
    font-size: 1rem;
}

.department-tab-mobile-toggle-label {
    text-align: left;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.department-tab-mobile-menu {
    width: 100%;
    margin-top: 10px !important;
    padding: 10px;
    border: 0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

.department-tab-mobile-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    color: #0f2d5e;
    font-size: 0.94rem;
    font-weight: 600;
}

.department-tab-mobile-item + .department-tab-mobile-item {
    margin-top: 4px;
}

.department-tab-mobile-item-icon {
    background: #edf4ff;
    color: #0d5aa1;
}

.department-tab-mobile-item-label {
    flex: 1;
    white-space: normal;
}

.department-tab-mobile-item:hover,
.department-tab-mobile-item:focus,
.department-tab-mobile-item.active {
    color: #0f2d5e;
    background: linear-gradient(135deg, #eef5ff, #f8fbff);
}

.department-tab-mobile-item.active .department-tab-mobile-item-icon,
.department-tab-mobile-item:hover .department-tab-mobile-item-icon,
.department-tab-mobile-item:focus .department-tab-mobile-item-icon {
    background: #0d5aa1;
    color: #fff;
}

.department-tab-content {
    padding: 42px 34px 36px;
    background:
        radial-gradient(circle at 78% 18%, rgba(13, 90, 161, 0.06) 0, rgba(13, 90, 161, 0.06) 18%, transparent 18.5%),
        radial-gradient(circle at 5% 100%, rgba(13, 90, 161, 0.04) 0, rgba(13, 90, 161, 0.04) 26%, transparent 26.5%),
        #f8fbff;
}

.department-copy h2 {
    margin-bottom: 22px;
    color: #0f2d5e;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
}

.department-copy h3 {
    margin: 28px 0 12px;
    color: #0f2d5e;
    font-size: 1.2rem;
    font-weight: 700;
}

.department-copy p {
    color: #4b5d78;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.department-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.department-gallery-card {
    overflow: hidden;
    border-radius: 18px;
    margin: 0;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
    background: #fff;
}

.department-gallery-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.department-table-block,
.department-list-card {
    margin-top: 28px;
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.department-table-block h3,
.department-list-card h3 {
    margin-bottom: 16px;
    color: #0f2d5e;
    font-size: 1.18rem;
    font-weight: 800;
}

.department-table-wrap {
    overflow-x: auto;
}

.department-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.department-table th,
.department-table td {
    padding: 14px 16px;
    border: 1px solid #dbe6f4;
    color: #495a74;
    font-size: 0.96rem;
    text-align: left;
    vertical-align: top;
}

.department-table th {
    background: #eef4fb;
    color: #12325f;
    font-weight: 700;
}

.department-list-card ol,
.department-list-card ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
    color: #4b5d78;
}

.department-list-card li {
    line-height: 1.8;
}

.exam-cell-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.exam-cell-card {
    background: #fff;
    border-radius: 28px;
    padding: 34px 32px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.exam-cell-title {
    margin-bottom: 18px;
    color: #1e2f60;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
}

.exam-cell-title--sub {
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    margin-top: 0;
}

.exam-cell-card p {
    color: #4f5f7a;
    line-height: 1.9;
    margin-bottom: 18px;
}

.exam-cell-block+.exam-cell-block {
    margin-top: 28px;
}

.exam-cell-block h3 {
    margin-bottom: 14px;
    color: #0f2d5e;
    font-size: 1.22rem;
    font-weight: 800;
}

.exam-cell-list {
    margin: 0;
    padding-left: 1.2rem;
}

.exam-cell-list li {
    color: #4f5f7a;
    line-height: 1.85;
    margin-bottom: 10px;
}

.exam-cell-pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(130deg, #2d5fe5, #1d42b8);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(29, 66, 184, 0.22);
}

.exam-cell-pdf-btn:hover {
    color: #fff;
    background: linear-gradient(130deg, #234ac5, #17389f);
}

.placement-news-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.placement-details-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
}

.placement-company-card {
    padding: 1.25rem;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
}

.placement-company-card img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
    display: block;
}

.placement-contact-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.placement-contact-wrap {
    background: #fff;
    border-radius: 28px;
    padding: 34px 32px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.placement-contact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px 20px;
    border: 1px solid #deE7f4;
    border-radius: 22px;
    background: #f8fbff;
}

.placement-contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e7efff;
    color: #2453c7;
    font-size: 1.35rem;
}

.placement-contact-title {
    margin: 0 0 8px;
    color: #14213d;
    font-size: 1.15rem;
    font-weight: 800;
}

.placement-contact-text {
    color: #4f5f7a;
    line-height: 1.8;
}

.transport-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.transport-route-card {
    min-width: 0;
    padding: 1rem;
    border: 1px solid #e2eaf6;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: grid;
    grid-template-columns: 84px 1fr;
    align-items: center;
    gap: 0.95rem;
}

.transport-route-card:hover {
    transform: translateY(-3px);
    border-color: #cfdcf1;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
}

.transport-route-badge {
    min-height: 84px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d5aa1, #1d74d8);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 0.6rem;
    box-shadow: 0 14px 28px rgba(13, 90, 161, 0.2);
}

.transport-route-badge-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.82;
}

.transport-route-badge-number {
    margin-top: 0.25rem;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
}

.transport-route-copy {
    min-width: 0;
}

.transport-route-name {
    display: block;
    margin-bottom: 0.45rem;
    color: #1e2f60;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-transform: uppercase;
}

.transport-route-point-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
}

.transport-route-point-label {
    color: #6b7a90;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.transport-route-point {
    color: #0d5aa1;
    font-weight: 800;
    font-size: 0.96rem;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-transform: uppercase;
}

@media (max-width: 1199.98px) {
    .placement-details-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .transport-route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .placement-details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .transport-route-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    .placement-details-grid {
        grid-template-columns: 1fr;
    }

    .placement-company-card {
        min-height: 150px;
        border-radius: 1.1rem;
    }

    .placement-contact-wrap {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .placement-contact-card {
        grid-template-columns: 1fr;
        padding: 18px 16px;
        border-radius: 18px;
    }

    .transport-route-card {
        grid-template-columns: 72px 1fr;
        gap: 0.8rem;
        padding: 0.9rem;
        border-radius: 20px;
    }

    .transport-route-badge {
        min-height: 72px;
        border-radius: 16px;
    }

    .transport-route-badge-number {
        font-size: 1.35rem;
    }

    .transport-route-name {
        font-size: 0.86rem;
    }
}

.why-choose-section {
    background: #f1f3f7;
}

.why-choose-kicker {
    color: #2e56d2;
    letter-spacing: 0.12em;
}

.why-choose-title {
    color: #1e2f60;
    font-weight: 700;
}

.why-choose-copy {
    color: #475569;
    line-height: 1.85;
    max-width: 700px;
}

.why-choose-brochure-btn {
    border: 1px solid #d8e1ef;
    color: #1e2f60;
    background: #f8faff;
    border-radius: 10px;
    padding: 0.82rem 1.35rem;
    white-space: nowrap;
}

.why-choose-brochure-btn:hover {
    background: #eef3ff;
    border-color: #c9d6ef;
    color: #1b3ca4;
}

.why-choose-swiper .swiper-slide {
    height: auto;
}

.why-choose-card {
    background: #f8fafc;
    border: 1px solid #d9e2f0;
    border-radius: 14px;
    padding: 1.45rem 1.3rem 1.25rem;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
}

.why-choose-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #e7edf9;
    color: #2a4bbd;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.95rem;
}

.why-choose-card-title {
    color: #1e2f60;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.why-choose-card-copy {
    color: #64748b;
    line-height: 1.7;
}

.amenities-section {
    background: #f1f3f7;
}

.amenities-kicker {
    color: #2e56d2;
    letter-spacing: 0.1em;
}

.amenities-title {
    color: #1e2f60;
    font-weight: 700;
    line-height: 1.2;
}

.amenities-copy {
    color: #5f6f87;
    line-height: 1.75;
}

.amenities-right-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0.4rem 0.2rem;
}

.amenities-btn {
    border: 1px solid #d2dff4;
    color: #1f3ca8;
    background: #eef4ff;
    border-radius: 10px;
    padding: 0.7rem 1.1rem;
}

.amenities-btn:hover {
    background: #e2ecff;
    color: #193593;
}

.amenities-swiper .swiper-slide {
    height: auto;
}

.amenity-card {
    background: #fff;
    border: 1px solid #dfe7f4;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.amenity-image-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.amenity-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.amenity-card-body {
    padding: 1rem 1rem 1.1rem;
}

.amenity-card-title {
    color: #1e2f60;
    font-weight: 700;
}

.amenity-card-copy {
    color: #64748b;
    line-height: 1.6;
}

.popular-courses-section {
    background: #f2f4f8;
}

.popular-courses-title {
    color: #23408f;
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    font-weight: 700;
}

.popular-courses-line {
    display: block;
    width: 64px;
    height: 4px;
    border-radius: 99px;
    background: #5b6ff7;
}

.popular-course-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.courses-swiper .swiper-slide {
    height: auto;
}

.popular-course-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.popular-course-image-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.popular-course-image-wrap img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.popular-course-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef4444;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.62rem;
    border-radius: 999px;
    text-transform: uppercase;
    line-height: 1;
}

.popular-course-level {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffffff;
    color: #223b84;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.62rem;
    border-radius: 999px;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

.popular-course-name {
    color: #223b84;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
    min-height: 1.5rem;
}

.popular-course-link {
    color: #4f63f8;
    font-weight: 600;
    margin-top: auto;
    font-size: 0.8rem;
}

.popular-course-link:hover {
    color: #2d43df;
}


.upcoming-events-section {
    background: #f1f3f7;
}

.upcoming-events-kicker {
    color: #2e56d2;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
}

.upcoming-events-title {
    color: #1e2f60;
    font-size: clamp(1.85rem, 3.3vw, 2.9rem);
    font-weight: 700;
}

.event-news-layout > [class*="col-"] {
    display: flex;
}

.event-gallery-swiper,
.news-box {
    width: 100%;
    height: 430px;
}

.event-gallery-swiper {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.event-gallery-slide {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border: 8px solid #ffffff;
}

.event-gallery-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    height: 384px;
}

.event-gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1 / 0.7;
    height: 100%;
}

.event-gallery-image-wrapper--single {
    height: 384px;
    aspect-ratio: auto;
}

.event-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.event-gallery-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-gallery-image-wrapper:hover .event-gallery-image-overlay {
    opacity: 1;
}

.news-box {
    background: #ffffff;
    border-color: #d9e3f2 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-marquee {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: eventNewsMarquee 16s linear infinite;
}

.news-box:hover .marquee-content {
    animation-play-state: paused;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-item {
    align-items: center;
    border: 1px solid #dbe5f3;
    background: #fff;
}

.news-item:last-child {
    margin-bottom: 0 !important;
}

.date-box {
    width: 88px;
    min-width: 88px;
    padding: 14px 8px;
    border-radius: 16px;
    background: #2338b6;
    color: #fff;
}

.date-box .fs-5 {
    font-size: 1rem !important;
    letter-spacing: 0.06em;
}

.date-box .fs-3 {
    font-size: 2rem !important;
    line-height: 1;
}

@keyframes eventNewsMarquee {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

@media (max-width: 991.98px) {
    .event-gallery-swiper,
    .news-box {
        height: auto;
        min-height: 430px;
    }

    .event-gallery-image-grid {
        height: auto;
    }

    .event-gallery-image-wrapper--single {
        height: 384px;
    }
}

@media (max-width: 575.98px) {
    .event-gallery-swiper,
    .news-box {
        height: 230px;
    }


    .event-gallery-slide {
        padding: 10px;
        border-width: 6px;
    }

    .event-gallery-image-wrapper--single {
        height: 388px;
    }

    .news-item {
        padding: 12px !important;
    }

    .date-box {
        width: 74px;
        min-width: 74px;
    }
}

.events-swiper {
    padding: 2px 2px 10px;
}

.events-swiper .swiper-slide {
    height: auto;
}

.upcoming-event-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
}

.upcoming-event-image-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.upcoming-event-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.upcoming-event-body {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.upcoming-event-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0e5ca;
    box-shadow: 0 0 0 2px #2c4bc5;
    flex: 0 0 auto;
}

.upcoming-event-host-name {
    color: #101828;
    font-size: 0.93rem;
    font-weight: 700;
}

.upcoming-event-host-role {
    color: #667085;
    font-size: 0.74rem;
}

.upcoming-event-meta {
    color: #6b7280;
    font-size: 0.78rem;
    line-height: 1.5;
}

.upcoming-event-name {
    color: #141b34;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.05rem;
    min-height: 2.8rem;
}

.upcoming-event-btn {
    margin-top: auto;
    border-radius: 10px;
    background: #2848bd;
    color: #fff;
    font-size: 0.86rem;
    padding: 0.72rem 1rem;
    border: 0;
    letter-spacing: 0.02em;
}

.upcoming-event-btn:hover {
    color: #fff;
    background: #1e3ca8;
}

.student-testimonials-section {
    background: #f1f3f7;
}

.student-testimonials-kicker {
    color: #2e56d2;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
}

.student-testimonials-title {
    color: #1e2f60;
    font-size: clamp(1.8rem, 3.2vw, 2.75rem);
    font-weight: 700;
}

.student-testimonials-swiper .swiper-slide {
    height: auto;
}

.student-testimonial-card {
    background: #f9fafc;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    padding: 1.6rem 1.6rem 1.45rem;
}

.student-testimonial-rating {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: #e2e8f6;
    color: #2348bb;
    font-size: 0.78rem;
    font-weight: 700;
}

.student-testimonial-copy {
    color: #334155;
    font-size: 1.03rem;
    font-style: italic;
    line-height: 1.6;
    max-width: 92%;
}

.student-testimonial-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e2e8f6;
    color: #2348bb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex: 0 0 auto;
}

.student-testimonial-name {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
}

.student-testimonial-dept {
    color: #64748b;
    font-size: 0.78rem;
}

.admission-section {
    background: #f1f3f7;
}

.admission-kicker {
    color: #2e56d2;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
}

.admission-title {
    color: #1e2f60;
    font-size: clamp(1.8rem, 3.2vw, 2.75rem);
    font-weight: 700;
}

.admission-form-card {
    max-width: 1200px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e9eef8;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.admission-form-side {
    background: linear-gradient(165deg, #2c4fca, #1f3fa8);
    color: #fff;
    padding: 2.3rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.admission-side-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.05;
}

.admission-side-copy {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.6;
}

.admission-side-btn {
    width: fit-content;
    background: #ffffff;
    color: #2246b8;
    border-radius: 10px;
    border: 0;
    font-size: 0.8rem;
    padding: 0.52rem 1.05rem;
    letter-spacing: 0.02em;
}

.admission-side-btn:hover {
    background: #eef3ff;
    color: #1c3ca6;
}

.admission-form-main {
    padding: 1.7rem 1.5rem;
    background: #ffffff;
}

.admission-label {
    color: #1f2a44;
    font-size: 0.74rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    letter-spacing: 0.01em;
}

.admission-input {
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    font-size: 0.84rem;
    color: #1e293b;
    min-height: 44px;
    padding: 0.62rem 0.82rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.admission-input::placeholder {
    color: #94a3b8;
}

.admission-input:focus {
    border-color: #2e56d2;
    background: #fcfdff;
    box-shadow: 0 0 0 0.16rem rgba(46, 86, 210, 0.14);
}

.admission-submit-btn {
    background: linear-gradient(120deg, #2d4fc8, #203fa8);
    color: #fff;
    border: 0;
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 0.78rem 1rem;
    width: 220px;
    display: block;
    margin: 0 auto;
    letter-spacing: 0.01em;
}

.admission-submit-btn:hover {
    background: linear-gradient(120deg, #2646bb, #1a3697);
    color: #fff;
}

.home-popup-dialog {
    max-width: min(760px, calc(100vw - 24px));
}

.home-popup-content {
    position: relative;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.home-popup-body {
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
}

.home-popup-image {
    display: block;
    width: 95%;
    height: auto;
    margin: auto;
}

.home-popup-close {
    position: absolute;
    top: -23px;
    right: 1px;
    z-index: 1060;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    padding: 0;
    transition: transform 0.2s ease;
}

.home-popup-close:hover {
    transform: scale(1.1);
    color: #fff;
    background-color: #333;
}

.admission-form-message {
    display: none;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
}

.admission-form-message.is-success,
.admission-form-message.is-error {
    display: block;
}

.admission-form-message.is-success {
    background: #e8f8ee;
    color: #146c43;
    border: 1px solid #b7e4c7;
}

.admission-form-message.is-error {
    background: #fff1f0;
    color: #b42318;
    border: 1px solid #f5c2c7;
}

.admission-field-error {
    min-height: 18px;
    margin: 0.35rem 0 0;
    color: #c1121f;
    font-size: 0.82rem;
    line-height: 1.3;
}

.admission-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.18rem rgba(220, 53, 69, 0.12);
}

.partner-institutions-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.partner-institutions-title {
    position: relative;
    color: #0f2d5e !important;
}

.partner-institutions-title::after {
    content: "";
    display: block;
    width: 88px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #0d5aa1, #2d7bf0);
}

.institute-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 12px;
    z-index: 2;
}

.institute-scroll-wrapper {
    width: 100%;
    overflow: hidden;
}

.institute-scroll-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    padding: 12px 0;
    animation: instituteSlideAnimation 220s linear infinite;
    will-change: transform;
}

.institute-card-item {
    display: flex;
    align-items: center;
    width: 340px;
    margin: 0 16px;
    padding: 12px 15px;
    border-radius: 18px;
    border: 1px solid rgba(208, 220, 238, 0.9);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(20px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.institute-card-item:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.institute-icon-container {
    width: 60px;
    height: 60px;
    margin-right: 12px;
    flex: 0 0 60px;
    border-radius: 14px;
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.jaya-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.institute-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.institute-name-text {
    margin-bottom: 6px;
    color: #22324a;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.institute-type-badge {
    width: fit-content;
    max-width: 100%;
    padding: 4px 12px;
    border: 1px solid #dbe7f6;
    border-radius: 999px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #60708b;
    font-size: 0.78rem;
    font-weight: 600;
}

.institute-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes instituteSlideAnimation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.demo-swiper {
    border-radius: 14px;
    overflow: hidden;

}

.demo-swiper img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.site-footer {
    background: radial-gradient(circle at 15% 20%, #1f4ed8 0%, #132a79 45%, #0b1c52 100%);
    color: #d7e4ff;
    border-top: 0;
    border-bottom: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    top: -120px;
    right: -120px;
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.18);
    bottom: -150px;
    left: -80px;
    pointer-events: none;
}

.site-footer-main {
    padding: 1.8rem 0 1.8rem;
    position: relative;
    z-index: 1;
}

.site-footer-main .row>[class*="col-"] {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.site-footer-main .row>[class*="col-"]>*:first-child {
    margin-top: 0;
}





.footer-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-about {
    color: #d8e4ff;
    line-height: 1.85;
    max-width: 290px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-link:hover {
    background: #fff;
    color: #1c3ea8;
    transform: translateY(-2px);
}

.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.35rem;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 28px;
    height: 4px;
    border-radius: 999px;
    background: #9ec5ff;
}

.footer-links li+li {
    margin-top: 0.75rem;
}

.footer-links a {
    color: #d8e4ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 3px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #d8e4ff;
}

.footer-contact li+li {
    margin-top: 0.9rem;
}

.footer-contact i {
    color: #b6d4ff;
    margin-top: 4px;
    width: 14px;
}

.footer-contact a {
    color: #d8e4ff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

.site-footer-bottom {
    background: rgba(8, 23, 74, 0.75);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.05rem 0;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: #c3d6ff;
}

.footer-bottom-links a {
    color: #c3d6ff;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 1199.98px) {
    .hero-banner-wrap {
        gap: 1rem;
        padding-inline: 0.75rem;
    }

    .hero-banner {
        width: min(66%, 820px);
        max-height: 190px;
    }

    .hero-banner-side-badge__image {
        width: min(104px, 9vw);
    }

    .compact-link {
        font-size: 0.88rem;
        padding: 0.65rem 0.52rem;
    }
}

@media (max-width: 1399.98px) {
    .desktop-nav {
        display: none;
    }

    .compact-toggle-bar {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .top-contact-wrap {
        justify-content: center;
    }

    .top-contact-info {
        justify-content: center;
    }

    .hero-banner {
        max-height: 210px;
        width: min(68%, 620px);
    }

    .hero-banner-side-badge__image {
        width: min(88px, 11vw);
    }
}

@media (max-width: 767.98px) {
    .top-contact-bar {
        display: none;
    }

    .hero-banner-wrap {
        display: none;
    }

    .compact-toggle-bar {
        display: none;
    }

    .mobile-header-bar {
        display: block;
    }

    .nav-item--compact-hide {
        display: none !important;
    }

    .mobile-header-wrap {
        min-height: 70px;
    }

    .mobile-banner-img {
        width: min(80vw, 290px);
        max-height: 68px;
    }

    .nav-toggler {
        background: linear-gradient(95deg, #0b5ed7, #084298);
        border-color: #0b5ed7;
        padding: 0.28rem 0.4rem;
    }

    .home-text {
        font-size: 0.97rem;
    }

    .home-banner-swiper {
        height: 180px;
    }

    .home-banner-swiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home-hero-slider {
        margin-bottom: 0;
    }

    .home-about-section {
        padding-top: 1.25rem !important;
        padding-bottom: 1.5rem !important;
    }

    .home-about-section .row {
        --bs-gutter-y: 1rem;
    }

    .home-banner-swiper .swiper-button-prev,
    .home-banner-swiper .swiper-button-next {
        width: 38px;
        height: 38px;
    }

    .inner-hero-section {
        min-height: 300px;
        padding: 56px 0;
    }

    .inner-breadcrumb {
        padding: 10px 16px;
        font-size: 0.92rem;
    }

    .about-page-content {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .about-page-image-stack {
        gap: 14px;
    }

    .about-feature-card {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .about-page-image-card,
    .about-purpose-image,
    .about-purpose-card,
    .about-page-note,
    .message-page-card,
    .message-page-image-card {
        border-radius: 20px;
    }

    .about-purpose-card {
        padding: 22px 18px;
    }

    .message-page-card {
        padding: 22px 18px;
    }

    .department-tabs-card {
        border-radius: 22px;
    }

    .department-tab-mobile-select {
        display: block;
    }

    .department-tab-nav {
        display: none;
    }

    .department-tab-content {
        padding: 26px 18px 22px;
    }

    .department-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .department-table-block,
    .department-list-card {
        padding: 18px;
        border-radius: 18px;
    }

    .exam-cell-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .why-choose-copy {
        line-height: 1.65;
    }

    .why-choose-brochure-btn {
        width: 100%;
        text-align: center;
    }

    .why-choose-card {
        padding: 1.2rem 1rem;
    }

    .amenities-btn {
        width: 100%;
        text-align: center;
    }

    .amenities-right-content {
        align-items: flex-start;
        padding: 0;
    }

    .registration-strip-inner {
        padding: 1.3rem 1rem;
    }

    .registration-icon {
        width: 52px;
        height: 52px;
    }

    .registration-title {
        font-size: 1.25rem;
    }

    .registration-copy {
        font-size: 0.85rem;
    }

    .registration-cta-btn {
        width: 100%;
        padding: 0.78rem 1rem;
    }

    .student-testimonial-card {
        padding: 1.2rem 1rem 1.15rem;
    }

    .student-testimonial-copy {
        font-size: 0.95rem;
    }

    .admission-form-side {
        padding: 1.5rem 1.2rem;
        align-items: flex-start;
    }

    .admission-side-title {
        font-size: 1.55rem;
    }

    .admission-side-copy {
        max-width: none;
        margin-bottom: 1rem !important;
    }

    .admission-form-main {
        padding: 1.2rem 1rem;
    }

    .institute-card-item {
        width: 280px;
        margin: 0 12px;
        padding: 10px 12px;
    }

    .institute-icon-container {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        margin-right: 10px;
    }

    .institute-name-text {
        font-size: 0.92rem;
    }

    .institute-type-badge {
        font-size: 0.72rem;
    }

    .site-footer-main {
        padding: 2.3rem 0 2rem;
    }

    .footer-about {
        max-width: none;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-copyright {
        text-align: center;
    }

}

@media (max-width: 575.98px) {

    .department-tab-nav {
        grid-template-columns: 1fr;
    }

    .department-tab-nav .nav-link {
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .department-gallery-grid {
        grid-template-columns: 1fr;
    }

    .department-copy p {
        font-size: 1rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-purpose-head {
        align-items: flex-start;
    }

    .about-page-note {
        padding: 20px 18px;
    }
}

.placement-page-grid {
    align-items: stretch;
}

.placement-page-grid>[class*="col-"] {
    display: flex;
}

.placement-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    height: 100%;
    width: 100%;
}

.placement-page-grid .about-page-content {
    width: 100%;
    height: 100%;
}

.placement-media-card {
    height: 100%;
    min-height: 0;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    background: #fff;
}

.placement-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.iqac-image-card {
    padding: 18px;
}

.iqac-image {
    width: 100%;
    height: auto !important;
    max-height: 320px;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .placement-media-grid {
        grid-template-rows: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .placement-page-grid>[class*="col-"] {
        display: block;
    }

    .placement-media-grid {
        height: auto;
    }

    .placement-media-card img {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .placement-media-grid {
        gap: 0.75rem;
    }

    .placement-media-card {
        border-radius: 1.1rem;
    }

    .placement-media-card img {
        height: 160px;
    }
}

.campus-gallery-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.campus-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.campus-gallery-item {
    margin: 0;
}

.campus-gallery-trigger {
    position: relative;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
    cursor: pointer;
}

.campus-gallery-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.campus-gallery-trigger:hover .campus-gallery-image {
    transform: scale(1.04);
}

.campus-gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(11, 19, 43, 0), rgba(11, 19, 43, 0.78));
    color: #fff;
    font-weight: 600;
    text-align: left;
}

.campus-lightbox[hidden] {
    display: none !important;
}

.campus-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.campus-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 10, 24, 0.78);
    backdrop-filter: blur(8px);
}

.campus-lightbox-shell {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100vw - 32px));
    height: min(88vh, 860px);
    margin: 4vh auto;
    display: grid;
    grid-template-columns: 64px 1fr 64px;
    align-items: center;
    gap: 16px;
}

.campus-lightbox-stage {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.campus-lightbox-image {
    width: auto;
    max-width: 100%;
    max-height: calc(100% - 48px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
}

.campus-lightbox-caption {
    margin-top: 14px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.campus-lightbox-close,
.campus-lightbox-nav {
    border: 0;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.campus-lightbox-close {
    position: absolute;
    top: -8px;
    right: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
}

.campus-lightbox-nav {
    width: 56px;
    height: 96px;
    border-radius: 18px;
    font-size: 2rem;
}

@media (max-width: 1199.98px) {
    .campus-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .campus-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .campus-gallery-image {
        height: 190px;
    }

    .campus-lightbox-shell {
        width: min(100vw - 20px, 100%);
        grid-template-columns: 48px 1fr 48px;
        gap: 8px;
    }

    .campus-lightbox-nav {
        width: 44px;
        height: 72px;
        border-radius: 14px;
    }
}

@media (max-width: 575.98px) {
    .campus-gallery-grid {
        grid-template-columns: 1fr;
    }

    .campus-gallery-image {
        height: 220px;
    }

    .campus-lightbox-shell {
        height: min(84vh, 680px);
        grid-template-columns: 40px 1fr 40px;
    }

    .campus-lightbox-close {
        top: -2px;
        width: 44px;
        height: 44px;
        font-size: 1.7rem;
    }
}

.contact-page-section {
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.contact-map-card,
.contact-info-wrap,
.contact-office-card {
    background: #fff;
    border: 1px solid rgba(13, 30, 71, 0.08);
    border-radius: 28px;
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
}

.contact-page-section .admission-form-card {
    max-width: none;
    width: 100%;
}

.contact-map-card {
    overflow: hidden;
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 430px;
    border: 0;
}

.contact-info-wrap,
.contact-office-card {
    height: 100%;
    padding: 2rem;
}

.contact-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(13, 30, 71, 0.08);
}

.contact-feature-card.mb-0 {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-feature-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(13, 94, 244, 0.08);
    color: #0d5ef4;
    font-size: 0.92rem;
    margin-top: 0.18rem;
}

.contact-feature-label {
    margin-bottom: 0.35rem;
    color: #6a7691;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.contact-feature-link {
    display: block;
    color: #10213f;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.65;
    text-decoration: none;
}

a.contact-feature-link:hover {
    color: #0d5ef4;
}

@media (max-width: 767.98px) {
    .contact-map-card iframe {
        height: 320px;
    }

    .contact-info-wrap,
    .contact-office-card {
        height: auto;
        padding: 1.5rem;
        border-radius: 22px;
    }

    .contact-feature-card {
        gap: 0.7rem;
    }

    .contact-feature-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }
}

.floating-action-stack {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.home-page .floating-action-stack {
    bottom: 112px;
}

.floating-action-btn,
.floating-scrolltop-btn {
    border: 0;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.floating-action-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-action-btn + .floating-action-btn {
    margin-top: 12px;
}

.floating-action-btn:hover,
.floating-action-btn:focus-visible,
.floating-scrolltop-btn:hover,
.floating-scrolltop-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.24);
}

.floating-action-btn--whatsapp {
    background: linear-gradient(135deg, #1faa59, #128c4a);
}

.floating-action-btn--chatbot {
    background: linear-gradient(135deg, #0d5ef4, #123b8b);
}

.floating-action-btn--enquiry {
    background: linear-gradient(135deg, #ff8a00, #d96b00);
    margin-top: 12px;
}

.floating-scrolltop-btn {
    width: 52px;
    height: 52px;
    margin-top: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #255482;
    color: #fff;
    font-size: 1.05rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-scrolltop-btn.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-chatbot-modal {
    border: 0;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
}

.chatbot-wrapper {
    position: fixed;
    right: 24px;
    bottom: 20px;
    width: 370px;
    height: 560px;
    display: none;
    flex-direction: column;
    border-radius: 18px;
    border: 1px solid #d7e1f0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow: 0 24px 60px rgba(10, 37, 77, 0.25);
    overflow: hidden;
    z-index: 9999;
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #0a4a94 0%, #123e77 72%, #f9a21a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.chatbot-header strong {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.chatbot-header button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 22px;
    line-height: 1;
}

.chatbot-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    overflow-y: auto;
    background:
        radial-gradient(circle at top right, rgba(10, 74, 148, 0.08), transparent 40%),
        radial-gradient(circle at bottom left, rgba(249, 162, 26, 0.08), transparent 35%),
        #f3f7fc;
}

.bot-message,
.user-message {
    max-width: 86%;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13.5px;
    line-height: 1.45;
    margin: 0;
    word-wrap: break-word;
}

.bot-message {
    align-self: flex-start;
    color: #1f2937;
    background: #ffffff;
    border: 1px solid #e3eaf5;
}

.user-message {
    align-self: flex-end;
    color: #ffffff;
    background: linear-gradient(135deg, #0a4a94 0%, #123e77 100%);
    border: 1px solid #0a4a94;
}

.choice-btn {
    align-self: flex-start;
    margin-top: 2px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #bfd0ea;
    background: #ffffff;
    color: #0a4a94;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.choice-btn:hover {
    color: #ffffff;
    background: #0a4a94;
    border-color: #0a4a94;
}

.chatbot-footer {
    display: flex;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid #dbe4f3;
    background: #ffffff;
}

.chatbot-footer input {
    flex: 1;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #cdd8ea;
    background: #f8fbff;
    font-size: 14px;
}

.chatbot-footer input:focus {
    outline: none;
    border-color: #0d5ef4;
    box-shadow: 0 0 0 3px rgba(13, 94, 244, 0.14);
}

.chatbot-footer button {
    width: 44px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, #f9a21a 0%, #ef7d00 100%);
}

.chatbot-footer button:disabled,
.chatbot-footer input:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
/* MAIN STRIP */
.home-announcement-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0a4a94, #123e77);
    border-top: 4px solid #f9a21a;
}



/* INNER */
.home-announcement-strip__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    color: #fff;
}



/* CONTENT */
.home-announcement-strip__content {
    flex: 1;
    overflow: hidden;
}

/* TRACK */
.home-announcement-strip__track {
    display: flex;
    width: max-content;
    animation: ticker 18s linear infinite;
}

/* ENTRY */
.home-announcement-strip__entry {
    display: flex;
}

/* ROW */
.home-announcement-strip__row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

/* TEXT */
.home-announcement-strip__slide-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
}

/* DOT */
.home-announcement-strip__dot {
    width: 6px;
    height: 6px;
    background: #ffd400;
    border-radius: 50%;
}

/* BUTTON */
.home-announcement-strip__slide-cta {
    border: 2px solid #ffd400;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    background: transparent;
    color: #ffd400;
    font-weight: bold;
    white-space: nowrap;
    flex-shrink: 0;
}

.home-announcement-strip__slide-cta:hover {
    background: #ffd400;
    color: #123e77;
}

/* CLOSE */
.home-announcement-strip__close {
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #fff;
}

/* ANIMATION */
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* RESPONSIVE (NO BREAKING) */
@media (max-width: 768px) {
    .home-announcement-strip__label {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .home-announcement-strip__slide-card {
        font-size: 0.8rem;
    }

    .home-announcement-strip__slide-cta {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
}

.enquiry-modal-dialog {
    --bs-modal-width: min(600px, calc(100vw - 38px));
}

.enquiry-modal-content {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.28);
    background: #f3f4f6;
}

.enquiry-modal-header {
    padding: 1.5rem 1.25rem;
    background: #0a4a94;
    border-bottom: 4px solid #f9a21a;
}

.enquiry-modal-title {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 700;
}

.enquiry-modal-header .btn-close {
    filter: invert(1) brightness(100);
    opacity: 1;
}

.enquiry-form-panel {
    background: #efefef;
    border-radius: 20px;
    padding: 0;
}

.enquiry-form-label {
    color: #1f2937;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.enquiry-form-section-title {
    padding-bottom: 0.5rem;
    border-bottom: 2px dashed #cad6ea;
    color: #333940;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.enquiry-form-input {
    min-height: 40px;
    border: 1px solid #c8d3e4;
    border-radius: 14px;
    background: #f7f8fa;
    color: #10213f;
    box-shadow: none;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}



.enquiry-form-input:focus {
    border-color: #8bb3ff;
    background: #fff;
    box-shadow: 0 0 0 0.2rem rgba(13, 94, 244, 0.12);
}

.enquiry-form-submit {
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.9rem;
    min-width: 180px;
    background: linear-gradient(135deg, #ffa000, #ff8c00);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 16px 28px rgba(255, 160, 0, 0.28);
}

.enquiry-form-submit:hover {
    color: #fff;
    background: linear-gradient(135deg, #f59600, #f07f00);
}

.home-announcement-strip__slide-cta {
    margin-right: 20px; /* 👈 add space after button */
}

@media (max-width: 575.98px) {
    .home-page .floating-action-stack {
        bottom: 150px;
    }

    .home-announcement-strip__inner {
        min-height: 56px;
        gap: 0.75rem;
        padding: 0.35rem 0.6rem 0.35rem 0;
    }

    .home-announcement-strip__label {
        min-width: 52px;
        width: 52px;
        height: 46px;
        justify-content: center;
        padding: 0;
        clip-path: none;
        border-radius: 14px;
        flex: 0 0 52px;
    }

    .home-announcement-strip__label span {
        display: none;
    }

    .home-announcement-strip__content {
        flex: 1;
        padding: 0;
    }

    .home-announcement-strip__track {
        animation-duration: 22s;
    }

    .home-announcement-strip__entry {
        padding: 0 0.35rem;
    }

    .home-announcement-strip__row {
        gap: 0.55rem;
    }

    .home-announcement-strip__slide-card {
        font-size: 0.9rem;
        padding: 0.7rem 0.5rem;
        white-space: normal;
    }

    .home-announcement-strip__slide-cta {
        width: auto;
        font-size: 0.88rem;
        padding: 0.68rem 0.95rem;
    }

    .home-announcement-strip__dot {
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 4px rgba(249, 162, 26, 0.14);
    }

    .home-announcement-strip__close {
        width: 34px;
        height: 34px;
    }

    .floating-action-stack {
        right: 14px;
        bottom: 14px;
    }

    .floating-action-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .floating-scrolltop-btn {
        width: 50px;
        height: 50px;
        margin-top: 24px;
    }

    .enquiry-modal-content {
        border-radius: 18px;
    }

    .enquiry-modal-header {
        padding: 1.15rem 1rem;
    }

    .enquiry-modal-title {
        font-size: 1.28rem;
    }

    .enquiry-form-panel {
        padding: 1rem;
        border-radius: 18px;
    }

    .home-popup-close {
        top: -20px;
        right: -15px;
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .department-tab-nav .nav-link {
        gap: 0;
    }

    .department-tab-nav .nav-link i,
    .department-tab-nav .nav-link svg,
    .department-tab-nav .nav-link .fa,
    .department-tab-nav .nav-link .fas,
    .department-tab-nav .nav-link .far,
    .department-tab-nav .nav-link .fal,
    .department-tab-nav .nav-link .fab,
    .department-tab-nav .nav-link .fa-regular,
    .department-tab-nav .nav-link .fa-solid,
    .department-tab-nav .nav-link .fa-light,
    .department-tab-nav .nav-link .fa-brands {
        display: none !important;
    }
}

/* Home Disclosures Section */
.home-disclosures-section {
    background: transparent;
}

.home-disclosure-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.home-disclosure-card:hover {
    background: var(--brand-light);
    border-color: #2b55cf;
    box-shadow: 0 12px 25px rgba(43, 85, 207, 0.12);
    transform: translateY(-4px);
}

.home-disclosure-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #eef2ff;
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.home-disclosure-card:hover .home-disclosure-icon {
    background: var(--brand-primary);
    color: #ffffff;
    transform: scale(1.05);
}

.home-disclosure-text {
    font-family: "Google Sans", "Product Sans", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.35;
    transition: color 0.3s ease;
}

.home-disclosure-card:hover .home-disclosure-text {
    color: var(--brand-primary-dark);
}

@media (max-width: 767.98px) {
    .home-disclosure-card {
        padding: 0.85rem 1rem;
        gap: 0.85rem;
        border-radius: 12px;
    }

    .home-disclosure-icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        font-size: 1.15rem;
    }

    .home-disclosure-text {
        font-size: 0.92rem;
    }
}

/* Facility Pages Adaptive Image */
.facility-image-card {
    height: 280px;
}
.facility-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .facility-row {
        align-items: stretch !important;
    }
    .facility-image-card {
        height: 100%;
    }
    .facility-image-card img {
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* Message Page Responsive Images */
@media (max-width: 991.98px) {
    .message-page-image-card {
        height: 380px !important;
        min-height: 380px !important;
    }
}
@media (max-width: 575.98px) {
    .message-page-image-card {
        height: 280px !important;
        min-height: 280px !important;
    }
}

@media (min-width: 992px) {
    .message-page-image-card img {
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* Center reCAPTCHA Box */
.recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2px auto;
}
.admission-field-error[data-field-error="recaptcha"] {
    text-align: center;
    margin: 0 auto;
    min-height: 0;
}

/* Custom Toast Notifications */
#custom-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    width: calc(100vw - 48px);
}

.custom-toast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    animation: toastSlideIn 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    backdrop-filter: blur(8px);
}

.toast-success {
    background-color: rgba(20, 108, 67, 0.95);
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.toast-error {
    background-color: rgba(180, 35, 24, 0.95);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.toast-close-btn {
    background: none;
    border: none;
    color: currentColor;
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 0 0 12px;
    opacity: 0.8;
    transition: opacity 0.15s ease;
}

.toast-close-btn:hover {
    opacity: 1;
}

.toast-fade-out {
    animation: toastFadeOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastFadeOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

