/********** Template CSS **********/
:root {
    --deep-forest: #1a3a2a;
    --mid-green: #2d6a4f;
    --apple-green: #52b788;
    --mint: #b7e4c7;
    --cloud-green: #f0faf4;
    --warm-gold: #c9a84c;
    --ivory: #fffff0;
    --primary: var(--apple-green);
    --light: var(--cloud-green);
    --dark: var(--deep-forest);
    --brand-teal: var(--mid-green);
    --brand-ink: var(--deep-forest);
    --brand-blue: var(--mid-green);
    --brand-navy: var(--mid-green);
    --brand-navy-deep: var(--deep-forest);
    --brand-gold: var(--warm-gold);
    --brand-muted: #587267;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--brand-muted);
    background: var(--cloud-green);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.text-primary {
    color: var(--apple-green) !important;
}

.bg-primary {
    background-color: var(--apple-green) !important;
}

.border-primary {
    border-color: var(--apple-green) !important;
}

.bg-white {
    background-color: var(--ivory) !important;
}

.text-dark {
    color: var(--deep-forest) !important;
}

.btn-primary {
    background-color: var(--apple-green) !important;
    border-color: var(--apple-green) !important;
    color: #FFFFFF !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--mid-green) !important;
    border-color: var(--mid-green) !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    background: var(--brand-navy-deep);
    border-color: var(--brand-navy-deep);
    color: #FFFFFF;
    z-index: 99;
}

.back-to-top:hover,
.back-to-top:focus {
    background: var(--mid-green);
    border-color: var(--mid-green);
    color: #FFFFFF;
}

.whatsapp-float {
    position: fixed;
    right: 45px;
    bottom: 112px;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 18px 34px rgba(37, 211, 102, .34);
    z-index: 1100;
    transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 22px 38px rgba(37, 211, 102, .42);
}

.whatsapp-float__icon {
    width: 34px;
    height: 34px;
    display: block;
}

.phone-float {
    position: fixed;
    right: 45px;
    bottom: 186px;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--warm-gold);
    color: var(--deep-forest);
    box-shadow: 0 18px 34px rgba(201, 168, 76, .34);
    z-index: 1100;
    font-size: 1.4rem;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.phone-float:hover {
    background: var(--mint);
    color: var(--deep-forest);
    transform: translateY(-3px);
    box-shadow: 0 22px 38px rgba(201, 168, 76, .42);
}

.campus-shell {
    width: min(100%, 1840px);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    transition: transform .35s ease;
}

.site-header-spacer {
    height: 0;
}

.campus-topbar {
    background: var(--brand-navy-deep);
    max-height: 42px;
    overflow: hidden;
    transition: max-height .35s ease, opacity .25s ease;
}

.campus-topbar .campus-shell {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.campus-topbar__left,
.campus-topbar__right {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.campus-topbar a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .02em;
    overflow-wrap: anywhere;
}

.campus-topbar__meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1.35;
    text-align: right;
}

.campus-topbar__meta--branches {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.campus-topbar__meta-text {
    opacity: .92;
}

.campus-topbar a i {
    font-size: .92rem;
}

.campus-topbar__meta i {
    font-size: .92rem;
}

.campus-topbar__branch-link {
    display: inline;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    transition: color .2s ease;
}

.campus-topbar__branch-link:hover,
.campus-topbar__branch-link.is-current {
    color: #c9a84c;
}

.campus-topbar__separator {
    opacity: .52;
}

.campus-navbar {
    padding: 12px 0 14px;
    background: var(--ivory);
    box-shadow: 0 8px 24px rgba(25, 41, 52, .08);
    transition: padding .35s ease, box-shadow .35s ease;
    border-bottom: 1px solid rgba(23, 54, 95, .08);
}

.campus-navbar .campus-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.campus-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 28px;
    flex: 0 1 auto;
    transition: gap .35s ease;
}

.campus-brand__logo {
    width: 150px;
    height: 62px;
    flex-shrink: 0;
    transform: scale(1.18);
    transform-origin: center;
    transition: width .35s ease, height .35s ease, transform .35s ease;
}

.campus-brand__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.campus-brand__title {
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: clamp(1.38rem, 1.62vw, 2.16rem);
    line-height: 1.14;
    font-weight: 700;
    color: var(--brand-navy-deep);
    letter-spacing: .01em;
    word-spacing: .03em;
    transition: font-size .35s ease, letter-spacing .35s ease;
}

.campus-brand__subtitle {
    font-family: 'Montserrat', sans-serif;
    margin-top: 3px;
    max-height: 32px;
    font-size: clamp(.74rem, .78vw, .98rem);
    line-height: 1.2;
    font-weight: 400;
    color: rgba(23, 54, 95, .78);
    opacity: 1;
    overflow: hidden;
    transition: font-size .35s ease, margin-top .35s ease, max-height .35s ease, opacity .25s ease;
}

.campus-navbar .navbar-collapse {
    flex-grow: 0;
}

.campus-menu {
    align-items: center;
}

.campus-menu > * + * {
    margin-left: 38px;
}

.campus-navbar.navbar-light .navbar-brand {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.campus-navbar.navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-navy-deep);
    font-size: clamp(.93rem, .94vw, 1.08rem);
    font-weight: 600;
    text-transform: none;
    letter-spacing: -.02em;
    transition: color .25s ease, font-size .35s ease;
}

.campus-navbar.navbar-light .navbar-nav .nav-link:hover,
.campus-navbar.navbar-light .navbar-nav .nav-link.active {
    color: var(--brand-gold);
}

.campus-navbar .dropdown-menu {
    min-width: 230px;
    border: 0;
    border-radius: 18px;
    padding: 12px 0;
    box-shadow: 0 22px 42px rgba(25, 41, 52, .14);
}

.campus-navbar.navbar .dropdown-toggle::after {
    font-size: .8rem;
    margin-left: 10px;
    vertical-align: .18em;
}

.campus-navbar .dropdown-item {
    padding: 10px 18px;
    color: var(--brand-ink);
    font-weight: 500;
}

.campus-navbar .dropdown-item:hover,
.campus-navbar .dropdown-item:focus,
.campus-navbar .dropdown-item.active,
.campus-navbar .dropdown-item:active {
    background: transparent;
    color: var(--brand-gold);
}

.campus-navbar .navbar-toggler {
    border: 0;
    box-shadow: none;
    padding: 4px;
    filter: none;
}

.site-header.is-scrolled .campus-topbar {
    max-height: 0;
    opacity: 0;
}

.site-header.is-scrolled .campus-navbar {
    padding: 8px 0 10px;
    box-shadow: 0 16px 36px rgba(25, 41, 52, .12);
}

.site-header.is-scrolled .campus-brand {
    gap: 8px;
}

.site-header.is-scrolled .campus-brand__logo {
    width: 150px;
    height: 62px;
    transform: scale(1.18);
}

.site-header.is-scrolled .campus-brand__title {
    font-size: clamp(1.06rem, 1.1vw, 1.46rem);
    letter-spacing: .008em;
}

.site-header.is-scrolled .campus-brand__subtitle {
    margin-top: 0;
    max-height: 0;
    font-size: 0;
    opacity: 0;
}

.site-header.is-scrolled .campus-navbar.navbar-light .navbar-nav .nav-link {
    font-size: clamp(.86rem, .84vw, .98rem);
}

.hero-campus {
    position: relative;
    min-height: clamp(600px, 74vh, 860px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #16242F;
}

.hero-campus__image,
.hero-campus__overlay {
    position: absolute;
    inset: 0;
}

.hero-campus__image {
    background: url(../img/spa-hero.jpg) center center / cover no-repeat;
    transform: scale(1.04);
}

.hero-campus__overlay {
    background:
        linear-gradient(180deg, rgba(18, 34, 43, .26) 0%, rgba(18, 34, 43, .42) 38%, rgba(18, 34, 43, .68) 100%);
}

.hero-campus__content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: clamp(72px, 8vw, 128px);
    padding-bottom: clamp(150px, 17vw, 210px);
}

.hero-campus__copy {
    max-width: 1180px;
    color: #FFFFFF;
}

.hero-campus__eyebrow {
    margin-bottom: 28px;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    font-size: clamp(.95rem, 1vw, 1.2rem);
    font-weight: 700;
    letter-spacing: .12em;
}

.hero-campus__copy h1 {
    margin-bottom: 38px;
    font-family: 'Poppins', 'Nunito', sans-serif;
    color: #FFFFFF;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.35rem, 4.6vw, 4.95rem);
    line-height: 1.30;
    font-weight: 500;
    letter-spacing: -.026em;
    word-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}

.btn.hero-campus__cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 46px;
    border-radius: 999px;
    background: var(--brand-gold);
    color: #1a3a2a !important;
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 18px 36px rgba(244, 173, 61, .28);
}

.btn.hero-campus__cta:hover {
    background: var(--warm-gold);
    color: #1a3a2a !important;
    transform: translateY(-2px);
}

.hero-campus__stats {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-campus__stat {
    min-width: 220px;
    padding: 18px 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .12);
    backdrop-filter: blur(10px);
}

.hero-campus__stat strong {
    display: block;
    margin-bottom: 6px;
    color: #FFFFFF;
    font-family: 'Quicksand', 'Nunito', sans-serif;
    font-size: clamp(1.7rem, 2.6vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
}

.hero-campus__stat span {
    display: block;
    color: rgba(255, 255, 255, .92);
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.hero-campus__admission {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #1a3a2a;
}

.hero-campus__admission-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gold);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
}

.hero-campus__admission-text {
    padding: 26px 14px;
    border-radius: 26px 0 0 26px;
    background: var(--brand-gold);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .03em;
    box-shadow: 0 24px 42px rgba(0, 0, 0, .18);
}

.campus-highlights {
    position: relative;
    z-index: 4;
    margin-top: -118px;
    padding-bottom: 48px;
}

.campus-highlights .service-item.campus-service-card {
    min-height: 330px;
    padding: 14px 14px 22px;
    border-radius: 28px;
    background: var(--ivory);
    color: var(--brand-muted);
    box-shadow: 0 24px 54px rgba(17, 40, 53, .12);
    border: 1px solid rgba(17, 40, 53, .06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.campus-highlights .service-item {
    transition: transform .35s ease, box-shadow .35s ease;
}

.campus-highlights .service-item:hover {
    margin-top: 0;
    background: var(--ivory);
    box-shadow: 0 28px 64px rgba(17, 40, 53, .16);
    transform: translateY(-10px);
}

.campus-service-card__image {
    width: 100%;
    height: 150px;
    display: block;
    margin-bottom: 14px;
    border-radius: 18px;
    object-fit: cover;
}

.campus-highlights .service-item *,
.campus-highlights .service-item:hover * {
    color: inherit !important;
}

.campus-service-card__icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--brand-navy-deep);
    font-size: 1.7rem;
}

.campus-highlights .service-item.campus-service-card h5 {
    color: var(--brand-navy-deep) !important;
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.campus-service-card p {
    margin-bottom: 14px;
    color: var(--brand-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.campus-service-card__points {
    list-style: none;
    padding: 0;
    margin: auto 0 0;
    display: grid;
    gap: 8px;
}

.campus-service-card__points li {
    padding: 7px 10px;
    border-radius: 14px;
    background: rgba(197, 160, 89, .12);
    color: var(--brand-navy-deep) !important;
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.3;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (max-width: 1399.98px) {
    .campus-menu > * + * {
        margin-left: 30px;
    }
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (max-width: 1199.98px) {
    .site-header {
        position: fixed;
    }

    .about-home__content {
        padding-left: 0;
    }

    .campus-topbar .campus-shell {
        min-height: auto;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .campus-brand {
        max-width: calc(100% - 70px);
    }

    .campus-navbar {
        padding: 18px 0;
    }

    .campus-navbar .navbar-collapse {
        flex-grow: 1;
        margin-top: 18px;
        padding-top: 16px;
        border-top: 1px solid rgba(48, 70, 87, .12);
    }

    .campus-menu {
        align-items: flex-start;
    }

    .campus-menu > * + * {
        margin-left: 0;
    }

    .campus-navbar .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 1.08rem;
    }

    .campus-navbar .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        padding-top: 0;
        padding-bottom: 8px;
    }

    .site-header.is-scrolled .campus-topbar {
        max-height: 0;
    }
}

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

    .hero-campus__content {
        padding-bottom: 120px;
    }

    .hero-campus__admission {
        top: auto;
        right: 18px;
        bottom: 18px;
        transform: none;
    }

    .hero-campus__admission-close {
        display: none;
    }

    .hero-campus__admission-text {
        padding: 14px 20px;
        border-radius: 999px;
        writing-mode: initial;
    }

    .campus-highlights {
        margin-top: -78px;
    }
}

@media (max-width: 767.98px) {
    .campus-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .about-home__title {
        font-size: 1.9rem;
    }

    .about-home__text,
    .about-home__list p {
        font-size: .95rem;
    }

    .about-home__list p {
        padding: 14px 18px;
    }

    .campus-topbar a {
        font-size: .84rem;
        gap: 10px;
    }

    .campus-topbar__left {
        gap: 18px;
    }

    .campus-brand {
        gap: 10px;
    }

    .campus-brand__logo {
        width: 60px;
        height: 60px;
        transform: scale(1.13);
    }

    .campus-brand__title {
        font-size: 1.18rem;
    }

    .campus-brand__subtitle {
        font-size: .78rem;
    }

    .hero-campus {
        min-height: 540px;
    }

    .hero-campus__eyebrow {
        letter-spacing: .08em;
    }

    .hero-campus__copy h1 {
        font-size: clamp(2.3rem, 12vw, 3.6rem);
    }

    .hero-campus__cta {
        padding: 15px 28px;
        font-size: 1rem;
    }

    .hero-campus__stats {
        margin-top: 22px;
        gap: 14px;
    }

    .hero-campus__stat {
        min-width: 180px;
        padding: 16px 20px;
    }

    .campus-highlights {
        margin-top: -48px;
    }

    .campus-service-card {
        min-height: 0;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.course-page-hero {
    position: relative;
    overflow: hidden;
    background: url(../img/herobg3.png) center center / cover no-repeat;
}

.course-page-hero--patientcare {
    background: #b7e4c7 url(../img/pc.jpg) center center / 60% auto no-repeat;
}

.course-page-hero--medicallab {
    background: url(../img/newmed.webp) center center / 50% auto no-repeat;
}

.course-page-hero--operation {
    background: url(../img/optt.jpg) center center / 88% auto no-repeat;
}

.course-page-hero--about {
    background: #f0faf4 url(../img/logo.png) center center / min(38%, 400px) auto no-repeat;
}

.course-page-hero--admission {
    background: url(../img/herobg3.png) center center / cover no-repeat;
}

.course-page-hero--branch {
    background: #f0faf4 url(../img/logo.png) center center / min(38%, 400px) auto no-repeat;
}

.course-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(32, 74, 102, .62) 0%, rgba(32, 74, 102, .56) 100%);
}

.course-page-hero__content {
    position: relative;
    z-index: 1;
    min-height: 345px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 92px;
    padding-bottom: 58px;
}

.course-page-hero__copy h1 {
    margin-bottom: 22px;
    color: #FFFFFF;
    font-family: 'Poppins', 'Nunito', sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.45rem);
    font-weight: 700;
    letter-spacing: -.025em;
}

.course-page-hero__breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.course-page-hero__breadcrumb li {
    position: relative;
    color: #FFFFFF;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.12rem;
    font-weight: 600;
}

.course-page-hero__breadcrumb li:not(:last-child)::after {
    content: ">";
    margin-left: 14px;
    opacity: .9;
}

.course-page-hero__breadcrumb a {
    color: #FFFFFF;
}

.course-page-hero__breadcrumb a:hover {
    color: #c9a84c;
}

.course-detail-page {
    background: linear-gradient(180deg, #f0faf4 0%, #FFFFFF 34%, #f0faf4 100%);
}

.course-detail-card {
    padding: 20px;
    border-radius: 30px;
    background: var(--ivory);
    border: 1px solid rgba(31, 89, 168, .08);
    box-shadow: 0 18px 36px rgba(29, 54, 83, .08);
}

.course-detail-card__image {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.course-detail-card--media {
    margin-bottom: 28px;
}

.course-detail-page__main {
    display: flex;
    flex-direction: column;
}

.course-detail-page__sidebar {
    position: relative;
}

.course-detail-page .section-title {
    color: var(--brand-navy-deep) !important;
}

.course-detail-page .section-title::before,
.course-detail-page .section-title::after {
    background: rgba(31, 89, 168, .14);
}

.course-detail-page__title {
    max-width: 760px;
    margin-bottom: 18px;
    color: var(--brand-navy-deep);
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: clamp(1.95rem, 2.7vw, 2.7rem);
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -.018em;
}

.course-detail-page__lead,
.course-detail-page__text {
    color: #2d6a4f;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.08rem;
    line-height: 1.8;
    font-weight: 500;
}

.course-detail-page__lead {
    margin-bottom: 18px;
    color: #2d6a4f;
    font-size: 1.12rem;
}

.course-detail-page__text {
    margin-bottom: 0;
    color: #587267;
}

.course-content-block {
    padding: 30px 32px 32px;
    border-radius: 28px;
    background: var(--ivory);
    border: 1px solid rgba(31, 89, 168, .08);
    box-shadow: 0 18px 34px rgba(18, 40, 64, .06);
}

.course-content-block .section-title {
    background: transparent !important;
}

.course-content-block + .course-content-block {
    margin-top: 26px;
}

.course-detail-page__info-grid,
.course-syllabus,
.course-detail-page__career-grid,
.course-detail-page__highlights {
    margin-top: 18px;
}

.course-detail-page__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.course-detail-page__info-card {
    height: 100%;
    padding: 24px 24px 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fffff0 0%, #FFFFFF 100%);
    border: 1px solid rgba(31, 89, 168, .10);
    box-shadow: 0 14px 26px rgba(18, 40, 64, .06);
}

.course-detail-page__info-card h3 {
    margin-bottom: 12px;
    color: var(--brand-navy-deep);
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
}

.course-detail-page__info-card p {
    margin-bottom: 0;
    color: #2d6a4f;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

.course-detail-page__meta-item {
    min-width: 170px;
    padding: 16px 18px;
    border-radius: 20px;
    background: var(--ivory);
    border: 1px solid rgba(31, 89, 168, .10);
    box-shadow: 0 12px 22px rgba(22, 46, 72, .06);
}

.course-detail-page__meta-label {
    display: block;
    margin-bottom: 6px;
    color: #587267;
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.course-detail-page__meta-item strong {
    color: #1a3a2a;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.course-detail-page__highlight {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fffff0 0%, #FFFFFF 100%);
    border: 1px solid rgba(31, 89, 168, .08);
    box-shadow: 0 12px 24px rgba(18, 40, 64, .06);
    color: #2d6a4f;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 600;
}

.course-detail-page__highlight i {
    margin-top: 2px;
    color: var(--brand-gold);
    flex-shrink: 0;
}

.course-syllabus {
    display: grid;
    gap: 22px;
    width: 100%;
}

.course-syllabus__year {
    padding: 24px;
    border-radius: 24px;
    min-width: 0;
    background: linear-gradient(180deg, #fffff0 0%, #FFFFFF 100%);
    border: 1px solid rgba(31, 89, 168, .08);
    box-shadow: 0 14px 28px rgba(20, 40, 64, .06);
}

.course-syllabus__year-head {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(31, 89, 168, .08);
}

.course-syllabus__year-head h3 {
    margin: 0;
    color: var(--brand-navy-deep);
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.course-syllabus__table {
    margin-bottom: 0;
    width: 100%;
    min-width: 640px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.course-syllabus__table thead th {
    padding: 14px 16px;
    background: var(--cloud-green);
    color: var(--brand-navy-deep);
    border-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.course-syllabus__table tbody td {
    padding: 16px;
    color: #2d6a4f;
    border-color: rgba(31, 89, 168, .08);
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 500;
    vertical-align: top;
}

.course-syllabus__table tbody tr:nth-child(even) td {
    background: var(--ivory);
}

.course-syllabus__table tbody td:first-child {
    width: 72px;
    color: var(--brand-navy-deep);
    font-weight: 700;
}

.course-syllabus__table tbody td:nth-child(2) {
    width: 110px;
    color: #587267;
}

.course-syllabus__table {
    width: 100%;
    min-width: 640px;
}

@media (max-width: 767.98px) {
    .course-syllabus__table,
    .course-syllabus__table thead th,
    .course-syllabus__table tbody td {
        white-space: normal;
    }
}

.course-syllabus__table--pair {
    table-layout: fixed;
}

.course-syllabus__table--pair thead th {
    white-space: normal;
}

.course-syllabus__table--pair tbody td:first-child,
.course-syllabus__table--pair tbody td:nth-child(2) {
    width: auto;
    color: #2d6a4f;
    font-weight: 500;
}

.course-admission {
    position: sticky;
    top: 138px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, #FFFFFF 0%, #fffff0 100%);
    border: 1px solid rgba(31, 89, 168, .08);
    box-shadow: 0 18px 34px rgba(22, 46, 72, .08);
    border-top: 6px solid var(--brand-navy-deep);
}

.course-admission__header {
    margin-bottom: 18px;
}

.course-admission__title {
    margin-bottom: 12px;
    color: var(--brand-navy-deep);
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.85rem;
    line-height: 1.2;
    font-weight: 700;
}

.course-admission__text {
    margin-bottom: 22px;
    color: #41576B;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

.course-admission__form {
    margin-top: 10px;
}

.course-admission__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.course-admission__meta-item {
    padding: 15px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f0faf4 0%, #f0faf4 100%);
    border: 1px solid rgba(31, 89, 168, .09);
}

.course-admission__meta-item span {
    display: block;
    margin-bottom: 4px;
    color: #587267;
    font-family: 'Montserrat', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.course-admission__meta-item strong {
    color: var(--brand-navy-deep);
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: .98rem;
    font-weight: 700;
    line-height: 1.35;
}

.course-admission__surface {
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #f0faf4 0%, #F3F8FF 100%);
    border: 1px solid rgba(31, 89, 168, .08);
}

.course-admission__label {
    display: block;
    margin-bottom: 8px;
    color: #587267;
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.course-admission__label span {
    color: #F35B31;
}

.course-admission__input {
    width: 100%;
    min-height: 56px;
    padding: 15px 16px;
    border: 1px solid #b7e4c7;
    border-radius: 14px;
    background: var(--ivory);
    color: #2d6a4f;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    box-shadow: 0 6px 18px rgba(20, 46, 74, .04);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.course-admission__input:focus {
    border-color: rgba(31, 89, 168, .42);
    box-shadow: 0 0 0 4px rgba(31, 89, 168, .08), 0 10px 20px rgba(20, 46, 74, .06);
    transform: translateY(-1px);
}

.course-admission__input::placeholder,
.course-admission__textarea::placeholder {
    color: #587267;
}

.course-admission__textarea {
    min-height: 205px;
    resize: vertical;
}

.course-admission__select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #587267 50%), linear-gradient(135deg, #587267 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.course-admission__submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 0;
    border-radius: 14px;
    background: var(--brand-navy-deep);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 16px 28px rgba(31, 89, 168, .20);
}

.course-admission__submit:hover {
    background: var(--mid-green);
}

.course-admission__contact-stack {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.course-admission__contact-note {
    padding: 12px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f0faf4 0%, #f0faf4 100%);
    border: 1px solid rgba(31, 89, 168, .08);
    color: var(--brand-navy-deep);
    font-family: 'Montserrat', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
}

.course-admission__contact {
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #FFFFFF 0%, #f0faf4 100%);
    border: 1px solid rgba(31, 89, 168, .08);
    text-align: left;
}

.course-admission__contact-link,
.course-admission__contact-mail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    line-height: 1.45;
}

.course-admission__contact-link {
    margin-bottom: 8px;
    color: var(--brand-navy-deep);
    font-size: 1.02rem;
    font-weight: 800;
}

.course-admission__contact-mail {
    color: #2d6a4f;
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
}

.course-admission__contact-link i,
.course-admission__contact-mail i {
    width: 18px;
    color: var(--brand-gold);
    flex-shrink: 0;
    text-align: center;
}

.course-admission__contact-link span,
.course-admission__contact-mail span {
    display: block;
}

.location-page {
    background: linear-gradient(180deg, #f0faf4 0%, #FFFFFF 36%, #f0faf4 100%);
}

.location-page__heading {
    max-width: 760px;
    margin: 0 auto 34px;
}

.location-page__heading h1 {
    margin-bottom: 12px;
    color: #1a3a2a;
    font-family: 'Poppins', 'Nunito', sans-serif;
    font-size: clamp(2rem, 3.4vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -.02em;
}

.location-page__intro {
    margin-bottom: 0;
    color: #587267;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.08rem;
    line-height: 1.8;
    font-weight: 500;
}

.location-hotline {
    margin-bottom: 28px;
    padding: 22px 26px;
    border-radius: 28px;
    background: linear-gradient(135deg, #2d6a4f 0%, #1a3a2a 100%);
    box-shadow: 0 18px 34px rgba(18, 40, 64, .14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.location-hotline__label {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .76);
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.location-hotline strong {
    color: #FFFFFF;
    font-family: 'Poppins', 'Nunito', sans-serif;
    font-size: clamp(1.55rem, 2.3vw, 2.15rem);
    font-weight: 700;
}

.location-hotline__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--warm-gold);
    color: #1a3a2a;
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-decoration: none;
    white-space: nowrap;
}

.location-hotline__button:hover {
    background: var(--mint);
    color: #1a3a2a;
}

.location-card {
    height: 100%;
    padding: 30px;
    border-radius: 30px;
    background: var(--ivory);
    border: 1px solid rgba(31, 89, 168, .08);
    box-shadow: 0 18px 34px rgba(18, 40, 64, .06);
}

.location-card__title {
    margin-bottom: 14px;
    color: #1a3a2a;
    font-family: 'Poppins', 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

.location-card__text {
    margin-bottom: 0;
    color: #587267;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.04rem;
    line-height: 1.8;
    font-weight: 500;
}

.location-info-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.location-info-item__icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%);
    color: #FFFFFF;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.location-info-item h5 {
    margin-bottom: 6px;
    color: var(--brand-navy-deep);
    font-family: 'Poppins', 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.location-info-item p,
.location-info-item a {
    margin: 0;
    color: #587267;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.location-info-item a:hover {
    color: var(--brand-navy-deep);
}

.location-map__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.location-map__header h3,
.location-form__title {
    margin: 0;
    color: var(--brand-navy-deep);
    font-family: 'Poppins', 'Nunito', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
}

.location-map__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--cloud-green);
    color: var(--brand-navy-deep);
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

.location-map__link:hover {
    background: var(--mint);
    color: #1a3a2a;
}

.location-map__frame {
    width: 100%;
    min-height: 450px;
    border: 0;
    border-radius: 24px;
}

.location-form {
    margin-top: 20px;
}

.location-form .form-floating > .form-control,
.location-form .form-floating > .form-select {
    height: 60px;
    border: 1px solid #b7e4c7;
    border-radius: 16px;
    box-shadow: none;
    font-family: 'Nunito', 'Montserrat', sans-serif;
}

.location-form .form-floating > textarea.form-control {
    height: 220px !important;
    border-radius: 20px;
}

.location-form .form-floating > label {
    color: #587267;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.location-form__button {
    width: 100%;
    min-height: 60px;
    border: 0;
    border-radius: 18px;
    background: var(--brand-navy-deep);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .03em;
    box-shadow: 0 16px 28px rgba(31, 89, 168, .20);
}

.location-form__button:hover {
    background: var(--mid-green);
}

@media (max-width: 767.98px) {
    .course-admission__contact-mail {
        font-size: .78rem;
    }

    .location-page__heading {
        margin-bottom: 26px;
    }

    .location-hotline,
    .location-map__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .location-card {
        padding: 22px;
        border-radius: 24px;
    }

    .location-card__title {
        font-size: 1.7rem;
    }

    .location-map__frame {
        min-height: 320px;
        border-radius: 18px;
    }

    .admission-page__surface {
        padding: 22px;
    }
}

.course-admission__hint {
    display: block;
    margin-top: 7px;
    color: #587267;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: .9rem;
    font-weight: 500;
}

@media (max-width: 1199.98px) {
    .course-page-hero__content {
        min-height: 300px;
        padding-top: 84px;
        padding-bottom: 48px;
    }

    .course-detail-page__meta-item {
        min-width: 150px;
    }

    .course-admission {
        top: 124px;
        padding: 24px;
    }
}

@media (max-width: 767.98px) {
    .whatsapp-float {
        right: 20px;
        bottom: 92px;
        width: 58px;
        height: 58px;
    }

    .whatsapp-float__icon {
        width: 30px;
        height: 30px;
    }

    .phone-float {
        right: 20px;
        bottom: 160px;
        width: 58px;
        height: 58px;
        font-size: 1.25rem;
    }

    .course-page-hero--about {
        background-size: 76% auto;
    }

    .course-page-hero--branch {
        background-size: 76% auto;
    }

    .course-page-hero--patientcare {
        background-size: 108% auto;
    }

    .course-page-hero__content {
        min-height: 260px;
        padding-top: 74px;
        padding-bottom: 42px;
    }

    .course-page-hero__copy h1 {
        margin-bottom: 16px;
    }

    .course-page-hero__breadcrumb {
        gap: 10px;
    }

    .course-page-hero__breadcrumb li {
        font-size: .96rem;
    }

    .course-page-hero__breadcrumb li:not(:last-child)::after {
        margin-left: 10px;
    }

    .course-detail-card {
        padding: 14px;
        border-radius: 22px;
    }

    .course-detail-card__image {
        border-radius: 16px;
    }

    .course-detail-page__title {
        font-size: 1.9rem;
    }

    .course-detail-page__lead,
    .course-detail-page__text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .course-content-block {
        padding: 22px 20px 24px;
        border-radius: 22px;
    }

    .course-content-block + .course-content-block {
        margin-top: 20px;
    }

    .course-detail-page__info-card {
        padding: 20px 20px 18px;
    }

    .course-syllabus__year {
        padding: 18px;
        border-radius: 20px;
    }

    .course-syllabus__table thead th,
    .course-syllabus__table tbody td {
        padding: 12px 10px;
        font-size: .92rem;
    }

    .course-detail-page__meta-item {
        width: 100%;
    }

    .course-admission {
        position: static;
        padding: 22px 20px;
        border-radius: 22px;
    }

    .course-admission__surface {
        padding: 18px;
        border-radius: 18px;
    }

    .course-admission__title {
        font-size: 1.55rem;
    }

    .course-admission__label {
        font-size: .72rem;
    }

    .course-admission__hint {
        font-size: .84rem;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

.section-title--index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: transparent !important;
    color: var(--brand-blue) !important;
    font-family: 'Montserrat', 'Nunito', sans-serif !important;
    font-size: clamp(1.05rem, 1.12vw, 1.4rem);
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1;
}

.section-title--index::before,
.section-title--index::after {
    position: static;
    content: "";
    width: 62px;
    height: 4px;
    background: var(--primary);
    border-radius: 999px;
}

.section-title--index.text-start {
    justify-content: flex-start;
}

@media (max-width: 767.98px) {
    .section-title--index {
        gap: 12px;
        font-size: 1rem;
    }

    .section-title--index::before,
    .section-title--index::after {
        width: 42px;
        height: 3px;
    }
}


/*** About Home ***/
.about-home .section-title {
    color: var(--brand-navy-deep) !important;
}

.about-home {
    scroll-margin-top: 150px;
}

.about-home__content {
    padding-left: 12px;
}

.about-home__title {
    max-width: 720px;
    color: var(--brand-navy-deep);
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: clamp(1.88rem, 2.65vw, 2.7rem);
    line-height: 1.40;
    font-weight: 600;
    letter-spacing: -.012em;
}

.about-home__text {
    max-width: 720px;
    color: #1a3a2a;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.08rem;
    line-height: 1.85;
    font-weight: 400;
}

.about-home__list .col-sm-6 {
    display: flex;
}

.about-home__list p {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    border-radius: 999px;
    background: var(--ivory);
    border: 1px solid rgba(31, 89, 168, .08);
    box-shadow: 0 14px 30px rgba(17, 40, 53, .08);
    color: #1a3a2a;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: .98rem;
    font-weight: 500;
    line-height: 1.5;
}

.about-home__list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(244, 173, 61, .18);
    color: var(--brand-gold);
    flex-shrink: 0;
}

.about-home__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--brand-gold);
    color: #1a3a2a !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    box-shadow: 0 18px 34px rgba(244, 173, 61, .22);
}

.about-home__btn:hover {
    background: var(--warm-gold);
    color: #1a3a2a !important;
}

.about-page__panel {
    position: relative;
}

.about-page__title {
    margin-bottom: 16px;
    color: var(--brand-navy-deep);
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    line-height: 1.24;
    font-weight: 700;
    letter-spacing: -.018em;
}

.about-page__text {
    margin-bottom: 0;
    color: #587267;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 500;
}

.about-page__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.about-page__list li {
    position: relative;
    padding-left: 28px;
    color: #587267;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.03rem;
    line-height: 1.75;
    font-weight: 600;
}

.about-page__list li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--brand-gold);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.admission-page__block {
    max-width: 1120px;
    margin: 0 auto;
}

.admission-page__header {
    margin-bottom: 22px;
}

.admission-page__surface {
    padding: 30px;
}

.admission-page__textarea {
    min-height: 150px;
}

.admission-page__submit {
    width: auto;
    min-height: 48px;
    padding: 12px 28px;
    font-size: .92rem;
}


/*** About Stats ***/
.about-stats {
    position: relative;
    z-index: 1;
}

.about-stats__panel {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 28px;
    background: var(--brand-navy-deep);
    box-shadow: 0 24px 42px rgba(20, 56, 110, .18);
}

.about-stats__item {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    text-align: center;
    position: relative;
}

.about-stats__item::after {
    position: absolute;
    content: "";
    top: 72px;
    right: 0;
    width: 1px;
    height: calc(100% - 144px);
    background: rgba(255, 255, 255, .22);
}

.about-stats__item--last::after {
    display: none;
}

.about-stats__number {
    margin-bottom: 10px;
    color: #FFFFFF;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: clamp(3.2rem, 4.2vw, 5rem);
    font-style: italic;
    font-weight: 800;
    line-height: .92;
    letter-spacing: -.04em;
}

.about-stats__label {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.02rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .about-stats__item {
        min-height: 220px;
    }

    .about-stats__item::after {
        top: 50%;
        right: 0;
        width: 1px;
        height: 96px;
        transform: translateY(-50%);
    }

    .about-stats .col-sm-6:nth-child(2) .about-stats__item::after,
    .about-stats .col-sm-6:nth-child(4) .about-stats__item::after {
        display: none;
    }
}

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

    .about-stats__item {
        min-height: 180px;
        padding: 28px 20px;
    }

    .about-stats__item::after {
        top: auto;
        right: 50%;
        bottom: 0;
        width: calc(100% - 48px);
        height: 1px;
        transform: translateX(50%);
    }

    .about-stats .col-sm-6:nth-child(2) .about-stats__item::after,
    .about-stats .col-sm-6:nth-child(3) .about-stats__item::after {
        display: block;
    }

    .about-stats .col-sm-6:last-child .about-stats__item::after {
        display: none;
    }

    .about-stats__number {
        font-size: 3.35rem;
    }

    .about-stats__label {
        font-size: .92rem;
        letter-spacing: .06em;
    }
}


/*** Career Pathways ***/
.career-pathways {
    background: linear-gradient(180deg, #f0faf4 0%, #FFFFFF 100%);
}

.career-pathways__label {
    color: #111111 !important;
}

.career-pathways__heading {
    color: var(--brand-navy-deep);
    font-family: 'Quicksand', 'Nunito', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.02em;
}

.career-accordion {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.career-accordion__item {
    overflow: hidden;
    border: 1px solid rgba(31, 89, 168, .10);
    border-radius: 26px !important;
    background: var(--ivory);
    box-shadow: 0 16px 34px rgba(18, 40, 64, .06);
}

.career-accordion__button {
    gap: 18px;
    padding: 24px 26px;
    background: linear-gradient(180deg, #fffff0 0%, #FFFFFF 100%);
    color: #1a3a2a;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
    box-shadow: none !important;
}

.career-accordion__button:not(.collapsed) {
    background: linear-gradient(180deg, #f0faf4 0%, #FFFFFF 100%);
    color: var(--brand-navy-deep);
}

.career-accordion__button::after {
    background-size: 1rem;
}

.career-accordion__code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--brand-navy-deep);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.career-accordion__title {
    flex: 1;
    line-height: 1.35;
}

.career-accordion__body {
    padding: 4px 26px 28px;
}

.career-accordion__intro {
    margin-bottom: 18px;
    color: #587267;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.04rem;
    line-height: 1.8;
    font-weight: 500;
}

.career-accordion__chip {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 18px;
    border-radius: 18px;
    background: var(--cloud-green);
    border: 1px solid rgba(31, 89, 168, .08);
    color: #2F4863;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: .98rem;
    line-height: 1.6;
    font-weight: 600;
}

.career-accordion__chip i {
    margin-top: 3px;
    color: var(--brand-gold);
}

.career-accordion__link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--brand-navy-deep);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .03em;
}

.career-accordion__link:hover {
    background: var(--mid-green);
    color: #FFFFFF;
}

.home-gallery {
    background: linear-gradient(180deg, #FFFFFF 0%, #f0faf4 100%);
}

.home-gallery__heading {
    color: var(--brand-navy-deep);
    font-family: 'Quicksand', 'Nunito', sans-serif;
    font-size: clamp(2rem, 3.3vw, 3.1rem);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.02em;
}

.home-gallery__grid {
    position: relative;
}

.home-gallery__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    background: var(--ivory);
    border: 1px solid rgba(31, 89, 168, .08);
    box-shadow: 0 16px 34px rgba(18, 40, 64, .07);
}

.home-gallery__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease, filter .3s ease;
}

.home-gallery__item:hover .home-gallery__image {
    transform: scale(1.04);
    filter: saturate(1.04);
}

.home-gallery-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.home-gallery-carousel .owl-item {
    padding: 0 2px;
}

.home-gallery-carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.home-gallery-carousel .owl-nav button.owl-prev,
.home-gallery-carousel .owl-nav button.owl-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--deep-forest) !important;
    color: #FFFFFF !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
    transition: background .25s ease, transform .25s ease;
}

.home-gallery-carousel .owl-nav button.owl-prev:hover,
.home-gallery-carousel .owl-nav button.owl-next:hover {
    background: var(--apple-green) !important;
    transform: translateY(-2px);
}

.home-gallery-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.home-gallery-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: rgba(45, 106, 79, .24);
    transition: width .25s ease, background .25s ease;
}

.home-gallery-carousel .owl-dot.active span {
    width: 26px;
    border-radius: 999px;
    background: var(--apple-green);
}

@media (max-width: 767.98px) {
    .career-pathways__heading {
        font-size: 1.95rem;
        line-height: 1.12;
    }

    .career-accordion__button {
        padding: 18px 18px;
        gap: 12px;
        font-size: 1.02rem;
    }

    .career-accordion__code {
        min-width: 66px;
        padding: 8px 12px;
    }

    .career-accordion__body {
        padding: 0 18px 22px;
    }

    .home-gallery__heading {
        font-size: 1.95rem;
    }

    .home-gallery__item {
        aspect-ratio: 1 / 1;
        border-radius: 18px;
    }

}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.top-courses-heading .section-title {
    color: var(--brand-navy-deep) !important;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: .04em;
}

.top-courses-heading h1 {
    color: var(--brand-navy-deep);
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -.012em;
}

.top-course-showcase {
    background: linear-gradient(180deg, #f0faf4 0%, #EEF4FA 100%);
}

.top-course-showcase .container {
    max-width: 1500px;
}

.top-course-grid {
    row-gap: 30px;
}

.top-course-grid > [class*="col-"] {
    display: flex;
    justify-content: center;
}

.top-course-card {
    width: min(100%, 446px);
    min-height: 590px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 22px 22px 26px;
    border-radius: 32px;
    background: var(--ivory);
    border: 1px solid rgba(31, 89, 168, .07);
    box-shadow: 0 16px 38px rgba(25, 57, 96, .09);
    transition: transform .35s ease, box-shadow .35s ease;
}

.top-course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(25, 57, 96, .12);
}

.top-course-card__media {
    overflow: hidden;
    border-radius: 26px;
}

.top-course-card__image {
    width: 100%;
    height: 196px;
    object-fit: cover;
    display: block;
}

.top-course-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 8px 0;
}

.top-course-card__code {
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--ivory);
    color: var(--brand-navy-deep);
    font-family: 'Montserrat', sans-serif;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.top-course-card__title {
    margin-bottom: 18px;
    color: var(--brand-navy-deep);
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: clamp(1.65rem, 1.9vw, 2.05rem);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -.02em;
}

.top-course-card__text {
    margin-bottom: 22px;
    color: #2d6a4f;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.top-course-card__btn {
    margin-top: auto;
    align-self: center;
    min-width: 194px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 17px;
    background: var(--brand-navy-deep);
    color: #FFFFFF;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(31, 89, 168, .24);
}

.top-course-card__btn:hover {
    background: var(--mid-green);
    color: #FFFFFF;
}

@media (max-width: 575.98px) {
    .top-course-card {
        width: 100%;
        min-height: auto;
        padding: 18px 18px 20px;
        border-radius: 26px;
    }

    .top-course-card__image {
        height: 186px;
    }

    .top-course-card__body {
        padding: 18px 6px 2px;
    }

    .top-course-card__code {
        margin-bottom: 14px;
        padding: 8px 14px;
        font-size: .82rem;
    }

    .top-course-card__title {
        font-size: 1.55rem;
    }

    .top-course-card__text {
        font-size: .97rem;
        line-height: 1.62;
    }

    .top-course-card__btn {
        min-width: 178px;
        padding: 13px 20px;
        border-radius: 16px;
        font-size: .98rem;
    }
}

/*** Team ***/
.team-item img {
    transition: .5s;
}

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


/*** Testimonial ***/
.testimonial-section__heading {
    color: #111111;
    font-family: 'Quicksand', 'Nunito', sans-serif;
    font-size: clamp(2rem, 3.1vw, 3rem);
    font-weight: 600;
    letter-spacing: -.02em;
}

.testimonial-item {
    padding: 10px 16px 24px;
}

.testimonial-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 89, 168, .12), rgba(255, 193, 7, .28));
    color: var(--brand-navy-deep);
    font-size: 1.45rem;
}

.testimonial-role {
    margin-bottom: 18px;
    color: #6C757D;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.testimonial-text {
    border-radius: 24px;
    border: 1px solid rgba(31, 89, 168, .08);
    box-shadow: 0 14px 30px rgba(18, 40, 64, .06);
}

.testimonial-text p {
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.8;
}

.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--brand-navy-deep) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--brand-navy-deep);
    border-color: var(--brand-navy-deep);
}

.coming-soon__button {
    background: var(--brand-navy-deep);
    border-color: var(--brand-navy-deep);
    color: #FFFFFF;
    border-radius: 999px;
}

.coming-soon__button:hover,
.coming-soon__button:focus {
    background: var(--mid-green);
    border-color: var(--mid-green);
    color: #FFFFFF;
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*** Footer Campus ***/
.footer-campus {
    background: linear-gradient(135deg, #1a3a2a 0%, #2d6a4f 54%, #1a3a2a 100%);
}
.footer-campus .campus-shell {
    width: min(100%, 1320px);
}
.footer-campus__panel {
    padding: 22px 0 20px;
}
.footer-campus__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.footer-campus__logo {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .94);
    object-fit: contain;
    padding: 7px;
    box-shadow: 0 10px 24px rgba(7, 17, 36, .16);
    transform: scale(1.16);
    transform-origin: center;
}
.footer-campus__title {
    margin: 0;
    color: #FFFFFF;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.26rem;
    font-weight: 800;
}
.footer-campus__subtitle {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: .88rem;
}
.footer-campus__text {
    max-width: 430px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .84);
    line-height: 1.78;
}
.footer-campus__contact-list {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-campus__contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-weight: 600;
    overflow-wrap: anywhere;
}
.footer-campus__contact-list i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #c9a84c;
}
.footer-campus__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--warm-gold);
    color: #1a3a2a;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(17, 35, 62, .18);
    transition: transform .25s ease, background .25s ease;
}
.footer-campus__cta:hover {
    color: #1a3a2a;
    background: var(--mint);
    transform: translateY(-2px);
}
.footer-campus__column h4 {
    margin-bottom: 16px;
    color: #FFFFFF;
    font-family: 'Nunito', 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
}
.footer-campus__column a {
    display: block;
    margin-bottom: 11px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
    transition: color .2s ease, transform .2s ease;
}
.footer-campus__column a:hover {
    color: #c9a84c;
    transform: translateX(3px);
}
.footer-campus__visit-card {
    margin-top: 16px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
}
.footer-campus__visit-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.footer-campus__visit-link {
    display: inline-flex !important;
    margin-bottom: 0 !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
}
.footer-campus__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .75);
    font-size: .95rem;
}
.footer-campus__bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-campus__bottom-links a {
    color: rgba(255, 255, 255, .78);
}
.footer-campus__bottom-links a:hover {
    color: #c9a84c;
}

/*** Apple Green Spa Static Page ***/
.spa-hero .hero-campus__overlay {
    background:
        linear-gradient(90deg, rgba(26, 58, 42, .78) 0%, rgba(26, 58, 42, .54) 46%, rgba(26, 58, 42, .26) 100%),
        linear-gradient(180deg, rgba(26, 58, 42, .18) 0%, rgba(26, 58, 42, .76) 100%);
}

.spa-section {
    background: var(--cloud-green);
}

.spa-image-frame {
    position: relative;
    min-height: 700px;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    border: 10px solid var(--ivory);
    box-shadow: 0 24px 54px rgba(26, 58, 42, .14);
}

@media (max-width: 767.98px) {
    .spa-image-frame {
        min-height: 420px;
    }
}

.spa-appointment {
    background:
        linear-gradient(135deg, rgba(183, 228, 199, .55) 0%, rgba(240, 250, 244, .92) 52%, rgba(255, 255, 240, .95) 100%);
}

.spa-heading {
    color: var(--deep-forest);
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.spa-copy {
    color: var(--brand-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.spa-service-showcase {
    background: var(--ivory);
}

.spa-service-showcase .section-title--index {
    color: var(--deep-forest) !important;
}

.spa-service-showcase .section-title--index::before,
.spa-service-showcase .section-title--index::after {
    background: var(--apple-green);
}

.spa-service-showcase .spa-heading {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.spa-service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(45, 106, 79, .14);
    box-shadow: 0 20px 44px rgba(26, 58, 42, .1);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.spa-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(82, 183, 136, .34);
    box-shadow: 0 28px 58px rgba(26, 58, 42, .16);
}

.spa-service-card img {
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover;
}

.spa-service-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 22px 26px;
    background:
        linear-gradient(180deg, rgba(240, 250, 244, .72) 0%, #FFFFFF 58%);
}

.spa-service-card__body h3 {
    margin-bottom: 12px;
    color: var(--deep-forest);
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.25;
}

.spa-service-card__body p {
    margin-bottom: 0;
    color: var(--brand-muted);
    font-size: .98rem;
    line-height: 1.72;
}

.oil-options {
    margin-top: 44px;
    padding: 34px 36px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(240, 250, 244, .96) 0%, #FFFFFF 100%);
    border: 1px solid rgba(45, 106, 79, .14);
}

.oil-options__intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.oil-options__intro h2 {
    margin: 0;
    color: var(--deep-forest);
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
}

.oil-options__intro p {
    max-width: 460px;
    margin: 0;
    color: var(--brand-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.oil-options__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.oil-options__item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 18px 20px;
    border-radius: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(82, 183, 136, .2);
    color: var(--deep-forest);
    font-weight: 700;
    font-size: 1.05rem;
}

.oil-options__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    border-radius: 50%;
    background: rgba(82, 183, 136, .14);
    color: var(--mid-green);
}

.spa-packages {
    background:
        linear-gradient(180deg, var(--cloud-green) 0%, #FFFFFF 100%);
}

.spa-packages .spa-heading {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.spa-package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 26px;
    border-radius: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(45, 106, 79, .14);
    box-shadow: 0 18px 40px rgba(26, 58, 42, .08);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.spa-package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(82, 183, 136, .34);
    box-shadow: 0 28px 58px rgba(26, 58, 42, .14);
}

.spa-package-card--featured {
    background: var(--deep-forest);
    border-color: var(--deep-forest);
    color: #FFFFFF;
}

.spa-package-card__label {
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(82, 183, 136, .14);
    color: var(--deep-forest);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.spa-package-card--featured .spa-package-card__label {
    background: rgba(255, 255, 255, .14);
    color: var(--mint);
}

.spa-package-card h3 {
    margin-bottom: 12px;
    color: var(--deep-forest);
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-size: 1.45rem;
}

.spa-package-card p {
    color: var(--brand-muted);
    line-height: 1.7;
}

.spa-package-card ul {
    display: grid;
    gap: 10px;
    margin: 6px 0 24px;
    padding: 0;
    list-style: none;
}

.spa-package-card li {
    position: relative;
    padding-left: 26px;
    color: var(--brand-muted);
    line-height: 1.5;
}

.spa-package-card li::before {
    position: absolute;
    top: 2px;
    left: 0;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--apple-green);
}

.spa-package-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 13px 18px;
    border-radius: 8px;
    background: var(--apple-green);
    color: #FFFFFF;
    font-weight: 800;
}

.spa-package-card a:hover {
    background: var(--mid-green);
    color: #FFFFFF;
}

.spa-package-card--featured h3,
.spa-package-card--featured p,
.spa-package-card--featured li {
    color: #FFFFFF;
}

.spa-package-card--featured a {
    background: var(--warm-gold);
    color: var(--deep-forest);
}

.spa-package-card--featured a:hover {
    background: var(--mint);
    color: var(--deep-forest);
}

@media (max-width: 991.98px) {
    .spa-service-card img {
        height: 210px;
    }

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

    .oil-options__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .spa-service-showcase .spa-heading {
        margin-bottom: 2rem !important;
        font-size: 1.9rem;
    }

    .spa-service-card img {
        height: 200px;
    }

    .spa-service-card__body {
        padding: 20px 18px 22px;
    }

    .oil-options {
        margin-top: 32px;
        padding: 24px 18px;
    }

    .oil-options__intro h2 {
        font-size: 1.35rem;
    }

    .spa-package-card {
        padding: 24px 20px;
    }
}

.spa-contact-card {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.spa-contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    padding: 14px 20px;
    border-radius: 8px;
    background: var(--ivory);
    color: var(--deep-forest);
    border: 1px solid rgba(45, 106, 79, .16);
    box-shadow: 0 12px 28px rgba(26, 58, 42, .08);
    font-weight: 700;
}

.spa-contact-card i {
    color: var(--apple-green);
}

.spa-form {
    padding: 30px;
    border-radius: 8px;
    background: var(--ivory);
    border: 1px solid rgba(45, 106, 79, .14);
    box-shadow: 0 24px 54px rgba(26, 58, 42, .12);
}

.spa-form .form-control,
.spa-form .form-select {
    min-height: 54px;
    border-radius: 8px;
    border-color: rgba(45, 106, 79, .2);
    background-color: #FFFFFF;
    color: var(--deep-forest);
}

.spa-form textarea.form-control {
    min-height: 132px;
}

.spa-form .form-control:focus,
.spa-form .form-select:focus {
    border-color: var(--apple-green);
    box-shadow: 0 0 0 .2rem rgba(82, 183, 136, .18);
}

.spa-why {
    background: var(--cloud-green);
}

.spa-location {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--cloud-green) 100%);
}

.spa-location .location-card {
    border-radius: 8px;
}

.spa-location .location-map__frame {
    min-height: 430px;
    border-radius: 8px;
}

.spa-why-card {
    height: 100%;
    padding: 30px 26px;
    border-radius: 8px;
    background: var(--ivory);
    border: 1px solid rgba(45, 106, 79, .14);
    box-shadow: 0 18px 40px rgba(26, 58, 42, .08);
}

.spa-why-card i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
    background: var(--mint);
    color: var(--deep-forest);
    font-size: 1.45rem;
}

.spa-why-card h4 {
    margin-bottom: 12px;
    color: var(--deep-forest);
    font-family: 'Poppins', 'Outfit', sans-serif;
    font-size: 1.25rem;
}

.spa-why-card p {
    margin-bottom: 0;
    color: var(--brand-muted);
    line-height: 1.7;
}
@media (max-width: 991.98px) {
    .footer-campus__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 767.98px) {
    .footer-campus__panel {
        padding-top: 16px;
    }
    .footer-campus__brand {
        align-items: flex-start;
    }
    .footer-campus__logo {
        width: 54px;
        height: 54px;
        transform: scale(1.12);
    }
    .footer-campus__title {
        font-size: 1.12rem;
    }
    .footer-campus__bottom-links {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/*** Mobile Responsive Polish ***/
@media (max-width: 1199.98px) {
    .campus-menu > * + * {
        margin-left: 0;
    }

    .campus-navbar .navbar-collapse {
        width: 100%;
        margin-top: 14px;
        padding: 14px 0 4px;
        border-top: 1px solid rgba(26, 58, 42, .1);
    }

    .campus-navbar .navbar-nav {
        align-items: stretch;
        gap: 4px;
    }

    .campus-navbar.navbar-light .navbar-nav .nav-link {
        width: 100%;
        padding: 11px 2px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .site-header {
        position: fixed;
    }

    .site-header-spacer {
        display: block;
    }

    .campus-topbar {
        max-height: none;
        overflow: visible;
    }

    .site-header.is-scrolled .campus-topbar {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    }

    .campus-topbar .campus-shell {
        min-height: 0;
        display: block;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .campus-topbar__left {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, auto) minmax(0, 1fr);
        align-items: center;
        gap: 10px;
    }

    .campus-topbar__right {
        display: none;
    }

    .campus-topbar a,
    .campus-topbar__meta {
        justify-content: flex-start;
        max-width: 100%;
        min-width: 0;
        font-size: .7rem;
        line-height: 1.25;
        text-align: left;
        letter-spacing: 0;
        gap: 6px;
        white-space: nowrap;
        overflow: hidden;
    }

    .campus-topbar a span,
    .campus-topbar__meta-text {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .campus-topbar__left a:last-child {
        justify-content: flex-end;
        text-align: right;
    }

    .campus-topbar a i,
    .campus-topbar__meta i {
        flex: 0 0 auto;
        font-size: .76rem;
    }

    .campus-navbar {
        padding: 10px 0;
    }

    .site-header.is-scrolled .campus-navbar {
        padding: 10px 0;
    }

    .campus-navbar .campus-shell {
        align-items: center;
    }

    .campus-brand {
        max-width: calc(100% - 50px);
        margin-right: 0;
        gap: 8px;
    }

    .campus-brand__logo,
    .site-header.is-scrolled .campus-brand__logo {
        width: 58px;
        height: 48px;
        object-fit: contain;
        transform: none;
    }

    .campus-brand__title,
    .site-header.is-scrolled .campus-brand__title {
        font-size: 1rem;
        line-height: 1.08;
    }

    .campus-brand__subtitle,
    .site-header.is-scrolled .campus-brand__subtitle {
        max-height: none;
        margin-top: 2px;
        font-size: .66rem;
        opacity: 1;
    }

    .hero-campus {
        min-height: 620px;
        align-items: flex-end;
    }

    .hero-campus__content {
        padding-top: 84px;
        padding-bottom: 104px;
    }

    .hero-campus__admission {
        left: 50%;
        right: auto;
        bottom: 22px;
        transform: translateX(-50%);
    }

    .hero-campus__copy h1 {
        font-size: clamp(2.15rem, 12vw, 3rem);
        line-height: 1.14;
    }

    .hero-campus__stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-campus__stat {
        width: 100%;
        min-width: 0;
    }

    .campus-highlights {
        margin-top: 0;
        padding-top: 28px;
    }

    .campus-highlights .service-item.campus-service-card,
    .spa-package-card,
    .spa-why-card,
    .location-card {
        padding: 22px 18px;
    }

    .spa-service-card img {
        height: 210px;
    }

    .spa-form {
        padding: 22px 18px;
    }

    .spa-contact-card a,
    .footer-campus__contact-list a,
    .location-info-item a {
        max-width: 100%;
        word-break: break-word;
    }

    .location-info-item {
        gap: 12px;
    }

    .location-info-item__icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

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

    .spa-location .location-map__frame,
    .location-map__frame {
        min-height: 320px;
    }

    .footer-campus {
        margin-top: 0 !important;
    }

    .footer-campus__bottom {
        gap: 14px;
        font-size: .88rem;
    }

    .back-to-top {
        right: 18px;
        bottom: 18px;
    }
}

@media (max-width: 575.98px) {
    .container,
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-title--index {
        gap: 10px;
        font-size: .92rem;
    }

    .section-title--index::before,
    .section-title--index::after {
        width: 28px;
    }

    .spa-heading,
    .home-gallery__heading,
    .career-pathways__heading,
    .testimonial-section__heading {
        font-size: 1.75rem !important;
        line-height: 1.15;
    }

    .about-stats__item {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .home-gallery-carousel .owl-nav button.owl-prev,
    .home-gallery-carousel .owl-nav button.owl-next {
        width: 42px;
        height: 42px;
    }

    .whatsapp-float,
    .phone-float {
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float {
        bottom: 82px;
    }

    .phone-float {
        bottom: 144px;
        font-size: 1.12rem;
    }

    .whatsapp-float__icon {
        width: 27px;
        height: 27px;
    }
}

@media (max-width: 420px) {
    .campus-topbar .campus-shell {
        gap: 5px;
    }

    .campus-topbar__left {
        grid-template-columns: minmax(112px, auto) minmax(0, 1fr);
        gap: 8px;
    }

    .campus-topbar a,
    .campus-topbar__meta {
        width: auto;
        font-size: .62rem;
    }
}
