/* assets/css/style.css */

:root {
    --primary: #FB0068;
    --primary-dark: #690F95;
    --accent: #24152D;
    --accent-2: #553064;
    --teal: #0FA3A0;
    --gold: #F3A21A;
    --neutral-light: #F7F8FB;
    --text-dark: #24212B;
    --text-muted: #667085;
    --border: #E7E2EA;
    --shadow: 0 20px 55px rgba(36, 21, 45, .13);
    --shadow-soft: 0 12px 34px rgba(36, 21, 45, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.cms-preview-mode [data-cms-key],
body.cms-preview-mode [data-cms-image-key],
body.cms-preview-mode [data-cms-link-key],
body.cms-preview-mode [data-cms-class-key],
body.cms-preview-mode [data-cms-alt-key] {
    cursor: pointer;
    outline: 2px dashed rgba(251, 0, 104, .58);
    outline-offset: 4px;
    transition: outline-color .2s ease, box-shadow .2s ease;
}

body.cms-preview-mode [data-cms-key]:hover,
body.cms-preview-mode [data-cms-image-key]:hover,
body.cms-preview-mode [data-cms-link-key]:hover,
body.cms-preview-mode [data-cms-class-key]:hover,
body.cms-preview-mode [data-cms-alt-key]:hover {
    outline-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(251, 0, 104, .14);
}

body {
    background: #fff;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
}

a {
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn {
    border-radius: 6px;
    font-weight: 700;
    padding: .72rem 1.35rem;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 14px 26px rgba(211, 19, 116, .24);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.bg-primary,
.bg-secondary,
.bg-dark {
    background: linear-gradient(135deg, #2E1740 0%, #D31374 100%) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.badge.bg-primary {
    background: var(--primary) !important;
}

.form-control,
.form-select {
    border-color: var(--border);
    border-radius: 8px;
    min-height: 48px;
    padding: .72rem .9rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(251, 0, 104, .45);
    box-shadow: 0 0 0 .25rem rgba(251, 0, 104, .14);
}

.course-decision-list {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.course-decision-list div {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: .85rem 1rem;
}

.course-decision-list div+div {
    border-top: 1px solid var(--border);
}

.course-decision-list span {
    color: var(--text-muted);
    font-size: .86rem;
    font-weight: 700;
}

.course-decision-list strong {
    color: var(--text-dark);
    font-size: .92rem;
    text-align: right;
}

/* Header */
.top-bar {
    background: #690F95;
    color: #fff;
    font-size: .86rem;
    padding: .55rem 0;
}

.top-bar a {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
}

.top-bar a:hover {
    color: #fff;
}

.top-contact,
.top-actions {
    align-items: center;
    display: flex;
    gap: 1.15rem;
}

.top-contact i,
.top-actions i {
    margin-right: .42rem;
}

.top-actions>a:first-child {
    color: #fff;
    font-weight: 700;
}

.main-navbar {
    background: rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(36, 21, 45, .05);
    box-shadow: 0 14px 38px rgba(36, 21, 45, .05);
    isolation: isolate;
    position: sticky;
    transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s ease;
    z-index: 1040;
}

.main-navbar::before {
    background: linear-gradient(90deg, rgba(251, 0, 104, .35), rgba(243, 162, 26, .28), rgba(15, 163, 160, .3));
    bottom: -1px;
    content: "";
    height: 1px;
    left: 0;
    opacity: .7;
    position: absolute;
    right: 0;
    z-index: 0;
}

.main-navbar::after {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    bottom: .5rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .34);
    content: "";
    left: max(1rem, calc((100% - 1320px) / 2));
    pointer-events: none;
    position: absolute;
    right: max(1rem, calc((100% - 1320px) / 2));
    top: .5rem;
    z-index: 0;
}

.main-navbar>.container {
    position: relative;
    z-index: 1;
}

@supports ((backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px))) {
    .main-navbar {
        -webkit-backdrop-filter: blur(18px) saturate(150%);
        backdrop-filter: blur(18px) saturate(150%);
    }
}

.main-navbar.is-scrolled {
    background: rgba(255, 255, 255, .68);
    border-color: rgba(36, 21, 45, .1);
    box-shadow: 0 18px 46px rgba(36, 21, 45, .1);
}

.navbar {
    padding-bottom: .5rem;
    padding-top: .5rem;
}

.navbar-brand img {
    display: block;
    height: auto;
    max-height: 74px;
    max-width: 220px;
    object-fit: contain;
    transition: max-height .28s ease, transform .28s ease;
    width: auto;
}

.main-navbar.is-scrolled .navbar-brand img {
    max-height: 64px;
}

.navbar-brand:hover img {
    transform: translateY(-1px);
}

.navbar-toggler {
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(36, 21, 45, .14);
    border-radius: 6px;
    box-shadow: 0 10px 22px rgba(36, 21, 45, .08);
    padding: .55rem .65rem;
    transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, .9);
    transform: translateY(-1px);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .18rem rgba(211, 19, 116, .16);
}

.navbar-toggler-icon {
    background-image: none;
    height: 18px;
    position: relative;
    width: 22px;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    border-top: 2px solid var(--accent);
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    left: 0;
    position: absolute;
    width: 22px;
}

.navbar-toggler-icon::before {
    top: 6px;
    transition: transform .22s ease, top .22s ease;
}

.navbar-toggler-icon::after {
    top: 14px;
    transition: transform .22s ease, top .22s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 8px;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 8px;
    transform: rotate(-45deg);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .94rem;
    font-weight: 700;
    letter-spacing: .01em;
    padding: .72rem .9rem !important;
    position: relative;
    transition: color .22s ease, transform .22s ease;
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(36, 21, 45, .08);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    margin-top: .75rem;
    padding: .6rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-link:hover {
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    background: var(--primary);
    border-radius: 999px;
    bottom: .35rem;
    content: "";
    height: 3px;
    left: .9rem;
    opacity: 0;
    position: absolute;
    right: .9rem;
    transform: scaleX(.35);
    transform-origin: center;
    transition: opacity .22s ease, transform .22s ease;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.course-nav-row {
    align-items: center;
    display: flex;
    position: relative;
    z-index: 2;
}

.course-nav-link {
    flex: 0 0 auto;
    white-space: nowrap;
}

.course-submenu-toggle {
    align-items: center;
    background: rgba(251, 0, 104, .08);
    border: 1px solid rgba(251, 0, 104, .18);
    border-radius: 6px;
    color: var(--primary);
    display: inline-flex;
    flex: 0 0 38px;
    height: 38px;
    justify-content: center;
    margin-left: .35rem;
    transition: background-color .2s ease, transform .2s ease;
    width: 38px;
}

.course-submenu-toggle:hover,
.course-submenu-toggle:focus {
    background: rgba(251, 0, 104, .14);
    outline: none;
}

.course-submenu-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.course-submenu-toggle i {
    font-size: .78rem;
    transition: transform .2s ease;
}

.dropdown-menu {
    background: rgba(255, 255, 255, .92);
    border: 0;
    border-radius: 8px;
    box-shadow: 0 24px 55px rgba(36, 21, 45, .16);
    margin-top: .45rem;
    min-width: 14rem;
    padding: .65rem;
}

@media (min-width: 992px) {
    .navbar-nav {
        flex-wrap: nowrap;
        gap: .05rem;
    }

    .navbar-nav .nav-item {
        flex: 0 0 auto;
        position: relative;
    }

    .navbar-nav .nav-link,
    .navbar-nav .btn {
        white-space: nowrap;
    }

    .navbar .dropdown {
        position: relative;
    }

    .navbar .dropdown::before {
        bottom: -1rem;
        content: "";
        height: 1rem;
        left: 0;
        position: absolute;
        right: 0;
    }

    .navbar .dropdown>.dropdown-menu {
        display: block;
        left: 0;
        opacity: 0;
        pointer-events: none;
        top: 100%;
        transform: translateY(10px);
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
        visibility: hidden;
        z-index: 1060;
    }

    .navbar .dropdown:hover>.dropdown-menu,
    .navbar .dropdown:focus-within>.dropdown-menu,
    .navbar .dropdown.show>.dropdown-menu,
    .navbar .dropdown>.dropdown-menu.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .navbar .dropdown:hover>.nav-link,
    .navbar .dropdown:focus-within>.nav-link,
    .course-nav-item:hover .course-nav-link,
    .course-nav-item:focus-within .course-nav-link {
        color: var(--primary);
        transform: translateY(-1px);
    }

    .navbar .dropdown:hover>.nav-link::after,
    .navbar .dropdown:focus-within>.nav-link::after,
    .course-nav-item:hover .course-nav-link::after,
    .course-nav-item:focus-within .course-nav-link::after {
        opacity: 1;
        transform: scaleX(1);
    }
}

.dropdown-item {
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 600;
    padding: .65rem .9rem;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.dropdown-item:hover {
    background: rgba(211, 19, 116, .08);
    color: var(--primary);
    transform: translateX(3px);
}

/* Hero */
.hero-carousel {
    color: #fff;
    min-height: 680px;
    overflow: hidden;
    position: relative;
}

.hero-carousel::after {
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--teal));
    bottom: 0;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 5;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    min-height: 680px;
}

.hero-slide-img {
    height: 680px;
    min-height: 680px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    width: 100%;
}

.carousel-item.active .hero-slide-img {
    animation: heroImageDrift 7s ease-out forwards;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(20, 12, 28, .9) 0%, rgba(36, 21, 45, .72) 46%, rgba(36, 21, 45, .22) 100%),
        radial-gradient(circle at 18% 30%, rgba(211, 19, 116, .32), transparent 34%);
    inset: 0;
    position: absolute;
    z-index: 1;
}

.hero-slide-content {
    align-items: center;
    display: flex;
    bottom: 0;
    left: 0;
    min-height: 680px;
    padding-bottom: 8.5rem;
    padding-left: calc((100vw - min(1140px, calc(100vw - 2.5rem))) / 2);
    padding-right: calc((100vw - min(1140px, calc(100vw - 2.5rem))) / 2);
    padding-top: 5.5rem;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.hero-content {
    max-width: 730px;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
    width: min(100%, 730px);
}

.carousel-item.active .hero-content,
.page-ready .reveal-on-load {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1,
.hero-content .hero-title {
    font-size: clamp(2.85rem, 5.2vw, 4.9rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 1.35rem;
}

.hero-content h1::after,
.hero-content .hero-title::after {
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 999px;
    content: "";
    display: block;
    height: 5px;
    margin-top: 1.3rem;
    width: 150px;
}

.hero-content p {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-actions .btn-outline-light {
    border-width: 2px;
    color: #fff;
}

.hero-actions .btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
}

.hero-quick-panel {
    align-items: center;
    background: rgba(255, 255, 255, .95);
    border-left: 5px solid var(--primary);
    border-radius: 8px;
    bottom: 36px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, .18);
    color: var(--text-dark);
    display: flex;
    gap: 1.2rem;
    justify-content: space-between;
    left: 50%;
    max-width: 1120px;
    padding: 1.15rem 1.3rem;
    position: absolute;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    z-index: 6;
}

.hero-quick-panel strong {
    color: var(--accent);
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.hero-quick-panel span {
    color: var(--text-muted);
    display: block;
    font-size: .9rem;
}

.hero-quick-panel a {
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.hero-control {
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
    width: 46px;
}

.carousel-control-prev,
.carousel-control-next {
    bottom: 126px;
    top: auto;
    width: auto;
    z-index: 7;
}

.carousel-control-prev {
    left: auto;
    right: 112px;
}

.carousel-control-next {
    right: 54px;
}

.carousel-control-prev:hover .hero-control,
.carousel-control-next:hover .hero-control {
    background: rgba(255, 255, 255, .25);
    transform: scale(1.04);
}

.hero-carousel .carousel-indicators {
    bottom: 112px;
    justify-content: flex-start;
    margin-left: calc((100vw - min(1140px, calc(100vw - 2rem))) / 2);
    margin-right: 0;
    z-index: 6;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    border: 0;
    border-radius: 999px;
    height: 5px;
    opacity: .55;
    width: 34px;
}

.hero-carousel .carousel-indicators .active {
    background-color: var(--primary);
    opacity: 1;
    width: 54px;
}

/* Inner pages */
.page-hero {
    background:
        radial-gradient(circle at 16% 24%, rgba(251, 0, 104, .12), transparent 34%),
        linear-gradient(180deg, rgba(247, 248, 251, .94), #fff);
    overflow: hidden;
    padding: 92px 0 72px;
    position: relative;
}

.page-hero::after {
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--teal));
    bottom: 0;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
}

.page-hero-grid {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 5vw, 4.5rem);
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
}

.page-hero h1 {
    color: var(--accent);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.02;
    margin-bottom: 1.2rem;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
    max-width: 690px;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

.page-hero-media {
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: 420px;
    overflow: hidden;
    position: relative;
}

.page-hero-media::after {
    background: linear-gradient(180deg, transparent 46%, rgba(36, 21, 45, .32));
    content: "";
    inset: 0;
    position: absolute;
}

.page-hero-media img {
    aspect-ratio: 4 / 3;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* Sections */
.section-padding {
    padding: 90px 0;
}

.section-label {
    color: var(--primary);
    display: block;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: .8rem;
    text-transform: uppercase;
}

.section-title {
    color: var(--accent);
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.section-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 700px;
}

.about-preview,
.why-section {
    background: #fff;
}

.about-preview {
    background:
        radial-gradient(circle at 22% 74%, rgba(251, 0, 104, .07), transparent 30%),
        radial-gradient(circle at 78% 70%, rgba(15, 163, 160, .06), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fff 62%, rgba(247, 248, 251, .82) 100%);
    overflow: hidden;
}

.rebrand-video-section {
    background:
        linear-gradient(180deg, #fff 0%, rgba(247, 248, 251, .92) 52%, #fff 100%);
    overflow: hidden;
    position: relative;
}

.rebrand-video-grid {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 5vw, 4.25rem);
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
}

.rebrand-video-copy .section-text {
    max-width: 680px;
}

.rebrand-video-points {
    display: grid;
    gap: .8rem;
    margin-top: 1.4rem;
}

.rebrand-video-points span {
    align-items: center;
    color: var(--accent);
    display: flex;
    font-weight: 700;
    gap: .75rem;
    line-height: 1.45;
}

.rebrand-video-points i {
    align-items: center;
    background: rgba(15, 163, 160, .12);
    border-radius: 8px;
    color: var(--teal);
    display: inline-flex;
    flex: 0 0 42px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.rebrand-video-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.75rem;
}

.rebrand-video-card {
    background: #15101C;
    border: 1px solid rgba(36, 21, 45, .14);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(36, 21, 45, .2);
    overflow: hidden;
    position: relative;
}

.rebrand-video-card::before {
    background: linear-gradient(90deg, var(--primary), var(--teal), var(--gold));
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.rebrand-video-topbar {
    align-items: center;
    color: rgba(255, 255, 255, .78);
    display: flex;
    gap: .48rem;
    min-height: 48px;
    padding: .95rem 1rem .65rem;
}

.rebrand-video-topbar span {
    background: rgba(255, 255, 255, .32);
    border-radius: 50%;
    display: inline-flex;
    height: 10px;
    width: 10px;
}

.rebrand-video-topbar span:first-child {
    background: var(--primary);
}

.rebrand-video-topbar span:nth-child(2) {
    background: var(--gold);
}

.rebrand-video-topbar span:nth-child(3) {
    background: var(--teal);
}

.rebrand-video-topbar strong {
    font-size: .78rem;
    letter-spacing: .08em;
    margin-left: auto;
    text-transform: uppercase;
}

.rebrand-video-frame {
    background: #050408;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.rebrand-video {
    aspect-ratio: 16 / 9;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.rebrand-video-caption {
    align-items: center;
    color: #fff;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem 1.1rem;
}

.rebrand-video-caption strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.rebrand-video-caption span {
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
    text-align: right;
}

.about-preview-grid {
    margin-inline: auto;
    max-width: 1260px;
}

.about-image-wrap {
    --about-photo-ratio: 1672 / 941;
    --about-frame-scale: 1;
    --about-cutout-scale: 1.055;
    --about-roof-lift: clamp(16px, 2vw, 30px);
    isolation: isolate;
    margin-left: auto;
    max-width: 760px;
    position: relative;
}

.about-campus-photo {
    padding-top: var(--about-roof-lift);
    position: relative;
    transform: translateZ(0);
    transition: transform .35s ease;
    z-index: 2;
}

.about-campus-photo::before {
    background:
        linear-gradient(135deg, rgba(251, 0, 104, .14), rgba(15, 163, 160, .11)),
        #fff;
    border-radius: 8px;
    bottom: -18px;
    box-shadow: 0 24px 60px rgba(36, 21, 45, .12);
    content: "";
    left: 30px;
    position: absolute;
    right: 30px;
    top: calc(var(--about-roof-lift) + 30px);
    transform: rotate(-1.2deg);
    z-index: 0;
}

.about-campus-frame {
    aspect-ratio: var(--about-photo-ratio);
    border: 1px solid rgba(231, 226, 234, .92);
    border-radius: 8px;
    box-shadow:
        0 26px 64px rgba(36, 21, 45, .14),
        0 1px 0 rgba(255, 255, 255, .8) inset;
    overflow: hidden;
    position: relative;
    transition: box-shadow .35s ease, transform .35s ease;
    z-index: 1;
}

.about-campus-frame::after {
    background:
        linear-gradient(180deg, transparent 54%, rgba(36, 21, 45, .66) 100%),
        linear-gradient(90deg, rgba(36, 21, 45, .08), transparent 52%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.about-campus-frame>img {
    display: block;
    filter: saturate(.98) brightness(.98);
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(var(--about-frame-scale));
    transform-origin: center top;
    transition: filter .35s ease, transform .45s ease;
    width: 100%;
}

.about-campus-cutout {
    --about-cutout-base-transform: translateY(calc(var(--about-roof-lift) * -1)) scale(var(--about-cutout-scale));
    aspect-ratio: var(--about-photo-ratio);
    display: block;
    filter: drop-shadow(0 12px 15px rgba(36, 21, 45, .17));
    height: auto;
    left: 0;
    object-fit: cover;
    object-position: center top;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    top: var(--about-roof-lift);
    transform: var(--about-cutout-base-transform);
    transform-origin: center top;
    transition: filter .35s ease, transform .45s cubic-bezier(.2, .8, .2, 1);
    width: 100%;
    will-change: transform;
    z-index: 3;
}

.about-campus-photo:hover,
.about-campus-photo:focus-within {
    transform: translateY(-3px);
}

.about-campus-photo:hover .about-campus-frame,
.about-campus-photo:focus-within .about-campus-frame {
    box-shadow:
        0 30px 72px rgba(36, 21, 45, .17),
        0 1px 0 rgba(255, 255, 255, .85) inset;
    transform: translateY(2px);
}

.about-campus-photo:hover .about-campus-frame>img,
.about-campus-photo:focus-within .about-campus-frame>img {
    filter: saturate(1.03) brightness(1);
    transform: scale(1.025);
}

.about-campus-photo:hover .about-campus-cutout,
.about-campus-photo:focus-within .about-campus-cutout {
    filter: drop-shadow(0 18px 20px rgba(36, 21, 45, .22));
    opacity: 1;
    transform: translateY(calc((var(--about-roof-lift) * -1) - 6px)) scale(1.07);
}

.about-campus-caption {
    align-items: flex-end;
    background: linear-gradient(180deg, transparent 0%, rgba(36, 21, 45, .2) 22%, rgba(36, 21, 45, .72) 100%);
    border-radius: 0 0 8px 8px;
    bottom: 0;
    color: #fff;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    left: 0;
    padding: 1rem 1.25rem .95rem;
    position: absolute;
    right: 0;
    z-index: 4;
}

.about-campus-caption strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.2;
}

.about-campus-caption span {
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border-radius: 8px;
    color: var(--accent);
    display: inline-flex;
    font-size: .86rem;
    font-weight: 800;
    gap: .45rem;
    line-height: 1.2;
    padding: .55rem .7rem;
    white-space: nowrap;
}

.about-campus-caption i {
    color: var(--primary);
}

.about-copy {
    max-width: 560px;
    position: relative;
    z-index: 5;
}

.about-copy .section-title {
    font-size: clamp(2rem, 2.85vw, 2.65rem);
    max-width: 520px;
}

.about-copy .section-text {
    max-width: 100%;
    text-align: left;
}

.about-points {
    display: grid;
    gap: .9rem;
    margin-top: 1.3rem;
}

.about-points div {
    align-items: center;
    color: var(--accent);
    display: flex;
    font-weight: 700;
    gap: .8rem;
}

.about-points i {
    align-items: center;
    background: rgba(211, 19, 116, .1);
    border-radius: 8px;
    color: var(--primary);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.programme-section {
    background:
        radial-gradient(circle at 14% 10%, rgba(251, 0, 104, .08), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(15, 163, 160, .09), transparent 24%),
        linear-gradient(180deg, #fff 0%, var(--neutral-light) 100%);
    overflow: hidden;
    position: relative;
}

.section-heading {
    margin: 0 auto 2.6rem;
    max-width: 760px;
    text-align: center;
}

.section-heading .section-text {
    margin-left: auto;
    margin-right: auto;
}

.programme-pathway {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 1;
}

.programme-card {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(231, 226, 234, .92);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(36, 21, 45, .07);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 305px;
    overflow: hidden;
    padding: 1rem 1rem 1.35rem;
    position: relative;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.programme-card::before {
    background: linear-gradient(90deg, var(--primary), var(--gold));
    content: "";
    height: 5px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .25s ease;
    z-index: 2;
}

.programme-card:hover {
    border-color: rgba(211, 19, 116, .24);
    box-shadow: 0 22px 60px rgba(36, 21, 45, .15);
    color: var(--text-dark);
    transform: translateY(-6px);
}

.programme-card:hover::before {
    opacity: 1;
}

.programme-card>i {
    align-items: center;
    background: var(--accent);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 1.7rem;
    height: 62px;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 62px;
}

.programme-card small {
    align-items: center;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(36, 21, 45, .12);
    color: var(--accent);
    display: inline-flex;
    font-size: .72rem;
    font-weight: 900;
    left: 1.75rem;
    letter-spacing: .08em;
    line-height: 1;
    padding: .58rem .78rem;
    position: absolute;
    top: 1.75rem;
    text-transform: uppercase;
    z-index: 3;
}

.programme-card-featured {
    min-height: 430px;
}

.programme-card-featured:nth-child(2)>i {
    background: var(--primary-dark);
}

.programme-card-featured:nth-child(3)>i {
    background: var(--teal);
}

.programme-card h3,
.why-card h3 {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.25;
}

.programme-card h3 {
    margin: 1.15rem .35rem .45rem;
}

.programme-card p,
.why-card p {
    color: var(--text-muted);
    line-height: 1.65;
}

.programme-card p {
    margin: 0 .35rem 1rem;
}

.programme-card span {
    align-items: center;
    color: var(--primary);
    display: inline-flex;
    gap: .45rem;
    font-weight: 800;
    margin-top: auto;
    padding: 0 .35rem;
}

.programme-card span i {
    font-size: .82rem;
    transition: transform .22s ease;
}

.programme-card:hover span i {
    transform: translateX(4px);
}

.programme-media {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.programme-media::after {
    background: linear-gradient(180deg, rgba(36, 21, 45, .03) 0%, rgba(36, 21, 45, .34) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.programme-image {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: transform .35s ease, filter .35s ease;
}

.programme-card:hover .programme-image {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.035);
}

.programme-support-grid {
    align-items: start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(36, 21, 45, .06);
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(220px, .35fr) minmax(0, .65fr);
    padding: 1.4rem;
}

.programme-support-grid h3 {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0;
}

.programme-mini-grid {
    display: grid;
    gap: .85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.programme-mini-card {
    align-items: flex-start;
    background: var(--neutral-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-dark);
    display: grid;
    gap: .4rem;
    min-height: 150px;
    padding: 1rem;
    text-decoration: none;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.programme-mini-card:hover {
    border-color: rgba(251, 0, 104, .22);
    box-shadow: var(--shadow-soft);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.programme-mini-card i {
    color: var(--primary);
    font-size: 1.25rem;
}

.programme-mini-card strong {
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-size: .98rem;
    font-weight: 900;
    line-height: 1.3;
}

.programme-mini-card span {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.5;
}

.degree-cta {
    background: var(--neutral-light);
    padding: 0 0 90px;
}

.degree-panel {
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: #fff;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    overflow: hidden;
    padding: 3rem;
    position: relative;
}

.degree-cta .degree-panel {
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 255, 255, .22), transparent 24%),
        radial-gradient(circle at 84% 76%, rgba(15, 163, 160, .24), transparent 28%),
        linear-gradient(135deg, var(--primary), var(--primary-dark) 42%, var(--accent) 74%, #150c1b);
    background-size: 125% 125%, 135% 135%, 180% 180%;
    animation: degreePanelAura 11s ease-in-out infinite;
    box-shadow: 0 26px 78px rgba(36, 21, 45, .24), inset 0 1px 0 rgba(255, 255, 255, .22);
    isolation: isolate;
    transform: translateZ(0);
    transition: transform .28s ease, box-shadow .28s ease;
}

.degree-cta .degree-panel:hover {
    box-shadow: 0 34px 92px rgba(36, 21, 45, .29), inset 0 1px 0 rgba(255, 255, 255, .28);
    transform: translateY(-5px) scale(1.006);
}

.degree-cta .degree-panel::before {
    animation: degreeNetworkDrift 16s linear infinite;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .9) 0 1.7px, transparent 2.2px),
        radial-gradient(circle, rgba(243, 162, 26, .8) 0 1.4px, transparent 1.9px),
        radial-gradient(circle, rgba(15, 163, 160, .8) 0 1.5px, transparent 2px),
        linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, .21) 47%, rgba(255, 255, 255, .21) 48%, transparent 49% 100%),
        linear-gradient(35deg, transparent 0 47%, rgba(255, 255, 255, .14) 48%, rgba(255, 255, 255, .14) 49%, transparent 50% 100%),
        linear-gradient(145deg, transparent 0 48%, rgba(15, 163, 160, .2) 49%, rgba(15, 163, 160, .2) 50%, transparent 51% 100%);
    background-position: 0 0, 18px 12px, 8px 24px, 0 0, 24px 18px, 12px 8px;
    background-size: 34px 34px, 68px 68px, 92px 92px, 156px 156px, 132px 132px, 190px 190px;
    content: "";
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, .2));
    inset: -22%;
    opacity: .58;
    position: absolute;
    z-index: 0;
}

.degree-panel::after {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    content: "";
    height: 240px;
    position: absolute;
    right: -70px;
    top: -80px;
    width: 240px;
}

.degree-cta .degree-panel::after {
    animation: degreeGlowPulse 7s ease-in-out infinite;
    background:
        radial-gradient(circle at 38% 42%, rgba(255, 255, 255, .28), transparent 42%),
        radial-gradient(circle at 72% 30%, rgba(243, 162, 26, .34), transparent 31%),
        radial-gradient(circle at 34% 74%, rgba(15, 163, 160, .28), transparent 34%);
    box-shadow: 0 0 90px rgba(255, 255, 255, .08), inset 0 0 54px rgba(255, 255, 255, .08);
    height: 310px;
    right: -104px;
    top: -116px;
    width: 310px;
    z-index: 0;
}

.degree-cta .degree-panel h2::after {
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, .24));
    border-radius: 999px;
    content: "";
    display: block;
    height: 3px;
    margin-top: 1rem;
    max-width: 170px;
    transform-origin: left center;
}

.degree-cta .degree-panel > div {
    position: relative;
    z-index: 1;
}

.degree-panel h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: .8rem;
    position: relative;
    z-index: 1;
}

.degree-panel p {
    color: rgba(255, 255, 255, .86);
    font-size: 1.06rem;
    line-height: 1.7;
    margin: 0;
    max-width: 780px;
    position: relative;
    z-index: 1;
}

.degree-panel .btn {
    color: var(--primary);
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.degree-cta .degree-panel .btn:hover,
.degree-cta .degree-panel .btn:focus {
    box-shadow: 0 16px 30px rgba(36, 21, 45, .18);
}

.why-card {
    background: var(--neutral-light);
    border: 1px solid transparent;
    border-radius: 8px;
    height: 100%;
    padding: 1.7rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.why-card:hover {
    border-color: rgba(211, 19, 116, .14);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.why-card i {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.4rem;
}

/* Cards */
.course-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: transform .28s ease, box-shadow .28s ease;
}

.course-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.course-card img {
    height: 220px;
    object-fit: cover;
}

.course-card .card-body {
    padding: 1.5rem;
}

.course-card .card-title {
    min-height: 3rem;
}

.course-filter-panel {
    align-items: end;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(36, 21, 45, .06);
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.course-filter-panel h2 {
    color: var(--accent);
    font-size: 1.55rem;
    font-weight: 900;
    margin-bottom: .35rem;
}

.course-filter-panel p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* News, events, and careers */
.section-heading-row {
    align-items: end;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.news-events-section,
.career-values-section {
    background: #fff;
}

.news-feature-grid,
.career-values-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
}

.news-feature-card {
    background: linear-gradient(135deg, rgba(36, 21, 45, .94), rgba(153, 14, 88, .9));
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: #fff;
    min-height: 100%;
    padding: clamp(1.6rem, 4vw, 2.4rem);
}

.news-feature-card .section-label,
.news-feature-card p {
    color: rgba(255, 255, 255, .78);
}

.news-feature-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.news-feature-card p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.news-list,
.career-value-list {
    display: grid;
    gap: 1rem;
}

.news-card,
.event-card,
.career-role-card,
.career-value-item,
.process-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.news-card,
.career-value-item {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
}

.news-card-icon,
.career-value-item i {
    align-items: center;
    background: rgba(251, 0, 104, .09);
    border-radius: 8px;
    color: var(--primary);
    display: inline-flex;
    flex: 0 0 48px;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.news-meta,
.career-role-card span {
    color: var(--primary);
    display: block;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
    margin-bottom: .45rem;
    text-transform: uppercase;
}

.news-card h3,
.event-card h3,
.career-role-card h3,
.process-step h3 {
    color: var(--accent);
    font-size: 1.18rem;
    font-weight: 900;
    margin-bottom: .45rem;
}

.news-card p,
.event-card p,
.career-role-card p,
.career-value-item p,
.process-step p {
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.news-real-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-page {
    --news-ink: #24152d;
    --news-line: rgba(36, 21, 45, .1);
}

.news-page-intro {
    align-items: stretch;
    background:
        linear-gradient(135deg, rgba(105, 15, 149, .07), rgba(251, 0, 104, .05)),
        #fff;
    border: 1px solid var(--news-line);
    border-radius: 8px;
    display: grid;
    gap: clamp(1.4rem, 3vw, 2.4rem);
    grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
    overflow: hidden;
    padding: clamp(1.4rem, 4vw, 2.6rem);
}

.news-page-intro-copy {
    align-self: center;
    max-width: 680px;
}

.news-page-intro-copy h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.06;
}

.news-spotlight-card {
    background: #fff;
    border: 1px solid var(--news-line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(36, 21, 45, .1);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
}

.news-spotlight-card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.news-spotlight-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.35rem;
}

.news-spotlight-body h3 {
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.22;
    margin-bottom: .75rem;
}

.news-spotlight-body h3 a {
    color: var(--accent);
    text-decoration: none;
}

.news-spotlight-body p {
    color: var(--text-muted);
    line-height: 1.7;
}

.news-spotlight-empty {
    background:
        radial-gradient(circle at top right, rgba(251, 0, 104, .16), transparent 38%),
        linear-gradient(135deg, #fff, rgba(105, 15, 149, .06));
}

.news-filter-bar {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.news-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.news-filter-tabs a {
    border: 1px solid var(--news-line);
    border-radius: 8px;
    color: var(--accent);
    font-weight: 800;
    padding: .62rem .9rem;
    text-decoration: none;
}

.news-filter-tabs a.active,
.news-filter-tabs a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.news-search-box {
    align-items: center;
    background: #fff;
    border: 1px solid var(--news-line);
    border-radius: 8px;
    display: flex;
    min-width: min(100%, 360px);
    overflow: hidden;
}

.news-search-box i {
    color: var(--primary);
    padding-left: 1rem;
}

.news-search-box input {
    border: 0;
    flex: 1;
    min-width: 0;
    outline: 0;
    padding: .72rem .8rem;
}

.news-search-box button {
    background: var(--primary);
    border: 0;
    color: #fff;
    font-weight: 800;
    padding: .72rem 1rem;
}

.news-real-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-real-card,
.event-real-card,
.empty-public-state,
.news-detail-body {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.news-real-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
}

.news-real-image {
    align-items: center;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(105, 15, 149, .09), rgba(251, 0, 104, .12));
    color: var(--primary);
    display: flex;
    font-size: 2rem;
    justify-content: center;
    overflow: hidden;
}

.news-real-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
    width: 100%;
}

.news-real-card:hover .news-real-image img {
    transform: scale(1.04);
}

.news-real-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.news-real-body h3 {
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: .65rem;
}

.news-real-body h3 a,
.event-real-card h3 a {
    color: var(--accent);
    text-decoration: none;
}

.news-real-body p,
.event-real-card p {
    color: var(--text-muted);
    line-height: 1.65;
}

.news-read-link {
    align-items: center;
    color: var(--primary);
    display: inline-flex;
    font-weight: 800;
    gap: .45rem;
    margin-top: auto;
    text-decoration: none;
}

.event-real-list {
    display: grid;
    gap: 1rem;
}

.event-real-card {
    align-items: flex-start;
    display: grid;
    gap: 1rem;
    grid-template-columns: 76px minmax(0, 1fr) 190px;
    padding: 1rem;
}

.event-real-content {
    min-width: 0;
}

.event-real-date {
    align-items: center;
    background: var(--primary);
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 76px;
    justify-content: center;
    line-height: 1;
    width: 76px;
}

.event-real-date strong {
    font-size: 1.8rem;
}

.event-real-date span {
    font-size: .82rem;
    font-weight: 800;
    margin-top: .3rem;
    text-transform: uppercase;
}

.event-real-meta,
.news-detail-facts {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1rem;
}

.event-real-meta span,
.news-detail-facts span {
    align-items: center;
    color: var(--text-muted);
    display: inline-flex;
    font-size: .92rem;
    gap: .45rem;
}

.event-real-media {
    align-items: center;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(105, 15, 149, .08), rgba(251, 0, 104, .13));
    border-radius: 8px;
    color: var(--primary);
    display: flex;
    font-size: 1.8rem;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
}

.event-real-media img {
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
    width: 100%;
}

.event-real-card:hover .event-real-media img {
    transform: scale(1.04);
}

.event-real-card .news-read-link {
    margin-top: .8rem;
}

.event-recap-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-recap-card {
    background: #fff;
    border: 1px solid var(--news-line, var(--border));
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
}

.event-recap-media {
    align-items: center;
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at top right, rgba(251, 0, 104, .15), transparent 36%),
        linear-gradient(135deg, rgba(105, 15, 149, .08), #fff);
    color: var(--primary);
    display: flex;
    font-size: 2rem;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.event-recap-media img {
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
    width: 100%;
}

.event-recap-card:hover .event-recap-media img {
    transform: scale(1.04);
}

.event-recap-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.2rem;
}

.event-recap-body h3 {
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: .65rem;
}

.event-recap-body h3 a {
    color: var(--accent);
    text-decoration: none;
}

.event-recap-body p {
    color: var(--text-muted);
    line-height: 1.65;
}

.empty-public-state {
    padding: 2.5rem;
    text-align: center;
}

.empty-public-state-soft {
    align-items: center;
    display: flex;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    text-align: left;
}

.empty-public-state.is-compact {
    padding: 1.75rem;
}

.empty-public-state i {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: .8rem;
}

.empty-public-state h3 {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 900;
}

.empty-public-state p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.news-events-panel {
    background:
        linear-gradient(135deg, rgba(247, 248, 251, .98), #fff);
    border: 1px solid var(--news-line);
    border-radius: 8px;
    padding: clamp(1.35rem, 4vw, 2.5rem);
}

.news-events-panel-head {
    align-items: end;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.news-back-link {
    align-items: center;
    color: rgba(255, 255, 255, .82);
    display: inline-flex;
    font-weight: 800;
    gap: .45rem;
    margin-bottom: 1.2rem;
    text-decoration: none;
}

.news-detail-hero {
    background:
        radial-gradient(circle at 14% 22%, rgba(251, 0, 104, .24), transparent 32%),
        linear-gradient(135deg, rgba(36, 21, 45, .98), rgba(105, 15, 149, .94));
    color: #fff;
}

.news-detail-grid {
    align-items: center;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
}

.news-detail-grid h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.news-detail-grid .lead {
    color: rgba(255, 255, 255, .82);
}

.news-detail-grid img {
    aspect-ratio: 16 / 11;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.news-detail-wrap {
    margin-bottom: 4rem;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.news-detail-layout {
    align-items: start;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) 330px;
}

.news-detail-body {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 860px;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.news-detail-body h2,
.news-detail-body h3,
.news-detail-body h4 {
    color: var(--accent);
    font-weight: 900;
    margin-top: 1.6rem;
}

.news-detail-gallery {
    margin-top: 2rem;
}

.news-gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.news-gallery-grid figure {
    margin: 0;
}

.news-gallery-grid img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.news-gallery-link {
    display: block;
}

.news-lightbox {
    align-items: center;
    background: rgba(15, 10, 25, .88);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 2rem;
    position: fixed;
    z-index: 9999;
}

.news-lightbox:target {
    display: flex;
}

.news-lightbox img {
    border-radius: 8px;
    max-height: 86vh;
    max-width: min(1100px, 92vw);
    object-fit: contain;
}

.news-lightbox-close {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color: var(--accent);
    display: inline-flex;
    font-size: 2rem;
    height: 44px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 1.4rem;
    text-decoration: none;
    top: 1.4rem;
    width: 44px;
}

.event-detail-sidebar {
    background: #fff;
    border: 1px solid var(--news-line, var(--border));
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    padding: 1.25rem;
    position: sticky;
    top: 110px;
}

.event-detail-sidebar h2 {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.event-detail-fact {
    border-bottom: 1px solid var(--news-line, var(--border));
    display: grid;
    gap: .1rem .75rem;
    grid-template-columns: 28px minmax(0, 1fr);
    padding: .8rem 0;
}

.event-detail-fact i {
    color: var(--primary);
    grid-row: span 2;
    margin-top: .2rem;
}

.event-detail-fact span {
    color: var(--text-muted);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.event-detail-fact strong {
    color: var(--accent);
    font-weight: 900;
}

.event-detail-actions {
    display: grid;
    gap: .65rem;
    margin-top: 1rem;
}

.news-gallery-grid figcaption {
    color: var(--text-muted);
    font-size: .9rem;
    margin-top: .45rem;
}

.upcoming-events-section,
.careers-intro-section,
.application-process-section {
    background: var(--neutral-light);
}

.event-grid,
.career-role-grid,
.process-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card {
    align-items: center;
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
}

.event-date {
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 72px;
    flex-direction: column;
    height: 72px;
    justify-content: center;
    width: 72px;
}

.event-date strong {
    font-size: 1.55rem;
    line-height: 1;
}

.event-date span {
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.career-role-card,
.process-step {
    padding: 1.45rem;
    transition: transform .25s ease, box-shadow .25s ease;
}

.career-role-card:hover,
.process-step:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.career-role-card>i {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.15rem;
}

.career-role-card a {
    color: var(--primary);
    display: inline-flex;
    font-weight: 900;
    gap: .45rem;
    margin-top: 1.1rem;
    text-decoration: none;
}

.career-value-item strong {
    color: var(--accent);
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: .25rem;
}

.process-step span {
    color: rgba(251, 0, 104, .22);
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: .9rem;
}

.course-filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: flex-end;
}

.course-filter-chip {
    align-items: center;
    background: var(--neutral-light);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--accent);
    display: inline-flex;
    font-size: .86rem;
    font-weight: 800;
    gap: .45rem;
    line-height: 1;
    padding: .7rem .9rem;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.course-filter-chip span {
    align-items: center;
    background: #fff;
    border-radius: 999px;
    color: var(--primary);
    display: inline-flex;
    font-size: .74rem;
    height: 22px;
    justify-content: center;
    min-width: 22px;
    padding: 0 .4rem;
}

.course-filter-chip:hover,
.course-filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.course-filter-chip:hover span,
.course-filter-chip.active span {
    color: var(--accent);
}

.course-badge {
    background: rgba(211, 19, 116, .1);
    border-radius: 4px;
    color: var(--primary);
    display: inline-block;
    font-size: .75rem;
    font-weight: 800;
    padding: .4rem .6rem;
}

.course-meta {
    display: grid;
    gap: .55rem;
    margin-top: 1rem;
}

.course-meta span {
    align-items: center;
    color: var(--text-muted);
    display: flex;
    font-size: .9rem;
    gap: .55rem;
}

.course-meta i {
    color: var(--primary);
    width: 16px;
}

.course-fact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.course-fact-strip span {
    align-items: center;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(36, 21, 45, .08);
    border-radius: 6px;
    color: var(--accent);
    display: inline-flex;
    font-size: .92rem;
    font-weight: 800;
    gap: .5rem;
    padding: .62rem .82rem;
}

.course-fact-strip i {
    color: var(--primary);
}

.course-apply-link {
    border-top: 1px solid var(--border);
    color: var(--primary);
    display: block;
    font-size: .9rem;
    font-weight: 800;
    margin-top: 1.15rem;
    padding-top: 1rem;
    text-decoration: none;
}

.trust-section {
    background: #fff;
}

.trust-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card {
    background: var(--neutral-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid;
    gap: .65rem;
    padding: 1.35rem;
}

.trust-card i {
    color: var(--primary);
    font-size: 1.65rem;
}

.trust-card strong {
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.trust-card span {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.6;
}

.application-next-steps,
.privacy-check {
    background: var(--neutral-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
}

.privacy-check {
    align-items: flex-start;
    display: flex;
    gap: .75rem;
    padding-left: 1rem;
}

.privacy-check .form-check-input {
    flex: 0 0 auto;
    margin-left: 0;
    margin-top: .2rem;
}

.privacy-check .form-check-label {
    display: block;
    margin: 0;
}

.application-next-steps strong,
.application-next-steps span {
    display: block;
}

.application-next-steps strong {
    color: var(--accent);
    margin-bottom: .25rem;
}

.application-next-steps span,
.privacy-check label {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.55;
}

.policy-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
    max-width: 880px;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.policy-panel h2 {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: 1.6rem;
}

.policy-panel p {
    color: var(--text-muted);
    line-height: 1.75;
}

.course-apply-link:hover {
    color: var(--primary-dark);
}

.course-placeholder {
    background: var(--accent-2);
    color: #fff;
    height: 220px;
}

.empty-courses {
    background: #fff;
    border: 1px dashed rgba(211, 19, 116, .35);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
}

.empty-courses i {
    color: var(--primary);
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.empty-courses h3 {
    color: var(--accent);
    font-weight: 800;
}

.empty-courses p {
    color: var(--text-muted);
    margin: 0 auto 1.5rem;
    max-width: 560px;
}

.seo-content-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(36, 21, 45, .06);
    padding: 1.75rem;
}

.seo-content-panel h2 {
    color: var(--accent);
    font-size: 1.55rem;
    font-weight: 900;
    margin-bottom: .85rem;
}

.seo-content-panel p {
    color: var(--text-muted);
    line-height: 1.75;
}

.seo-highlight-grid {
    display: grid;
    gap: .85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.25rem;
}

.seo-keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}

.seo-keyword-list span {
    background: rgba(105, 15, 149, .08);
    border: 1px solid rgba(105, 15, 149, .16);
    border-radius: 999px;
    color: var(--accent);
    font-size: .82rem;
    font-weight: 800;
    padding: .45rem .7rem;
}

.seo-highlight-grid div {
    background: var(--neutral-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
}

.seo-highlight-grid strong {
    color: var(--accent);
    display: block;
    font-size: .86rem;
    margin-bottom: .35rem;
}

.seo-highlight-grid span {
    color: var(--text-muted);
    display: block;
    font-size: .92rem;
    line-height: 1.55;
}

.seo-pathway-note {
    align-items: flex-start;
    background: rgba(15, 163, 160, .09);
    border: 1px solid rgba(15, 163, 160, .18);
    border-radius: 8px;
    color: var(--accent);
    display: flex;
    gap: .85rem;
    line-height: 1.65;
    margin: 1.2rem 0;
    padding: 1rem;
}

.seo-pathway-note i {
    align-items: center;
    background: #fff;
    border-radius: 8px;
    color: var(--teal);
    display: inline-flex;
    flex: 0 0 40px;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.seo-pathway-note span {
    display: block;
}

.seo-faq-list {
    background: var(--neutral-light);
    border-radius: 8px;
    padding: 1rem;
}

.seo-faq-list h3 {
    color: var(--accent);
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: .8rem;
}

.seo-faq-list details {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: .65rem;
    padding: .85rem 1rem;
}

.seo-faq-list details:last-child {
    margin-bottom: 0;
}

.seo-faq-list summary {
    color: var(--accent);
    cursor: pointer;
    font-weight: 800;
}

.seo-faq-list p {
    font-size: .92rem;
    margin: .65rem 0 0;
}

.breadcrumb-light a,
.breadcrumb-light .breadcrumb-item,
.breadcrumb-light .breadcrumb-item::before {
    color: rgba(255, 255, 255, .78);
}

.breadcrumb-light .breadcrumb-item.active {
    color: #fff;
}

.bg-light-gray {
    background: var(--neutral-light);
}

.popular-courses .section-text {
    max-width: 560px;
}

.testimonials-section {
    background: linear-gradient(180deg, #fff 0%, #faf8fb 100%);
}

.testimonials-heading {
    align-items: end;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    margin-bottom: 2rem;
}

.testimonials-heading .section-title {
    margin-bottom: 0;
    max-width: 760px;
}

.testimonials-summary {
    display: grid;
    gap: 1rem;
    justify-items: end;
    text-align: right;
}

.review-source-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    justify-content: flex-end;
}

.review-source-pills span {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 800;
    line-height: 1;
    padding: .55rem .8rem;
}

.testimonials-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-carousel .carousel-item {
    transition: transform .65s ease-in-out;
}

.testimonial-carousel-controls {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.75rem;
}

.testimonial-carousel-btn {
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--accent);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
    width: 42px;
}

.testimonial-carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.testimonial-carousel-indicators {
    align-items: center;
    display: flex;
    gap: .45rem;
    margin: 0;
    position: static;
}

.testimonial-carousel-indicators [data-bs-target] {
    background: rgba(36, 21, 45, .22);
    border: 0;
    border-radius: 999px;
    height: 8px;
    margin: 0;
    opacity: 1;
    width: 8px;
}

.testimonial-carousel-indicators .active {
    background: var(--primary);
    width: 28px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 265px;
    padding: 1.35rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.testimonial-card:hover {
    border-color: rgba(251, 0, 104, .22);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.testimonial-card-top {
    align-items: flex-start;
    display: flex;
    gap: .9rem;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.testimonial-author {
    align-items: center;
    display: flex;
    gap: .85rem;
    min-width: 0;
}

.testimonial-author img,
.testimonial-avatar {
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(36, 21, 45, .12);
    flex: 0 0 48px;
    height: 48px;
    object-fit: cover;
    width: 48px;
}

.testimonial-avatar {
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
}

.testimonial-author>div:last-child {
    min-width: 0;
}

.testimonial-author strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.testimonial-source-badge {
    align-items: center;
    background: rgba(251, 0, 104, .08);
    border: 1px solid rgba(251, 0, 104, .12);
    border-radius: 999px;
    color: var(--primary);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: .72rem;
    font-weight: 900;
    gap: .35rem;
    line-height: 1;
    padding: .45rem .6rem;
}

.testimonial-card-google .testimonial-source-badge {
    background: rgba(66, 133, 244, .08);
    border-color: rgba(66, 133, 244, .14);
    color: #3367d6;
}

.testimonial-card-facebook .testimonial-source-badge {
    background: rgba(24, 119, 242, .08);
    border-color: rgba(24, 119, 242, .14);
    color: #1877f2;
}

.testimonial-stars {
    color: var(--gold);
    display: flex;
    gap: .2rem;
    margin-bottom: .75rem;
}

.testimonial-body {
    flex: 1 1 auto;
}

.testimonial-card p {
    color: var(--text-dark);
    font-size: .98rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    color: var(--accent);
    font-size: .95rem;
    font-weight: 800;
}

.testimonial-card span {
    color: var(--text-muted);
    font-size: .82rem;
}

.testimonial-footer {
    align-items: center;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1rem;
}

.testimonial-source-link {
    color: var(--primary);
    display: inline-flex;
    font-size: .88rem;
    font-weight: 800;
    margin-top: .85rem;
    text-decoration: none;
}

.testimonial-footer .testimonial-source-link {
    margin-top: 0;
    white-space: nowrap;
}

.testimonial-source-link:hover {
    color: var(--accent);
}

.testimonial-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.final-cta {
    background:
        linear-gradient(135deg, rgba(36, 21, 45, .94), rgba(153, 14, 88, .92)),
        url('../images/about-campus.jpg') center/cover no-repeat;
    padding: 82px 0;
}

.final-cta-grid {
    align-items: center;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
}

.final-cta h2 {
    font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.cta-benefits {
    display: grid;
    gap: .85rem;
}

.cta-benefits span {
    align-items: center;
    color: rgba(255, 255, 255, .88);
    display: flex;
    font-weight: 700;
    gap: .7rem;
}

.cta-benefits i {
    color: var(--gold);
}

/* Footer */
.footer-area {
    background: #d70c61;
    padding-bottom: 0 !important;
}

.footer-area h5 {
    color: #fff;
}

.footer-logo {
    align-items: center;
    display: inline-flex;
    margin-bottom: 1rem;
}

.footer-logo img {
    display: block;
    filter: brightness(0) invert(1);
    height: auto;
    max-width: 220px;
    width: 100%;
}

.footer-social a {
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    text-decoration: none;
    width: 38px;
}

.footer-social a:hover {
    background: #fff;
    color: var(--primary);
}

.footer-link {
    color: rgba(255, 255, 255, .72);
    display: block;
    margin-bottom: .4rem;
    text-decoration: none;
}

.footer-link:hover {
    color: #fff;
}

.footer-contact a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-apply-btn {
    align-items: center;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 6px;
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    gap: .55rem;
    margin-top: 1rem;
    padding: .75rem 1rem;
    text-decoration: none;
}

.footer-apply-btn:hover {
    background: #fff;
    color: var(--primary);
}

.footer-bottom {
    background: #690F95;
    border-top: 1px solid rgba(255, 255, 255, .16);
    margin-top: 1rem;
    padding: 1rem 0;
}

.whatsapp-float {
    align-items: center;
    background: #25D366;
    border-radius: 999px;
    bottom: 22px;
    box-shadow: 0 16px 36px rgba(37, 211, 102, .34);
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    gap: .55rem;
    padding: .85rem 1.05rem;
    position: fixed;
    right: 22px;
    text-decoration: none;
    z-index: 1050;
}

.pec-chatbot {
    bottom: 82px;
    position: fixed;
    right: 22px;
    z-index: 1051;
}

.pec-chat-toggle {
    align-items: center;
    background: linear-gradient(135deg, #690F95, #FB0068);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 16px 38px rgba(105, 15, 149, .28);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 800;
    gap: .55rem;
    padding: .85rem 1.05rem;
    transition: transform .22s ease, box-shadow .22s ease;
}

.pec-chat-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(105, 15, 149, .35);
}

.pec-chat-toggle:active {
    transform: translateY(0);
}

.pec-chat-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    bottom: 58px;
    box-shadow: 0 24px 70px rgba(36, 21, 45, .22);
    display: none;
    max-height: min(620px, calc(100vh - 130px));
    overflow: hidden;
    position: absolute;
    right: 0;
    width: min(360px, calc(100vw - 32px));
}

.pec-chatbot.is-open .pec-chat-panel {
    display: block;
}

.pec-chat-header {
    align-items: center;
    background: linear-gradient(135deg, #690F95, #FB0068);
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

.pec-chat-header strong,
.pec-chat-header span {
    display: block;
}

.pec-chat-header span {
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
}

.pec-chat-close {
    align-items: center;
    background: rgba(255, 255, 255, .15);
    border: 0;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.pec-chat-messages {
    background: #F7F8FB;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
}

.pec-message {
    border-radius: 12px;
    font-size: .92rem;
    line-height: 1.5;
    max-width: 86%;
    padding: .75rem .85rem;
}

.pec-message.bot {
    align-self: flex-start;
    background: #fff;
    color: var(--text-dark);
}

.pec-message.user {
    align-self: flex-end;
    background: #690F95;
    color: #fff;
}

.pec-message-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: .65rem;
}

.pec-message-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: .7rem;
}

.pec-message-actions a,
.pec-message-actions button,
.pec-message-suggestions button,
.pec-message a {
    color: var(--primary);
    display: inline-flex;
    font-weight: 800;
    text-decoration: none;
}

.pec-message-actions a,
.pec-message-actions button,
.pec-message-suggestions button {
    background: rgba(251, 0, 104, .08);
    border: 0;
    border-radius: 999px;
    font-size: .82rem;
    padding: .35rem .65rem;
}

.pec-message-suggestions button {
    background: #fff;
    border: 1px solid rgba(105, 15, 149, .16);
    color: #4b2260;
    cursor: pointer;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
}

.pec-message-suggestions button:hover {
    border-color: rgba(251, 0, 104, .34);
    color: var(--primary);
}

.pec-chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding: .8rem 1rem 0;
}

.pec-chat-quick button {
    background: rgba(251, 0, 104, .08);
    border: 1px solid rgba(251, 0, 104, .18);
    border-radius: 999px;
    color: var(--primary);
    font-size: .82rem;
    font-weight: 800;
    padding: .45rem .75rem;
}

.pec-chat-form {
    display: flex;
    gap: .55rem;
    padding: 1rem;
}

.pec-chat-form input {
    border: 1px solid var(--border);
    border-radius: 999px;
    flex: 1;
    min-width: 0;
    padding: .72rem .9rem;
}

.pec-chat-form button {
    align-items: center;
    background: var(--primary);
    border: 0;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    flex: 0 0 42px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px);
}

.whatsapp-float i {
    font-size: 1.25rem;
}

.form-section-title {
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.success-panel {
    background: linear-gradient(180deg, #fff, var(--neutral-light));
    border: 1px solid rgba(15, 163, 160, .25);
    border-radius: 8px;
    padding: 2rem;
}

.success-panel i {
    color: var(--teal);
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.success-panel h3,
.success-panel strong {
    color: var(--accent);
    font-weight: 800;
}

.success-panel p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.success-panel.compact {
    align-items: center;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.4rem;
    padding: 1rem 1.2rem;
    text-align: left;
}

.success-panel.compact i {
    font-size: 1.8rem;
    margin: 0;
}

.success-panel.compact p {
    margin: .15rem 0 0;
}

/* Motion */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroImageDrift {
    from {
        transform: scale(1.08) translateX(0);
    }

    to {
        transform: scale(1.02) translateX(-1.2%);
    }
}

@keyframes dropdownLift {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes degreePanelAura {
    0%,
    100% {
        background-position: 0% 10%, 100% 90%, 0% 50%;
    }

    50% {
        background-position: 12% 20%, 86% 78%, 100% 50%;
    }
}

@keyframes degreeNetworkDrift {
    from {
        transform: translate3d(0, 0, 0) rotate(-1deg);
    }

    to {
        transform: translate3d(34px, 34px, 0) rotate(-1deg);
    }
}

@keyframes degreeGlowPulse {
    0%,
    100% {
        opacity: .72;
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate3d(-14px, 16px, 0) scale(1.1);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .animate-in,
    .hero-content,
    .about-campus-cutout {
        opacity: 1;
        transform: none;
    }

    .about-campus-cutout {
        animation: none !important;
        transform: var(--about-cutout-base-transform);
    }
}

@media (max-width: 1199.98px) {
    .navbar-nav .nav-link {
        font-size: .88rem;
        padding-left: .62rem !important;
        padding-right: .62rem !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .main-navbar>.container {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        min-height: 78px;
        position: relative;
    }

    .main-navbar {
        background: rgba(255, 255, 255, .72);
        overflow: visible;
        z-index: 1100;
    }

    .main-navbar::after {
        left: .75rem;
        right: .75rem;
    }

    .navbar-brand img {
        max-height: 62px;
        max-width: 190px;
    }

    .main-navbar .navbar-toggler {
        align-items: center;
        background: rgba(255, 255, 255, .92);
        border: 1px solid rgba(251, 0, 104, .3);
        box-shadow: 0 12px 24px rgba(36, 21, 45, .12);
        display: inline-flex !important;
        flex: 0 0 48px;
        height: 44px;
        justify-content: center;
        margin-left: auto;
        opacity: 1;
        position: absolute;
        right: 1.25rem;
        top: 1.05rem;
        transform: none;
        translate: none;
        visibility: visible;
        width: 48px;
        z-index: 5;
    }

    .main-navbar .navbar-toggler:hover {
        background: #fff;
        transform: none;
    }

    .main-navbar .navbar-toggler-icon,
    .main-navbar .navbar-toggler-icon::before,
    .main-navbar .navbar-toggler-icon::after {
        border-top-color: var(--primary);
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        background: rgba(255, 255, 255, .94);
        border: 1px solid rgba(36, 21, 45, .08);
        border-radius: 8px;
        box-shadow: 0 18px 38px rgba(36, 21, 45, .12);
        height: auto !important;
        left: .75rem;
        margin-top: 0;
        overflow: visible !important;
        padding: .75rem;
        position: absolute;
        right: .75rem;
        top: calc(100% + .45rem);
        transition: opacity .18s ease, transform .18s ease;
        z-index: 1105;
    }

    .navbar-collapse.collapsing {
        opacity: .98;
        transform: translateY(0);
    }

    .navbar-nav {
        align-items: stretch !important;
        gap: .15rem;
        padding: .25rem 0;
    }

    .navbar-nav .btn {
        display: block;
        padding: .72rem 1rem;
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-link {
        border-radius: 6px;
        flex: 1;
        justify-content: flex-start;
        padding: .78rem .95rem !important;
        text-align: left;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
        background: rgba(251, 0, 104, .08);
        transform: none;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .course-nav-row {
        gap: .35rem;
        justify-content: space-between;
        width: 100%;
    }

    .course-nav-row .nav-link {
        flex: 1 1 auto;
        justify-content: flex-start;
        min-width: 0;
    }

    .dropdown-menu {
        background: rgba(247, 248, 251, .92);
        border: 1px solid rgba(36, 21, 45, .07);
        box-shadow: none;
        margin: .3rem 0 .55rem;
        padding: .45rem;
        position: static !important;
        transform: none !important;
        width: 100%;
    }

    .dropdown-item {
        padding: .7rem .85rem;
    }

    .page-hero {
        padding: 64px 0 54px;
    }

    .page-hero-grid,
    .news-feature-grid,
    .news-detail-grid,
    .news-detail-layout,
    .news-page-intro,
    .career-values-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-media {
        max-height: 360px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-events-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-filter-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .news-search-box {
        width: 100%;
    }

    .event-detail-sidebar {
        position: static;
    }

    .event-grid,
    .news-real-grid,
    .event-recap-grid,
    .news-gallery-grid,
    .career-role-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .hero-slide-content,
    .hero-slide-img {
        min-height: 610px;
    }

    .hero-slide-img {
        height: 610px;
    }

    .hero-slide-content {
        padding-bottom: 8.5rem;
        padding-top: 4.5rem;
    }

    .hero-quick-panel {
        align-items: flex-start;
        bottom: 22px;
        flex-direction: column;
        gap: .75rem;
    }

    .hero-carousel .carousel-indicators {
        bottom: 178px;
    }

    .degree-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .rebrand-video-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .rebrand-video-copy .section-text {
        max-width: none;
    }

    .programme-pathway,
    .programme-support-grid,
    .programme-mini-grid {
        grid-template-columns: 1fr;
    }

    .programme-card-featured {
        min-height: auto;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .course-filter-panel {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .course-filter-actions {
        justify-content: flex-start;
    }

    .seo-highlight-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-heading {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .testimonials-summary {
        justify-items: start;
        text-align: left;
    }

    .review-source-pills {
        justify-content: flex-start;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .final-cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .navbar-brand img {
        max-height: 54px;
        max-width: 165px;
    }

    .top-contact,
    .top-actions {
        flex-wrap: wrap;
        gap: .7rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .page-hero-actions .btn,
    .section-heading-row .btn {
        width: 100%;
    }

    .news-card,
    .event-card,
    .event-real-card,
    .empty-public-state-soft,
    .career-value-item {
        align-items: flex-start;
    }

    .event-card,
    .event-real-card {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .event-real-media {
        order: -1;
    }

    .empty-public-state-soft {
        flex-direction: column;
        text-align: center;
    }

    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .hero-slide-content,
    .hero-slide-img {
        min-height: 570px;
    }

    .hero-slide-img {
        height: 570px;
    }

    .hero-content h1,
    .hero-content .hero-title {
        font-size: 2rem;
        line-height: 1.05;
        max-width: 100%;
        overflow-wrap: normal;
    }

    .hero-content p {
        font-size: .98rem;
        line-height: 1.65;
        max-width: 320px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-quick-panel {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero-carousel .carousel-indicators {
        bottom: 24px;
        margin-left: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.15;
    }

    .section-padding {
        padding: 65px 0;
    }

    .rebrand-video-points span {
        align-items: flex-start;
    }

    .rebrand-video-points i {
        flex-basis: 38px;
        height: 38px;
        width: 38px;
    }

    .rebrand-video-actions .btn {
        width: 100%;
    }

    .rebrand-video-topbar {
        min-height: 42px;
        padding: .8rem .85rem .55rem;
    }

    .rebrand-video-topbar strong {
        font-size: .68rem;
    }

    .rebrand-video-caption {
        align-items: flex-start;
        flex-direction: column;
        gap: .25rem;
        padding: .9rem;
    }

    .rebrand-video-caption span {
        text-align: left;
    }

    .about-image-wrap {
        --about-cutout-scale: 1;
        --about-roof-lift: 12px;
        margin-inline: auto;
        max-width: calc(100vw - 2.5rem);
        width: calc(100vw - 2.5rem);
    }

    .about-campus-caption {
        align-items: flex-start;
        flex-direction: column;
        gap: .6rem;
        padding: .95rem;
    }

    .about-campus-caption span {
        white-space: normal;
    }

    .programme-card {
        min-height: auto;
    }

    .programme-support-grid {
        padding: 1rem;
    }

    .programme-mini-card {
        min-height: 0;
    }

    .degree-cta {
        padding-bottom: 65px;
    }

    .degree-panel {
        padding: 2rem;
    }

    .degree-cta .degree-panel::after {
        height: 230px;
        right: -118px;
        top: -92px;
        width: 230px;
    }

    .degree-cta .degree-panel h2::after {
        max-width: 128px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-height: 0;
        padding: 1.15rem;
    }

    .testimonial-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .testimonial-source-badge {
        align-self: flex-start;
    }

    .testimonial-actions .btn {
        width: 100%;
    }

    .whatsapp-float {
        bottom: 16px;
        padding: .8rem;
        right: 16px;
    }

    .pec-chatbot {
        bottom: 72px;
        right: 16px;
    }

    .pec-chat-toggle {
        padding: .8rem;
    }

    .pec-chat-toggle span {
        display: none;
    }

    .whatsapp-float span {
        display: none;
    }

    .success-panel.compact {
        align-items: flex-start;
    }
}
