﻿/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0b4f70;
    --primary-light: #117194;
    --secondary: #800020;
    --tertiary: #bc2d4a;
    --accent: #a0223f;
    --neutral-dark: #1a0a0e;
    --neutral-light: #f7fbff;
    --text-dark: #3a3f45;
    --text-light: #8a7078;
    --border-light: rgba(11, 79, 112, 0.12);
    --border-secondary: rgba(11, 79, 112, 0.14);
    --bg-white: rgba(255, 255, 255, 0.94);
    --bg-white-high: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 12px 28px rgba(11, 79, 112, 0.18);
    --shadow-md: 0 20px 40px rgba(11, 79, 112, 0.08);
    --shadow-lg: 0 30px 60px rgba(34, 20, 29, 0.08);
    --shadow-xl: 0 24px 54px rgba(34, 20, 29, 0.1);
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 30px;
    --radius-full: 999px;
    --trans-fast: 0.2s ease;
    --trans-normal: 0.25s ease;
    --trans-slow: 0.3s ease;
}

/* ===== UTILITY CLASSES ===== */
.card, .box, .section-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 28px 26px;
}

.card:hover, .box:hover, .section-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(11, 79, 112, 0.12);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    margin-bottom: 18px;
}

.transition-all { transition: all var(--trans-normal); }
.transition-fast { transition: all var(--trans-fast); }

.btn-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: var(--trans-normal);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--bg-white);
    color: var(--primary);
    border: 1px solid var(--border-secondary);
}

.btn-ghost:hover {
    background: var(--neutral-light);
}

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.gap-sm { gap: 12px; }
.gap-md { gap: 18px; }
.gap-lg { gap: 28px; }

.pd-sm { padding: 20px; }
.pd-md { padding: 28px 26px; }
.pd-lg { padding: 42px 34px; }

.mb-sm { margin-bottom: 18px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 36px; }

/* General body styling */
body {
    font-family: "Times New Roman", Times, serif;
    margin: 0;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(252, 248, 248, 0.92) 0%, rgba(255, 255, 255, 0.9) 32%, rgba(249, 245, 246, 0.93) 100%),
        radial-gradient(circle at 8% 8%, rgba(128, 0, 32, 0.08) 0%, rgba(128, 0, 32, 0) 26%),
        radial-gradient(circle at 88% 4%, rgba(160, 34, 63, 0.08) 0%, rgba(160, 34, 63, 0) 30%),
        url("../images/image2.jpg");
    background-size: cover, auto, auto, cover;
    background-position: center, 0 0, 0 0, center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-page,
.programmes-page,
.student-page,
.management-page,
.accreditation-page,
.contact-page {
    background:
        radial-gradient(circle at 14% 8%, rgba(188, 45, 74, 0.08) 0%, rgba(188, 45, 74, 0) 33%),
        radial-gradient(circle at 86% 5%, rgba(11, 79, 112, 0.1) 0%, rgba(11, 79, 112, 0) 34%),
        linear-gradient(180deg, rgba(243, 247, 250, 0.76) 0%, rgba(254, 252, 249, 0.74) 48%, rgba(244, 248, 251, 0.78) 100%),
        url("../images/image2.jpg");
    background-size: auto, auto, auto, cover;
    background-position: 0 0, 0 0, 0 0, center;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-attachment: scroll, scroll, scroll, fixed;
}

/* Header styling */
header {
    font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
    background: rgba(250, 252, 253, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #dbe5eb;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Homepage-matching header system for all public pages */
.cb-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 0 40px;
}

.cb-header.transparent {
    background: linear-gradient(180deg, rgba(7, 28, 44, 0.76) 0%, rgba(7, 28, 44, 0.62) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
}

.cb-header.solid {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(11, 79, 112, 0.12);
    box-shadow: 0 4px 24px rgba(11, 79, 112, 0.10);
    backdrop-filter: blur(12px);
}

.cb-header-inner {
    max-width: none !important;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
    gap: 16px;
    width: 100%;
}

.cb-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 0 !important;
}

.cb-logo img {
    height: 40px;
    display: block;
}

@media (max-width: 1023px) {
    .cb-logo img {
        display: block !important;
    }
}

.cb-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none !important;
    margin: 0;
    padding: 0;
    padding-left: 0 !important;
    list-style-type: none !important;
    margin-left: auto !important;
}

.cb-nav a {
    position: relative;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    list-style: none !important;
    margin: 0;
    list-style-type: none !important;
}

.cb-nav a::before,
.cb-nav a::after,
.cb-nav > a::before,
.cb-nav > a::after,
.cb-nav-login::before,
.cb-nav-login::after,
.cb-nav li::before,
.cb-nav li::after,
.cb-nav *::before,
.cb-nav *::after,
.cb-nav a::marker,
.cb-nav li::marker {
    content: "" !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
}

.cb-header.transparent .cb-nav a {
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.cb-header.transparent .cb-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cb-header.transparent .cb-nav a.active {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.cb-header.transparent .cb-logo img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.cb-header.solid .cb-nav a {
    color: #1f2f3c;
}

.cb-header.solid .cb-nav a:hover {
    background: #e9f1f6;
    color: #0b4f70;
}

.cb-header.solid .cb-nav a.active {
    background: #0b4f70;
    color: #fff;
}

.cb-nav-login {
    background: linear-gradient(135deg, #0b4f70, #117194) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 9px 20px !important;
    margin-left: 8px;
    box-shadow: 0 4px 14px rgba(11, 79, 112, 0.3);
}

.cb-header.transparent .cb-nav-login {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #0b4f70 !important;
}

.cb-nav-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(11, 79, 112, 0.4) !important;
}

/* Style only for home.php H2 */
#home-heading {
    text-align: center;    /* centers the heading */
    font-size: 80px;       /* change size as needed */
    color: #800020;        /* heading color */
    margin-bottom: 20px;   /* space below heading */
    font-weight: bold;     /* optional bold */
    font-family: 'Times New Roman', Times, serif;
}

/* Style for main headings */
main h2 {
    text-align: center;    /* centers the heading */
    font-size: 32px;       /* change this number to make it bigger or smaller */
    color: #004080;        /* optional: change text color */
    margin-bottom: 20px;   /* space below heading */
}

/* Global title color */
h1, h2, h3, h4, h5, h6 {
    color: #800020 !important;
}

/* Container for home page images */
.home-images {
    display: flex;              /* side by side */
    justify-content: center;    /* center the images */
    gap: 20px;                  /* space between images */
    margin-top: 20px;           /* space above images */
}

/* Style each image */
.home-images img.home-img {
    width: 400px;               /* adjust size */
    height: auto;               /* maintain aspect ratio */
    border-radius: 10px;         /* optional rounded corners */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* optional shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth animation */
}

.home-images img.home-img:hover {
    transform: scale(1.08); /* zoom effect */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* stronger shadow */
}

/* Style for paragraph under main heading */
main p {
    text-align: center;      /* centers the paragraph */
    font-size: 22px;         /* adjust size as needed */
    color: #000000;             /* dark gray for readability */
    max-width: 700px;        /* limit width for easier reading */
    margin: 0 auto 30px;     /* center horizontally and add space below */
    line-height: 1.6;        /* spacing between lines */
}

/* Logo and title */
.logo-title {
    display: flex;
    align-items: center;
}

.logo-title img.logo {
    height: 60px;       /* adjust size if needed */
    margin-right: 10px; /* space between logo and title */
}

/* Navigation links */
nav a {
    color: #1f2f3c;
    text-decoration: none;
    margin-left: 15px;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover effect for nav */
nav a:hover {
    background-color: #e9f1f6;
    color: #0b4f70;
}

/* Highlight current page */
nav a.active {
    background: #0b4f70;
    color: #fff;
}

/* Main content */
main {
    padding: 20px;
}

/* Footer */
footer {
    background-color: #eee;
    padding: 15px 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.social-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Social icons */
.social-icons a {
    color: #004080;
    margin-right: 0;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

/* Hover effect */
.social-icons a:hover {
    color: #000;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    footer {
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .cb-logo {
        margin-left: 8px;
    }
}

/* ===== NEW SECTION BELOW IMAGES ===== */

.home-section {
    display: flex;              /* makes items side by side */
    justify-content: center;    /* center horizontally */
    align-items: center;        /* align vertically */
    gap: 40px;                  /* space between title & text */
    padding: 40px 20px;
    background-color: #f9f9f9;
    margin-top: 30px;
}

/* Title */
.section-title {
    font-size: 32px;
    color: #800020;
    width: 40%;                 /* takes 40% space */
    text-align: left;
}

/* Paragraph */
.section-text {
    font-size: 18px;
    color: #333;
    width: 60%;                 /* takes 60% space */
    line-height: 1.6;
    text-align: left;
}

.section-title {
    font-size: 70px;
    color: #800020;
    margin-bottom: 15px;
}

.section-text {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SECOND TITLE SECTION ===== */

.home-section-2 {
    text-align: center;
    margin-top: 40px;
}

.new-title {
    font-size: 50px;
    color: #800020;
    font-weight: bold;
}

/* ===== TESTIMONIALS SECTION ===== */

.testimonials {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.testimonial-title {
    font-size: 32px;
    color: #800020;
    margin-bottom: 30px;
}

/* Container */
.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Each testimonial box */
.testimonial-box {
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

/* ===== HOME PAGE PROFESSIONAL POLISH ===== */
.home-page {
    background:
        linear-gradient(180deg, rgba(252, 248, 248, 0.92) 0%, rgba(255, 255, 255, 0.9) 32%, rgba(249, 245, 246, 0.93) 100%),
        radial-gradient(circle at 8% 8%, rgba(128, 0, 32, 0.08) 0%, rgba(128, 0, 32, 0) 26%),
        radial-gradient(circle at 88% 4%, rgba(160, 34, 63, 0.08) 0%, rgba(160, 34, 63, 0) 30%),
        url("../images/image2.jpg");
    background-size: cover, auto, auto, cover;
    background-position: center, 0 0, 0 0, center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.home-page header {
    background: rgba(250, 252, 253, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #dbe5eb;
}

.home-page nav a {
    border-radius: 999px;
    font-weight: 600;
}

.home-page nav a.active {
    background: #0b4f70;
    color: #fff;
}

.home-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 26px 24px 50px;
}

.home-hero {
    background: linear-gradient(135deg, #fff5f7 0%, #fff 55%, #faf3f5 100%);
    border: 1px solid #f0d9df;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(80, 16, 34, 0.1);
    padding: 42px 32px;
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.home-hero::before,
.home-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.home-hero::before {
    width: 220px;
    height: 220px;
    right: -90px;
    top: -90px;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.13) 0%, rgba(128, 0, 32, 0) 70%);
}

.home-hero::after {
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: -70px;
    background: radial-gradient(circle, rgba(160, 34, 63, 0.12) 0%, rgba(160, 34, 63, 0) 70%);
}

.home-hero > * {
    position: relative;
    z-index: 1;
}

.hero-tag {
    text-align: center !important;
    font-size: 12px !important;
    letter-spacing: 2px;
    color: #9a3650 !important;
    margin: 0 0 10px !important;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    background: #fff;
    border: 1px solid #ebcfd6;
    border-radius: 999px;
    padding: 6px 12px;
}

.home-page #home-heading {
    margin: 0 0 12px;
    font-size: 72px;
    line-height: 1.04;
    letter-spacing: 0.4px;
    text-shadow: 0 4px 12px rgba(128, 0, 32, 0.12);
}

.hero-subtitle {
    text-align: center !important;
    font-size: 22px !important;
    color: #3a2a2f !important;
    max-width: 860px !important;
    margin: 0 auto 24px !important;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 13px 24px;
    min-width: 210px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-align: center;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.hero-btn i {
    margin-right: 8px;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #800020 0%, #a0223f 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(128, 0, 32, 0.25);
}

.hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(128, 0, 32, 0.34);
}

.hero-btn.secondary {
    background: linear-gradient(135deg, #f7d98a 0%, #e9b94a 100%);
    color: #4a2a00;
    border: 1px solid #d7a63a;
    box-shadow: 0 6px 14px rgba(123, 84, 10, 0.2);
}

.hero-btn.secondary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #f2cd70 0%, #ddab39 100%);
    box-shadow: 0 10px 20px rgba(123, 84, 10, 0.3);
}

.home-page .home-images {
    gap: 24px;
    margin: 8px auto 28px;
}

.home-page .home-images img.home-img {
    width: 48%;
    border-radius: 14px;
    border: 1px solid #eddce1;
    box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.home-page .home-section {
    background: #fff;
    border: 1px solid #f1e4e8;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(83, 24, 39, 0.07);
    margin-top: 0;
}

.home-page .section-title {
    font-size: 56px;
    line-height: 1.08;
}

.home-page .section-text {
    font-size: 20px;
    max-width: 700px;
    color: #3a2d31;
}

.home-page .home-section-2 {
    margin-top: 32px;
}

.home-page .home-section-2 p {
    text-align: center;
    font-size: 18px;
    color: #403338;
    margin-top: 2px;
}

.home-page .testimonials {
    border-radius: 16px;
    border: 1px solid #efe2e6;
    background: linear-gradient(180deg, #fff 0%, #fbf6f8 100%);
    box-shadow: 0 12px 28px rgba(85, 26, 42, 0.08);
}

.home-page .testimonial-box {
    width: 320px;
    border: 1px solid #ecdce2;
    box-shadow: 0 10px 24px rgba(75, 19, 34, 0.09);
    border-radius: 14px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.home-page .testimonial-box::before {
    content: "\201C";
    position: absolute;
    top: 8px;
    left: 14px;
    font-size: 46px;
    color: rgba(128, 0, 32, 0.15);
    line-height: 1;
}

.home-page .testimonial-box h4 {
    color: #800020;
    font-size: 18px;
    margin-top: 16px;
}

.home-page .testimonial-box p {
    position: relative;
    z-index: 1;
    font-style: normal;
    color: #3a2f34;
}

.home-page .testimonial-box:hover {
    transform: translateY(-10px);
}

@media (max-width: 900px) {
    .home-main {
        padding: 16px 14px 34px;
    }

    .home-page #home-heading {
        font-size: 48px;
    }

    .home-page header {
        padding: 12px 14px;
    }

    .home-page nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 6px;
    }

    .home-page nav a {
        margin-left: 0;
        padding: 6px 10px;
        font-size: 14px;
    }

    .hero-subtitle {
        font-size: 18px !important;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
        max-width: 260px;
    }

    .home-page .home-images {
        flex-direction: column;
        align-items: center;
    }

    .home-page .home-images img.home-img {
        width: 100%;
        max-width: 640px;
    }

    .home-page .home-section {
        flex-direction: column;
        text-align: center;
    }

    .home-page .section-title,
    .home-page .section-text {
        width: 100%;
        text-align: center;
    }

    .home-page .section-title {
        font-size: 42px;
    }
}

/* Hover effect */
.testimonial-box:hover {
    transform: translateY(-8px);
}

/* Text */
.testimonial-box p {
    font-style: italic;
    color: #333;
}

/* Student name */
.testimonial-box h4 {
    margin-top: 15px;
    color: #004080;
}

/* ===== ABOUT PAGE ===== */

.about-page main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 26px 24px 52px;
    position: relative;
}

.about-page .about-title {
    font-size: 64px !important;
    margin: 8px 0 8px;
    text-align: center;
    letter-spacing: 0.4px;
    text-shadow: 0 8px 18px rgba(128, 0, 32, 0.12);
}

.about-page .about-intro {
    max-width: 980px;
    padding: 14px 24px;
    margin: 0 auto 32px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #eddbe0;
    box-shadow: 0 8px 22px rgba(82, 24, 39, 0.08);
    font-size: 19px;
    color: #3b2e33;
}

.about-page .about-image-text,
.about-page .mission-vision,
.about-page .founders,
.about-page .why-choose {
    border-radius: 16px;
    border: 1px solid #efdee3;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(252, 245, 247, 0.92) 100%);
    box-shadow: 0 12px 30px rgba(82, 24, 39, 0.08);
    position: relative;
    overflow: hidden;
}

.about-page .about-image-text::before,
.about-page .mission-vision::before,
.about-page .founders::before,
.about-page .why-choose::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.09) 0%, rgba(128, 0, 32, 0) 70%);
    pointer-events: none;
}

.about-page .about-image-text {
    padding: 26px;
    margin-bottom: 32px;
}

.about-page .about-img-left {
    width: 48%;
    max-width: 640px;
    border-radius: 14px;
    border: 1px solid #ecdbe0;
    box-shadow: 0 14px 30px rgba(0,0,0,0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-page .about-img-left:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 34px rgba(0,0,0,0.18);
}

.about-page .about-text-right {
    max-width: 46%;
}

.about-page .about-text-right h3 {
    font-size: 44px;
    line-height: 1.08;
    margin: 0 0 14px;
    color: #800020;
    position: relative;
    padding-bottom: 10px;
}

.about-page .about-text-right h3::after {
    content: "";
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #800020 0%, #a0223f 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-page .about-text-right p {
    text-align: left;
    font-size: 18px;
    color: #3c2f34;
    margin: 0;
}

.about-page .mission-vision {
    gap: 28px;
    padding: 26px;
    margin-bottom: 32px;
}

.about-page .mission-box,
.about-page .vision-box {
    border-radius: 14px;
    width: min(420px, 100%);
    border: 1px solid #efdee3;
    box-shadow: 0 10px 22px rgba(80, 16, 34, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-page .mission-box:hover,
.about-page .vision-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(80, 16, 34, 0.13);
}

.about-page .mission-box h3,
.about-page .vision-box h3 {
    color: #800020;
}

.about-page .sub-title {
    font-size: 28px;
    color: #98334d;
    line-height: 1.2;
}

.about-page .founders {
    padding: 28px 24px 34px;
}

.about-page .founders-title {
    font-size: 58px;
    color: #800020;
}

.about-page .founders-container {
    flex-wrap: wrap;
    gap: 24px;
}

.about-page .founder-card {
    width: min(380px, 100%);
    border: 1px solid #efdee3;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(80, 16, 34, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-page .founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(80, 16, 34, 0.15);
}

.about-page .founder-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
}

.about-page .why-header {
    margin: 6px 0 18px;
}

.about-page .why-subtitle {
    color: #9a3650;
    font-size: 14px;
    letter-spacing: 2.4px;
}

.about-page .why-title {
    color: #800020;
    font-size: 54px;
    line-height: 1.02;
}

.about-page .why-choose {
    padding: 26px;
}

.about-page .reasons-container {
    gap: 18px;
}

.about-page .reason-box {
    border: 1px solid #efdee3;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(80, 16, 34, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-page .reason-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(80, 16, 34, 0.14);
}

.about-page .reason-box h3 {
    color: #800020;
}

/* ===== ABOUT PAGE 2026 PREMIUM LAYER ===== */
.about-page .about-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 26px 24px 52px;
}

.about-page .about-pro-hero {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    margin-bottom: 18px;
    animation: aboutFadeUp 0.65s ease both;
}

.about-page .about-pro-kicker {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #cfe0ea;
    background: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 800;
    color: #0b4f70;
}

.about-page .about-title {
    margin: 0 0 10px !important;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(42px, 6vw, 66px) !important;
    line-height: 1.05;
    text-shadow: 0 8px 20px rgba(21, 63, 84, 0.12);
}

.about-page .about-intro {
    max-width: 920px;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    text-align: left;
    font-size: 19px;
    color: #243845;
    line-height: 1.75;
}

.about-page .about-pro-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-page .about-pro-actions .enroll-btn {
    background: linear-gradient(135deg, #0b4f70 0%, #117194 100%);
    border: 1px solid #0b4f70;
    color: #fff;
    box-shadow: 0 10px 20px rgba(11, 79, 112, 0.24);
}

.about-page .about-pro-actions .enroll-btn:hover {
    background: linear-gradient(135deg, #093e58 0%, #0d607d 100%);
    box-shadow: 0 14px 24px rgba(11, 79, 112, 0.3);
}

.about-page .about-pro-actions .about-pro-btn-ghost {
    background: #eef5fa;
    color: #17384c;
    border: 1px solid #c9dce8;
    box-shadow: none;
}

.about-page .about-pro-actions .about-pro-btn-ghost:hover {
    background: #e4eff7;
    color: #0f2b3a;
}

.about-page .about-pro-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.about-page .about-pro-metrics .metric-card {
    border-radius: 12px;
    border: 1px solid #e6edf2;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
    padding: 20px;
    animation: aboutFadeUp 0.7s ease both;
}

.about-page .about-pro-metrics .metric-card:nth-child(2) {
    animation-delay: 80ms;
}

.about-page .about-pro-metrics .metric-card:nth-child(3) {
    animation-delay: 140ms;
}

.about-page .about-pro-metrics span {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b4f70 0%, #117194 100%);
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.about-page .about-pro-metrics h3 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #14364a !important;
}

.about-page .about-pro-metrics p {
    margin: 0;
    text-align: left;
    font-size: 15px;
    color: #355061;
    max-width: none;
}

.about-page .about-image-text,
.about-page .mission-vision,
.about-page .founders,
.about-page .why-choose {
    backdrop-filter: blur(6px);
}

.about-page .about-image-text,
.about-page .mission-vision,
.about-page .founders,
.about-page .why-choose {
    border: none;
    background: transparent;
    box-shadow: none;
}

.about-page .mission-box,
.about-page .vision-box,
.about-page .founder-card,
.about-page .reason-box {
    border: 1px solid #e9edf0;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 6px 14px rgba(34, 58, 72, 0.06);
}

.about-page .mission-box:hover,
.about-page .vision-box:hover,
.about-page .founder-card:hover,
.about-page .reason-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 18px rgba(34, 58, 72, 0.1);
}

.about-page .about-pro-cta {
    margin-top: 24px;
    border-radius: 18px;
    border: 1px solid #cfe1ec;
    background: linear-gradient(135deg, #0f4765 0%, #146082 58%, #1782a2 100%);
    color: #fff;
    text-align: center;
    padding: 34px 24px;
    box-shadow: 0 16px 30px rgba(12, 58, 82, 0.28);
    animation: aboutFadeUp 0.8s ease both;
    animation-delay: 120ms;
}

.about-page .about-pro-cta .about-pro-kicker {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14);
    color: #eaf7ff;
}

.about-page .about-pro-cta h2 {
    color: #ffffff !important;
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.about-page .about-pro-cta p {
    margin: 12px auto 20px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    text-align: center;
}

.about-page .about-pro-cta .enroll-btn {
    background: #ffffff;
    color: #0d4661;
    border: 1px solid #ffffff;
}

.about-page .about-pro-cta .enroll-btn:hover {
    background: #eaf6ff;
    color: #0a3348;
}

@keyframes aboutFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .about-page .about-main {
        padding: 16px 14px 36px;
    }

    .about-page .about-pro-hero {
        padding: 22px 18px;
    }

    .about-page .about-intro {
        font-size: 17px;
    }

    .about-page .about-pro-metrics {
        grid-template-columns: 1fr;
    }

    .about-page .about-pro-cta {
        padding: 24px 16px;
    }

    .about-page .about-pro-cta p {
        font-size: 17px;
    }
}

@media (max-width: 900px) {
    .about-page main {
        padding: 16px 14px 36px;
    }

    .about-page .about-title {
        font-size: 46px !important;
    }

    .about-page .about-image-text {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .about-page .about-img-left,
    .about-page .about-text-right {
        width: 100%;
        max-width: 100%;
    }

    .about-page .about-text-right h3 {
        font-size: 36px;
    }

    .about-page .about-text-right p {
        text-align: center;
        font-size: 17px;
    }

    .about-page .founders-title,
    .about-page .why-title {
        font-size: 42px;
    }

    .about-page .mission-vision,
    .about-page .why-choose,
    .about-page .founders {
        padding: 20px 16px;
    }
}

.about-title {
    text-align: center;
    font-size: 50px !important;
    font-weight: 800;
    color: #800020;
    margin-top: 20px;
    font-family: 'Times New Roman', Times, serif;
}

main h2.about-title {
    font-size: 80px !important;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 10px auto 40px;
    font-size: 18px;
    line-height: 1.6;
}

/* Image + text layout */
.about-section {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

/* Image */
.about-img {
    width: 400px;
    border-radius: 10px;
}

/* Text */
.about-text {
    max-width: 500px;
}

.about-text h3 {
    color: #004080;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-img {
        width: 90%;
    }
}

/* ===== ABOUT US IMAGE + TEXT SECTION ===== */

.about-image-text {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    margin-bottom: 40px;
}

.about-img-left {
    width: 800px;
    border-radius: 10px;
}

/* Text on the right */
.about-text-right {
    max-width: 600px;
}

.about-text-right h3 {
    color: #004080;
    margin-bottom: 10px;
    font-size: 100px; /*bigger title**/
    font-weight: bold; /*make it bold**/
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .about-image-text {
        flex-direction: column;
        text-align: center;
    }

    .about-img-left {
        width: 90%;
    }

    .about-text-right {
        max-width: 100%;
    }
}
/* ===== MISSION & VISION SECTION ===== */
.mission-vision {
    display: flex;
    justify-content: center;
    gap: 150px;       /* space between mission & vision */
    padding: 40px 20px;
    background-color: #f9f9f9;
    flex-wrap: wrap;  /* responsive wrap */
}

.mission-box, .vision-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

/* Hover effect */
.mission-box:hover, .vision-box:hover {
    transform: translateY(-8px);
}

/* Titles */
.mission-box h3, .vision-box h3 {
    color: #004080;
    font-size: 28px;
    margin-bottom: 5px;
}

/* Subtitles */
.sub-title {
    font-size: 50px;
    font-weight: bold;
    color: #0073e6;
    margin-bottom: 10px;
}

/* Paragraphs */
.mission-box p, .vision-box p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-vision {
        flex-direction: column;
        align-items: center;
    }

    .mission-box, .vision-box {
        width: 90%;
        margin-bottom: 20px;
    }
}
/* ===== FOUNDERS SECTION ===== */

.founders {
    padding: 20px 20px 40px;
    text-align: center;
}

.founders-title {
    font-size: 80px;
    color: #004080;
    margin: 0 0 30px;
}

/* Container for both founders */
.founders-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap; /* keeps them side by side */
}

/* Each founder card */
.founder-card {
    background: white;
    width: 350px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

/* Hover effect */
.founder-card:hover {
    transform: translateY(-8px);
}

/* ===== TWO IMAGES SIDE BY SIDE ===== */
.founder-images {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.founder-images img {
    width: 50%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

/* Image hover */
.founder-images img:hover {
    transform: scale(1.05);
}

/* Name */
.founder-card h3 {
    color: #004080;
    margin-bottom: 5px;
}

/* Role */
.founder-card h4 {
    color: #0073e6;
    margin-bottom: 10px;
}

/* Description */
.founder-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* ===== WHY HEADER ===== */
.why-header {
    max-width: 1200px;
    width: 100%;
    margin: 0 0 40px;
    padding: 0;
    text-align: left !important;
}

.why-subtitle {
    font-size: 20px;
    letter-spacing: 2px;
    color: #0073e6;
    margin: 0 0 10px;
    text-align: left !important;
}

.why-title {
    font-size: 60px;
    font-weight: bold;
    color: #004080;
    margin: 0;
    text-align: left !important;
}

/* ===== RESPONSIVE (MOBILE) ===== */
@media (max-width: 768px) {
    .founders-container {
        flex-direction: column;   /* stack on small screens */
        align-items: center;
    }

    .founder-card {
        width: 90%;
    }
}



.reasons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
}

.reason-box:hover {
    transform: translateY(-8px);
}

.reason-box h3 {
    color: #004080;
    margin-bottom: 10px;
    font-size: 24px;
}

.reason-box p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* ===== STUDENT LIFE PAGE ===== */

.student-page .student-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 32px 24px 60px;
}

.student-page .sl-hero,
.management-page .mg-hero,
.accreditation-page .accreditation-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 28px;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 42px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}

.student-page .sl-hero::before,
.management-page .mg-hero::before,
.accreditation-page .accreditation-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(11, 79, 112, 0.08), transparent 34%),
        radial-gradient(circle at bottom left, rgba(188, 45, 74, 0.08), transparent 28%);
    pointer-events: none;
}

.student-page .sl-kicker,
.management-page .mg-kicker,
.accreditation-page .accreditation-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--bg-white);
    border: 1px solid var(--border-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
}

.student-page .sl-title,
.management-page .mg-title,
.accreditation-page .accreditation-title {
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.08;
    margin: 0 0 24px;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.student-page .sl-lead,
.management-page .mg-lead,
.accreditation-page .accreditation-lead {
    font-size: 17px;
    color: var(--text-dark);
    max-width: 760px;
    margin: 0;
    line-height: 1.8;
}

.student-page .sl-hero-actions,
.management-page .mg-hero-actions {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.student-page .sl-btn,
.management-page .mg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--trans-normal), box-shadow var(--trans-normal), background-color var(--trans-normal);
}

.student-page .sl-btn-primary,
.management-page .mg-btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.student-page .sl-btn-primary:hover,
.management-page .mg-btn-primary:hover {
    transform: translateY(-2px);
}

.student-page .sl-btn-ghost,
.management-page .mg-btn-ghost {
    background: var(--bg-white);
    color: var(--primary);
    border: 1px solid var(--border-secondary);
}

.student-page .sl-btn-ghost:hover,
.management-page .mg-btn-ghost:hover {
    background: var(--neutral-light);
}

.student-page .sl-hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.student-page .sl-hero-img-wrap {
    position: relative;
    width: 100%;
    min-height: 420px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(34, 20, 29, 0.12);
}

.student-page .sl-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.student-page .sl-hero-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #0b4f70;
    font-weight: 700;
    border: 1px solid rgba(11, 79, 112, 0.15);
    box-shadow: 0 16px 34px rgba(11, 79, 112, 0.12);
}

.student-page .sl-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(11, 79, 112, 0.14);
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 36px;
    box-shadow: 0 20px 40px rgba(11, 79, 112, 0.08);
}

.student-page .sl-stat {
    text-align: center;
}

.student-page .sl-stat-num {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: #0b4f70;
    line-height: 1;
}

.student-page .sl-stat-num span {
    font-size: 22px;
    font-weight: 700;
    vertical-align: super;
}

.student-page .sl-stat-label {
    display: block;
    margin-top: 10px;
    color: #4b5b66;
    font-size: 14px;
    line-height: 1.6;
}

.student-page .sl-stat-divider {
    display: none;
}

.student-page .sl-experience {
    margin-bottom: 36px;
}

.student-page .sl-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
}

.student-page .sl-section-head h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 12px 0 0;
    color: #0b4f70;
}

.student-page .sl-pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.student-page .sl-pillar {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(11, 79, 112, 0.12);
    border-radius: 24px;
    padding: 28px 26px;
    box-shadow: 0 20px 40px rgba(11, 79, 112, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.student-page .sl-pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b4f70 0%, #117194 100%);
    color: #fff;
    font-size: 22px;
}

.student-page .sl-pillar h4 {
    margin: 0;
    font-size: 22px;
    color: #0b4f70;
}

.student-page .sl-pillar p {
    margin: 0;
    color: #3b3f45;
    line-height: 1.75;
    flex: 1;
}

.student-page .sl-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 32px;
    align-items: center;
    margin-bottom: 36px;
}

.student-page .sl-detail-img img {
    width: 100%;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    min-height: 480px;
    box-shadow: 0 24px 54px rgba(34, 20, 29, 0.14);
}

.student-page .sl-detail-col {
    display: grid;
    gap: 22px;
}

.student-page .sl-detail-col-head {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #0b4f70;
    margin-bottom: 12px;
}

.student-page .sl-detail-col-head i {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 79, 112, 0.14);
    color: #0b4f70;
}

.student-page .sl-detail-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.student-page .sl-detail-col li {
    position: relative;
    padding-left: 22px;
    line-height: 1.75;
    color: #3b3f45;
}

.student-page .sl-detail-col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0b4f70;
}

.student-page .sl-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 18px;
    margin-bottom: 36px;
}

.student-page .sl-gallery-tile {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.student-page .sl-gallery-tile--wide {
    grid-column: span 2;
    min-height: 380px;
}

.student-page .sl-gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.student-page .sl-gallery-tile:hover img {
    transform: scale(1.03);
}

.student-page .sl-gallery-caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #0b4f70;
    font-weight: 700;
    border: 1px solid rgba(11, 79, 112, 0.12);
}

.student-page .sl-gallery-caption i {
    color: #0b4f70;
}

.student-page .sl-cta,
.management-page .mg-cta,
.accreditation-page .accreditation-cta {
    background: var(--bg-white);
    border: 1px solid var(--border-secondary);
    border-radius: 28px;
    padding: 42px 34px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.student-page .sl-cta h2,
.management-page .mg-cta h2,
.accreditation-page .accreditation-cta h3 {
    font-size: 34px;
    color: var(--primary);
    margin: 24px 0 18px;
    line-height: 1.2;
}

.student-page .sl-cta p,
.management-page .mg-cta p,
.accreditation-page .accreditation-cta p {
    color: var(--text-dark);
    max-width: 720px;
    margin: 0 auto 26px;
    font-size: 18px;
    line-height: 1.75;
}

.student-page .sl-cta .sl-btn-primary {
    padding: 16px 30px;
}

@media (max-width: 980px) {
    .student-page .sl-hero,
    .student-page .sl-detail,
    .student-page .sl-gallery {
        grid-template-columns: 1fr;
    }

    .student-page .sl-hero {
        padding: 28px;
    }

    .student-page .sl-hero-img-wrap {
        min-height: 320px;
    }

    .student-page .sl-stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .student-page .sl-pillars {
        grid-template-columns: 1fr;
    }

    .student-page .sl-cta {
        padding: 32px 24px;
    }
}

.student-page .student-hero {
    background: linear-gradient(140deg, #fff6f8 0%, #ffffff 60%, #fdf4f6 100%);
    border: 1px solid #efdde3;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(85, 22, 38, 0.1);
    padding: 34px 32px;
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.student-page .student-hero::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.12) 0%, rgba(128, 0, 32, 0) 70%);
    pointer-events: none;
}

.student-page .student-hero > * {
    position: relative;
    z-index: 1;
}

.student-page .student-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9a3650;
    text-transform: uppercase;
    margin: 0 0 10px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #e8cbd3;
    background: #fff;
}

.student-page .student-title {
    font-size: 58px;
    line-height: 1.06;
    margin: 0 0 12px;
    text-shadow: 0 6px 14px rgba(128, 0, 32, 0.12);
}

.student-page .student-lead {
    font-size: 19px;
    color: #3d2f34;
    max-width: 900px;
    margin: 0 auto;
}

.student-page .student-hero-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.student-page .student-experience {
    background: #fff;
    border: 1px solid #efe0e4;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(85, 26, 42, 0.08);
    padding: 28px;
    margin-bottom: 24px;
}

.student-page .student-experience h3 {
    font-size: 36px;
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 10px;
}

.student-page .student-experience h3::after {
    content: "";
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #800020 0%, #a0223f 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}

.student-page .life-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.student-page .life-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcf7f8 100%);
    border: 1px solid #efdee3;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(76, 19, 35, 0.08);
    padding: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.student-page .life-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 28px rgba(76, 19, 35, 0.13);
}

.student-page .life-card i {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #800020 0%, #a0223f 100%);
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
}

.student-page .life-card h4 {
    font-size: 22px;
    margin: 0 0 8px;
    color: #800020;
}

.student-page .life-card p {
    margin: 0;
    text-align: left;
    font-size: 16px;
    color: #3a2f33;
}

.student-page .student-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.student-page .highlight-card {
    background: linear-gradient(180deg, #ffffff 0%, #fdf8f9 100%);
    border: 1px solid #efdee3;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(80, 16, 34, 0.08);
    padding: 24px;
}

.student-page .highlight-card h3 {
    margin: 0 0 14px;
    font-size: 30px;
    color: #800020;
}

.student-page .highlight-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.student-page .highlight-card li {
    position: relative;
    padding: 10px 0 10px 26px;
    border-bottom: 1px solid #f0e3e7;
    color: #33292d;
    line-height: 1.5;
}

.student-page .highlight-card li:last-child {
    border-bottom: none;
}

.student-page .highlight-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 10px;
    color: #9a3650;
    font-weight: 700;
}

.student-page .student-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.student-page .student-gallery img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #efdee3;
    box-shadow: 0 12px 26px rgba(80, 16, 34, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.student-page .student-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 30px rgba(80, 16, 34, 0.16);
}

.student-page .student-cta-strip {
    background: linear-gradient(135deg, #7e0020 0%, #a0223f 100%);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    color: #fff;
    box-shadow: 0 14px 30px rgba(91, 16, 37, 0.28);
}

.student-page .student-cta-strip h3 {
    color: #fff !important;
    font-size: 34px;
    margin: 0 0 10px;
}

.student-page .student-cta-strip p {
    color: rgba(255, 255, 255, 0.94);
    margin: 0 auto 18px;
    max-width: 760px;
    font-size: 18px;
}

.student-page .student-cta-strip .enroll-btn {
    background: #fff;
    color: #800020;
    border: 1px solid #fff;
}

.student-page .student-cta-strip .enroll-btn:hover {
    background: #fff2f5;
    color: #680018;
}

/* ===== MANAGEMENT PAGE ===== */

.management-page .management-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 32px 24px 60px;
}

.management-page .mg-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 28px;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(34, 20, 29, 0.08);
    padding: 42px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}

.management-page .mg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(11, 79, 112, 0.08), transparent 34%),
        radial-gradient(circle at bottom left, rgba(188, 45, 74, 0.08), transparent 28%);
    pointer-events: none;
}

.management-page .mg-hero-copy {
    position: relative;
    z-index: 1;
    text-align: left;
}

.management-page .mg-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #0b4f70;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(11, 79, 112, 0.14);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.management-page .mg-title {
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.08;
    margin: 0 0 24px;
    color: #0b4f70;
    letter-spacing: -0.02em;
}

.management-page .mg-lead {
    font-size: 17px;
    color: #3a3f45;
    max-width: 760px;
    margin: 0;
    line-height: 1.8;
}

.management-page .mg-hero-actions {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.management-page .mg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.management-page .mg-btn-primary {
    background: #0b4f70;
    color: #fff;
    box-shadow: 0 12px 28px rgba(11, 79, 112, 0.18);
}

.management-page .mg-btn-primary:hover {
    transform: translateY(-2px);
}

.management-page .mg-btn-ghost {
    background: rgba(255, 255, 255, 0.94);
    color: #0b4f70;
    border: 1px solid rgba(11, 79, 112, 0.16);
}

.management-page .mg-btn-ghost:hover {
    background: #f7fbff;
}

.management-page .mg-hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.management-page .mg-hero-visual img {
    width: 100%;
    height: 420px;
    border-radius: 30px;
    object-fit: cover;
    display: block;
    box-shadow: 0 30px 60px rgba(34, 20, 29, 0.12);
}

.management-page .mg-hero-note {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #0b4f70;
    font-weight: 700;
    border: 1px solid rgba(11, 79, 112, 0.15);
    box-shadow: 0 16px 34px rgba(11, 79, 112, 0.12);
}

.management-page .mg-principles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 36px;
}

.management-page .mg-principle {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(11, 79, 112, 0.12);
    border-radius: 24px;
    padding: 28px 26px;
    box-shadow: 0 20px 40px rgba(11, 79, 112, 0.08);
    text-align: center;
}

.management-page .mg-principle span {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b4f70 0%, #117194 100%);
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
}

.management-page .mg-principle h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #0b4f70;
}

.management-page .mg-principle p {
    margin: 0;
    color: #3b3f45;
    line-height: 1.75;
    font-size: 15px;
}

.management-page .mg-focus {
    margin-bottom: 36px;
}

.management-page .mg-focus-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
}

.management-page .mg-focus-intro h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 12px 0 0;
    color: #0b4f70;
}

.management-page .mg-focus-intro p {
    color: #3a3f45;
    font-size: 17px;
    line-height: 1.75;
}

.management-page .mg-focus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(11, 79, 112, 0.12);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(11, 79, 112, 0.08);
}

.management-page .mg-focus-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: #3b3f45;
    line-height: 1.6;
}

.management-page .mg-focus-item i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 79, 112, 0.16);
    color: #0b4f70;
    font-size: 12px;
    margin-top: 4px;
}

.management-page .mg-team {
    margin-bottom: 36px;
}

.management-page .mg-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
}

.management-page .mg-section-head h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 12px 0 0;
    color: #0b4f70;
}

.management-page .mg-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.management-page .mg-profile {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(11, 79, 112, 0.12);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 79, 112, 0.08);
}

.management-page .mg-profile-image-wrap {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.management-page .mg-profile-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.management-page .mg-profile:hover .mg-profile-image-wrap img {
    transform: scale(1.02);
}

.management-page .mg-profile-copy {
    padding: 28px 26px;
}

.management-page .mg-role {
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: 1.8px;
    font-weight: 800;
    text-transform: uppercase;
    color: #0b4f70;
}

.management-page .mg-profile-copy h3 {
    margin: 0 0 14px;
    font-size: 26px;
    color: #0b4f70;
}

.management-page .mg-profile-copy > p {
    margin: 0 0 14px;
    color: #3b3f45;
    font-size: 16px;
    line-height: 1.7;
}

.management-page .mg-profile-copy ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.management-page .mg-profile-copy li {
    position: relative;
    padding-left: 22px;
    color: #3b3f45;
    font-size: 15px;
    line-height: 1.6;
}

.management-page .mg-profile-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0b4f70;
}

.management-page .mg-cta {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(11, 79, 112, 0.14);
    border-radius: 28px;
    padding: 42px 34px;
    text-align: center;
    box-shadow: 0 24px 54px rgba(34, 20, 29, 0.1);
}

.management-page .mg-cta h2 {
    font-size: 34px;
    color: #0b4f70;
    margin: 24px 0 18px;
    line-height: 1.2;
}

.management-page .mg-cta p {
    color: #3b3f45;
    max-width: 720px;
    margin: 0 auto 26px;
    font-size: 18px;
    line-height: 1.75;
}

.management-page .mg-cta .mg-btn-primary {
    padding: 16px 30px;
}

@media (max-width: 980px) {
    .management-page .mg-hero {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .management-page .mg-hero-visual,
    .management-page .mg-principles,
    .management-page .mg-focus-grid,
    .management-page .mg-team-grid {
        grid-template-columns: 1fr;
    }

    .management-page .mg-principles {
        grid-template-columns: 1fr;
    }

    .management-page .mg-focus-grid {
        grid-template-columns: 1fr;
    }

    .management-page .mg-cta {
        padding: 32px 24px;
    }
}

/* ===== ACCREDITATION PAGE ===== */

.accreditation-page .accreditation-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 32px 24px 60px;
}

.accreditation-page .accreditation-hero {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(34, 20, 29, 0.08);
    padding: 42px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}

.accreditation-page .accreditation-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(11, 79, 112, 0.08), transparent 34%),
        radial-gradient(circle at bottom left, rgba(188, 45, 74, 0.08), transparent 28%);
    pointer-events: none;
}

.accreditation-page .accreditation-hero > * {
    position: relative;
    z-index: 1;
}

.accreditation-page .accreditation-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #0b4f70;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(11, 79, 112, 0.14);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.accreditation-page .accreditation-title {
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.08;
    margin: 0 0 24px;
    color: #0b4f70;
    letter-spacing: -0.02em;
}

.accreditation-page .accreditation-lead {
    font-size: 17px;
    color: #3a3f45;
    max-width: 760px;
    margin: 0;
    line-height: 1.8;
}

.accreditation-page .accreditation-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 36px;
}

.accreditation-page .accreditation-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(11, 79, 112, 0.12);
    border-radius: 24px;
    padding: 28px 26px;
    box-shadow: 0 20px 40px rgba(11, 79, 112, 0.08);
    text-align: center;
}

.accreditation-page .accreditation-card i {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b4f70 0%, #117194 100%);
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
}

.accreditation-page .accreditation-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #0b4f70;
}

.accreditation-page .accreditation-card p {
    margin: 0;
    color: #3b3f45;
    line-height: 1.75;
    font-size: 15px;
}

.accreditation-page .accreditation-evidence {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 28px;
    margin-bottom: 36px;
}

.accreditation-page .evidence-content {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(11, 79, 112, 0.12);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(11, 79, 112, 0.08);
}

.accreditation-page .evidence-content h3 {
    margin: 0 0 24px;
    font-size: 28px;
    color: #0b4f70;
}

.accreditation-page .evidence-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.accreditation-page .evidence-content li {
    position: relative;
    padding-left: 28px;
    color: #3b3f45;
    font-size: 16px;
    line-height: 1.7;
}

.accreditation-page .evidence-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0b4f70;
}

.accreditation-page .evidence-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.accreditation-page .evidence-image img {
    width: 100%;
    height: 340px;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 40px rgba(11, 79, 112, 0.08);
}

.accreditation-page .accreditation-cta {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(11, 79, 112, 0.14);
    border-radius: 28px;
    padding: 42px 34px;
    text-align: center;
    box-shadow: 0 24px 54px rgba(34, 20, 29, 0.1);
}

.accreditation-page .accreditation-cta h3 {
    font-size: 34px;
    color: #0b4f70;
    margin: 0 0 18px;
    line-height: 1.2;
}

.accreditation-page .accreditation-cta p {
    color: #3b3f45;
    max-width: 720px;
    margin: 0 auto 26px;
    font-size: 18px;
    line-height: 1.75;
}

.accreditation-page .accreditation-cta .enroll-btn {
    background: #0b4f70;
    color: #fff;
    padding: 14px 26px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(11, 79, 112, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.accreditation-page .accreditation-cta .enroll-btn:hover {
    transform: translateY(-2px);
}

/* ===== CONTACT PAGE ===== */

.contact-page .contact-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 26px 24px 52px;
}

.contact-page .contact-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--contact-reveal-delay, 0ms);
}

.contact-page .contact-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-page .contact-hero {
    background: linear-gradient(140deg, #fff6f8 0%, #ffffff 60%, #fdf4f6 100%);
    border: 1px solid #efdde3;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(85, 22, 38, 0.1);
    padding: 34px 32px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.contact-page .contact-hero::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.12) 0%, rgba(128, 0, 32, 0) 70%);
    pointer-events: none;
}

.contact-page .contact-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, #bc2d4a 0%, #117194 70%, #7ad3f0 100%);
    background-size: 200% 100%;
    animation: contactLineFlow 6s linear infinite;
}

.contact-page .contact-hero > * {
    position: relative;
    z-index: 1;
}

.contact-page .contact-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9a3650;
    text-transform: uppercase;
    margin: 0 0 10px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #e8cbd3;
    background: #fff;
}

.contact-page .contact-title {
    font-size: 56px;
    line-height: 1.06;
    margin: 0 0 12px;
    text-shadow: 0 6px 14px rgba(128, 0, 32, 0.12);
}

.contact-page .contact-lead {
    font-size: 19px;
    color: #3d2f34;
    max-width: 860px;
    margin: 0 auto;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.contact-page .contact-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcf7f8 100%);
    border: 1px solid #efdee3;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(76, 19, 35, 0.08);
    padding: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-page .contact-card::before {
    content: "";
    position: absolute;
    inset: -20% auto auto -130%;
    width: 70%;
    height: 140%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(14deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.contact-page .contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 28px rgba(76, 19, 35, 0.13);
}

.contact-page .contact-card:hover::before {
    left: 140%;
}

.contact-page .contact-card i {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #800020 0%, #a0223f 100%);
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-page .contact-card:hover i {
    transform: scale(1.08) rotate(-6deg);
    transition: transform 0.25s ease;
}

.contact-page .contact-card h3 {
    font-size: 24px;
    margin: 0 0 8px;
    color: #800020;
}

.contact-page .contact-card p {
    margin: 0;
    font-size: 16px;
    color: #3a2f33;
    line-height: 1.6;
}

.contact-page .contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-page .contact-action-box {
    background: linear-gradient(180deg, #ffffff 0%, #fdf8f9 100%);
    border: 1px solid #efdee3;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(80, 16, 34, 0.08);
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-page .contact-action-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(80, 16, 34, 0.12);
}

.contact-page .contact-action-box h3 {
    margin: 0 0 10px;
    font-size: 30px;
    color: #800020;
}

.contact-page .contact-action-box p {
    margin: 0 0 16px;
    text-align: left;
    color: #33292d;
    font-size: 17px;
}

.contact-page .contact-enquiry {
    margin-top: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fdf8f9 100%);
    border: 1px solid #efdee3;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(80, 16, 34, 0.08);
    padding: 24px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-page .contact-enquiry:focus-within {
    border-color: #d7a9b8;
    box-shadow: 0 16px 30px rgba(80, 16, 34, 0.14);
}

@keyframes contactLineFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-page .contact-reveal,
    .contact-page .contact-card,
    .contact-page .contact-card::before,
    .contact-page .contact-card i,
    .contact-page .contact-action-box,
    .contact-page .contact-enquiry,
    .contact-page .contact-hero::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    .contact-page .contact-reveal {
        opacity: 1 !important;
    }
}

.contact-page .contact-enquiry h3 {
    margin: 0 0 10px;
    font-size: 32px;
    color: #800020;
}

.contact-page .contact-enquiry p {
    margin: 0 0 18px;
    color: #3a2f33;
    font-size: 17px;
    text-align: left;
}

.contact-page .enquiry-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-page .form-field {
    margin-bottom: 14px;
}

.contact-page .form-field label {
    display: block;
    margin-bottom: 6px;
    color: #800020;
    font-size: 14px;
    font-weight: 700;
}

.contact-page .form-field input,
.contact-page .form-field select,
.contact-page .form-field textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #e4cfd6;
    border-radius: 10px;
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    color: #2f2328;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page .form-field input:focus,
.contact-page .form-field select:focus,
.contact-page .form-field textarea:focus {
    outline: none;
    border-color: #a0223f;
    box-shadow: 0 0 0 3px rgba(160, 34, 63, 0.15);
}

.contact-page .form-field textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-page .enquiry-form .enroll-btn {
    margin-top: 4px;
}

@media (max-width: 900px) {
    .student-page .student-main {
        padding: 16px 14px 38px;
    }

    .student-page .student-hero {
        padding: 24px 18px;
    }

    .student-page .student-title {
        font-size: 42px;
    }

    .student-page .student-lead {
        font-size: 17px;
    }

    .student-page .life-pillars,
    .student-page .student-highlight-grid,
    .student-page .student-gallery {
        grid-template-columns: 1fr;
    }

    .student-page .student-experience,
    .student-page .highlight-card,
    .student-page .student-cta-strip {
        padding: 20px 16px;
    }

    .student-page .student-experience h3 {
        font-size: 30px;
    }

    .student-page .highlight-card h3 {
        font-size: 26px;
    }

    .student-page .student-gallery img {
        height: 220px;
    }

    .student-page .student-cta-strip h3 {
        font-size: 28px;
    }

    .management-page .management-main {
        padding: 16px 14px 38px;
    }

    .management-page .management-hero {
        padding: 24px 18px;
    }

    .management-page .management-title {
        font-size: 42px;
    }

    .management-page .management-lead {
        font-size: 17px;
    }

    .management-page .management-pillars,
    .management-page .leadership-focus {
        grid-template-columns: 1fr;
    }

    .management-page .team-grid {
        grid-template-columns: 1fr;
    }

    .management-page .focus-content,
    .management-page .focus-images,
    .management-page .management-team,
    .management-page .management-cta {
        padding: 20px 16px;
    }

    .management-page .focus-content h3 {
        font-size: 28px;
    }

    .management-page .focus-images img {
        height: 220px;
    }

    .management-page .team-card {
        grid-template-columns: 1fr;
    }

    .management-page .team-card img {
        height: 220px;
    }

    .management-page .management-team h3,
    .management-page .team-content h4 {
        font-size: 28px;
    }

    .management-page .management-cta h3 {
        font-size: 28px;
    }

    .accreditation-page .accreditation-main,
    .contact-page .contact-main {
        padding: 16px 14px 38px;
    }

    .accreditation-page .accreditation-hero,
    .contact-page .contact-hero {
        padding: 24px 18px;
    }

    .accreditation-page .accreditation-title,
    .contact-page .contact-title {
        font-size: 42px;
    }

    .accreditation-page .accreditation-lead,
    .contact-page .contact-lead {
        font-size: 17px;
    }

    .accreditation-page .accreditation-pillars,
    .accreditation-page .accreditation-evidence,
    .contact-page .contact-grid,
    .contact-page .contact-actions,
    .contact-page .enquiry-form .form-grid {
        grid-template-columns: 1fr;
    }

    .accreditation-page .evidence-content,
    .accreditation-page .evidence-image,
    .accreditation-page .accreditation-cta,
    .contact-page .contact-action-box,
    .contact-page .contact-enquiry {
        padding: 20px 16px;
    }

    .accreditation-page .evidence-content h3,
    .contact-page .contact-action-box h3,
    .contact-page .contact-enquiry h3 {
        font-size: 28px;
    }

    .accreditation-page .accreditation-cta h3 {
        font-size: 28px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .reasons-container {
        flex-direction: column;
        align-items: center;
    }

    .reason-box {
        width: 90%;
    }
}

/* ===== PROGRAMMES PAGE ===== */

.programmes-header {
    text-align: left;
    margin-bottom: 40px;
}

.programmes-subtitle {
    font-size: 13px;
    letter-spacing: 2.5px;
    color: #0067c8;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 10px;
    text-align: left;
}

.programmes-page {
    background: radial-gradient(circle at top right, #eff5ff 0%, #f9fbff 28%, #ffffff 60%);
}

.programmes-page main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 24px 52px;
}

.programmes-header {
    margin: 14px auto 28px;
    max-width: 1200px;
}

.programmes-title {
    font-size: 58px;
    font-weight: bold;
    color: #004080;
    line-height: 1.1;
    font-family: Georgia, "Times New Roman", serif;
    margin: 0;
    text-align: left;
}

.programmes-lead {
    text-align: left;
    font-size: 18px;
    color: #3b4b61;
    max-width: 760px;
    margin: 16px 0 0;
    line-height: 1.7;
}

main .programmes-title,
.programmes-subtitle {
    text-align: left !important;
}

.diploma-programmes-section {
    margin-bottom: 40px;
    padding: 34px;
    background: linear-gradient(180deg, #fbfcfe 0%, #f5f8fc 100%);
    border-radius: 18px;
    border: 1px solid #e3ebf5;
    box-shadow: 0 14px 34px rgba(18, 52, 96, 0.08);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.diploma-programmes-section h3 {
    font-size: 30px;
    color: #004080;
    margin: 0 0 24px;
    text-align: left;
    position: relative;
    padding-bottom: 12px;
}

.diploma-programmes-section h3::after {
    content: "";
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #800020 0%, #a0223f 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}

.diploma-programmes-section > p {
    text-align: left;
    font-size: 17px;
    color: #2a3543;
    max-width: 900px;
    margin: 0 0 18px;
    line-height: 1.7;
}

.programme-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 20px 14px;
}

.programme-meta span {
    font-size: 12px;
    font-weight: 700;
    color: #0f4d88;
    background: #e9f2fc;
    border: 1px solid #d4e5f8;
    border-radius: 999px;
    padding: 6px 12px;
    letter-spacing: 0.2px;
}

.certificates-row {
    display: grid;
    grid-template-columns: minmax(320px, 430px);
    gap: 22px;
    align-items: start;
    justify-content: center;
}

.certificate-card {
    background: white;
    width: 100%;
    min-height: 380px;
    max-width: 430px;
    border-radius: 16px;
    border: 1px solid #e4e9f0;
    box-shadow: 0 10px 24px rgba(17, 44, 88, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.certificate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(17, 44, 88, 0.12);
}

.certificate-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.certificate-card:hover img {
    transform: scale(1.04);
}

.certificate-card h4 {
    font-size: 19px;
    color: #004080;
    margin: 16px 18px 8px;
    line-height: 1.35;
}

.certificate-card p {
    font-size: 15px;
    color: #333;
    margin: 0 18px 18px;
    line-height: 1.6;
    flex-grow: 1;
}

.certificate-card .enroll-btn {
    background-color: #004080;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    margin: 0 18px 18px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.certificate-card .enroll-btn:hover {
    background-color: #002a5a;
}

@media (max-width: 900px) {
    .certificates-row {
        flex-direction: column;
        align-items: center;
    }

    .certificate-card {
        width: 90%;
    }
}
.courses-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(460px, 1fr));
    gap: 26px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}

.course-card {
    background: white;
    width: 100%;
    min-height: 580px;
    height: auto;
    border-radius: 16px;
    border: 1px solid #e4e9f0;
    box-shadow: 0 10px 24px rgba(17, 44, 88, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(17, 44, 88, 0.12);
}

.course-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.course-card:hover img {
    transform: scale(1.04);
}

.course-card h4 {
    font-size: 22px;
    color: #004080;
    margin: 18px 20px 10px;
    line-height: 1.35;
}

.course-card p {
    font-size: 16px;
    color: #333;
    margin: 0 20px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.course-card .enroll-btn {
    display: inline-block;
    margin-top: auto;
    margin-bottom: 22px;
    margin-left: 20px;
    align-self: flex-start;
}

.enroll-btn {
    background-color: #004080;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    margin: 0 0 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.enroll-btn:hover {
    background-color: #002a5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 64, 128, 0.25);
}

/* Details dropdown styles */
.details-btn {
    position: relative;
}

.details-dropdown {
    display: none;
    margin: 12px 20px 20px;
    padding: 18px 20px;
    background: #f5f8fc;
    border: 1px solid #d4e5f8;
    border-radius: 12px;
}

.details-dropdown h5 {
    font-size: 14px;
    font-weight: 700;
    color: #004080;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.details-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.details-dropdown li {
    font-size: 15px;
    color: #333;
    padding: 7px 0;
    border-bottom: 1px solid #e4e9f0;
    line-height: 1.5;
}

.details-dropdown li:last-child {
    border-bottom: none;
}

.enroll-btn-secondary {
    display: inline-block !important;
    background: linear-gradient(135deg, #004080 0%, #0a6ecc 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none !important;
    margin-top: 18px;
    box-shadow: 0 6px 18px rgba(0, 64, 128, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.enroll-btn-secondary::after {
    content: " →";
    font-size: 15px;
}

.enroll-btn-secondary:hover {
    background: linear-gradient(135deg, #002f60 0%, #004080 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 64, 128, 0.45);
    text-decoration: none !important;
}

/* Overlay - no longer used */
.dropdown-overlay {
    display: none;
}

@media (max-width: 900px) {
    .programmes-title {
        font-size: 42px;
    }

    .programmes-page main {
        padding: 18px 16px 42px;
    }

    .programmes-header {
        margin-top: 6px;
    }

    .programmes-lead {
        font-size: 16px;
    }

    .diploma-programmes-section {
        padding: 24px;
    }

    .certificates-row,
    .courses-row {
        grid-template-columns: 1fr;
    }

    .course-card {
        width: 100%;
        min-height: auto;
    }

    .certificate-card {
        width: 100%;
    }
}

/* ===== HOME PAGE V2 ===== */

.home-v2-page {
    font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
    background: linear-gradient(180deg, rgba(250, 252, 253, 0.4) 0%, rgba(255, 254, 251, 0.35) 48%, rgba(252, 254, 255, 0.4) 100%);
    color: #12212b;
    position: relative;
    overflow-x: hidden;
}

.home-v2-scroll-progress {
    display: none;
}

/* Video background styling - displays video as fullscreen background */
.home-v2-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.home-v2-video-bg-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-v2-bg-canvas {
    display: none;
}

.home-v2-page::before,
.home-v2-page::after {
    content: "";
    position: fixed;
    z-index: 1;
    pointer-events: none;
}

.home-v2-page::before {
    width: 300px;
    height: 300px;
    top: -50px;
    left: 5%;
    background: radial-gradient(circle, rgba(188, 45, 74, 0.05) 0%, rgba(188, 45, 74, 0) 70%);
    border-radius: 50%;
}

.home-v2-page::after {
    width: 280px;
    height: 280px;
    top: 150px;
    right: 3%;
    background: radial-gradient(circle, rgba(11, 79, 112, 0.04) 0%, rgba(11, 79, 112, 0) 70%);
    border-radius: 50%;
}

.home-v2-page header,
.home-v2-main,
.home-v2-page footer {
    position: relative;
    z-index: 2;
}

.home-v2-page header {
    background: rgba(250, 252, 253, 0.88);
    border-bottom: 1px solid #dbe5eb;
    backdrop-filter: blur(10px);
}

.home-v2-page nav a {
    color: #1f2f3c;
}

.home-v2-page nav a:hover {
    background: #e9f1f6;
    color: #0b4f70;
}

.home-v2-page nav a.active {
    background: #0b4f70;
    color: #fff;
}

.home-v2-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.home-v2-intro,
.home-v2-video,
.home-v2-hero,
.home-v2-stats article,
.home-v2-programmes,
.home-v2-programme-grid article,
.home-v2-showcase,
.home-v2-cta {
    will-change: transform, opacity;
}

.home-v2-intro {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    padding: 40px 32px;
    border-radius: 18px;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    text-align: center;
}

.home-v2-intro::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #bc2d4a 0%, #117194 70%, #7ad3f0 100%);
}

.home-v2-name {
    margin: 10px 0 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(64px, 10vw, 112px);
    line-height: 1.02;
    color: #0b4f70 !important;
    text-shadow: 0 5px 12px rgba(11, 79, 112, 0.16);
    letter-spacing: 1.5px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-v2-heading-reveal {
    contain: paint;
}

.home-v2-heading-reveal .home-v2-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(16px) rotate(1.5deg);
    filter: blur(4px);
    transition: opacity 0.62s ease, transform 0.62s ease, filter 0.62s ease;
    transition-delay: calc(var(--word-index, 0) * 45ms);
}

.home-v2-heading-reveal.is-visible .home-v2-word {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    filter: blur(0);
}

.home-v2-intro-lead {
    text-align: center !important;
    margin: 20px auto 0 !important;
    max-width: 720px !important;
    font-size: 20px !important;
    color: #1a3a48 !important;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: block;
    font-weight: 500;
    line-height: 1.6;
}

.home-v2-video {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    border-radius: 18px;
    border: none;
    box-shadow: none;
    background: #0d2230;
}

.home-v2-video::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7, 26, 39, 0.1) 0%, rgba(7, 26, 39, 0.5) 100%);
    z-index: 1;
}

.home-v2-video-player {
    width: 100%;
    display: block;
    min-height: 320px;
    max-height: 540px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.home-v2-video:hover .home-v2-video-player {
    transform: scale(1.03);
}

.home-v2-hero {
    display: block;
    margin-bottom: 60px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px rgba(18, 46, 64, 0.08);
}

.home-v2-hero-text,
.home-v2-highlight {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.home-v2-hero-text {
    padding: 0;
}

.home-v2-kicker {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 13px !important;
    color: #0b4f70 !important;
    margin: 0 0 12px !important;
    font-weight: 900;
    text-align: center !important;
}

.home-v2-hero-text h1 {
    margin: 0 0 20px 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 52px;
    line-height: 1.1;
    color: #0b4f70 !important;
    font-weight: 800;
}

.home-v2-hero-text .home-v2-lead {
    text-align: left !important;
    margin: 0 0 28px 0 !important;
    font-size: 18px !important;
    max-width: none !important;
    color: #2a3f4a !important;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    display: block;
    line-height: 1.7;
    font-weight: 500;
}

.home-v2-actions {
    margin-top: 35px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.home-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    border: 2px solid transparent;
    padding: 14px 24px;
    font-size: 16px;
    transform: translate3d(var(--btn-x, 0px), var(--btn-y, 0px), 0);
    transition: all 0.3s ease;
}

.home-v2-btn:hover {
    transform: translate3d(var(--btn-x, 0px), calc(var(--btn-y, 0px) - 2px), 0);
}

.home-v2-btn-primary {
    background: linear-gradient(135deg, #0b4f70 0%, #117194 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(11, 79, 112, 0.26);
}

.home-v2-btn-primary:hover {
    box-shadow: 0 14px 26px rgba(11, 79, 112, 0.34);
}

.home-v2-btn-ghost {
    border-color: #b8c9d4;
    color: #163241;
    background: #f8fbfd;
}

.home-v2-btn-ghost:hover {
    background: #eaf3f8;
}

.home-v2-highlight {
    padding: 28px;
    background: transparent;
    color: #234052;
}

.home-v2-highlight h2 {
    margin: 0 0 16px;
    font-size: 30px;
    color: #17384c !important;
    text-align: left;
}

.home-v2-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.home-v2-highlight li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #e8edf1;
}

.home-v2-highlight li i {
    color: #0b4f70;
}

.home-v2-highlight a {
    color: #0b4f70;
    text-decoration: none;
    font-weight: 700;
}

.home-v2-highlight a i {
    margin-left: 6px;
}

.home-v2-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 8px 0 24px;
}

.home-v2-stats article {
    background: transparent;
    border: none;
    border-radius: 12px;
    padding: 20px;
    box-shadow: none;
    border-left: 2px solid #d4e2ec;
    transition: background-color 0.2s ease, border-left-color 0.2s ease;
}

.home-v2-stats article:hover {
    transform: none;
    background-color: rgba(246, 251, 255, 0.4);
    border-left-color: #0b4f70;
}

.home-v2-stats span {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    color: #bc2d4a;
}

.home-v2-stats h3 {
    margin: 4px 0 8px;
    color: #123044 !important;
    font-size: 24px;
}

.home-v2-stats p {
    margin: 0;
    text-align: left !important;
    font-size: 15px !important;
    max-width: none !important;
    color: #364f60 !important;
}

.home-v2-programmes,
.home-v2-showcase,
.home-v2-cta {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px rgba(18, 46, 64, 0.08);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    margin-bottom: 60px;
}

.home-v2-programmes {
}

.home-v2-section-head h2 {
    margin: 12px 0 0 0;
    text-align: center;
    color: #0b4f70 !important;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.home-v2-section-head {
    text-align: center;
    margin-bottom: 32px;
}

.home-v2-programme-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-v2-programme-grid article {
    background: rgba(11, 79, 112, 0.05);
    border: 1px solid rgba(11, 79, 112, 0.1);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
    text-align: center;
}

.home-v2-programme-grid article:hover {
    transform: translateY(-8px);
    background-color: rgba(11, 79, 112, 0.12);
    border-color: rgba(11, 79, 112, 0.2);
    box-shadow: 0 12px 28px rgba(11, 79, 112, 0.15);
}

.home-v2-programme-grid i {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0b4f70 0%, #117194 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 24px;
}

.home-v2-programme-grid h3 {
    margin: 12px 0 12px;
    color: #0b4f70 !important;
    font-size: 22px !important;
    font-weight: 700;
}

.home-v2-programme-grid p {
    margin: 0;
    text-align: center !important;
    max-width: none !important;
    font-size: 15px !important;
    color: #2a3f4a !important;
    line-height: 1.6;
}

.home-v2-showcase {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
}

.home-v2-image-stack {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 12px;
    align-items: stretch;
}

.home-v2-image-stack img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-v2-image-stack img:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 24px rgba(13, 37, 52, 0.14);
}

.home-v2-showcase-text {
    align-self: center;
}

.home-v2-showcase-text h2 {
    margin: 0;
    text-align: left;
    font-size: 40px;
    line-height: 1.08;
    font-family: "Playfair Display", Georgia, serif;
    color: #122839 !important;
}

.home-v2-showcase-text p {
    margin: 14px 0 0 !important;
    max-width: none !important;
    text-align: left !important;
    color: #365061 !important;
    font-size: 17px !important;
}

.home-v2-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #0b4f70;
    text-decoration: none;
    font-weight: 700;
    position: relative;
}

.home-v2-inline-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.home-v2-inline-link:hover::after {
    transform: scaleX(1);
}

.home-v2-reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.home-v2-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes homeV2Drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(18px, -12px, 0) scale(1.08);
    }
}

@keyframes homeV2Shine {
    0% {
        transform: translateX(-125%);
    }
    55% {
        transform: translateX(130%);
    }
    100% {
        transform: translateX(130%);
    }
}

.home-v2-cta {
    padding: 34px;
    text-align: center;
    background: transparent;
}

.home-v2-cta .home-v2-kicker {
    text-align: center !important;
    color: #0b4f70 !important;
}

.home-v2-cta h2 {
    margin: 0;
    color: #123044 !important;
    font-size: 34px;
    font-family: "Playfair Display", Georgia, serif;
}

.home-v2-cta p {
    margin: 14px auto 22px !important;
    color: #365061 !important;
    max-width: 780px !important;
    font-size: 18px !important;
}

.home-v2-cta {
    text-align: center;
}

.home-v2-cta h2 {
    font-size: 34px;
    color: #0b4f70 !important;
}

.home-v2-cta p {
    font-size: 18px !important;
    color: #2a3f4a !important;
}

.home-v2-cta .home-v2-btn-primary {
    background: #0b4f70;
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(11, 79, 112, 0.24);
}

/* Personalization styles for apart section */
.home-v2-apart {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(18, 46, 64, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
}

.home-v2-apart-head {
    text-align: center;
    margin-bottom: 40px;
}

.home-v2-apart-head h2 {
    margin: 12px 0 0 0;
    font-size: 32px;
    color: #0b4f70 !important;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
}

.home-v2-apart-intro {
    margin: 18px auto 0;
    max-width: 720px;
    color: #2a3f4a;
    font-size: 17px;
    line-height: 1.7;
}

.home-v2-apart-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.home-v2-apart-card {
    padding: 30px 26px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(11, 79, 112, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    min-height: 250px;
}

.home-v2-apart-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11, 79, 112, 0.12);
}

.home-v2-apart-card i {
    font-size: 38px;
    color: #0b4f70;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(11, 79, 112, 0.08);
}

.home-v2-apart-card h3 {
    margin: 16px 0 14px 0;
    color: #0b4f70 !important;
    font-size: 22px !important;
    font-weight: 700;
}

.home-v2-apart-card p {
    margin: 0;
    color: #2a3f4a !important;
    font-size: 15px !important;
    text-align: center !important;
    line-height: 1.6;
}

.home-v2-ideas-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.home-v2-idea {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(11, 79, 112, 0.07);
    color: #0b4f70;
    font-weight: 700;
    font-size: 14px;
}

.home-v2-idea i {
    min-width: 34px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(11, 79, 112, 0.15);
}

.home-v2-apart-footer {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.home-v2-apart-footer a {
    color: #0b4f70;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.home-v2-apart-footer a:hover {
    gap: 12px;
    color: #bc2d4a;
}

.home-v2-pillar i {
    font-size: 38px;
    color: #bc2d4a;
    margin-bottom: 14px;
    display: block;
}

.home-v2-pillar h4 {
    margin: 0 0 12px 0;
    color: #0b4f70 !important;
    font-size: 20px !important;
    font-weight: 700;
}

.home-v2-pillar p {
    margin: 0;
    color: #2a3f4a !important;
    font-size: 15px !important;
    text-align: center !important;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .home-v2-main {
        padding: 18px 14px 34px;
    }

    .home-v2-scroll-progress {
        height: 3px;
    }

    .home-v2-bg-canvas {
        opacity: 0.3;
    }

    .home-v2-page::before,
    .home-v2-page::after {
        width: 180px;
        height: 180px;
        opacity: 0.25;
    }

    .home-v2-intro {
        padding: 22px 20px;
    }

    .home-v2-name {
        font-size: clamp(36px, 9.6vw, 56px);
    }

    .home-v2-intro-lead {
        font-size: 17px !important;
    }

    .home-v2-video-player {
        min-height: 220px;
    }

    .home-v2-hero,
    .home-v2-showcase {
        grid-template-columns: 1fr;
    }

    .home-v2-hero-text,
    .home-v2-highlight,
    .home-v2-programmes,
    .home-v2-showcase,
    .home-v2-cta {
        padding: 20px;
    }

    .home-v2-hero-text h1 {
        font-size: 40px;
    }

    .home-v2-stats,
    .home-v2-programme-grid {
        grid-template-columns: 1fr;
    }

    .home-v2-section-head h2,
    .home-v2-showcase-text h2,
    .home-v2-cta h2 {
        font-size: 34px;
    }

    .home-v2-image-stack {
        grid-template-columns: 1fr;
    }

    .home-v2-image-stack img {
        height: 220px;
    }

    .home-v2-actions {
        flex-direction: column;
    }

    .home-v2-btn {
        width: 100%;
    }

    .home-v2-kicker,
    .home-v2-showcase-text h2,
    .home-v2-showcase-text p,
    .home-v2-section-head h2 {
        text-align: left !important;
    }

    .home-v2-cta .home-v2-kicker,
    .home-v2-cta h2,
    .home-v2-cta p {
        text-align: center !important;
    }

    .home-v2-apart-grid,
    .home-v2-apart-pillars,
    .home-v2-ideas-row {
        grid-template-columns: 1fr;
    }

    .home-v2-apart {
        padding: 20px;
    }

    .home-v2-apart-head h2 {
        font-size: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v2-bg-canvas {
        display: none;
    }

    .home-v2-scroll-progress {
        transform: none;
    }

    .home-v2-page::before,
    .home-v2-page::after,
    .home-v2-intro::after {
        animation: none !important;
    }

    .home-v2-btn,
    .home-v2-stats article,
    .home-v2-programme-grid article,
    .home-v2-video-player,
    .home-v2-reveal {
        transition: none !important;
    }

    .home-v2-reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .home-v2-heading-reveal .home-v2-word {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}

/* ===== HOME PAGE PORTAL ACCESS ===== */
.home-v2-portals {
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px rgba(18, 46, 64, 0.08);
}

.home-v2-portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.home-v2-portal-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(11, 79, 112, 0.15);
    border-radius: 24px;
    padding: 32px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 12px 32px rgba(11, 79, 112, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.home-v2-portal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0b4f70 0%, #117194 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.home-v2-portal-card:hover::before {
    transform: scaleX(1);
}

.home-v2-portal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(11, 79, 112, 0.15);
    border-color: rgba(11, 79, 112, 0.25);
}

.home-v2-portal-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0b4f70 0%, #117194 100%);
    color: #fff;
    transition: transform 0.3s ease;
}

.home-v2-portal-card:hover .home-v2-portal-icon {
    transform: scale(1.1);
}

.home-v2-portal-card:nth-child(2) .home-v2-portal-icon {
    background: linear-gradient(135deg, #0b4f70 0%, #0b4f70 100%);
}

.home-v2-portal-card:nth-child(3) .home-v2-portal-icon {
    background: linear-gradient(135deg, #2e7d4f 0%, #3da367 100%);
}

.home-v2-portal-card:nth-child(4) .home-v2-portal-icon {
    background: linear-gradient(135deg, #5c3d9e 0%, #7b57c4 100%);
}

.home-v2-portal-card h3 {
    margin: 0 0 12px 0;
    font-size: 22px;
    color: #0b4f70;
    font-weight: 700;
}

.home-v2-portal-card p {
    margin: 0 0 20px 0;
    color: #666;
    line-height: 1.5;
}

.home-v2-portal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b4f70;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.home-v2-portal-card:hover .home-v2-portal-link {
    color: #117194;
}

.home-v2-portal-link i {
    transition: transform 0.3s ease;
}

.home-v2-portal-card:hover .home-v2-portal-link i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .home-v2-portals {
        padding: 60px 20px;
        margin: 20px 0;
    }

    .home-v2-portal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-v2-portal-card {
        padding: 24px;
        text-align: center;
    }
}

/* ===== PROGRAMMES PAGE V2 ===== */
.programmes-page {
    font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
    color: #132737;
}

.programmes-page .programmes-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 22px 56px;
}

.programmes-page .programmes-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--programmes-reveal-delay, 0ms);
}

.programmes-page .programmes-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.programmes-page .programmes-hero {
    border-radius: 18px;
    padding: 34px;
    margin-bottom: 20px;
    border: 1px solid #d8e4ec;
    background:
        radial-gradient(circle at 86% 12%, rgba(11, 79, 112, 0.14) 0%, rgba(11, 79, 112, 0) 36%),
        radial-gradient(circle at 8% 92%, rgba(188, 45, 74, 0.12) 0%, rgba(188, 45, 74, 0) 38%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.95) 100%);
    box-shadow: 0 14px 30px rgba(18, 52, 73, 0.1);
    position: relative;
    overflow: hidden;
}

.programmes-page .programmes-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #bc2d4a 0%, #117194 70%, #7ad3f0 100%);
    background-size: 200% 100%;
    animation: programmesLineFlow 7s linear infinite;
}

.programmes-page .programmes-kicker {
    display: inline-block;
    margin: 0 0 10px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #c9dce8;
    color: #0b4f70;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.82);
}

.programmes-page .programmes-hero-title {
    margin: 0;
    text-align: left;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 5.4vw, 62px);
    line-height: 1.04;
    color: #0f2f41 !important;
}

.programmes-page .programmes-hero-lead {
    margin: 14px 0 0 !important;
    text-align: left !important;
    max-width: 860px !important;
    font-size: 18px !important;
    color: #355061 !important;
}

.programmes-page .programmes-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.programmes-page .programmes-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.programmes-page .programmes-btn:hover {
    transform: translateY(-2px);
}

.programmes-page .programmes-btn-primary {
    background: linear-gradient(135deg, #0b4f70 0%, #117194 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(11, 79, 112, 0.28);
}

.programmes-page .programmes-btn-primary:hover {
    box-shadow: 0 12px 22px rgba(11, 79, 112, 0.34);
}

.programmes-page .programmes-btn-ghost {
    background: #f0f6fa;
    border-color: #c9dce8;
    color: #163a4d;
}

.programmes-page .programmes-btn-ghost:hover {
    background: #e6f0f7;
}

.programmes-page .programmes-pathways,
.programmes-page .programmes-info-grid {
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.programmes-page .programmes-pathways {
    padding: 24px 0;
    margin-bottom: 20px;
    border-top: 1px solid #dbe7ef;
    border-bottom: 1px solid #dbe7ef;
}

.programmes-page .programmes-section-title {
    margin: 0;
    text-align: left;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 38px;
    line-height: 1.08;
    color: #123044 !important;
}

/* Mobile-specific UI blocks removed for desktop-only layout */

/* Shared portal topbar and tab styles (used by lecturer and student dashboards) */
.lecturer-topbar {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: #ffffff;
    border-bottom: 1px solid #d9e4ef;
    box-shadow: 0 4px 18px rgba(11,79,112,0.08);
    padding: 10px 18px;
}
.lecturer-topbar-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.lecturer-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.lecturer-brand img { width: 42px; height: 42px; border-radius: 10px; object-fit: contain; background: #f5f9ff; border: 1px solid #dce8f6; padding: 5px; }
.lecturer-brand-text strong { display: block; font-size: 15px; color: #0f3049; }
.lecturer-brand-text span { font-size: 12px; color: #5e7084; font-weight: 600; }
.lecturer-topbar-right { display: inline-flex; align-items: center; gap: 10px; }
.topbar-bell { position: relative; width: 38px; height: 38px; border-radius: 999px; border: 1px solid #d7e3ef; background: #f7fbff; color: #214662; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }
.topbar-bell-count { position: absolute; top: -5px; right: -3px; background: #e74c3c; color: #fff; border-radius: 999px; min-width: 18px; padding: 1px 5px; font-size: 10px; font-weight: 800; text-align: center; border: 2px solid #fff; }
.topbar-lecturer-pill { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; border: 1px solid #d7e3ef; background: #f7fbff; color: #173a57; padding: 8px 12px; font-size: 12px; font-weight: 800; }
.topbar-logout { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; border-radius: 999px; border: 1px solid #f0c8cf; background: #fff4f6; color: #7a2033; padding: 8px 12px; font-size: 12px; font-weight: 800; transition: background 0.2s, transform 0.2s; }
.topbar-logout:hover { background: #ffe9ee; transform: translateY(-1px); }

/* Tab navigation and stage */
.portal-layout { grid-template-columns: 280px minmax(0, 1fr); gap: 22px; }
.tab-nav { padding: 12px; border-radius: 16px; }
.tab-btn { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.tab-btn span { flex: 1; }
.tab-btn.logout-link { margin-top: 10px; color: #7a2033; border-top: 1px solid #e7edf5; padding-top: 12px; border-left-color: transparent; }
.tab-btn.logout-link::after { display: none; }
.tab-btn.logout-link:hover { background: #fff1f3; color: #7a2033; }
.tab-stage { min-width: 0; }
.tab-content.active { display: block; }

/* PDF viewer button and modal */
.pdf-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(11,79,112,0.08);
    background: linear-gradient(90deg,#fff 0%, #f7fbff 100%);
    color: #0b4f70;
    font-weight: 800;
    cursor: pointer;
}
.pdf-view-btn i { color: #d64545; }
.pdf-view-btn:hover { box-shadow: 0 6px 18px rgba(11,79,112,0.08); transform: translateY(-2px); }

.cb-pdf-modal { display: none; position: fixed; inset: 0; z-index: 1400; align-items: center; justify-content: center; }
.cb-pdf-modal.active { display: flex; }
.cb-pdf-modal-overlay { position: absolute; inset: 0; background: rgba(6,12,23,0.6); }
.cb-pdf-modal-inner { position: relative; width: 92%; max-width: 1100px; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(6,12,23,0.6); }
.cb-pdf-modal-close { position: absolute; right: 12px; top: 12px; z-index: 2; border: none; background: transparent; font-size: 28px; line-height: 1; color: #333; cursor: pointer; }
.cb-pdf-modal-header { padding: 14px 18px; border-bottom: 1px solid #eef2f7; background: #fbfdff; }
.cb-pdf-modal-header h3 { margin: 0; font-size: 16px; color: #0b4f70; font-weight: 800; }
.cb-pdf-modal iframe { width: 100%; height: 76vh; border: none; display: block; }

@media (max-width: 720px) {
    .cb-pdf-modal-inner { width: 98%; height: 92vh; }
    .cb-pdf-modal iframe { height: 72vh; }
}


@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .mobile-nav-drawer,
    .mobile-nav-overlay,
    .tab-btn,
    .tab-content {
        transition: none;
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .mobile-nav-item {
        border-left-width: 6px;
    }

    .tab-btn {
        border-left-width: 6px;
    }
}

.programmes-page .programmes-card-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.programmes-page .programmes-subsection + .programmes-subsection {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5edf3;
}

.programmes-page .programmes-subsection-title {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #0b4f70;
    font-weight: 800;
}

.programmes-page .programme-card {
    border-radius: 0;
    border: none;
    background: transparent;
    padding: 14px 8px 10px;
    box-shadow: none;
    transition: background-color 0.2s ease, transform 0.25s ease;
}

.programmes-page .programme-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    background-color: rgba(244, 250, 255, 0.55);
}

.programmes-page .programme-card i {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #0b4f70 0%, #117194 100%);
    animation: programmesIconFloat 3.6s ease-in-out infinite;
}

.programmes-page .programme-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: none;
    margin: 12px 0 2px;
    transition: transform 0.35s ease;
}

.programmes-page .programme-card:hover img {
    transform: scale(1.02);
}

.programmes-page .programme-card h4 {
    margin: 12px 0 8px;
    color: #133246;
    font-size: 22px;
    line-height: 1.25;
}

.programmes-page .programme-card p {
    margin: 0;
    text-align: left !important;
    font-size: 15px !important;
    color: #3a5567 !important;
    max-width: none !important;
}

.programmes-page .programme-more-btn {
    margin-top: 14px;
    border: 1px solid #d4e3ec;
    background: #f8fbfe;
    color: #0f3b52;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.programmes-page .programme-more-btn:hover {
    background: #e3f0f8;
    color: #0b2f41;
}

.programmes-page .programme-details-dropdown {
    margin-top: 12px;
    border: none;
    border-left: 2px solid #d7e6f0;
    background: transparent;
    border-radius: 10px;
    padding: 8px 0 8px 12px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.programmes-page .programme-details-dropdown.is-open {
    opacity: 1;
    transform: translateY(0);
}

.programmes-page .programme-details-dropdown h5 {
    margin: 0 0 8px;
    color: #0b4f70;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.programmes-page .programme-details-dropdown ul {
    margin: 0 0 10px;
    padding-left: 18px;
}

.programmes-page .programme-details-dropdown ul:last-child {
    margin-bottom: 0;
}

.programmes-page .programme-details-dropdown li {
    margin-bottom: 6px;
    color: #2e4556;
    font-size: 14px;
    line-height: 1.45;
}

.programmes-page .programmes-info-grid {
    padding: 0;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.programmes-page .programmes-info-card {
    border-radius: 0;
    border: none;
    background: transparent;
    padding: 16px 8px;
}

.programmes-page .programmes-info-card h3 {
    margin: 0 0 10px;
    color: #123044;
    font-size: 30px;
    text-align: left;
}

.programmes-page .programmes-info-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.programmes-page .programmes-info-card li {
    position: relative;
    padding: 9px 0 9px 24px;
    border-bottom: 1px solid #edf2f6;
    color: #2e4556;
    line-height: 1.5;
}

.programmes-page .programmes-info-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 9px;
    color: #0b4f70;
    font-weight: 700;
}

.programmes-page .programmes-info-card li:last-child {
    border-bottom: none;
}

.programmes-page .programmes-gallery {
    padding: 14px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.programmes-page .programmes-gallery img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #dce8ef;
}

.programmes-page .programmes-cta {
    padding: 30px 24px;
    text-align: center;
    background: linear-gradient(135deg, #0f4765 0%, #146082 58%, #1782a2 100%);
    background-size: 160% 160%;
    border-color: #0f5c7e;
    box-shadow: 0 14px 26px rgba(12, 58, 82, 0.24);
    animation: programmesCtaShift 8s ease-in-out infinite;
}

.programmes-page .programmes-cta h3 {
    margin: 0;
    color: #ffffff !important;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
}

.programmes-page .programmes-cta p {
    margin: 12px auto 18px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 18px;
    text-align: center;
}

.programmes-page .programmes-cta .enroll-btn {
    background: #ffffff;
    color: #0c435e;
    border: 1px solid #ffffff;
}

.programmes-page .programmes-cta .enroll-btn:hover {
    background: #e9f6ff;
    color: #082f42;
}

@keyframes programmesLineFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes programmesIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes programmesCtaShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (max-width: 980px) {
    .programmes-page .programmes-main {
        padding: 18px 14px 36px;
    }

    .programmes-page .programmes-hero,
    .programmes-page .programmes-pathways,
    .programmes-page .programmes-info-grid,
    .programmes-page .programmes-gallery,
    .programmes-page .programmes-cta {
        padding: 20px 16px;
    }

    .programmes-page .programmes-card-grid,
    .programmes-page .programmes-info-grid,
    .programmes-page .programmes-gallery {
        grid-template-columns: 1fr;
    }

    .programmes-page .programmes-section-title,
    .programmes-page .programmes-info-card h3 {
        font-size: 30px;
    }

    .programmes-page .programmes-actions {
        flex-direction: column;
    }

    .programmes-page .programmes-btn {
        width: 100%;
    }

    .programmes-page .programmes-gallery img {
        height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .programmes-page .programmes-reveal,
    .programmes-page .programme-card,
    .programmes-page .programme-card img,
    .programmes-page .programme-card i,
    .programmes-page .programmes-cta,
    .programmes-page .programmes-hero::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    .programmes-page .programmes-reveal {
        opacity: 1 !important;
    }
}

/* ===== STUDENT LIFE PAGE V2 ===== */
.student-page {
    font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
    color: #152b39;
}

.student-page .student-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 22px 56px;
}

.student-page .student-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--student-reveal-delay, 0ms);
}

.student-page .student-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.student-page .student-hero {
    padding: 34px;
    margin-bottom: 18px;
    border-radius: 18px;
    border: 1px solid #d8e4ec;
    background:
        radial-gradient(circle at 88% 8%, rgba(11, 79, 112, 0.12) 0%, rgba(11, 79, 112, 0) 34%),
        radial-gradient(circle at 10% 90%, rgba(188, 45, 74, 0.11) 0%, rgba(188, 45, 74, 0) 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.95) 100%);
    box-shadow: 0 14px 30px rgba(18, 52, 73, 0.1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.student-page .student-hero::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #bc2d4a 0%, #117194 70%, #7ad3f0 100%);
}

.student-page .student-hero > * {
    position: relative;
    z-index: 1;
}

.student-page .student-tag {
    color: #0b4f70;
    border: 1px solid #c9dce8;
    background: rgba(255, 255, 255, 0.86);
}

.student-page .student-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 5.6vw, 62px);
    line-height: 1.04;
    margin: 0 0 12px;
    text-align: left;
    color: #0f2f41 !important;
    text-shadow: none;
}

.student-page .student-lead {
    margin: 0;
    max-width: 860px;
    color: #365061;
    text-align: left;
    font-size: 18px;
}

.student-page .student-hero-actions {
    margin-top: 20px;
    justify-content: flex-start;
}

.student-page .student-experience {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 24px 0;
    margin-bottom: 18px;
    border-top: 1px solid #dbe7ef;
    border-bottom: 1px solid #dbe7ef;
}

.student-page .student-experience h3 {
    margin: 0;
    padding: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 40px;
    color: #123044;
}

.student-page .student-experience h3::after {
    content: none;
}

.student-page .life-pillars {
    margin-top: 18px;
    gap: 14px;
}

.student-page .life-card {
    border: none;
    border-radius: 12px;
    box-shadow: none;
    background: rgba(246, 251, 255, 0.7);
    padding: 20px;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.student-page .life-card:hover {
    transform: translateY(-3px);
    box-shadow: none;
    background: rgba(238, 247, 253, 0.95);
}

.student-page .life-card i {
    background: linear-gradient(135deg, #0b4f70 0%, #117194 100%);
}

.student-page .life-card h4 {
    color: #14364a;
}

.student-page .life-card p {
    color: #365061;
}

.student-page .student-highlight-grid {
    margin-bottom: 20px;
    gap: 14px;
}

.student-page .highlight-card {
    border: none;
    border-radius: 12px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.7);
    padding: 18px;
}

.student-page .highlight-card h3 {
    font-size: 28px;
    color: #123044;
}

.student-page .highlight-card li {
    border-bottom: 1px solid #e6eef3;
    color: #304958;
}

.student-page .highlight-card li::before {
    color: #0b4f70;
}

.student-page .student-gallery {
    margin-bottom: 20px;
    gap: 14px;
}

.student-page .student-gallery img {
    border: none;
    border-radius: 12px;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.student-page .student-gallery img:hover {
    transform: scale(1.02);
    box-shadow: none;
}

.student-page .student-cta-strip {
    border-radius: 16px;
    padding: 30px 24px;
    background: linear-gradient(135deg, #0f4765 0%, #146082 58%, #1782a2 100%);
    box-shadow: 0 14px 26px rgba(12, 58, 82, 0.24);
}

.student-page .student-cta-strip h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
}

.student-page .student-cta-strip p {
    color: rgba(255, 255, 255, 0.94);
}

.student-page .student-cta-strip .enroll-btn {
    background: #ffffff;
    color: #0c435e;
    border: 1px solid #ffffff;
}

.student-page .student-cta-strip .enroll-btn:hover {
    background: #e9f6ff;
    color: #082f42;
}

@media (max-width: 980px) {
    .student-page .student-main {
        padding: 18px 14px 36px;
    }

    .student-page .student-hero,
    .student-page .student-cta-strip {
        padding: 22px 18px;
    }

    .student-page .student-title,
    .student-page .student-experience h3,
    .student-page .highlight-card h3 {
        font-size: 32px;
    }

    .student-page .student-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .student-page .student-hero-actions .hero-btn {
        width: 100%;
    }

    .student-page .life-pillars,
    .student-page .student-highlight-grid,
    .student-page .student-gallery {
        grid-template-columns: 1fr;
    }

    .student-page .student-gallery img {
        height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .student-page .student-reveal,
    .student-page .life-card,
    .student-page .student-gallery img {
        transition: none !important;
        transform: none !important;
    }

    .student-page .student-reveal {
        opacity: 1 !important;
    }
}

/* ===== MANAGEMENT PAGE V2 ===== */
.management-page {
    font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
    color: #152b39;
}

.management-page .management-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 22px 56px;
}

.management-page .management-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--management-reveal-delay, 0ms);
}

.management-page .management-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.management-page .management-hero {
    padding: 34px;
    margin-bottom: 18px;
    border-radius: 18px;
    border: 1px solid #d8e4ec;
    background:
        radial-gradient(circle at 88% 8%, rgba(11, 79, 112, 0.12) 0%, rgba(11, 79, 112, 0) 34%),
        radial-gradient(circle at 10% 90%, rgba(188, 45, 74, 0.11) 0%, rgba(188, 45, 74, 0) 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.95) 100%);
    box-shadow: 0 14px 30px rgba(18, 52, 73, 0.1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.management-page .management-hero::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #bc2d4a 0%, #117194 70%, #7ad3f0 100%);
}

.management-page .management-hero > * {
    position: relative;
    z-index: 1;
}

.management-page .management-tag {
    color: #0b4f70;
    border: 1px solid #c9dce8;
    background: rgba(255, 255, 255, 0.86);
}

.management-page .management-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 5.6vw, 62px);
    line-height: 1.04;
    margin: 0 0 12px;
    text-align: left;
    color: #0f2f41 !important;
    text-shadow: none;
}

.management-page .management-lead {
    margin: 0;
    max-width: 860px;
    color: #365061;
    text-align: left;
    font-size: 18px;
}

.management-page .management-pillars {
    gap: 14px;
    margin-bottom: 18px;
}

.management-page .pillar-card {
    border: none;
    border-radius: 12px;
    box-shadow: none;
    background: rgba(246, 251, 255, 0.72);
    padding: 20px;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.management-page .pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: none;
    background: rgba(238, 247, 253, 0.95);
}

.management-page .pillar-card i {
    background: linear-gradient(135deg, #0b4f70 0%, #117194 100%);
}

.management-page .pillar-card h3,
.management-page .focus-content h3,
.management-page .management-team h3,
.management-page .team-content h4 {
    color: #123044;
}

.management-page .leadership-focus {
    gap: 14px;
    margin-bottom: 18px;
}

.management-page .focus-content,
.management-page .focus-images,
.management-page .management-team {
    border: none;
    border-radius: 12px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.72);
}

.management-page .focus-content {
    padding: 20px;
}

.management-page .focus-content li,
.management-page .team-content li {
    border-bottom: 1px solid #e6eef3;
    color: #304958;
}

.management-page .focus-content li::before,
.management-page .team-content li::before {
    color: #0b4f70;
}

.management-page .focus-images {
    padding: 12px;
}

.management-page .focus-images img,
.management-page .team-card img {
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.management-page .focus-images img:hover,
.management-page .team-card:hover img {
    transform: scale(1.02);
}

.management-page .management-team {
    padding: 20px;
    margin-bottom: 18px;
}

.management-page .team-card {
    border: none;
    border-radius: 12px;
    background: rgba(246, 251, 255, 0.78);
}

.management-page .team-role {
    color: #0b4f70;
}

.management-page .team-content p {
    color: #365061;
}

.management-page .management-cta {
    border-radius: 16px;
    padding: 30px 24px;
    background: linear-gradient(135deg, #0f4765 0%, #146082 58%, #1782a2 100%);
    box-shadow: 0 14px 26px rgba(12, 58, 82, 0.24);
}

.management-page .management-cta h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
}

.management-page .management-cta .enroll-btn {
    background: #ffffff;
    color: #0c435e;
    border: 1px solid #ffffff;
}

.management-page .management-cta .enroll-btn:hover {
    background: #e9f6ff;
    color: #082f42;
}

@media (max-width: 980px) {
    .management-page .management-main {
        padding: 18px 14px 36px;
    }

    .management-page .management-hero,
    .management-page .focus-content,
    .management-page .focus-images,
    .management-page .management-team,
    .management-page .management-cta {
        padding: 20px 16px;
    }

    .management-page .management-title,
    .management-page .focus-content h3,
    .management-page .management-team h3,
    .management-page .team-content h4,
    .management-page .management-cta h3 {
        font-size: 32px;
    }

    .management-page .management-pillars,
    .management-page .leadership-focus,
    .management-page .team-grid {
        grid-template-columns: 1fr;
    }

    .management-page .team-card {
        grid-template-columns: 1fr;
    }

    .management-page .focus-images img,
    .management-page .team-card img {
        height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .management-page .management-reveal,
    .management-page .pillar-card,
    .management-page .focus-images img,
    .management-page .team-card img {
        transition: none !important;
        transform: none !important;
    }

    .management-page .management-reveal {
        opacity: 1 !important;
    }
}

@media (max-width: 900px) {
    .cb-header {
        padding: 0 12px !important;
    }

    .cb-header .cb-mobile-toggle {
        display: inline-flex !important;
        margin-right: -8px !important;
    }

    .cb-header .cb-nav {
        display: none !important;
    }

    .cb-header .cb-nav.mobile-open {
        display: flex !important;
    }
}
