/* ============================================================
   SA GLOBAL STUDY - MAIN STYLESHEET
   Version: 1.0
   ============================================================ */

/* ============================================================
  ROOT VARIABLES & RESET
   ============================================================ */
:root {
    --navy: #020637;
    --navy-deep: #171b53;
    --sky: #259be0;
    --sky-light: #eaf5fc;
    --sky-glow: rgba(37, 155, 224, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
    color: #1e1e2f;
    background: #fff;
    line-height: 1.6;
}

/* ============================================================
  TOP BAR - RESPONSIVE
   ============================================================ */
.topbar {
    background: var(--navy);
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.topbar .container {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topbar a {
    line-height: 1;
}

/* pill buttons - Responsive */
.pill-outline {
    border: 1.5px solid rgba(255, 255, 255, .85);
    color: #fff;
    border-radius: 999px;
    padding: .45rem 1.1rem;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    white-space: nowrap;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.pill-outline:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
    transform: translateY(-1px);
}

/* socials - Responsive */
.social-circle {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(255, 255, 255, .85);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.02rem;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.social-circle:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
    font-size: calc(1.02rem * 1.50);
}

/* ============================================================
  TOP BAR RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 991px) {
    .topbar .container {
        gap: 0.4rem;
        justify-content: center;
    }

    .pill-outline {
        padding: .35rem .85rem;
        font-size: 0.85rem;
        gap: .4rem;
    }

    .social-circle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .social-circle:hover {
        font-size: calc(0.85rem * 1.50);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .topbar {
        padding: 0.3rem 0;
    }

    .topbar .container {
        gap: 0.3rem;
        justify-content: center;
        min-height: 36px;
    }

    /* Hide text on pills, show only icons */
    .pill-outline {
        padding: .25rem .6rem;
        font-size: 0.7rem;
        gap: .2rem;
        border-width: 1.2px;
    }

    .pill-outline span {
        display: none;
        /* Hide text, show only icon */
    }

    .pill-outline i {
        font-size: 0.9rem;
    }

    .social-circle {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
        border-width: 1.2px;
    }

    .social-circle:hover {
        font-size: calc(0.7rem * 1.50);
    }

    /* Alternative: Keep full text but smaller */
    .pill-outline-full {
        padding: .2rem .5rem;
        font-size: 0.65rem;
        gap: .2rem;
        border-width: 1.2px;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .topbar .container {
        gap: 0.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pill-outline {
        padding: .2rem .4rem;
        font-size: 0.6rem;
    }

    .pill-outline i {
        font-size: 0.7rem;
    }

    .social-circle {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }
}


/* ============================================================
   MAIN NAVIGATION - STICKY WITH OFF-WHITE BACKGROUND
   ============================================================ */
.navbar-main {
    background: #f8f9fa;
    padding: 0.7rem 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Add shadow on scroll for sticky effect - More prominent */
.navbar-main.navbar-scrolled {
    background: #f8f9fa;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Nav Links */
.navbar-main .nav-link {
    color: var(--navy);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.navbar-main .nav-link:hover {
    color: var(--sky);
}

.navbar-main .nav-link.current {
    color: var(--sky);
}

/* Dropdowns */
.navbar-main .dropdown-menu {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 230px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar-main .dropdown-item {
    color: var(--navy);
    font-weight: 500;
    padding: 0.5rem 1.3rem;
    font-size: 0.95rem;
}

.navbar-main .dropdown-item:hover {
    background: var(--sky-light);
    color: var(--sky);
}

.navbar-main .dropdown-submenu {
    position: relative;
}

.navbar-main .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -0.1rem;
    min-width: 220px;
}

.navbar-main .dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.navbar-main .dropdown-submenu .dropdown-toggle::after {
    transform: rotate(-90deg);
    margin-left: 0.5rem;
}

/* ============================================================
   DROPDOWN HOVER (DESKTOP)
   ============================================================ */
@media (min-width: 992px) {
    .navbar-main .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .navbar-main .dropdown .dropdown-menu {
        display: none;
        margin-top: 0;
    }

    .navbar-main .dropdown .nav-link {
        pointer-events: auto;
    }

    .navbar-main .dropdown-toggle::after {
        margin-left: 0.4em;
    }

    .navbar-main .dropdown-submenu .dropdown-menu {
        left: 100%;
        top: 0;
        margin-top: -0.1rem;
    }
}

/* ============================================================
   NAVBAR BRAND LOGO
   ============================================================ */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.2s;
}

.brand-icon:hover {
    transform: scale(1.03);
}

.brand-icon .bi-mortarboard-fill {
    position: absolute;
    top: -6px;
    right: -6px;
    color: #fff;
    font-size: 0.85rem;
    background: var(--navy);
    border-radius: 50%;
    padding: 2px;
    border: 2px solid #fff;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.3px;
}

.brand-name .highlight {
    color: var(--sky);
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: #888;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/images/hero-banner.jpg');
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(17, 17, 17, 0.30) 0%,
            rgba(17, 17, 17, 0.55) 30%,
            rgba(17, 17, 17, 0.75) 60%,
            rgba(17, 17, 17, 0.88) 85%,
            rgba(17, 17, 17, 0.92) 100%);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero h1 {
    font-weight: 800;
    font-size: 3.8rem;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.hero h1 .accent {
    color: #60b8f5;
    position: relative;
}

.hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(96, 184, 245, 0.20);
    border-radius: 8px;
    z-index: -1;
}

.hero .lead-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.90);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    max-width: 650px;
}

.hero .highlight-text {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.8rem;
    border-radius: 60px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero .highlight-text i {
    color: #60b8f5;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-navy {
    background: #ffffff;
    color: var(--navy);
    border: none;
    border-radius: 50rem;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-navy:hover {
    background: var(--sky-light);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-sky {
    background: var(--sky);
    color: #fff;
    border: none;
    border-radius: 50rem;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(37, 155, 224, 0.3);
    text-decoration: none;
}

.btn-sky:hover {
    background: #1f8fcf;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 155, 224, 0.4);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 50rem;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(41, 46, 109, 0.2);
}

.btn-outline-hero {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50rem;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-group-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section {
    padding: 5rem 0;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--sky);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 3px;
    background: var(--sky);
    border-radius: 4px;
    display: inline-block;
}

.section-eyebrow-center {
    justify-content: center;
}

.section-eyebrow-center::before {
    display: none;
}

.section-title {
    color: var(--navy);
    font-weight: 800;
    font-size: 2.4rem;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: var(--sky);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--sky-glow);
    border-radius: 8px;
    z-index: -1;
}

.section-sub {
    color: #4a4a55;
    font-size: 1.08rem;
    max-width: 700px;
    margin-bottom: 1.1rem;
}

.section-sub-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-light {
    background: var(--sky-light);
}

.section-light-grey {
    background: #f8f9fc;
}

.pill-outline-navy {
    border: 1.5px solid var(--navy);
    color: var(--navy);
    border-radius: 50rem;
    padding: .6rem 1.6rem;
    font-size: .95rem;
    font-weight: 600;
    background: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .25s ease;
}

.pill-outline-navy:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(41, 46, 109, .12);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.split-photo {
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 22, 101, .12);
    width: 100%;
    height: 100%;
    min-height: 300px;
    transition: transform 0.3s;
}

.split-photo:hover {
    transform: scale(1.01);
}

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

/* ============================================================
   EXPLORE SECTION
   ============================================================ */
.explore-section {
    background: var(--sky-light);
    padding: 4.5rem 0 5.5rem;
}

.explore-heading {
    text-align: center;
    color: var(--navy);
    font-weight: 800;
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
}

.explore-card {
    background: #fff;
    border-radius: 1.2rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 6px 24px rgba(44, 22, 101, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.explore-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: var(--navy-deep);
    box-shadow: 0 28px 48px rgba(44, 22, 101, 0.2);
    border-color: transparent;
}

.explore-card .explore-icon,
.explore-card .explore-icon-badge,
.explore-card .explore-title,
.explore-card .explore-sub {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.explore-card:hover .explore-icon,
.explore-card:hover .explore-title,
.explore-card:hover .explore-sub {
    color: #fff;
}

.explore-card:hover .explore-icon-badge {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    color: #fff;
}

.explore-card:hover .explore-icon {
    transform: scale(1.15) rotate(-5deg);
}

.explore-icon {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1.2rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.explore-icon-badge {
    width: 68px;
    height: 68px;
    background: var(--navy);
    border-radius: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.explore-title {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.explore-sub {
    color: #555;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 0;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-section {
    padding: 4rem 0;
    background: #fff;
}

.news-heading {
    color: var(--navy);
    font-weight: 800;
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    letter-spacing: -0.02em;
}

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

.news-list li {
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--sky);
    background: var(--sky-light);
    border-radius: 0.6rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.news-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(37, 155, 224, 0.12);
}

.news-list li:last-child {
    margin-bottom: 0;
}

.news-list li strong {
    display: block;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.news-list li strong a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
}

.news-list li strong a:hover {
    color: var(--sky);
}

.news-list li .news-desc {
    color: #444;
    font-size: 0.95rem;
    font-weight: 400;
}

.news-list li .news-desc a {
    color: var(--sky);
    text-decoration: none;
    font-weight: 600;
}

.news-list li .news-desc a:hover {
    text-decoration: underline;
}

/* ============================================================
   CTA SECTION (BOOK CONSULTATION)
   ============================================================ */
.cta-consult-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    padding: 4rem 0;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.cta-consult-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(37, 155, 224, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-consult-section .cta-content {
    position: relative;
    z-index: 2;
}

.cta-consult-section h3 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
}

.cta-consult-section h3 u {
    text-decoration-color: var(--sky);
    text-underline-offset: 6px;
}

.cta-consult-section .cta-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-consult-section .cta-image-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease;
}

.cta-consult-section .cta-image-wrap img:hover {
    transform: scale(1.02) rotate(-1deg);
}

.cta-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-cta-white {
    background: #fff;
    color: var(--navy);
    border: none;
    border-radius: 50rem;
    padding: 0.8rem 2.2rem;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-cta-white:hover {
    background: var(--sky-light);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50rem;
    padding: 0.8rem 2.2rem;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

/* ============================================================
   PARTNERS CAROUSEL
   ============================================================ */
.partners-section {
    padding: 4rem 0 3rem;
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.partners-heading {
    text-align: center;
    color: var(--navy);
    font-weight: 800;
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.partner-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 0.5rem;
    background: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.partner-logo-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(44, 22, 101, 0.08);
    border-color: rgba(37, 155, 224, 0.1);
}

.partner-logo-wrap img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.partner-logo-wrap:hover img {
    filter: grayscale(0%);
}

.partner-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.partner-carousel-wrapper .carousel-control-prev,
.partner-carousel-wrapper .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 50%;
    opacity: 1;
    border: none;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-carousel-wrapper .carousel-control-prev {
    left: -55px;
}

.partner-carousel-wrapper .carousel-control-next {
    right: -55px;
}

.partner-carousel-wrapper .carousel-control-prev:hover,
.partner-carousel-wrapper .carousel-control-next:hover {
    background: var(--sky);
    transform: translateY(-50%) scale(1.05);
}

.partner-carousel-wrapper .carousel-control-prev-icon,
.partner-carousel-wrapper .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
}

.partner-carousel-wrapper .carousel-indicators {
    position: relative;
    bottom: -20px;
    margin-top: 1.5rem;
}

.partner-carousel-wrapper .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    margin: 0 4px;
}

.partner-carousel-wrapper .carousel-indicators button.active {
    background: var(--sky);
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */

/* Page Banner - With Glass Effect */
.page-banner {
    position: relative;
    min-height: 300px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-banner-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 2.5rem 3rem;
    border-radius: 1rem;
    max-width: 700px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
}

/* Gradient border with sky color - Fixed mask syntax */
.page-banner-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(135deg, rgba(37, 155, 224, 0.25), rgba(255, 255, 255, 0.05), rgba(37, 155, 224, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

/* Glass edge glow - subtle border highlight */
.page-banner-box::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.02) 50%,
            rgba(255, 255, 255, 0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

/* Text styles inside the glass box */
.page-banner-box h1 {
    font-weight: 800;
    font-size: 2.6rem;
    margin-bottom: 0.6rem;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.page-banner-box h1 .highlight {
    color: #60b8f5;
    position: relative;
}

.page-banner-box p {
    font-size: 1.05rem;
    margin: 0;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .page-banner-box {
        padding: 2rem 2.5rem;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .page-banner-box h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 575px) {
    .page-banner {
        min-height: 200px;
    }

    .page-banner-box {
        padding: 1.5rem;
        border-radius: 0.8rem;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .page-banner-box h1 {
        font-size: 1.8rem;
    }

    .page-banner-box p {
        font-size: 0.95rem;
    }
}

/* Chips */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.3rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--sky-light);
    color: var(--navy);
    font-weight: 600;
    font-size: .88rem;
    padding: .5rem 1.1rem;
    border-radius: 50rem;
}

.chip i {
    color: var(--sky);
    font-size: 1rem;
}

/* Mission & Vision Cards */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 1.1rem;
    padding: 2.6rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(44, 22, 101, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(44, 22, 101, .12);
}

.mv-card.mv-accent {
    background: linear-gradient(135deg, var(--navy-deep) 0%, #1f8fcf 100%);
    color: #fff;
    border: none;
}

.mv-card.mv-accent .mv-icon {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.mv-card.mv-accent h3 {
    color: #fff;
}

.mv-card.mv-accent p {
    color: rgba(255, 255, 255, .92);
}

.mv-icon {
    width: 58px;
    height: 58px;
    border-radius: .8rem;
    background: var(--sky-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.mv-card h3 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: .8rem;
    color: var(--navy);
}

.mv-card p {
    color: #4a4a55;
    font-size: 1rem;
    margin: 0;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    text-align: center;
    padding: 2rem 1.2rem;
    height: 100%;
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--sky-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 1.1rem;
}

.why-card h6 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.why-card p {
    color: #555;
    font-size: .92rem;
    margin: 0;
}

/* Journey Timeline */
.journey-wrap {
    position: relative;
}

.journey-line {
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: #dfe3f3;
    z-index: 0;
}

@media (max-width: 768px) {
    .journey-line {
        display: none;
    }
}

.journey-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.journey-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 1.1rem;
    box-shadow: 0 8px 20px rgba(41, 46, 109, .25);
}

.journey-step h6 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: .4rem;
}

.journey-step p {
    color: #555;
    font-size: .9rem;
    max-width: 220px;
    margin: 0 auto;
}

/* Quote Card */
.quote-card {
    background: var(--sky-light);
    border-radius: 1.2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.quote-mark {
    font-size: 4.5rem;
    color: var(--sky);
    opacity: .35;
    line-height: 1;
    font-family: Georgia, serif;
}

.quote-card p.quote-text {
    font-size: 1.18rem;
    color: #20264f;
    font-weight: 500;
    max-width: 760px;
    margin: .5rem 0 1.6rem;
}

.quote-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.quote-attribution-name {
    color: var(--navy);
    font-weight: 700;
    margin: 0;
}

.quote-attribution-role {
    color: #666;
    font-size: .88rem;
    margin: 0;
}

/* More About Us Scroll */
.more-about-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: .5rem;
}

.more-about-scroll::-webkit-scrollbar {
    display: none;
}

.more-about-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    text-decoration: none;
    background: #fff;
    border-radius: .9rem;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(44, 22, 101, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.more-about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(44, 22, 101, .14);
}

.more-about-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.more-about-card .mac-body {
    padding: 1.1rem 1.3rem 1.4rem;
}

.more-about-card h6 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.02rem;
    margin: 0 0 .3rem;
}

.more-about-card .mac-link {
    color: var(--sky);
    font-size: .85rem;
    font-weight: 600;
}

.carousel-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--navy);
    background: #fff;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.carousel-arrow-btn:hover {
    background: var(--navy);
    color: #fff;
}

/* ============================================================
   COURSES PAGE SPECIFIC STYLES
   ============================================================ */

/* Subject Grid */
.subject-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.5rem 1.5rem;
}

.subject-item {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: #444;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.subject-item i {
    color: var(--sky);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Subject Not Found Box */
.subject-not-found {
    background: var(--sky-light);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(37, 155, 224, 0.1);
    text-align: center;
    margin-top: 1.5rem;
}

.subject-not-found p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.subject-not-found .sub-text {
    color: #555;
    margin-bottom: 1rem;
}

.subject-not-found .sub-text strong {
    color: var(--navy);
}

/* Subject Grid Container */
.subject-grid-container {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
}

/* Related Cards - Course Cards */
.related-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(44, 22, 101, 0.1);
    border-color: var(--sky-light);
}

.related-card .rc-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sky-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.related-card h6 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.related-card .rc-tag {
    color: var(--sky);
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.4rem;
}

/* Course Card Left Aligned */
.related-card-left {
    text-align: left;
    padding: 2rem;
}

.related-card-left .course-icon-wrap {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.related-card-left .course-title {
    font-size: 1.2rem;
}

.related-card-left .course-desc {
    color: #666;
    font-size: 0.85rem;
    margin: 0.3rem 0 0;
}

/* Journey Steps */
.journey-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 1.1rem;
    box-shadow: 0 8px 20px rgba(41, 46, 109, 0.25);
}

.journey-step-title {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.journey-step-text {
    color: #555;
    font-size: 0.9rem;
    max-width: 220px;
    margin: 0 auto;
}

/* Section Eyebrow Center */
.section-eyebrow-center {
    justify-content: center;
}

.section-eyebrow-center::before {
    display: none;
}

/* Section Sub Center */
.section-sub-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .subject-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.3rem 0.8rem;
    }

    .subject-item {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .subject-grid-container {
        padding: 1rem;
    }

    .subject-not-found {
        padding: 1.5rem;
    }

    .related-card-left .course-title {
        font-size: 1rem;
    }

    .related-card-left {
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .subject-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.2rem 0.5rem;
    }

    .subject-item {
        font-size: 0.78rem;
        padding: 0.25rem 0;
    }

    .subject-item i {
        font-size: 0.65rem;
    }

    .subject-grid-container {
        padding: 0.8rem;
        border-radius: 0.6rem;
    }

    .subject-not-found {
        padding: 1.2rem;
        border-radius: 0.6rem;
    }

    .subject-not-found p {
        font-size: 0.95rem;
    }

    .related-card {
        padding: 1.5rem 1rem;
    }
}

/* Entry Requirements */
.entry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .entry-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.entry-block {
    background: #fff;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 4px 16px rgba(44, 22, 101, .04);
}

.entry-block .entry-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .6rem;
}

.entry-block .entry-label i {
    color: var(--sky);
    font-size: 1.2rem;
}

.entry-block p {
    color: #444;
    font-size: 1rem;
    margin: 0;
}

/* Subject Areas */
.subject-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.subject-card {
    background: #fff;
    border-radius: 0.8rem;
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .06);
    transition: all .3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.subject-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44, 22, 101, .1);
    border-color: var(--sky);
    background: var(--sky-light);
}

.subject-card .sub-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sky-light);
    color: var(--sky);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all .3s ease;
}

.subject-card:hover .sub-icon {
    background: var(--navy);
    color: #fff;
    transform: scale(1.05);
}

.subject-card .sub-name {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Related Courses */
.related-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all .3s ease;
    text-decoration: none;
    display: block;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(44, 22, 101, .1);
    border-color: var(--sky-light);
}

.related-card .rc-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sky-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: .8rem;
}

.related-card h6 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.related-card .rc-tag {
    color: var(--sky);
    font-size: .78rem;
    font-weight: 600;
    display: inline-block;
    margin-top: .4rem;
}

/* ============================================================
   COURSE PAGES - SHARED STYLES
   ============================================================ */

/* Course Overview Text */
.overview-text p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* Info Cards - Horizontal Row */
.info-card-horizontal {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    padding: 1.2rem 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(44, 22, 101, 0.05);
}

.info-card-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44, 22, 101, 0.12);
    border-color: var(--sky);
}

.info-card-horizontal .info-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.8rem;
    background: var(--sky-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card-horizontal:hover .info-icon {
    background: var(--navy);
    color: #fff;
}

.info-card-horizontal .info-content h6 {
    color: var(--navy);
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.info-card-horizontal .info-content p {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 1.8rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(44, 22, 101, 0.04);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky), var(--navy));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(44, 22, 101, 0.12);
    border-color: var(--sky-light);
}

.feature-card .feature-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background: var(--sky-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: all 0.35s ease;
}

.feature-card:hover .feature-card-icon {
    background: var(--navy);
    color: #fff;
    transform: scale(1.05) rotate(-4deg);
}

.feature-card h5 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Entry Requirements Grid */
.entry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .entry-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.entry-block {
    background: #fff;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
    transition: all 0.3s ease;
}

.entry-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(44, 22, 101, 0.08);
}

.entry-block .entry-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.entry-block .entry-label i {
    color: var(--sky);
    font-size: 1.2rem;
}

.entry-block p {
    color: #444;
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

/* Subject Areas Grid */
.subject-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

@media (max-width: 768px) {
    .subject-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 0.8rem;
    }
}

@media (max-width: 575px) {
    .subject-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.6rem;
    }
}

.subject-card {
    background: #fff;
    border-radius: 0.8rem;
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(44, 22, 101, 0.03);
}

.subject-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44, 22, 101, 0.1);
    border-color: var(--sky);
    background: var(--sky-light);
}

.subject-card .sub-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sky-light);
    color: var(--sky);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.subject-card:hover .sub-icon {
    background: var(--navy);
    color: #fff;
    transform: scale(1.05);
}

.subject-card .sub-name {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Related Courses Cards */
.related-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(44, 22, 101, 0.1);
    border-color: var(--sky-light);
}

.related-card .rc-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sky-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.related-card:hover .rc-icon {
    background: var(--navy);
    color: #fff;
}

.related-card h6 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.related-card .rc-tag {
    color: var(--sky);
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.4rem;
}

/* Course Info Cards - Special variant for start & duration */
.info-card-horizontal.special {
    background: var(--sky-light);
    border-color: transparent;
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
}

.info-card-horizontal.special .info-icon {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
    background: var(--navy);
    color: #fff;
}

.info-card-horizontal.special .info-content h6 {
    opacity: 0.8;
}

.info-card-horizontal.special .info-content p {
    font-size: 1rem;
}

.info-card-horizontal.special .info-content .intake {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.info-card-horizontal.special .info-content .intake i {
    color: var(--sky);
}

/* Responsive */
@media (max-width: 767px) {
    .info-card-horizontal {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .info-card-horizontal .info-content h6 {
        font-size: 0.8rem;
    }

    .info-card-horizontal .info-content p {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem 1.2rem;
    }

    .feature-card h5 {
        font-size: 1rem;
    }

    .entry-block {
        padding: 1.2rem 1.5rem;
    }

    .related-card {
        padding: 1.5rem 1.2rem;
    }
}

@media (max-width: 575px) {
    .overview-text p {
        font-size: 0.95rem;
    }

    .info-card-horizontal {
        padding: 1.2rem;
    }

    .feature-card {
        padding: 1.2rem 1rem;
    }

    .feature-card .feature-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .feature-card h5 {
        font-size: 0.95rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .entry-block {
        padding: 1rem 1.2rem;
    }

    .entry-block .entry-label {
        font-size: 0.95rem;
    }

    .entry-block p {
        font-size: 0.9rem;
    }

    .subject-card {
        padding: 0.8rem 0.6rem;
    }

    .subject-card .sub-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .subject-card .sub-name {
        font-size: 0.75rem;
    }

    .related-card {
        padding: 1.2rem 1rem;
    }

    .related-card .rc-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .related-card h6 {
        font-size: 0.9rem;
    }
}

/* ============================================================
   CTA SECTION (OTHER PAGES)
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    padding: 4rem 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(37, 155, 224, .06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section .cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h3 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.btn-cta-white {
    background: #fff;
    color: var(--navy);
    border: none;
    border-radius: 50rem;
    padding: .85rem 2.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    transition: all .25s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.btn-cta-white:hover {
    background: var(--sky-light);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
    border-radius: 50rem;
    padding: .85rem 2.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    transition: all .25s ease;
    text-decoration: none;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}


/* ============================================================
   ONE-TO-ONE CONSULTATION PAGE
   ============================================================ */

/* Section Title - One to One */
.one-to-one-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
}

/* Process Section Title */
.process-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 4px;
    text-align: center;
}

/* Consultation Overview */
.consultation-overview {
    padding: 2rem 0;
}

.consultation-overview h4 {
    color: var(--navy);
    font-weight: 600;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Checklist Items */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.checklist-block {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
}

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

.checklist-block ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #444;
}

.checklist-block ul li:last-child {
    border-bottom: none;
}

.checklist-block ul li i {
    color: var(--sky);
    flex-shrink: 0;
}

/* Deadline Note */
.deadline-note {
    padding: 2rem 0;
}

.deadline-note p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

/* Services Section Spacing */
.services-section-spacing {
    padding: 2rem 0;
}

.services-cards-spacing {
    padding: 3rem 0;
}

/* ============================================================
   UK UNIVERSITY SELECTION PAGE
   ============================================================ */

/* University Partners Grid */
.university-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 1.5rem;
}

@media (max-width: 768px) {
    .university-grid {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }
}

.university-item {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #444;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.university-item i {
    color: var(--sky);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* University Partners Container */
.university-container {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
}

/* University Image Placeholder */
.university-image {
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 22, 101, 0.12);
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/images/south-wales-uni.jpeg');
}

/* Official Rep Section */
.representative-section {
    padding: 4rem 0;
}

.rep-image {
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 22, 101, 0.12);
    height: 100%;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/images/uk-university.jpeg');
}

.rep-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

/* Badge Chips */
.badge-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sky-light);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.5rem 1.1rem;
    border-radius: 50rem;
}

.badge-chip i {
    color: var(--sky);
}

/* ============================================================
   SERVICES PAGE - OTHER SERVICES CARDS
   ============================================================ */

/* Service Card */
.service-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.service-card .rc-icon {
    margin: 0 auto 0.8rem;
}

/* ============================================================
   RESPONSIVE - ALL PAGES
   ============================================================ */

@media (max-width: 991px) {
    .one-to-one-title {
        font-size: 2.4rem;
    }

    .process-title {
        font-size: 2.2rem;
    }

    .consultation-overview h4 {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .university-image {
        min-height: 300px;
    }

    .rep-image {
        min-height: 280px;
    }
}

@media (max-width: 575px) {
    .one-to-one-title {
        font-size: 1.8rem;
    }

    .process-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .consultation-overview h4 {
        font-size: 1rem;
    }

    .checklist-block {
        padding: 1.2rem 1.2rem;
    }

    .checklist-block ul li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .university-container {
        padding: 1rem;
        border-radius: 0.6rem;
    }

    .university-item {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .university-image {
        min-height: 200px;
    }

    .rep-image {
        min-height: 200px;
    }

    .badge-chip {
        font-size: 0.78rem;
        padding: 0.4rem 0.8rem;
    }

    .service-card {
        padding: 1.2rem 1rem;
    }

    .services-cards-spacing {
        padding: 2rem 0;
    }
}

/* ============================================================
   UNIVERSITY APPLICATION PAGE
   ============================================================ */

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.faq-item {
    background: var(--sky-light);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(37, 155, 224, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44, 22, 101, 0.08);
}

.faq-item .faq-icon {
    font-size: 2rem;
    color: var(--sky);
    margin-bottom: 0.8rem;
    display: block;
}

.faq-item h5 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.faq-item p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

/* Documents Section - Improved Design */
.documents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.doc-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.8rem 1.8rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
    transition: all 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(44, 22, 101, 0.08);
    border-color: var(--sky-light);
}

.doc-card .doc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--sky-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.doc-card:hover .doc-icon {
    background: var(--navy);
    color: #fff;
}

.doc-card .doc-title {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.doc-card .doc-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Personal Statement Note */
.ps-note {
    background: var(--sky-light);
    border-radius: 0.8rem;
    padding: 1.2rem 1.5rem;
    margin-top: 0.8rem;
    border-left: 3px solid var(--sky);
}

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

.ps-note ul li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: #444;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.ps-note ul li:last-child {
    border-bottom: none;
}

.ps-note ul li i {
    color: var(--sky);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* IELTS Info Box */
.ielts-box {
    background: #fff;
    border-radius: 0.8rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 0.8rem;
}

.ielts-box .ielts-badge {
    display: inline-block;
    background: var(--sky);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.8rem;
    border-radius: 50rem;
    margin-bottom: 0.4rem;
}

.ielts-box .ielts-score {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
}

.ielts-box .ielts-score span {
    color: var(--sky);
}

.ielts-box .ielts-min {
    color: #555;
    font-size: 0.9rem;
}

.ielts-box .moi-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.3rem;
    font-style: italic;
    padding-top: 0.3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ielts-box .moi-note i {
    color: var(--sky);
}

/* References Note */
.ref-note {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.3rem;
}

/* Visa Documents Card */
.visa-card {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    border-radius: 1rem;
    padding: 1.8rem 1.8rem 2rem;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.visa-card .doc-icon {
    background: rgba(255, 193, 7, 0.15);
    color: #f59e0b;
}

.visa-card:hover .doc-icon {
    background: #f59e0b;
    color: #fff;
}

/* Application Help Box */
.app-help-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 1.2rem;
    padding: 3rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.app-help-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(37, 155, 224, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.app-help-box .app-content {
    position: relative;
    z-index: 2;
}

.app-help-box h4 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.app-help-box h4 i {
    color: var(--sky);
}

.app-help-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 1.2rem;
}

.app-help-box .btn-white {
    background: #fff;
    color: var(--navy);
    border: none;
    border-radius: 50rem;
    padding: 0.8rem 2.2rem;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.app-help-box .btn-white:hover {
    background: var(--sky-light);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.app-help-box .btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50rem;
    padding: 0.8rem 2.2rem;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.app-help-box .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .doc-card {
        padding: 1.5rem;
    }

    .doc-card .doc-title {
        font-size: 1rem;
    }

    .doc-card .doc-desc {
        font-size: 0.9rem;
    }

    .ps-note {
        padding: 1rem 1.2rem;
    }

    .ps-note ul li {
        font-size: 0.88rem;
    }

    .app-help-box {
        padding: 2rem 1.5rem;
    }

    .app-help-box h4 {
        font-size: 1.3rem;
    }

    .app-help-box p {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .faq-item {
        padding: 1.2rem;
    }

    .faq-item h5 {
        font-size: 0.95rem;
    }

    .faq-item p {
        font-size: 0.85rem;
    }

    .doc-card {
        padding: 1.2rem;
    }

    .doc-card .doc-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .doc-card .doc-title {
        font-size: 0.95rem;
    }

    .doc-card .doc-desc {
        font-size: 0.85rem;
    }

    .ps-note {
        padding: 0.8rem 1rem;
    }

    .ps-note ul li {
        font-size: 0.82rem;
        padding: 0.3rem 0;
    }

    .ielts-box {
        padding: 1rem;
    }

    .ielts-box .ielts-score {
        font-size: 1rem;
    }

    .app-help-box {
        padding: 1.5rem;
        border-radius: 0.8rem;
    }

    .app-help-box h4 {
        font-size: 1.1rem;
    }

    .app-help-box p {
        font-size: 0.9rem;
    }

    .app-help-box .btn-white,
    .app-help-box .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   UCAS APPLICATION HELP PAGE
   ============================================================ */

/* UCAS Hero Section */
.ucas-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 1.2rem;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.ucas-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(37, 155, 224, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ucas-hero .ucas-content {
    position: relative;
    z-index: 2;
}

.ucas-hero .ucas-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.3rem 1.2rem;
    border-radius: 50rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ucas-hero h2 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.ucas-hero h2 .highlight {
    color: #60b8f5;
}

.ucas-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 650px;
    margin-bottom: 0;
}

/* UCAS Info Cards */
.ucas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .ucas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.ucas-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
    transition: all 0.3s ease;
}

.ucas-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(44, 22, 101, 0.08);
    border-color: var(--sky-light);
}

.ucas-card .ucas-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--sky-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.ucas-card:hover .ucas-icon {
    background: var(--navy);
    color: #fff;
}

.ucas-card h5 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.ucas-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* UCAS Buzzword Box */
.buzzword-box {
    background: linear-gradient(135deg, var(--sky-light), #d4edfc);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 2px dashed var(--sky);
}

.buzzword-box .buzzword-label {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buzzword-box .buzzword-code {
    font-weight: 800;
    color: var(--sky);
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
}

.buzzword-box .buzzword-note {
    color: #555;
    font-size: 0.9rem;
    margin: 0;
}

/* UCAS Deadlines */
.ucas-deadlines {
    background: #fff;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
}

.ucas-deadlines .deadline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.ucas-deadlines .deadline-item:last-child {
    border-bottom: none;
}

.ucas-deadlines .deadline-item i {
    color: var(--sky);
    font-size: 1.2rem;
    width: 30px;
}

.ucas-deadlines .deadline-item .deadline-label {
    font-weight: 600;
    color: var(--navy);
}

.ucas-deadlines .deadline-item .deadline-value {
    color: #555;
}

/* UCAS Apply Now Box */
.apply-now-box {
    background: var(--sky-light);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(37, 155, 224, 0.1);
}

.apply-now-box h4 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.apply-now-box p {
    color: #555;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .ucas-hero {
        padding: 2rem 1.5rem;
    }

    .ucas-hero h2 {
        font-size: 1.8rem;
    }

    .ucas-hero p {
        font-size: 0.95rem;
    }

    .ucas-card {
        padding: 1.5rem;
    }

    .ucas-card h5 {
        font-size: 0.95rem;
    }

    .ucas-card p {
        font-size: 0.9rem;
    }

    .buzzword-box {
        padding: 1.5rem;
    }

    .buzzword-box .buzzword-code {
        font-size: 1.6rem;
    }

    .ucas-deadlines {
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .ucas-hero {
        padding: 1.5rem;
        border-radius: 0.8rem;
    }

    .ucas-hero h2 {
        font-size: 1.4rem;
    }

    .ucas-hero p {
        font-size: 0.9rem;
    }

    .ucas-hero .ucas-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }

    .ucas-card {
        padding: 1.2rem;
    }

    .ucas-card .ucas-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .ucas-card h5 {
        font-size: 0.9rem;
    }

    .ucas-card p {
        font-size: 0.85rem;
    }

    .buzzword-box {
        padding: 1.2rem;
    }

    .buzzword-box .buzzword-code {
        font-size: 1.3rem;
    }

    .buzzword-box .buzzword-label {
        font-size: 0.8rem;
    }

    .ucas-deadlines {
        padding: 1.2rem;
    }

    .ucas-deadlines .deadline-item {
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .apply-now-box {
        padding: 1.2rem;
    }

    .apply-now-box h4 {
        font-size: 1rem;
    }

    .apply-now-box p {
        font-size: 0.9rem;
    }
}

/* ============================================================
   VISA APPLICATION SUPPORT PAGE
   ============================================================ */

/* Visa Hero Section */
.visa-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 1.2rem;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.visa-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(37, 155, 224, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.visa-hero .visa-content {
    position: relative;
    z-index: 2;
}

.visa-hero .visa-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.3rem 1.2rem;
    border-radius: 50rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.visa-hero h2 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.visa-hero h2 .highlight {
    color: #60b8f5;
}

.visa-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 650px;
    margin-bottom: 0;
}

/* Visa Points Grid */
.visa-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .visa-points-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.visa-point-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
    transition: all 0.3s ease;
}

.visa-point-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(44, 22, 101, 0.08);
    border-color: var(--sky-light);
}

.visa-point-card .point-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sky);
    display: block;
    margin-bottom: 0.2rem;
}

.visa-point-card .point-label {
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.visa-point-card .point-desc {
    color: #555;
    font-size: 0.9rem;
    margin: 0;
}

/* Visa Documents Grid */
.visa-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .visa-docs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.visa-doc-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
    transition: all 0.3s ease;
}

.visa-doc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(44, 22, 101, 0.08);
    border-color: var(--sky-light);
}

.visa-doc-card .doc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--sky-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.visa-doc-card:hover .doc-icon {
    background: var(--navy);
    color: #fff;
}

.visa-doc-card h5 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.visa-doc-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Visa Money Box */
.visa-money-box {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.visa-money-box h5 {
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.visa-money-box h5 i {
    color: #4caf50;
}

.visa-money-box p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.visa-money-box .highlight-number {
    font-weight: 800;
    color: var(--navy);
    font-size: 1.1rem;
}

/* Credibility Interview Box */
.credibility-box {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.credibility-box h5 {
    color: #e65100;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.credibility-box h5 i {
    color: #f57c00;
}

.credibility-box p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Solicitor Help Box */
.solicitor-box {
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    border-radius: 1.2rem;
    padding: 3rem;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solicitor-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(37, 155, 224, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.solicitor-box .solicitor-content {
    position: relative;
    z-index: 2;
}

.solicitor-box h4 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.solicitor-box h4 i {
    color: var(--sky);
}

.solicitor-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 1.2rem;
}

.solicitor-box .btn-white {
    background: #fff;
    color: var(--navy);
    border: none;
    border-radius: 50rem;
    padding: 0.8rem 2.2rem;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.solicitor-box .btn-white:hover {
    background: var(--sky-light);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.solicitor-box .btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50rem;
    padding: 0.8rem 2.2rem;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.solicitor-box .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .visa-hero {
        padding: 2rem 1.5rem;
    }

    .visa-hero h2 {
        font-size: 1.8rem;
    }

    .visa-hero p {
        font-size: 0.95rem;
    }

    .visa-point-card {
        padding: 1.5rem;
    }

    .visa-point-card .point-number {
        font-size: 2rem;
    }

    .visa-point-card .point-label {
        font-size: 0.9rem;
    }

    .visa-doc-card {
        padding: 1.5rem;
    }

    .visa-doc-card h5 {
        font-size: 0.95rem;
    }

    .visa-doc-card p {
        font-size: 0.9rem;
    }

    .visa-money-box {
        padding: 1.5rem;
    }

    .credibility-box {
        padding: 1.5rem;
    }

    .solicitor-box {
        padding: 2rem 1.5rem;
    }

    .solicitor-box h4 {
        font-size: 1.3rem;
    }

    .solicitor-box p {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .visa-hero {
        padding: 1.5rem;
        border-radius: 0.8rem;
    }

    .visa-hero h2 {
        font-size: 1.4rem;
    }

    .visa-hero p {
        font-size: 0.9rem;
    }

    .visa-hero .visa-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }

    .visa-point-card {
        padding: 1.2rem;
    }

    .visa-point-card .point-number {
        font-size: 1.8rem;
    }

    .visa-point-card .point-label {
        font-size: 0.85rem;
    }

    .visa-point-card .point-desc {
        font-size: 0.82rem;
    }

    .visa-doc-card {
        padding: 1.2rem;
    }

    .visa-doc-card .doc-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .visa-doc-card h5 {
        font-size: 0.9rem;
    }

    .visa-doc-card p {
        font-size: 0.85rem;
    }

    .visa-money-box {
        padding: 1.2rem;
    }

    .visa-money-box p {
        font-size: 0.85rem;
    }

    .credibility-box {
        padding: 1.2rem;
    }

    .credibility-box p {
        font-size: 0.85rem;
    }

    .solicitor-box {
        padding: 1.5rem;
        border-radius: 0.8rem;
    }

    .solicitor-box h4 {
        font-size: 1.1rem;
    }

    .solicitor-box p {
        font-size: 0.9rem;
    }

    .solicitor-box .btn-white,
    .solicitor-box .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   SCHOLARSHIPS & FUNDING SUPPORT PAGE
   ============================================================ */

/* Scholarships Hero Section */
.scholarship-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 1.2rem;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.scholarship-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(37, 155, 224, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.scholarship-hero .scholarship-content {
    position: relative;
    z-index: 2;
}

.scholarship-hero .scholarship-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: #60b8f5;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.3rem 1.2rem;
    border-radius: 50rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.scholarship-hero h2 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.scholarship-hero h2 .highlight {
    color: #60b8f5;
}

.scholarship-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 650px;
    margin-bottom: 0;
}

/* Scholarships Info Cards */
.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .scholarship-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.scholarship-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
    transition: all 0.3s ease;
}

.scholarship-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(44, 22, 101, 0.08);
    border-color: var(--sky-light);
}

.scholarship-card .scholarship-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-light), #d4edfc);
    color: var(--sky);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.scholarship-card:hover .scholarship-icon {
    background: var(--navy);
    color: #fff;
    transform: scale(1.05);
}

.scholarship-card h5 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.scholarship-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Explore Now Box */
.explore-box {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    border: 1px solid rgba(255, 193, 7, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.explore-box .explore-text h4 {
    color: #e65100;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.explore-box .explore-text h4 i {
    color: #f57c00;
}

.explore-box .explore-text p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

.explore-box .explore-btn {
    flex-shrink: 0;
}

/* What We Do Box */
.wedo-box {
    background: var(--sky-light);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid rgba(37, 155, 224, 0.08);
    text-align: center;
}

.wedo-box h4 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.wedo-box h4 i {
    color: var(--sky);
}

.wedo-box p {
    color: #555;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 1.2rem;
}

/* Scholarship Levels */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

@media (max-width: 575px) {
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
}

.level-item {
    background: var(--sky-light);
    border-radius: 0.8rem;
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    box-shadow: 0 2px 8px rgba(2, 6, 55, 0.04);
}

.level-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 0.8rem;
    padding: 2px;
    background: linear-gradient(135deg, transparent 30%, var(--sky) 100%);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.level-item:hover::before {
    opacity: 1;
}

.level-item:hover .level-icon {
    color: var(--sky);
}

.level-item .level-icon {
    font-size: 1.5rem;
    color: var(--sky);
    display: block;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.level-item .level-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
    display: block;
    transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .scholarship-hero {
        padding: 2rem 1.5rem;
    }

    .scholarship-hero h2 {
        font-size: 1.8rem;
    }

    .scholarship-hero p {
        font-size: 0.95rem;
    }

    .scholarship-card {
        padding: 1.5rem;
    }

    .scholarship-card h5 {
        font-size: 0.95rem;
    }

    .scholarship-card p {
        font-size: 0.9rem;
    }

    .explore-box {
        padding: 1.5rem 2rem;
    }

    .explore-box .explore-text h4 {
        font-size: 1.05rem;
    }

    .explore-box .explore-text p {
        font-size: 0.9rem;
    }

    .wedo-box {
        padding: 1.5rem 2rem;
    }

    .wedo-box h4 {
        font-size: 1.15rem;
    }

    .wedo-box p {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .scholarship-hero {
        padding: 1.5rem;
        border-radius: 0.8rem;
    }

    .scholarship-hero h2 {
        font-size: 1.4rem;
    }

    .scholarship-hero p {
        font-size: 0.9rem;
    }

    .scholarship-hero .scholarship-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }

    .scholarship-card {
        padding: 1.2rem;
    }

    .scholarship-card .scholarship-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .scholarship-card h5 {
        font-size: 0.9rem;
    }

    .scholarship-card p {
        font-size: 0.85rem;
    }

    .explore-box {
        padding: 1.2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .explore-box .explore-text h4 {
        font-size: 1rem;
    }

    .explore-box .explore-text p {
        font-size: 0.85rem;
    }

    .wedo-box {
        padding: 1.2rem 1.5rem;
    }

    .wedo-box h4 {
        font-size: 1rem;
    }

    .wedo-box p {
        font-size: 0.9rem;
    }

    .level-item {
        padding: 0.8rem 0.6rem;
    }

    .level-item .level-icon {
        font-size: 1.2rem;
    }

    .level-item .level-name {
        font-size: 0.8rem;
    }
}

/* ============================================================
   IELTS PREPARATION PAGE
   ============================================================ */

/* IELTS Hero Section */
.ielts-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 1.2rem;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.ielts-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(37, 155, 224, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ielts-hero .ielts-content {
    position: relative;
    z-index: 2;
}

.ielts-hero .ielts-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.3rem 1.2rem;
    border-radius: 50rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ielts-hero h2 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.ielts-hero h2 .highlight {
    color: #60b8f5;
}

.ielts-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 650px;
    margin-bottom: 0;
}

/* IELTS Info Cards */
.ielts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .ielts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

@media (max-width: 575px) {
    .ielts-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
}

.ielts-skill-card {
    background: var(--sky-light);
    border-radius: 0.8rem;
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1.5px solid rgba(37, 155, 224, 0.12);
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 2px 8px rgba(2, 6, 55, 0.04);
}

.ielts-skill-card:hover {
    transform: translateY(-4px);
    background: var(--navy);
    border-color: var(--sky);
    box-shadow: 0 8px 24px rgba(2, 6, 55, 0.25);
}

.ielts-skill-card:hover .skill-icon {
    color: var(--sky);
    transform: scale(1.1);
}

.ielts-skill-card:hover .skill-name {
    color: #fff;
}

.ielts-skill-card .skill-icon {
    font-size: 1.8rem;
    color: var(--sky);
    display: block;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.ielts-skill-card .skill-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
    display: block;
    transition: color 0.3s ease;
}

/* IELTS Info Box */
.ielts-info-box {
    background: #fff;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
}

.ielts-info-box .ielts-label {
    display: inline-block;
    background: var(--sky);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.8rem;
    border-radius: 50rem;
    margin-bottom: 0.5rem;
}

.ielts-info-box p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.ielts-info-box p strong {
    color: var(--navy);
}

/* IELTS Difference Grid */
.ielts-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .ielts-diff-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.ielts-diff-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
    transition: all 0.3s ease;
}

.ielts-diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(44, 22, 101, 0.08);
    border-color: var(--sky-light);
}

.ielts-diff-card .diff-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--sky-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.ielts-diff-card:hover .diff-icon {
    background: var(--navy);
    color: #fff;
}

.ielts-diff-card h5 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.ielts-diff-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Online Tuition Box */
.online-tuition-box {
    background: linear-gradient(135deg, var(--sky-light), #d4edfc);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(37, 155, 224, 0.1);
}

.online-tuition-box h4 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.online-tuition-box h4 i {
    color: var(--sky);
}

.online-tuition-box p {
    color: #555;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.online-tuition-box .tuition-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.online-tuition-box .tuition-icons span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--navy);
    font-size: 1.05rem;
}

.online-tuition-box .tuition-icons i {
    font-size: 1.8rem;
    color: var(--sky);
}

/* Validity Note */
.validity-note {
    background: #fff8e1;
    border-radius: 0.8rem;
    padding: 1.2rem 1.5rem;
    border-left: 4px solid #f59e0b;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.validity-note i {
    color: #f59e0b;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.validity-note p {
    color: #444;
    font-size: 0.95rem;
    margin: 0;
}

.validity-note p strong {
    color: #e65100;
}

/* Responsive */
@media (max-width: 991px) {
    .ielts-hero {
        padding: 2rem 1.5rem;
    }

    .ielts-hero h2 {
        font-size: 1.8rem;
    }

    .ielts-hero p {
        font-size: 0.95rem;
    }

    .ielts-hero .ielts-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }

    .ielts-info-box {
        padding: 1.5rem;
    }

    .ielts-diff-card {
        padding: 1.5rem;
    }

    .ielts-diff-card h5 {
        font-size: 0.95rem;
    }

    .ielts-diff-card p {
        font-size: 0.9rem;
    }

    .online-tuition-box {
        padding: 1.5rem;
    }

    .online-tuition-box .tuition-icons {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .ielts-hero {
        padding: 1.5rem;
        border-radius: 0.8rem;
    }

    .ielts-hero h2 {
        font-size: 1.4rem;
    }

    .ielts-hero p {
        font-size: 0.9rem;
    }

    .ielts-skill-card {
        padding: 1rem 0.8rem;
    }

    .ielts-skill-card .skill-icon {
        font-size: 1.5rem;
    }

    .ielts-skill-card .skill-name {
        font-size: 0.85rem;
    }

    .ielts-info-box {
        padding: 1.2rem;
    }

    .ielts-info-box p {
        font-size: 0.85rem;
    }

    .ielts-diff-card {
        padding: 1.2rem;
    }

    .ielts-diff-card .diff-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .ielts-diff-card h5 {
        font-size: 0.9rem;
    }

    .ielts-diff-card p {
        font-size: 0.85rem;
    }

    .online-tuition-box {
        padding: 1.2rem;
    }

    .online-tuition-box h4 {
        font-size: 1rem;
    }

    .online-tuition-box p {
        font-size: 0.9rem;
    }

    .online-tuition-box .tuition-icons span {
        font-size: 0.9rem;
    }

    .online-tuition-box .tuition-icons i {
        font-size: 1.4rem;
    }

    .validity-note {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .validity-note p {
        font-size: 0.85rem;
    }
}

/* ============================================================
   STUDENT ACCOMMODATION PAGE
   ============================================================ */

/* Accommodation Hero Section */
.accommodation-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 1.2rem;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.accommodation-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(37, 155, 224, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.accommodation-hero .accommodation-content {
    position: relative;
    z-index: 2;
}

.accommodation-hero .accommodation-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.3rem 1.2rem;
    border-radius: 50rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accommodation-hero h2 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.accommodation-hero h2 .highlight {
    color: #60b8f5;
}

.accommodation-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 650px;
    margin-bottom: 0;
}

/* Accommodation Info Grid */
.accommodation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .accommodation-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.accommodation-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
    transition: all 0.3s ease;
}

.accommodation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(44, 22, 101, 0.08);
    border-color: var(--sky-light);
}

.accommodation-card .acc-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--sky-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.accommodation-card:hover .acc-icon {
    background: var(--navy);
    color: #fff;
}

.accommodation-card h5 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.accommodation-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* How to Apply Box */
.how-to-apply-box {
    background: var(--sky-light);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(37, 155, 224, 0.08);
}

.how-to-apply-box h4 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.how-to-apply-box .step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.how-to-apply-box .step-item:last-child {
    border-bottom: none;
}

.how-to-apply-box .step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.how-to-apply-box .step-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

.how-to-apply-box .step-text strong {
    color: var(--navy);
}

/* Current Students Box */
.current-students-box {
    background: linear-gradient(135deg, var(--sky-light), #d4edfc);
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(37, 155, 224, 0.1);
}

.current-students-box h4 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.current-students-box h4 i {
    color: var(--sky);
}

.current-students-box p {
    color: #555;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.2rem;
}

/* Responsive */
@media (max-width: 991px) {
    .accommodation-hero {
        padding: 2rem 1.5rem;
    }

    .accommodation-hero h2 {
        font-size: 1.8rem;
    }

    .accommodation-hero p {
        font-size: 0.95rem;
    }

    .accommodation-hero .accommodation-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }

    .accommodation-card {
        padding: 1.5rem;
    }

    .accommodation-card h5 {
        font-size: 0.95rem;
    }

    .accommodation-card p {
        font-size: 0.9rem;
    }

    .how-to-apply-box {
        padding: 1.5rem;
    }

    .how-to-apply-box .step-text {
        font-size: 0.9rem;
    }

    .current-students-box {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 575px) {
    .accommodation-hero {
        padding: 1.5rem;
        border-radius: 0.8rem;
    }

    .accommodation-hero h2 {
        font-size: 1.4rem;
    }

    .accommodation-hero p {
        font-size: 0.9rem;
    }

    .accommodation-card {
        padding: 1.2rem;
    }

    .accommodation-card .acc-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .accommodation-card h5 {
        font-size: 0.9rem;
    }

    .accommodation-card p {
        font-size: 0.85rem;
    }

    .how-to-apply-box {
        padding: 1.2rem;
    }

    .how-to-apply-box h4 {
        font-size: 1rem;
    }

    .how-to-apply-box .step-text {
        font-size: 0.85rem;
    }

    .how-to-apply-box .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .current-students-box {
        padding: 1.2rem 1.5rem;
    }

    .current-students-box h4 {
        font-size: 1rem;
    }

    .current-students-box p {
        font-size: 0.9rem;
    }
}

/* ============================================================
   APPROVED BANKS PAGE
   ============================================================ */

/* Banks Hero Section */
.banks-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 1.2rem;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.banks-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(37, 155, 224, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.banks-hero .banks-content {
    position: relative;
    z-index: 2;
}

.banks-hero .banks-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.3rem 1.2rem;
    border-radius: 50rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banks-hero h2 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.banks-hero h2 .highlight {
    color: #60b8f5;
}

.banks-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 650px;
    margin-bottom: 0;
}

/* Banks Grid */
.banks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

@media (max-width: 992px) {
    .banks-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.7rem;
    }
}

@media (max-width: 768px) {
    .banks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
}

@media (max-width: 575px) {
    .banks-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.bank-item {
    background: #fff;
    border-radius: 0.8rem;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(2, 6, 55, 0.03);
}

.bank-item:hover {
    transform: translateY(-3px);
    border-color: var(--sky);
    box-shadow: 0 6px 20px rgba(2, 6, 55, 0.08);
    background: var(--sky-light);
}

.bank-item .bank-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sky-light);
    color: var(--sky);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bank-item:hover .bank-icon {
    background: var(--navy);
    color: #fff;
}

.bank-item .bank-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Banks Container */
.banks-container {
    background: #fff;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
}

/* Note Box */
.banks-note-box {
    background: #fff8e1;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(255, 193, 7, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.banks-note-box i {
    color: #f59e0b;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.banks-note-box .note-content p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.banks-note-box .note-content p strong {
    color: #e65100;
}

.banks-note-box .note-content a {
    color: var(--sky);
    text-decoration: none;
    font-weight: 600;
}

.banks-note-box .note-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .banks-hero {
        padding: 2rem 1.5rem;
    }

    .banks-hero h2 {
        font-size: 1.8rem;
    }

    .banks-hero p {
        font-size: 0.95rem;
    }

    .banks-hero .banks-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }

    .banks-container {
        padding: 1.5rem;
    }

    .bank-item {
        padding: 0.7rem 0.8rem;
    }

    .bank-item .bank-name {
        font-size: 0.85rem;
    }

    .banks-note-box {
        padding: 1.5rem;
    }

    .banks-note-box .note-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .banks-hero {
        padding: 1.5rem;
        border-radius: 0.8rem;
    }

    .banks-hero h2 {
        font-size: 1.4rem;
    }

    .banks-hero p {
        font-size: 0.9rem;
    }

    .banks-container {
        padding: 1rem;
        border-radius: 0.8rem;
    }

    .bank-item {
        padding: 0.6rem 0.7rem;
        border-radius: 0.6rem;
    }

    .bank-item .bank-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .bank-item .bank-name {
        font-size: 0.82rem;
    }

    .banks-note-box {
        padding: 1rem 1.2rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banks-note-box .note-content p {
        font-size: 0.85rem;
    }
}

/* ============================================================
   PRE-ARRIVAL CHECKLIST PAGE
   ============================================================ */

/* Checklist Hero Section */
.checklist-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 1.2rem;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.checklist-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(37, 155, 224, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.checklist-hero .checklist-content {
    position: relative;
    z-index: 2;
}

.checklist-hero .checklist-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.3rem 1.2rem;
    border-radius: 50rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checklist-hero h2 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.checklist-hero h2 .highlight {
    color: #60b8f5;
}

.checklist-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 650px;
    margin-bottom: 0;
}

/* Checklist Items */
.checklist-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .checklist-items {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

.checklist-item {
    background: #fff;
    border-radius: 0.8rem;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(2, 6, 55, 0.03);
}

.checklist-item:hover {
    transform: translateY(-3px);
    border-color: var(--sky);
    box-shadow: 0 6px 20px rgba(2, 6, 55, 0.08);
    background: var(--sky-light);
}

.checklist-item .check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sky);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.checklist-item .check-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

.checklist-item .check-text strong {
    color: var(--navy);
}

/* Note Box */
.checklist-note-box {
    background: #fff8e1;
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(255, 193, 7, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checklist-note-box i {
    color: #f59e0b;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.checklist-note-box .note-content p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.checklist-note-box .note-content p strong {
    color: #e65100;
}

.checklist-note-box .note-content a {
    color: var(--sky);
    text-decoration: none;
    font-weight: 600;
}

.checklist-note-box .note-content a:hover {
    text-decoration: underline;
}

/* Contact Box */
.contact-box {
    background: var(--sky-light);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(37, 155, 224, 0.08);
}

.contact-box h4 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-box h4 i {
    color: var(--sky);
}

.contact-box p {
    color: #555;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.2rem;
}

.contact-box .contact-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-box .contact-icons span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
}

.contact-box .contact-icons i {
    font-size: 1.5rem;
    color: var(--sky);
}

/* Responsive */
@media (max-width: 991px) {
    .checklist-hero {
        padding: 2rem 1.5rem;
    }

    .checklist-hero h2 {
        font-size: 1.8rem;
    }

    .checklist-hero p {
        font-size: 0.95rem;
    }

    .checklist-hero .checklist-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }

    .checklist-item {
        padding: 1rem 1.2rem;
    }

    .checklist-item .check-text {
        font-size: 0.9rem;
    }

    .checklist-note-box {
        padding: 1.5rem;
    }

    .checklist-note-box .note-content p {
        font-size: 0.9rem;
    }

    .contact-box {
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .checklist-hero {
        padding: 1.5rem;
        border-radius: 0.8rem;
    }

    .checklist-hero h2 {
        font-size: 1.4rem;
    }

    .checklist-hero p {
        font-size: 0.9rem;
    }

    .checklist-item {
        padding: 0.8rem 1rem;
        border-radius: 0.6rem;
    }

    .checklist-item .check-icon {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .checklist-item .check-text {
        font-size: 0.85rem;
    }

    .checklist-note-box {
        padding: 1rem 1.2rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .checklist-note-box .note-content p {
        font-size: 0.85rem;
    }

    .contact-box {
        padding: 1.2rem;
    }

    .contact-box h4 {
        font-size: 1rem;
    }

    .contact-box p {
        font-size: 0.9rem;
    }

    .contact-box .contact-icons {
        gap: 1rem;
    }

    .contact-box .contact-icons span {
        font-size: 0.85rem;
    }

    .contact-box .contact-icons i {
        font-size: 1.2rem;
    }
}

/* ============================================================
   APPLY FORM PAGE
   ============================================================ */

/* Apply Form Container - Full Width */
.apply-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Apply Form - With Subtle Background & Shadow */
.apply-form {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 3rem 3.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 40px rgba(2, 6, 55, 0.08);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient accent at top */
.apply-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--sky), var(--navy));
}

@media (max-width: 991px) {
    .apply-form {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 575px) {
    .apply-form {
        padding: 1.5rem 1.2rem;
        border-radius: 0.8rem;
    }
}

/* Page background - subtle gradient */
.page-apply-bg {
    background: linear-gradient(180deg, #f8f9fc 0%, #eef1f8 100%);
    padding: 4rem 0;
    min-height: 100vh;
}

@media (max-width: 575px) {
    .page-apply-bg {
        padding: 2rem 0;
    }
}

.apply-form .form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 0.3rem;
}

.apply-form .form-title .highlight {
    color: var(--sky);
}

.apply-form .form-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.apply-form .form-group {
    margin-bottom: 1.8rem;
}

.apply-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.apply-form .form-group label .required {
    color: #dc3545;
    margin-left: 0.2rem;
}

.apply-form .form-control {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 2px solid #e8eaf0;
    border-radius: 0.6rem;
    font-size: 1rem;
    color: #333;
    background: #fafbfc;
    transition: all 0.3s ease;
}

.apply-form .form-control:hover {
    background: #fff;
    border-color: #d0d4e0;
}

.apply-form .form-control:focus {
    border-color: var(--sky);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 155, 224, 0.1);
    outline: none;
}

.apply-form .form-control::placeholder {
    color: #aaa;
}

.apply-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.apply-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .apply-form .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

/* Section Divider with Label */
.apply-form .section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 1.8rem;
}

.apply-form .section-divider .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #dce0ec, transparent);
}

.apply-form .section-divider .label {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    background: #fff;
    padding: 0 1.2rem;
}

/* File Upload - Improved */
.apply-form .file-upload-wrapper {
    position: relative;
}

.apply-form .file-upload-wrapper label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.apply-form .file-upload-wrapper input[type="file"] {
    padding: 0.7rem 1rem;
    border: 2px dashed #d0d4e0;
    border-radius: 0.6rem;
    background: #fafbfc;
    width: 100%;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    transition: all 0.3s ease;
}

.apply-form .file-upload-wrapper input[type="file"]:hover {
    border-color: var(--sky);
    background: var(--sky-light);
}

.apply-form .file-upload-wrapper input[type="file"]::file-selector-button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.4rem;
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    margin-right: 1rem;
    transition: background 0.3s ease;
}

.apply-form .file-upload-wrapper input[type="file"]::file-selector-button:hover {
    background: var(--sky);
}

.apply-form .file-upload-wrapper .file-hint {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.3rem;
}

/* Checkbox - Improved */
.apply-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 1.8rem 0;
    padding: 1rem 1.5rem;
    background: var(--sky-light);
    border-radius: 0.6rem;
    border: 2px solid rgba(37, 155, 224, 0.12);
    transition: all 0.3s ease;
}

.apply-form .checkbox-group:hover {
    border-color: rgba(37, 155, 224, 0.25);
}

.apply-form .checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 0.1rem;
    accent-color: var(--sky);
    cursor: pointer;
}

.apply-form .checkbox-group label {
    font-weight: 400;
    font-size: 0.95rem;
    color: #444;
    cursor: pointer;
    margin-bottom: 0;
}

.apply-form .checkbox-group label a {
    color: var(--sky);
    text-decoration: none;
    font-weight: 600;
}

.apply-form .checkbox-group label a:hover {
    text-decoration: underline;
}

/* Submit Button - Gradient */
.apply-form .submit-btn {
    display: block;
    width: 100%;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    border: none;
    border-radius: 50rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(41, 46, 109, 0.25);
    position: relative;
    overflow: hidden;
}

.apply-form .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.apply-form .submit-btn:hover::before {
    left: 100%;
}

.apply-form .submit-btn:hover {
    background: linear-gradient(135deg, var(--sky) 0%, #1a7abf 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 155, 224, 0.35);
}

.apply-form .submit-btn:active {
    transform: translateY(0);
}

/* Form Note */
.apply-form .form-note {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e8eaf0;
}

.apply-form .form-note i {
    color: var(--sky);
}

.apply-form .form-note a {
    color: var(--sky);
    text-decoration: none;
}

.apply-form .form-note a:hover {
    text-decoration: underline;
}

/* Success Message */
.form-success {
    display: none;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid rgba(76, 175, 80, 0.2);
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 3.5rem;
    color: #4caf50;
    display: block;
    margin-bottom: 0.5rem;
}

.form-success h3 {
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.form-success p {
    color: #555;
    font-size: 1.05rem;
    margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Page Background */
.page-contact-bg {
    background: linear-gradient(180deg, #f8f9fc 0%, #eef1f8 100%);
    padding: 4rem 0;
}

@media (max-width: 575px) {
    .page-contact-bg {
        padding: 2rem 0;
    }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

/* Contact Form Container */
.contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 3rem 3.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 40px rgba(2, 6, 55, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--sky), var(--navy));
}

@media (max-width: 991px) {
    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 575px) {
    .contact-form-wrapper {
        padding: 1.5rem 1.2rem;
        border-radius: 0.8rem;
    }
}

.contact-form-wrapper .form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 0.3rem;
}

.contact-form-wrapper .form-title .highlight {
    color: var(--sky);
}

.contact-form-wrapper .form-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* Form Groups */
.contact-form-wrapper .form-group {
    margin-bottom: 1.8rem;
}

.contact-form-wrapper .form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.contact-form-wrapper .form-group label .required {
    color: #dc3545;
    margin-left: 0.2rem;
}

/* Form Controls */
.contact-form-wrapper .form-control {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 2px solid #e8eaf0;
    border-radius: 0.6rem;
    font-size: 1rem;
    color: #333;
    background: #fafbfc;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:hover {
    background: #fff;
    border-color: #d0d4e0;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--sky);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 155, 224, 0.1);
    outline: none;
}

.contact-form-wrapper .form-control::placeholder {
    color: #aaa;
}

.contact-form-wrapper textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Contact Form Row */
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

/* Checkbox */
.contact-form-wrapper .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 1.8rem 0;
    padding: 1rem 1.5rem;
    background: var(--sky-light);
    border-radius: 0.6rem;
    border: 2px solid rgba(37, 155, 224, 0.12);
    transition: all 0.3s ease;
}

.contact-form-wrapper .checkbox-group:hover {
    border-color: rgba(37, 155, 224, 0.25);
}

.contact-form-wrapper .checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 0.1rem;
    accent-color: var(--sky);
    cursor: pointer;
}

.contact-form-wrapper .checkbox-group label {
    font-weight: 400;
    font-size: 0.95rem;
    color: #444;
    cursor: pointer;
    margin-bottom: 0;
}

.contact-form-wrapper .checkbox-group label a {
    color: var(--sky);
    text-decoration: none;
    font-weight: 600;
}

.contact-form-wrapper .checkbox-group label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.contact-form-wrapper .submit-btn {
    display: block;
    width: 100%;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    border: none;
    border-radius: 50rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(41, 46, 109, 0.25);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-form-wrapper .submit-btn:hover::before {
    left: 100%;
}

.contact-form-wrapper .submit-btn:hover {
    background: linear-gradient(135deg, var(--sky) 0%, #1a7abf 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 155, 224, 0.35);
}

.contact-form-wrapper .submit-btn:active {
    transform: translateY(0);
}

/* Form Note */
.contact-form-wrapper .form-note {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e8eaf0;
}

.contact-form-wrapper .form-note i {
    color: var(--sky);
}

/* ============================================================
   OFFICE INFO CARDS
   ============================================================ */

/* Office Info Grid */
.office-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .office-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Office Info Card */
.office-info-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2.5rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(2, 6, 55, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.office-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky), var(--navy));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.office-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(2, 6, 55, 0.1);
    border-color: var(--sky-light);
}

/* Card Header */
.office-info-card .office-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.office-info-card .office-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--sky-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.office-info-card:hover .office-icon {
    background: var(--navy);
    color: #fff;
    transform: scale(1.05);
}

.office-info-card .office-icon-label {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.office-info-card h3 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.office-info-card .office-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--sky), transparent);
    border-radius: 4px;
    margin-bottom: 1.2rem;
}

/* Address */
.office-info-card .office-address {
    color: #444;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    flex: 1;
}

.office-info-card .office-address strong {
    color: var(--navy);
    font-weight: 700;
}

/* Contact Details */
.office-info-card .office-contact {
    color: #555;
    font-size: 0.95rem;
    line-height: 2;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.office-info-card .office-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.office-info-card .office-contact .contact-item i {
    color: var(--sky);
    width: 20px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.office-info-card .office-contact .contact-item a {
    color: var(--sky);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.office-info-card .office-contact .contact-item a:hover {
    color: var(--navy);
    text-decoration: underline;
}

/* Opening Hours */
.office-info-card .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-info-card .hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: #444;
    font-size: 0.95rem;
}

.office-info-card .hours-list li:last-child {
    border-bottom: none;
}

.office-info-card .hours-list li .day {
    font-weight: 600;
    color: var(--navy);
}

.office-info-card .hours-list li .time {
    color: #555;
}

.office-info-card .hours-list li.closed .time {
    color: #dc3545;
    font-weight: 600;
}

/* Online Note */
.office-info-card .online-note {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: var(--sky-light);
    border-radius: 0.6rem;
    border: 1px solid rgba(37, 155, 224, 0.08);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #444;
}

.office-info-card .online-note i {
    color: var(--sky);
    font-size: 1.2rem;
}

/* ============================================================
   GOOGLE MAPS
   ============================================================ */

.map-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 22, 101, 0.08);
    height: 100%;
    min-height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .map-wrapper {
        min-height: 300px;
    }

    .map-wrapper iframe {
        min-height: 300px;
    }
}

/* ============================================================
   CONTACT PAGE RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
    .office-info-card {
        padding: 2rem 2rem;
    }

    .office-info-card h3 {
        font-size: 1.2rem;
    }

    .office-info-card .office-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .office-info-card {
        padding: 1.5rem 1.5rem;
        border-radius: 0.8rem;
    }

    .office-info-card .office-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        border-radius: 10px;
    }

    .office-info-card .office-icon-label {
        font-size: 0.95rem;
    }

    .office-info-card h3 {
        font-size: 1.1rem;
    }

    .office-info-card .office-address {
        font-size: 0.9rem;
    }

    .office-info-card .office-contact {
        font-size: 0.85rem;
    }

    .office-info-card .office-contact .contact-item i {
        font-size: 0.95rem;
    }

    .office-info-card .hours-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .office-info-card .online-note {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
}

/* ============================================================
   UNIVERSITIES PAGE - REDESIGNED
   ============================================================ */

/* Universities Hero */
.universities-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 1.2rem;
    padding: 3.5rem 3.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.universities-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(37, 155, 224, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.universities-hero .hero-content {
    position: relative;
    z-index: 2;
}

.universities-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.3rem 1.2rem;
    border-radius: 50rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.universities-hero h2 {
    font-weight: 800;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.universities-hero h2 .highlight {
    color: #60b8f5;
}

.universities-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* University Placement Cards */
.placement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .placement-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 575px) {
    .placement-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

.placement-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem 1.8rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.04);
    transition: all 0.3s ease;
}

.placement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(44, 22, 101, 0.1);
    border-color: var(--sky-light);
}

.placement-card .card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--sky-light);
    color: var(--sky);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.placement-card:hover .card-icon {
    background: var(--navy);
    color: #fff;
    transform: scale(1.05);
}

.placement-card h5 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.placement-card p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Application Process */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--sky), var(--navy), var(--sky));
    z-index: 0;
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step .step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 16px rgba(41, 46, 109, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: var(--sky);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(37, 155, 224, 0.3);
}

.process-step h6 {
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.process-step p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .universities-hero {
        padding: 2.5rem 2rem;
    }

    .universities-hero h2 {
        font-size: 2rem;
    }

    .universities-hero p {
        font-size: 1rem;
    }

    .uni-stat-item .stat-number {
        font-size: 1.8rem;
    }

    .placement-card {
        padding: 1.5rem 1.2rem;
    }
}

@media (max-width: 575px) {
    .universities-hero {
        padding: 1.5rem 1.5rem;
        border-radius: 0.8rem;
    }

    .universities-hero h2 {
        font-size: 1.6rem;
    }

    .universities-hero p {
        font-size: 0.9rem;
    }

    .universities-hero .hero-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.8rem;
    }

    .uni-stat-item {
        padding: 1.2rem 1rem;
    }

    .uni-stat-item .stat-number {
        font-size: 1.5rem;
    }

    .uni-stat-item .stat-label {
        font-size: 0.75rem;
    }

    .placement-card .card-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .placement-card h5 {
        font-size: 0.9rem;
    }

    .placement-card p {
        font-size: 0.82rem;
    }

    .process-step .step-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .process-step h6 {
        font-size: 0.85rem;
    }

    .process-step p {
        font-size: 0.78rem;
    }
}

/* ============================================================
   SUPPORT & GUIDANCE PAGE
   ============================================================ */

/* Accordion / Toggle Styles */
.support-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.support-accordion .accordion-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0.8rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44, 22, 101, 0.03);
}

.support-accordion .accordion-item:hover {
    border-color: var(--sky-light);
    box-shadow: 0 4px 16px rgba(44, 22, 101, 0.06);
}

.support-accordion .accordion-header {
    margin: 0;
}

.support-accordion .accordion-button {
    width: 100%;
    padding: 1.2rem 1.8rem;
    background: #fff;
    border: none;
    text-align: left;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.8rem;
}

.support-accordion .accordion-button:hover {
    background: var(--sky-light);
}

.support-accordion .accordion-button:focus {
    outline: none;
}

.support-accordion .accordion-button .accordion-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sky-light);
    color: var(--sky);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.support-accordion .accordion-button:hover .accordion-icon {
    background: var(--sky);
    color: #fff;
}

.support-accordion .accordion-button .accordion-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.support-accordion .accordion-button .accordion-arrow {
    font-size: 1.2rem;
    color: var(--sky);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.support-accordion .accordion-button:not(.collapsed) .accordion-arrow {
    transform: rotate(180deg);
}

.support-accordion .accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.support-accordion .accordion-collapse.show {
    max-height: 1000px;
}

.support-accordion .accordion-body {
    padding: 0 1.8rem 1.5rem 1.8rem;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.8;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.support-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

/* Support Content */
.support-content {
    max-width: 900px;
    margin: 0 auto;
}

.support-content .intro-text {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.support-content .terms-note {
    background: var(--sky-light);
    border-radius: 0.8rem;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--sky);
    margin-bottom: 2rem;
}

.support-content .terms-note p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.support-content .terms-note strong {
    color: var(--navy);
}

/* Support CTA */
.support-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--sky-light);
    border-radius: 1rem;
    border: 1px solid rgba(37, 155, 224, 0.08);
}

.support-cta h4 {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.support-cta p {
    color: #555;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto 1.2rem;
}

/* Responsive */
@media (max-width: 991px) {
    .support-accordion .accordion-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .support-accordion .accordion-body {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }

    .support-accordion .accordion-button .accordion-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        margin-right: 0.8rem;
    }
}

@media (max-width: 575px) {
    .support-accordion .accordion-button {
        padding: 0.8rem 1rem;
        font-size: 0.88rem;
        flex-wrap: wrap;
    }

    .support-accordion .accordion-button .accordion-text {
        width: calc(100% - 40px);
    }

    .support-accordion .accordion-button .accordion-icon {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        margin-right: 0.6rem;
    }

    .support-accordion .accordion-body {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.85rem;
    }

    .support-content .terms-note {
        padding: 1rem 1.2rem;
    }

    .support-content .terms-note p {
        font-size: 0.85rem;
    }

    .support-cta {
        padding: 1.2rem;
    }

    .support-cta h4 {
        font-size: 1rem;
    }

    .support-cta p {
        font-size: 0.85rem;
    }
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

/* Privacy Container */
.privacy-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Privacy Header */
.privacy-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.privacy-header .privacy-badge {
    display: inline-block;
    background: var(--sky-light);
    color: var(--sky);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 1.2rem;
    border-radius: 50rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(37, 155, 224, 0.1);
}

.privacy-header h2 {
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.privacy-header h2 .highlight {
    color: var(--sky);
}

.privacy-header .last-updated {
    color: #888;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f8f9fc;
    padding: 0.3rem 1rem;
    border-radius: 50rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.privacy-header .last-updated i {
    color: var(--sky);
}

/* Privacy Content */
.privacy-content {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 3.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 40px rgba(2, 6, 55, 0.06);
    position: relative;
    overflow: hidden;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--sky), var(--navy));
}

@media (max-width: 991px) {
    .privacy-content {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 575px) {
    .privacy-content {
        padding: 1.5rem 1.2rem;
        border-radius: 0.8rem;
    }
}

/* Section Cards */
.privacy-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.privacy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section .section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.privacy-section .section-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--sky-light);
    color: var(--sky);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.privacy-section:hover .section-icon {
    background: var(--navy);
    color: #fff;
    transform: scale(1.05);
}

.privacy-section .section-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy);
    margin: 0;
}

.privacy-section p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    padding-left: 4rem;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 4rem;
}

.privacy-section ul li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.92rem;
    color: #444;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.privacy-section ul li:last-child {
    border-bottom: none;
}

.privacy-section ul li i {
    color: var(--sky);
    margin-top: 0.15rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.privacy-section ul li strong {
    color: var(--navy);
}

/* Highlight Box */
.privacy-highlight {
    background: linear-gradient(135deg, var(--sky-light), #d4edfc);
    border-radius: 1rem;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(37, 155, 224, 0.1);
    margin: 1rem 0 0 4rem;
}

.privacy-highlight p {
    padding-left: 0 !important;
    margin-bottom: 0.5rem;
}

.privacy-highlight p:last-child {
    margin-bottom: 0;
}

.privacy-highlight .contact-link {
    color: var(--sky);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.privacy-highlight .contact-link:hover {
    color: var(--navy);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .privacy-header h2 {
        font-size: 1.8rem;
    }

    .privacy-section p {
        padding-left: 0;
    }

    .privacy-section ul {
        margin-left: 0;
    }

    .privacy-highlight {
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .privacy-header h2 {
        font-size: 1.4rem;
    }

    .privacy-header .last-updated {
        font-size: 0.75rem;
        padding: 0.2rem 0.8rem;
    }

    .privacy-section .section-title {
        font-size: 1.05rem;
    }

    .privacy-section .section-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .privacy-section p {
        font-size: 0.85rem;
    }

    .privacy-section ul li {
        font-size: 0.82rem;
    }

    .privacy-highlight {
        padding: 1rem 1.2rem;
        margin-left: 0;
    }

    .privacy-highlight p {
        font-size: 0.85rem;
    }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #fff;
    padding: 4.5rem 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-heading {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
}

.footer-link {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link li {
    margin-bottom: 0.8rem;
}

.footer-link a {
    color: var(--sky);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-link a:hover {
    color: var(--sky);
}

.footer-text {
    color: #333;
    font-size: 0.95rem;
}

.footer-social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1rem;
    text-decoration: none;
    border: 1.5px solid var(--navy);
    transition: all 0.2s;
}

.footer-social:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    background: #f8f9fc;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-copy {
    color: #777;
    font-size: 0.9rem;
}

/* Small Logo in Footer */
.brand-logo-sm {
    gap: 0.5rem;
}

.brand-logo-sm .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    border-radius: 10px;
}

.brand-logo-sm .brand-icon .bi-mortarboard-fill {
    font-size: 0.75rem;
    top: -5px;
    right: -5px;
}

.brand-logo-sm .brand-name {
    font-size: 1.1rem;
}

.brand-logo-sm .brand-tagline {
    font-size: 0.5rem;
    letter-spacing: 2px;
}

/* ============================================================
   GO TO TOP BUTTON
   ============================================================ */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.top-btn {
    width: 45px;
    height: 45px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(41, 46, 109, .35);
    text-decoration: none;
    transition: all .3s ease;
    border: none;
    cursor: pointer;
}

.top-btn:hover {
    background: var(--sky);
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 28px rgba(37, 155, 224, .4);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: #111;
    /* dark track */
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35) #111;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .hero .lead-text {
        font-size: 1.1rem;
    }

    .hero .highlight-text {
        font-size: 1rem;
        padding: 0.7rem 1.4rem;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .explore-heading {
        font-size: 2.2rem;
    }

    .news-heading {
        font-size: 2rem;
    }

    .partners-heading {
        font-size: 2rem;
    }

    .cta-consult-section h3 {
        font-size: 1.6rem;
    }

    .cta-consult-section .cta-image-wrap {
        margin-top: 2rem;
    }

    .partner-carousel-wrapper {
        padding: 0 10px;
    }

    .partner-carousel-wrapper .carousel-control-prev,
    .partner-carousel-wrapper .carousel-control-next {
        display: none;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-line {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero {
        min-height: 70vh;
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .lead-text {
        font-size: 1rem;
    }

    .hero .highlight-text {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        display: block;
        text-align: center;
    }

    .btn-navy,
    .btn-sky,
    .btn-outline-hero {
        width: 100%;
        justify-content: center;
    }

    .btn-group-hero .btn-navy,
    .btn-group-hero .btn-sky {
        width: 100%;
        justify-content: center;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .brand-tagline {
        font-size: 0.45rem;
        letter-spacing: 1.5px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .explore-heading {
        font-size: 1.8rem;
    }

    .news-heading {
        font-size: 1.6rem;
    }

    .partners-heading {
        font-size: 1.6rem;
    }

    .cta-consult-section {
        padding: 3rem 0;
    }

    .cta-consult-section h3 {
        font-size: 1.3rem;
    }

    .cta-btn-group .btn-cta-white,
    .cta-btn-group .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }

    .site-footer .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .news-list li {
        padding: 0.8rem 1rem;
    }

    .partners-section {
        padding: 2.5rem 0;
    }

    .partner-logo-wrap {
        height: 90px;
    }

    .partner-logo-wrap img {
        max-height: 60px;
    }

    .more-about-card {
        flex: 0 0 250px;
    }

    .partner-carousel-wrapper .carousel-control-prev,
    .partner-carousel-wrapper .carousel-control-next {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .page-banner-box {
        padding: 1.5rem;
    }

    .page-banner-box h1 {
        font-size: 1.8rem;
    }

    .quote-card {
        padding: 2rem 1.5rem;
    }

    .mv-card {
        padding: 2rem 1.5rem;
    }
}