/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #103c61;
    --secondary-color: #ff6f00;
    --accent-color: #00bcd4;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --gradient-primary: linear-gradient(135deg, #103c61 0%, #1a5080 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);

    /* Figma brand palette */
    --brand-900: #522092;
    --brand-950: #321263;
    --brand-700: #702acd;
    --brand-600: #843fe8;
    --brand-300: #c8b7fb;
    --brand-200: #e0d7fd;
    --brand-50: #f5f3ff;
    --orange-600: #e17e00;
    --orange-500: #fea702;
    --orange-300: #ffdc46;
    --bg-dark: #101011;
    --bg-grey: #f7f7f7;
    --neutral-300: #b0b0b0;
    --neutral-400: #888888;
    --neutral-700: #4f4f4f;
    --neutral-800: #454545;
    --green-600: #00b908;
    --red-600: #ff0000;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-xl {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation (Figma) */
.navbar-figma {
    background-color: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-figma-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 16px 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
}

.nav-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-wordmark {
    font-weight: 600;
    font-size: 18px;
    color: #7509b8;
    letter-spacing: 0.5px;
}

.nav-institute-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0;
}

.nav-institute-line {
    flex: 1;
    height: 1px;
    background: var(--border-color);
    max-width: 24px;
}

.nav-institute {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.nav-tagline {
    font-size: 11px;
    color: var(--orange-600);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
}

.nav-dropdown-trigger {
    display: inline;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    line-height: inherit;
    padding: 8px 0;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.nav-dropdown-trigger.active {
    color: var(--brand-700);
    font-weight: 600;
}

.nav-menu a.active {
    color: var(--brand-700);
    font-weight: 600;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-600);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-apply-item {
    display: none;
}

.nav-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-700);
    color: var(--white);
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 20px;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.nav-apply-btn:hover {
    background: var(--brand-900);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .navbar-figma-inner {
        padding: 12px 16px;
        gap: 12px;
    }

    .nav-logo {
        gap: 8px;
    }

    .nav-logo-img {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .nav-wordmark {
        font-size: 13px;
        white-space: nowrap;
    }

    .nav-institute-row {
        margin: 1px 0;
    }

    .nav-institute-line {
        max-width: 12px;
    }

    .nav-institute {
        font-size: 9px;
        white-space: nowrap;
    }

    .nav-tagline {
        font-size: 9px;
        white-space: nowrap;
    }

    .menu-toggle {
        display: flex;
        order: 3;
    }

    .nav-apply-btn {
        display: none;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 80vw);
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 90px 24px 24px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 1050;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li a {
        display: block;
        padding: 16px 0;
    }

    .mobile-apply-item {
        display: block;
    }

    .mobile-apply-item a {
        color: var(--brand-700);
        font-weight: 700;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: var(--white);
    border: none;
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-dark {
    background: #1f2937;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
}

.btn-dark:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* About / Admissions Hero */
.adm-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}

.adm-hero-bg,
.adm-hero-bg img,
.adm-hero-overlay {
    position: absolute;
    inset: 0;
}

.adm-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adm-hero-overlay {
    background: linear-gradient(90deg, rgba(16, 25, 40, 0.74), rgba(35, 31, 32, 0.52));
}

.adm-hero .container-xl {
    position: relative;
    z-index: 1;
    width: 100%;
}

.adm-hero-inner {
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.adm-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.adm-hero-title {
    font-size: clamp(2.3rem, 4vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    color: var(--white);
}

.adm-hero-subtitle {
    font-size: clamp(1rem, 1.7vw, 1.4rem);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.94);
}

.abt-hero-inner {
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-hero-content {
    width: 100%;
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

/* New Hero Section */
.hero-new {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content-new {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title-new {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--white);
}

.hero-subtitle-new {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons-new {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Who We Are Section */
.who-we-are {
    padding: 100px 0;
    background: var(--white);
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.who-we-are-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.who-we-are-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.who-we-are-content {
    padding: 0 20px;
}

.who-we-are-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.who-we-are-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.who-we-are-content .btn {
    margin-top: 20px;
}

/* Identity, Vision, Mission Section */
.identity-vision-mission {
    padding: 80px 0;
    background: linear-gradient(135deg, #6b46c1 0%, #7c3aed 50%, #8b5cf6 100%);
}

.ivm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ivm-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    color: var(--white);
    transition: all 0.3s ease;
}

.ivm-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.ivm-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.ivm-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

/* Why RounaU Section */
.why-rounau {
    padding: 100px 0;
    background: var(--white);
}

.why-rounau-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
}

.why-rounau-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.why-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.why-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 24px;
    color: #7c3aed;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}

.why-cta {
    text-align: center;
    margin-top: 50px;
}

/* Faculties and Programmes Section */
.faculties-programmes {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%),
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.faculties-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.faculties-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.carousel-controls {
    display: flex;
    gap: 15px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: #1f2937;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #f3f4f6;
    transform: scale(1.1);
}

.faculties-carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.faculties-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: transform 0.5s ease;
}

.faculty-card-new {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faculty-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.faculty-card-new h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    min-height: 60px;
}

.faculty-card-new p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 30px;
    min-height: 80px;
}

.faculty-card-new .btn {
    width: auto;
}

/* Academic Excellence Section */
.academic-excellence {
    padding: 100px 0;
    background: #f9fafb;
}

.academic-excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.academic-excellence-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.academic-excellence-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.academic-excellence-content .btn {
    margin-top: 20px;
}

.academic-excellence-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.academic-excellence-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Our Programmes Section */
.our-programmes {
    padding: 100px 0;
    background: #e5e7eb;
}

.programmes-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

/* Programme Tabs */
.programme-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.programme-tab {
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    background: var(--white);
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.programme-tab:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.programme-tab.active {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: var(--white);
}

/* Programme Cards Container */
.programme-cards-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.programme-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.programme-nav-btn:hover {
    background: #f3f4f6;
    transform: translateY(-50%) scale(1.1);
}

.programme-nav-btn.prev-prog {
    left: 0;
}

.programme-nav-btn.next-prog {
    right: 0;
}

.programme-cards-wrapper {
    overflow: hidden;
}

.programme-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: transform 0.5s ease;
}

.programme-card-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.programme-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.programme-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.programme-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.programme-card-item:hover .programme-card-image img {
    transform: scale(1.1);
}

.programme-card-content {
    padding: 30px;
}

.programme-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.programme-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
}

.programme-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #7c3aed;
}

.programme-meta i {
    font-size: 18px;
}

.programme-meta span {
    font-size: 14px;
    font-weight: 500;
}

.programme-pricing-new {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-old {
    font-size: 16px;
    color: #fbbf24;
    text-decoration: line-through;
    font-weight: 500;
}

.price-new {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

/* Leadership and Governance Section */
.leadership-governance {
    padding: 100px 0;
    background: #000000;
    color: var(--white);
}

.leadership-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leader-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.leader-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.leader-info {
    padding: 25px 20px;
}

.leader-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.leader-info p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section (New Design) */
.faq-new {
    padding: 100px 0;
    background: var(--white);
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.faq-subtitle {
    color: #9ca3af;
    font-weight: 400;
}

.faq-list-new {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item-new {
    border-bottom: 1px solid #e5e7eb;
    padding: 25px 0;
}

.faq-item-new:last-child {
    border-bottom: none;
}

.faq-question-new {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-new:hover {
    color: #7c3aed;
}

.faq-question-new i {
    font-size: 16px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item-new.active .faq-question-new i {
    transform: rotate(45deg);
    color: #7c3aed;
}

.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-item-new.active .faq-answer-new {
    max-height: 200px;
    padding-top: 15px;
}

.faq-answer-new p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

/* CTA Register Section */
.cta-register {
    padding: 80px 0;
    background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-image {
    flex: 0 0 250px;
}

.cta-image img {
    width: 100%;
    border-radius: 12px;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.cta-text .btn {
    min-width: 180px;
}

/* Footer New Design */
.footer-new {
    background: #f9fafb;
    padding: 60px 0 30px;
    border-top: 1px solid #e5e7eb;
}

.footer-content-new {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    max-width: 300px;
}

.footer-logo-new {
    margin-bottom: 20px;
}

.footer-logo-new img {
    width: 120px;
    height: 120px;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
}

.footer-links-section h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-section ul li {
    margin-bottom: 12px;
}

.footer-links-section ul li a {
    font-size: 14px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.footer-links-section ul li a:hover {
    color: #7c3aed;
    padding-left: 5px;
}

.footer-contact p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact p i {
    margin-right: 8px;
    color: #7c3aed;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #6b46c1;
    transform: translateY(-3px);
}

.footer-bottom-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.footer-bottom-new p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 14px;
    color: #6b7280;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #7c3aed;
}

/* Original Hero Section (kept for fallback) */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 188, 212, 0.3) 0%,
        rgba(16, 60, 97, 0.45) 50%,
        rgba(16, 60, 97, 0.55) 100%
    );
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 15px;
}

.hero-note {
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
}

/* Accreditation */
.accreditation {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px 0;
}

.accreditation-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.accreditation-icon {
    font-size: 48px;
    color: var(--secondary-color);
}

.accreditation h2 {
    font-size: 28px;
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-label {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

/* Featured Event */
.featured-event {
    background-color: var(--bg-light);
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.event-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.event-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 111, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary-color);
}

.play-button i {
    color: var(--white);
    font-size: 32px;
    margin-left: 5px;
}

.event-content h2 {
    font-size: 36px;
    color: #103c61;
    margin-bottom: 20px;
}

.event-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    height: 250px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 30px;
    text-align: left;
}

.testimonial-stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-programme {
    font-size: 14px;
    color: var(--text-light);
}

/* Programmes */
.programmes {
    background-color: var(--bg-light);
    text-align: center;
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.programme-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.programme-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.programme-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.programme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programme-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.programme-content {
    padding: 30px;
    text-align: left;
}

.programme-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.programme-pricing {
    margin-bottom: 25px;
}

.pricing-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price-original {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-current {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

/* MBA Callout */
.mba-callout {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.mba-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.mba-content p {
    font-size: 20px;
    margin-bottom: 15px;
}

.mba-session {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 35px !important;
}

/* FAQ */
.faq {
    text-align: center;
}

.faq-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.contact-method {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-method:hover .contact-icon {
    color: var(--white);
}

.contact-method h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-method a {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-method:hover a {
    color: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: #8ebdab;
    color: var(--text-dark);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(0, 0, 0, 0.7);
    font-size: 15px;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo p {
    font-weight: 700;
    color: var(--secondary-color);
}

.footer-legal {
    text-align: right;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    margin-left: 20px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .top-bar {
        display: none;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .top-bar-left span {
        display: block;
        margin-bottom: 5px;
    }

    .nav-wrapper {
        padding: 10px 0;
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        height: 40px;
        width: 40px;
    }

    .logo span,
    .logo {
        font-size: 14px;
    }


    .hero {
        height: 400px;
        min-height: 400px;
        padding: 60px 0 40px;
    }

    .hero-new {
        height: 450px;
        min-height: 450px;
        padding: 60px 0 40px;
    }

    .hero-title-new {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-subtitle-new {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-buttons-new {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons-new .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .who-we-are {
        padding: 60px 0;
    }

    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-we-are-image img {
        height: 350px;
    }

    .who-we-are-content {
        padding: 0;
    }

    .who-we-are-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .who-we-are-content p {
        font-size: 16px;
    }

    .identity-vision-mission {
        padding: 60px 0;
    }

    .ivm-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ivm-card {
        padding: 35px 25px;
    }

    .ivm-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .ivm-card p {
        font-size: 15px;
    }

    .why-rounau {
        padding: 60px 0;
    }

    .why-rounau-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .why-rounau-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .why-card {
        padding: 30px 25px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 14px;
    }

    .faculties-programmes {
        padding: 60px 0;
    }

    .faculties-header {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .faculties-header h2 {
        font-size: 32px;
    }

    .faculties-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faculty-card-new h3 {
        font-size: 20px;
        min-height: auto;
    }

    .faculty-card-new p {
        font-size: 14px;
        min-height: auto;
    }

    .carousel-controls {
        align-self: flex-end;
    }

    .academic-excellence {
        padding: 60px 0;
    }

    .academic-excellence-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .academic-excellence-image {
        order: -1;
    }

    .academic-excellence-image img {
        height: 350px;
    }

    .academic-excellence-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .academic-excellence-content p {
        font-size: 16px;
    }

    .our-programmes {
        padding: 60px 0;
    }

    .programmes-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .programme-tabs {
        gap: 15px;
        margin-bottom: 40px;
    }

    .programme-tab {
        padding: 12px 25px;
        font-size: 14px;
    }

    .programme-cards-container {
        padding: 0 60px;
    }

    .programme-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .programme-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .programme-card-content h3 {
        font-size: 20px;
    }

    .programme-card-content p {
        font-size: 14px;
    }

    .leadership-governance {
        padding: 60px 0;
    }

    .leadership-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .leader-image {
        height: 250px;
    }

    .leader-info h3 {
        font-size: 15px;
    }

    .leader-info p {
        font-size: 12px;
    }

    .faq-new {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-question-new {
        font-size: 16px;
    }

    .faq-answer-new p {
        font-size: 14px;
    }

    .cta-register {
        padding: 60px 0;
    }

    .cta-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cta-image {
        flex: 0 0 auto;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .footer-content-new {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-bottom-new {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .event-grid,
    .card-grid,
    .programme-grid,
    .faculty-grid,
    .testimonial-grid,
    .programmes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card h3 {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
        flex-direction: column;
        gap: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .section {
        padding: 40px 0;
    }

    .page-header {
        padding: 80px 0 40px;
        height: 350px;
    }

    .page-header h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .page-header p {
        font-size: 16px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        width: 100%;
    }

    .campus-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .hero-new {
        height: 400px;
        min-height: 400px;
    }

    .hero-title-new {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-subtitle-new {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .who-we-are {
        padding: 40px 0;
    }

    .who-we-are-content h2 {
        font-size: 28px;
    }

    .who-we-are-content p {
        font-size: 15px;
    }

    .identity-vision-mission {
        padding: 40px 0;
    }

    .ivm-card {
        padding: 30px 20px;
    }

    .ivm-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .ivm-card p {
        font-size: 14px;
    }

    .why-rounau {
        padding: 40px 0;
    }

    .why-rounau-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .why-card {
        padding: 25px 20px;
    }

    .why-icon {
        width: 45px;
        height: 45px;
    }

    .why-icon i {
        font-size: 20px;
    }

    .why-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .why-card p {
        font-size: 13px;
    }

    .why-cta {
        margin-top: 35px;
    }

    .faq-new {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-list-new {
        margin-top: 30px;
    }

    .faq-item-new {
        padding: 20px 0;
    }

    .faq-question-new {
        font-size: 15px;
    }

    .faq-answer-new p {
        font-size: 13px;
    }

    .cta-register {
        padding: 40px 0;
    }

    .cta-content {
        gap: 25px;
    }

    .cta-image {
        flex: 0 0 200px;
    }

    .cta-text h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .footer-new {
        padding: 40px 0 20px;
    }

    .footer-content-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-logo-new img {
        width: 60px;
        height: 60px;
    }

    .footer-links-section h4,
    .footer-contact h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }

    .faculties-programmes {
        padding: 40px 0;
    }

    .faculties-header h2 {
        font-size: 28px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .faculty-card-new {
        padding: 30px 20px;
    }

    .faculty-card-new h3 {
        font-size: 18px;
    }

    .academic-excellence {
        padding: 40px 0;
    }

    .academic-excellence-content h2 {
        font-size: 28px;
    }

    .academic-excellence-content p {
        font-size: 15px;
    }

    .academic-excellence-image img {
        height: 300px;
    }

    .our-programmes {
        padding: 40px 0;
    }

    .programmes-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .programme-tabs {
        gap: 10px;
        padding: 0 10px;
    }

    .programme-tab {
        padding: 10px 20px;
        font-size: 13px;
    }

    .programme-cards-container {
        padding: 0 50px;
    }

    .programme-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .programme-card-image {
        height: 180px;
    }

    .programme-card-content {
        padding: 20px;
    }

    .programme-card-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .programme-card-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .price-old {
        font-size: 14px;
    }

    .price-new {
        font-size: 18px;
    }

    .leadership-governance {
        padding: 40px 0;
    }

    .leadership-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .leader-image {
        height: 300px;
    }

    .leader-info {
        padding: 20px 15px;
    }

    .leader-info h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .leader-info p {
        font-size: 12px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .section-title {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .nav-actions .btn {
        padding: 8px 15px;
        font-size: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .card {
        padding: 20px;
    }

    .logo span,
    .logo {
        font-size: 12px;
    }
}


/* ==========================================================================
   Footer (Figma)
   ========================================================================== */
.footer-figma {
    background: var(--brand-50);
    padding-top: 60px;
}

.footer-figma-inner {
    background: var(--brand-950);
    border-radius: 60px 60px 0 0;
    padding: 64px 48px 40px;
    color: var(--white);
}

.footer-figma-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-figma-col h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-figma-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-figma-col ul li a {
    color: var(--neutral-300);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-figma-col ul li a:hover {
    color: var(--orange-500);
}

.footer-figma-bottom {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-figma-contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-figma-contact-row p {
    color: var(--neutral-300);
    font-size: 14px;
    margin: 0;
}

.footer-figma-social {
    display: flex;
    gap: 14px;
}

.footer-figma-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: background 0.3s ease, color 0.3s ease;
}

.footer-figma-social a:hover {
    background: var(--orange-600);
}

.footer-figma-legal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--neutral-300);
}

.footer-figma-legal-row p {
    margin: 0;
}

.footer-figma-legal-links {
    display: flex;
    gap: 20px;
}

.footer-figma-legal-links a {
    color: var(--neutral-300);
}

.footer-figma-legal-links a:hover {
    color: var(--orange-500);
}

@media (max-width: 900px) {
    .footer-figma-inner {
        border-radius: 32px 32px 0 0;
        padding: 48px 24px 32px;
    }

    .footer-figma-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-figma-contact-row,
    .footer-figma-legal-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .footer-figma-columns {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Shared section helpers (Figma)
   ========================================================================== */
.eyebrow {
    color: var(--orange-500);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

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

.section-heading h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
}

.section-heading p {
    margin-top: 16px;
    font-size: 18px;
    color: #000;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
}

.hero-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-btn-filled {
    background: var(--orange-600);
    border: 2px solid var(--orange-500);
    color: #fff;
}

.hero-btn-filled:hover {
    background: var(--orange-500);
}

.hero-btn-purple {
    background: var(--brand-700);
    border: 2px solid var(--brand-700);
    border-radius: 20px;
    color: #fff;
}

.hero-btn-purple:hover {
    background: var(--brand-900);
    border-color: var(--brand-900);
}

/* ==========================================================================
   Hero (Figma)
   ========================================================================== */
.hero-figma {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.hero-figma-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-figma-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

.hero-figma-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(50, 18, 99, 0.96) 0%, rgba(50, 18, 99, 0.9) 38%, rgba(80, 30, 140, 0.55) 58%, rgba(113, 78, 160, 0) 78%);
}

.hero-figma-inner {
    position: relative;
    z-index: 1;
    min-height: inherit;
    padding: 110px 24px 70px;
}

.hero-figma-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    color: #fff;
}

.hero-figma-title {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.1;
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-figma-subtitle {
    font-size: 20px;
    line-height: 1.5;
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-figma-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-figma-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    color: var(--neutral-400);
}

.hero-figma-steps .active {
    color: var(--orange-500);
}

.hero-step-line {
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.hero-figma-badge {
    position: absolute;
    left: 24px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-figma-badge img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-figma-badge span {
    color: var(--orange-500);
    font-weight: 600;
    font-size: 20px;
}

/* ==========================================================================
   Industry Integration / Fintech (Figma)
   ========================================================================== */
.fintech-section {
    padding: 90px 0;
    background: var(--brand-50);
}

.fintech-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.fintech-intro h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.fintech-intro p {
    color: #1c1c1c;
    font-size: 16px;
    line-height: 1.6;
}

.fintech-edge h3,
.fintech-courses h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.fintech-edge-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fintech-edge-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.5;
    color: #1c1c1c;
}

.edge-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--brand-700);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.fintech-course-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fintech-course {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--brand-700);
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.fintech-course i.fa-satellite-dish {
    color: var(--brand-700);
    font-size: 18px;
}

.fintech-course span {
    flex: 1;
}

.fintech-course i.fa-chevron-right {
    color: var(--neutral-400);
    font-size: 13px;
}

.fintech-course:hover {
    border-color: var(--brand-900);
}

/* ==========================================================================
   Four Pillars (Figma)
   ========================================================================== */
.pillars-section {
    padding: 90px 0;
    background: var(--bg-grey);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pillar-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--brand-50);
    color: var(--brand-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.pillar-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--bg-dark);
}

.pillar-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-800);
}

/* ==========================================================================
   Accreditation (Figma)
   ========================================================================== */
.accreditation-section {
    padding: 90px 0;
    background: var(--brand-950);
    color: #fff;
}

.accreditation-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.accreditation-intro h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

.accreditation-detail {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.accreditation-jurisdiction {
    display: flex;
    align-items: center;
    gap: 16px;
}

.accreditation-jurisdiction img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.accreditation-jurisdiction h3 {
    font-size: 26px;
    font-weight: 600;
}

.accreditation-jurisdiction span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.accreditation-detail > p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Chancellor's Message (Figma)
   ========================================================================== */
.chancellor-section {
    padding: 90px 0;
    background: var(--brand-50);
}

.chancellor-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.chancellor-portrait img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.chancellor-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

.chancellor-content blockquote {
    font-size: 18px;
    line-height: 1.7;
    color: #1c1c1c;
    font-style: normal;
    border: none;
    margin: 20px 0;
}

.chancellor-attribution {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.chancellor-attribution h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--brand-900);
}

.chancellor-divider {
    width: 40px;
    height: 2px;
    background: var(--orange-500);
}

.chancellor-attribution p {
    font-size: 16px;
    color: #1c1c1c;
}

/* ==========================================================================
   Four Faculties / Academic Excellence (Figma)
   ========================================================================== */
.faculties-section {
    padding: 90px 0;
    background: #fff;
}

.faculties-header-figma {
    max-width: 900px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.faculties-header-figma h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 16px 0;
}

.faculties-header-figma p {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
}

.faculties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.faculty-card-figma {
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 5px 3px 9px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.faculty-card-figma-image {
    position: relative;
    height: 200px;
}

.faculty-card-figma-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-card-figma-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--brand-50);
    border: 1px solid var(--brand-600);
    color: var(--brand-900);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 60px;
}

.faculty-card-figma-content {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.faculty-card-figma-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2b2b3d;
}

.faculty-card-figma-content p {
    font-size: 14px;
    color: #858396;
    line-height: 1.6;
    flex: 1;
}

.faculty-explore-link {
    color: var(--brand-700);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faculty-explore-link i {
    color: var(--orange-500);
}

/* ==========================================================================
   Admissions Journey (Figma)
   ========================================================================== */
.admissions-journey-section {
    padding: 90px 0;
    background: var(--bg-grey);
}

.admissions-journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

.admissions-journey-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.admissions-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.admissions-step {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-top: 4px solid transparent;
}

.step-green { border-top-color: var(--green-600); }
.step-orange { border-top-color: var(--orange-600); }
.step-red { border-top-color: var(--red-600); }
.step-purple { border-top-color: var(--brand-600); }

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-green .step-number { background: var(--green-600); }
.step-orange .step-number { background: var(--orange-600); }
.step-red .step-number { background: var(--red-600); }
.step-purple .step-number { background: var(--brand-600); }

.admissions-step h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--bg-dark);
}

.admissions-step p {
    font-size: 15px;
    color: var(--neutral-800);
    line-height: 1.6;
}

/* ==========================================================================
   Countdown (Figma)
   ========================================================================== */
.countdown-section {
    padding: 80px 0;
    background: var(--brand-600);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.countdown-section h2 {
    font-size: 36px;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto 40px;
}

.countdown-boxes {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.countdown-box {
    background: #fff;
    border-radius: 10px;
    padding: 18px 28px;
    min-width: 110px;
}

.countdown-value {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: var(--brand-950);
}

.countdown-label {
    display: block;
    font-size: 16px;
    color: var(--neutral-700);
    margin-top: 4px;
}

.countdown-note {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--orange-300);
    font-size: 18px;
}

.countdown-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange-600);
    border: 2px solid var(--orange-500);
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
}

.countdown-cta:hover {
    background: var(--orange-500);
}

/* ==========================================================================
   FAQ (Figma)
   ========================================================================== */
.faq-figma {
    padding: 90px 0;
    background: #fff;
    position: relative;
}

.faq-list-figma {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-figma {
    border-bottom: 1px solid #d6d6d6;
}

.faq-question-figma {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 22px;
    font-weight: 500;
    color: var(--bg-dark);
    cursor: pointer;
    font-family: inherit;
}

.faq-question-figma i {
    transition: transform 0.3s ease;
    color: var(--neutral-400);
}

.faq-item-figma.active .faq-question-figma i {
    transform: rotate(45deg);
}

.faq-answer-figma {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-figma.active .faq-answer-figma {
    max-height: 300px;
}

.faq-answer-figma p {
    padding-bottom: 24px;
    color: var(--neutral-700);
    font-size: 16px;
    line-height: 1.6;
}

/* ==========================================================================
   Final CTA (Figma)
   ========================================================================== */
.final-cta-section {
    padding: 90px 0;
    background: var(--brand-50);
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.final-cta-image {
    position: relative;
}

.final-cta-image::before {
    content: "";
    position: absolute;
    inset: 6% 10%;
    background: #77b7e9;
    border-radius: 40px;
    z-index: 0;
}

.final-cta-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: contain;
}

.final-cta-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 18px;
    color: #1c1c1c;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ==========================================================================
   Figma sections — responsive
   ========================================================================== */
@media (max-width: 900px) {
    .fintech-grid,
    .accreditation-grid,
    .chancellor-grid,
    .admissions-journey-grid,
    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pillars-grid,
    .faculties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-figma {
        min-height: 0;
    }

    .hero-figma-bg img {
        object-position: 20% 20%;
    }

    .hero-figma-inner {
        padding: 90px 20px 130px;
    }

    .hero-figma-content {
        max-width: 100%;
    }

    .hero-figma-title {
        font-size: 36px;
    }

    .hero-figma-subtitle {
        font-size: 17px;
    }

    .hero-figma-badge {
        left: 20px;
        bottom: 40px;
    }

    .section-heading h2,
    .fintech-intro h2,
    .accreditation-intro h2,
    .chancellor-content h2,
    .faculties-header-figma h2,
    .countdown-section h2,
    .final-cta-content h2 {
        font-size: 28px;
    }

    .fintech-section,
    .pillars-section,
    .accreditation-section,
    .chancellor-section,
    .faculties-section,
    .admissions-journey-section,
    .countdown-section,
    .faq-figma,
    .final-cta-section {
        padding: 56px 0;
    }
}

@media (max-width: 560px) {
    .pillars-grid,
    .faculties-grid {
        grid-template-columns: 1fr;
    }

    .hero-figma-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        justify-content: center;
    }

    .countdown-box {
        min-width: 80px;
        padding: 14px 16px;
    }

    .countdown-value {
        font-size: 26px;
    }
}

/* ==========================================================================
   Admissions page (Figma)
   ========================================================================== */
.adm-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
}

.adm-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.adm-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(50, 18, 99, 0.96) 0%, rgba(50, 18, 99, 0.88) 40%, rgba(80, 30, 140, 0.5) 62%, rgba(113, 78, 160, 0) 82%);
}

.adm-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding: 110px 24px 80px;
}

.adm-hero-content {
    max-width: 660px;
    color: #fff;
}

.adm-hero-title {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.adm-hero-title span {
    color: var(--orange-500);
}

.adm-hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 32px;
}

.adm-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.adm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.adm-btn-glass {
    background: rgba(50, 18, 99, 0.55);
    border: 2px solid var(--orange-500);
    backdrop-filter: blur(10px);
}

.adm-btn-orange {
    background: var(--orange-600);
    border: 2px solid var(--orange-500);
}

.adm-btn-orange:hover {
    background: var(--orange-500);
}

.adm-hero-card {
    width: 420px;
    max-width: 100%;
    background: linear-gradient(136deg, #321263 0%, #4e1d93 100%);
    border: 1px solid var(--orange-500);
    border-radius: 20px;
    padding: 36px 32px;
    color: #fff;
}

.adm-hero-card-eyebrow {
    color: var(--orange-500);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.adm-hero-card-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
}

.adm-hero-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
    text-align: left;
}

.adm-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    line-height: 1.4;
}

.adm-hero-card-list i {
    color: var(--orange-500);
    margin-top: 4px;
}

.adm-hero-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange-500);
    border: 2px solid var(--orange-500);
    color: var(--brand-950);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
}

.adm-hero-card-btn:hover {
    background: var(--orange-300);
}

/* Three Learning Pathways */
.adm-pathways {
    padding: 90px 0;
    background: var(--brand-50);
}

.adm-pathways-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.adm-pathway-card {
    display: flex;
    gap: 24px;
    background: #fff;
    padding: 28px 30px;
    border-radius: 12px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 400px;
}

.adm-pathway-card img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.adm-pathway-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 8px;
}

.adm-pathway-card p {
    font-size: 15px;
    color: var(--neutral-800);
    line-height: 1.6;
    margin-bottom: 12px;
}

.adm-learn-more {
    color: var(--brand-700);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Application Requirements */
.adm-requirements {
    padding: 90px 0;
    background: var(--bg-grey);
}

.adm-requirements-header {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.adm-requirements-header > div {
    max-width: 550px;
}

.adm-requirements-header > p {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    flex: 1;
}

.adm-checklist-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.adm-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 24px;
    max-width: 220px;
    border-left: 1px solid var(--neutral-200, #d1d1d1);
}

.adm-checklist-item:first-child {
    border-left: none;
}

.adm-checklist-item i {
    color: var(--brand-700);
    font-size: 22px;
    margin-top: 2px;
}

.adm-checklist-item span {
    font-size: 15px;
    color: var(--bg-dark);
    line-height: 1.5;
}

.adm-req-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.adm-req-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.adm-req-card-header {
    padding: 24px;
    text-align: center;
}

.adm-req-card-header h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

.adm-req-card-header-purple {
    background: var(--brand-700);
}

.adm-req-card-header-orange {
    background: var(--orange-600);
}

.adm-req-card-header-green {
    background: var(--green-600);
}

.adm-req-card-body {
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.adm-req-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.adm-req-row i {
    color: var(--green-600);
    font-size: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.adm-req-row p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--bg-dark);
}

/* Four Steps to Enrolment */
.adm-steps {
    padding: 90px 0;
    background: #fff;
}

.adm-steps-row {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.adm-steps-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--orange-600);
    z-index: 0;
}

.adm-step {
    position: relative;
    z-index: 1;
    max-width: 260px;
    text-align: center;
}

.adm-step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--brand-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.adm-step-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: var(--orange-500);
    color: var(--brand-950);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adm-step h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.adm-step p {
    font-size: 15px;
    color: var(--neutral-800);
    line-height: 1.6;
}

/* Admission Requirements by Faculty table */
.adm-faculty-table-section {
    padding: 60px 0;
    background: var(--bg-grey);
}

.adm-faculty-table-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.adm-faculty-table-intro {
    max-width: 340px;
}

.adm-faculty-table-intro p {
    font-size: 15px;
    color: #000;
    line-height: 1.6;
    margin-top: 12px;
}

.adm-faculty-table-wrap {
    flex: 1;
    min-width: 280px;
    max-width: 100%;
    overflow-x: auto;
}

.adm-faculty-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.adm-faculty-table th {
    background: var(--brand-900);
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 16px 20px;
}

.adm-faculty-table th:first-child {
    border-radius: 20px 0 0 0;
}

.adm-faculty-table th:last-child {
    border-radius: 0 20px 0 0;
}

.adm-faculty-table td {
    padding: 16px 20px;
    border: 1px solid var(--brand-300, #c8b7fb);
    color: var(--bg-dark);
}

/* MBA / Postgraduate countdown */
.adm-countdown-section {
    padding: 60px 0;
    background: var(--bg-grey);
}

.adm-countdown-panel {
    background: var(--brand-900);
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    color: #fff;
}

.adm-countdown-content {
    max-width: 540px;
}

.adm-countdown-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.adm-countdown-content h2 span {
    color: var(--orange-500);
}

.adm-countdown-content p {
    color: var(--orange-300);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.adm-countdown-boxes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.adm-countdown-box {
    background: var(--brand-900);
    border: 1px solid var(--orange-500);
    border-radius: 10px;
    padding: 14px 22px;
    min-width: 100px;
    text-align: center;
}

.adm-countdown-value {
    display: block;
    font-size: 40px;
    font-weight: 600;
    color: var(--orange-500);
}

.adm-countdown-label {
    display: block;
    font-size: 14px;
    color: var(--orange-300);
    margin-top: 4px;
}

/* CTA */
.adm-cta {
    padding: 90px 0;
    background: #fff;
}

.adm-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.adm-cta-image {
    position: relative;
}

.adm-cta-image::before {
    content: "";
    position: absolute;
    inset: 6% 10%;
    background: #77b7e9;
    border-radius: 40px;
    z-index: 0;
}

.adm-cta-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: contain;
}

.adm-cta-content h2 {
    font-family: "League Spartan", sans-serif;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.adm-cta-content p {
    font-size: 18px;
    color: #1c1c1c;
    margin-bottom: 28px;
}

/* Contact quick-action bar */
.adm-contact-bar-wrap {
    padding-bottom: 0;
}

.adm-contact-bar {
    background: var(--brand-700);
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: stretch;
    max-width: 85%;
    margin: 0 auto;
}

.adm-contact-col {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px;
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.adm-contact-col:first-child {
    border-left: none;
}

.adm-contact-col > i:first-child {
    font-size: 28px;
    color: var(--orange-500);
}

.adm-contact-col > i.fa-whatsapp:first-child {
    color: #25d366;
}

.adm-contact-col h3 {
    font-size: 20px;
    font-weight: 600;
}

.adm-contact-col span {
    font-size: 14px;
    color: var(--brand-200, #e0d7fd);
}

.adm-contact-arrow {
    margin-left: auto;
    font-size: 14px;
}

/* Admissions — responsive */
@media (max-width: 900px) {
    .adm-hero {
        min-height: 0;
    }

    .adm-hero-inner {
        padding: 90px 20px 60px;
        flex-direction: column;
    }

    .adm-hero-title {
        font-size: 34px;
    }

    .adm-hero-card {
        width: 100%;
    }

    .adm-pathway-card {
        max-width: 100%;
        width: 100%;
    }

    .adm-requirements-header {
        flex-direction: column;
        gap: 20px;
    }

    .adm-checklist-item {
        border-left: none;
        max-width: 100%;
        width: 100%;
    }

    .adm-req-cards {
        grid-template-columns: 1fr;
    }

    .adm-steps-line {
        display: none;
    }

    .adm-faculty-table-card {
        flex-direction: column;
    }

    .adm-faculty-table-wrap {
        min-width: 0;
        width: 100%;
    }

    .adm-countdown-panel {
        padding: 36px 24px;
    }

    .adm-cta-grid {
        grid-template-columns: 1fr;
    }

    .adm-cta-content h2 {
        font-size: 36px;
    }

    .adm-contact-bar {
        flex-direction: column;
    }

    .adm-contact-col {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    .adm-contact-col:first-child {
        border-top: none;
    }
}

/* ==========================================================================
   About Us page (Figma)
   ========================================================================== */
.abt-hero {
    min-height: 0;
    height: 472px;
}

.abt-hero-overlay {
    background: linear-gradient(180deg, rgba(50, 18, 99, 0.55) 0%, rgba(50, 18, 99, 0.75) 100%);
}

.abt-hero-inner {
    position: relative;
    z-index: 1;
    height: 472px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.abt-hero-content {
    max-width: 1000px;
    color: #fff;
}

.abt-hero-content .adm-hero-title {
    font-size: 56px;
    margin-bottom: 20px;
}

.abt-hero-content .adm-hero-subtitle {
    margin: 0 auto;
}

/* Who We Are */
.abt-who-section {
    padding: 90px 0;
    background: #fff;
}

.abt-who-panel {
    background: var(--brand-700);
    border-radius: 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
    gap: 40px;
    padding: 70px 76px;
}

.abt-who-content h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--brand-50);
    margin: 16px 0 24px;
}

.abt-who-content .eyebrow {
    color: var(--orange-400, #ffc91c);
}

.abt-who-content p {
    color: var(--brand-50);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.abt-who-image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

/* Vision / Mission */
.abt-vm-section {
    padding: 70px 0;
    background: var(--bg-grey);
}

.abt-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.abt-vm-card {
    position: relative;
    border-radius: 20px;
    padding: 48px;
    overflow: hidden;
    color: #fff;
}

.abt-vm-dark {
    background: #1c1d22;
}

.abt-vm-orange {
    background: #974309;
}

.abt-vm-icon {
    position: absolute;
    right: 30px;
    bottom: 20px;
    font-size: 90px;
    opacity: 0.15;
}

.abt-vm-card h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
}

.abt-vm-card p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 480px;
    position: relative;
}

/* Core Values */
.abt-values-section {
    padding: 90px 0;
    background: #fff;
}

.abt-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.abt-value-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(46, 46, 31, 0.12);
    border-radius: 16px;
    padding: 40px;
}

.abt-value-card i {
    font-size: 32px;
    color: var(--brand-700);
    margin-bottom: 20px;
    display: block;
}

.abt-value-card h4 {
    font-size: 24px;
    font-weight: 500;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.abt-value-card p {
    font-size: 16px;
    color: var(--bg-dark);
    line-height: 1.6;
}

/* Our Foundation */
.abt-foundation-section {
    padding: 90px 0;
    background: #fff;
}

.abt-foundation-grid {
    display: grid;
    grid-template-columns: 0.9fr auto 1.1fr;
    gap: 48px;
    align-items: start;
}

.abt-foundation-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.abt-foundation-divider {
    width: 5px;
    align-self: stretch;
    background: var(--brand-700);
    border-radius: 3px;
}

.abt-foundation-content h2 {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin: 16px 0 20px;
}

.abt-foundation-content p {
    font-size: 17px;
    color: #1c1c1c;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Integrity in Every Degree */
.abt-integrity-section {
    padding: 0 0 90px;
    background: #fff;
}

.abt-integrity-card {
    background: #f5f2f0;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: start;
    gap: 40px;
    padding: 40px;
}

.abt-integrity-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-integrity-image img {
    width: 60%;
    max-width: 220px;
    object-fit: contain;
}

.abt-integrity-content h2 {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin: 16px 0 20px;
}

.abt-integrity-content p {
    font-size: 17px;
    color: #1c1c1c;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Withremit Partnership */
.abt-withremit-section {
    padding: 90px 0;
    background: var(--bg-grey);
}

.abt-withremit-header {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.abt-withremit-header > div {
    max-width: 500px;
}

.abt-withremit-header h2 {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin-top: 16px;
}

.abt-withremit-header p {
    max-width: 620px;
    font-size: 17px;
    color: #1c1c1c;
    line-height: 1.7;
}

.abt-withremit-p2 {
    align-self: flex-end;
}

.abt-withremit-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* Mini CTA banner (used near the end of several pages) */
.mini-cta-section {
    padding: 60px 0;
    background: #fff;
}

.mini-cta-banner {
    background: var(--brand-700);
    border-radius: 50px;
    padding: 50px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.mini-cta-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--brand-50);
    margin-bottom: 10px;
}

.mini-cta-text p {
    font-size: 18px;
    color: #fff;
}

.mini-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-50);
    color: var(--brand-700);
    font-weight: 600;
    font-size: 20px;
    padding: 20px 32px;
    border-radius: 20px;
    white-space: nowrap;
}

.mini-cta-btn:hover {
    background: #fff;
}

/* About Us — responsive */
@media (max-width: 900px) {
    .abt-hero,
    .abt-hero-inner {
        height: auto;
        min-height: 320px;
        padding: 60px 20px;
    }

    .abt-hero-content .adm-hero-title {
        font-size: 34px;
    }

    .abt-who-panel {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }

    .abt-vm-grid {
        grid-template-columns: 1fr;
    }

    .abt-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .abt-foundation-grid {
        grid-template-columns: 1fr;
    }

    .abt-foundation-divider {
        display: none;
    }

    .abt-integrity-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .abt-withremit-header {
        flex-direction: column;
    }

    .abt-withremit-p2 {
        align-self: flex-start;
    }

    .mini-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }
}

@media (max-width: 560px) {
    .abt-values-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Nav dropdown (Admissions: Direct Entry / Inter-University Transfer)
   ========================================================================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-caret {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-caret {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 14px;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(50, 18, 99, 0.16);
    list-style: none;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1100;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: var(--brand-50);
    color: var(--brand-700);
}

@media (max-width: 900px) {
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        margin-top: 4px;
        padding: 0 0 8px 16px;
        transition: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu a {
        padding: 10px 0;
        color: var(--neutral-700, #4f4f4f);
    }

    .nav-dropdown-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .nav-dropdown-caret {
        transition: transform 0.2s ease;
    }

    .nav-dropdown.open .nav-dropdown-caret {
        transform: rotate(180deg);
    }
}


/* ==========================================================================
   Direct Entry / Inter-University Transfer pages (Figma, via PDF export)
   ========================================================================== */
.de-hero {
    position: relative;
    min-height: 900px;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
}

.de-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(75, 22, 153, 0.78) 0%, rgba(88, 35, 170, 0.75) 35%, rgba(114, 67, 199, 0.62) 60%, rgba(106, 75, 173, 0.3) 100%);
    pointer-events: none;
}

.de-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 52%, rgba(0, 0, 0, 0.25) 58%, rgba(0, 0, 0, 0.1) 68%, transparent 100%);
    pointer-events: none;
}

.de-hero > .container-xl {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1320px;
}

.de-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 760px;
    padding: 120px 24px 80px;
}

.de-hero .adm-hero-title {
    max-width: 540px;
    text-align: left;
    color: #fff;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 700;
    margin: 0 0 20px;
}

.de-hero .adm-hero-title span {
    color: var(--orange-500);
}

.de-hero .adm-hero-subtitle {
    max-width: 540px;
    text-align: left;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.05rem, 1.45vw, 1.3rem);
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin: 0 0 34px;
}

.de-btn-outline {
    background: rgba(50, 18, 99, 0.55);
    border: 2px solid var(--orange-500);
    backdrop-filter: blur(6px);
}

/* Intro (image + text) */
.de-intro-section {
    padding: 90px 0;
    background: #fff;
}

.de-intro-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.de-intro-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.de-intro-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--bg-dark);
    margin: 16px 0 20px;
}

.de-intro-content p {
    font-size: 17px;
    color: #1c1c1c;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Eligibility 5-card grid */
.de-eligibility-section {
    padding: 90px 0;
    background: #fff;
}

.de-eligibility-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.de-eligibility-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
}

.de-eligibility-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--brand-900);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.de-eligibility-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 14px;
}

.de-eligibility-card p {
    font-size: 15px;
    color: var(--neutral-700);
    line-height: 1.6;
}

.de-eligibility-cta {
    display: flex;
    justify-content: center;
}

/* Learning experience (dark cards) */
.de-learning-section {
    padding: 90px 0;
    background: var(--brand-950);
    color: #fff;
}

.de-learning-header {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.de-learning-header > div {
    max-width: 500px;
}

.de-learning-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-top: 16px;
}

.de-learning-header p {
    max-width: 560px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.de-learning-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.de-learning-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 28px;
}

.de-learning-card i {
    color: var(--orange-500);
    font-size: 24px;
    margin-bottom: 16px;
    display: block;
}

.de-learning-card h4 {
    color: var(--orange-500);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.de-learning-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
}

/* IUT: 4 small feature cards */
.iut-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.iut-feature-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.iut-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-900);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.iut-feature-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--brand-700);
    margin-bottom: 8px;
}

.iut-feature-card p {
    font-size: 14px;
    color: var(--neutral-700);
    line-height: 1.5;
}

/* IUT: eligibility + documents two-tone card */
.iut-eligibility-section {
    padding: 0 0 90px;
    background: #fff;
}

.iut-eligibility-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
}

.iut-eligibility-col {
    padding: 48px 44px;
}

.iut-eligibility-col-purple {
    background: var(--brand-50);
}

.iut-eligibility-col-grey {
    background: var(--bg-grey);
}

.iut-eligibility-col h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--bg-dark);
    margin: 12px 0 24px;
}

.iut-check-list,
.iut-doc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.iut-check-list li,
.iut-doc-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--bg-dark);
    line-height: 1.6;
}

.iut-check-list i {
    flex-shrink: 0;
    margin-top: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand-700);
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iut-doc-list i {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--brand-700);
    font-size: 16px;
}

/* IUT: credit evaluation (bright purple, wavy) */
.iut-evaluation-section {
    padding: 90px 0;
    background: var(--brand-600);
    color: #fff;
    overflow: hidden;
}

.iut-evaluation-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.iut-evaluation-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin: 12px 0 20px;
}

.iut-evaluation-content > p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin-bottom: 32px;
}

.iut-evaluation-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.iut-evaluation-card {
    display: flex;
    gap: 16px;
    background: rgba(50, 18, 99, 0.45);
    border-radius: 12px;
    padding: 20px 24px;
}

.iut-evaluation-card i {
    color: var(--orange-500);
    font-size: 20px;
    margin-top: 3px;
}

.iut-evaluation-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.iut-evaluation-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.iut-evaluation-image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

/* IUT: learning cards (white variant on light bg) */
.iut-learning-card {
    background: #fff;
    border: 1px solid var(--border-color);
}

.iut-learning-card i {
    color: var(--brand-700);
}

.iut-learning-card h4 {
    color: var(--brand-700);
}

.iut-learning-card p {
    color: var(--bg-dark);
}

/* Direct Entry / IUT — responsive */
@media (max-width: 900px) {
    .de-hero {
        min-height: 0;
        background-position: right top;
    }

    .de-hero-inner {
        min-height: 0;
        padding: 100px 20px 60px;
    }

    .de-intro-grid {
        grid-template-columns: 1fr;
    }

    .de-eligibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .de-learning-header,
    .iut-evaluation-grid {
        grid-template-columns: 1fr;
    }

    .de-learning-grid,
    .iut-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .iut-eligibility-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .de-eligibility-grid,
    .de-learning-grid,
    .iut-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Tuition & Fees page (Figma, via PDF export)
   ========================================================================== */
.tf-structure-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.tf-structure-label {
    max-width: 260px;
    flex-shrink: 0;
}

.tf-structure-label h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.tf-structure-label p {
    font-size: 14px;
    color: var(--neutral-700);
    line-height: 1.6;
}

.tf-price-grid {
    flex: 1;
    min-width: 280px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.tf-price-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
}

.tf-price-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: #e3f9e5;
    color: var(--green-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tf-price-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 20px;
    min-height: 54px;
}

.tf-price-old {
    font-size: 26px;
    font-weight: 700;
    color: var(--brand-900);
}

.tf-price-label {
    font-size: 14px;
    color: var(--brand-700);
    font-weight: 600;
    margin-top: 6px;
}

.tf-discount-banner {
    background: var(--brand-50);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.tf-discount-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--brand-700);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.tf-discount-text {
    flex: 1;
    min-width: 260px;
}

.tf-discount-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-700);
    margin-bottom: 10px;
}

.tf-discount-text p {
    font-size: 15px;
    color: var(--bg-dark);
    line-height: 1.6;
}

.tf-discount-btn {
    flex-shrink: 0;
    background: var(--brand-700);
    color: #fff;
    font-weight: 600;
    padding: 18px 28px;
    border-radius: 12px;
    white-space: nowrap;
}

.tf-discount-btn:hover {
    background: var(--brand-900);
}

/* Certification section */
.tf-cert-section {
    padding: 0 0 50px;
    background: #fff;
}

.tf-covers-section {
    padding-top: 40px;
}

.tf-cert-card {
    background: var(--bg-grey);
    border-radius: 20px;
    padding: 48px;
}

.tf-cert-header {
    max-width: 700px;
    margin-bottom: 32px;
}

.tf-cert-header h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--bg-dark);
    margin: 12px 0;
}

.tf-cert-header p {
    font-size: 15px;
    color: var(--neutral-700);
    line-height: 1.6;
}

.tf-cert-table-wrap {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.tf-strike {
    color: var(--neutral-700);
}

.tf-rate {
    color: var(--brand-700);
    font-weight: 600;
}

.tf-cert-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--brand-50);
    border-radius: 30px;
    padding: 16px 24px;
    font-size: 14px;
    color: var(--bg-dark);
}

.tf-cert-note i {
    color: var(--brand-700);
}

/* What Your Tuition Covers */
.tf-covers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 340px;
    gap: 40px;
    align-items: start;
}

.tf-covers-image {
    align-self: start;
}

.tf-covers-image img {
    max-width: 420px;
    width: 100%;
    object-fit: contain;
    border-radius: 24px;
}

.tf-photo-baked::before {
    display: none;
}

/* How to Pay */
.tf-pay-section {
    padding: 0 0 90px;
    background: #fff;
}

.tf-pay-card {
    background: var(--brand-50);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 40px;
}

.tf-pay-info h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--bg-dark);
    margin: 12px 0 16px;
}

.tf-pay-info > p {
    font-size: 15px;
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: 24px;
}

.tf-pay-contact {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
}

.tf-pay-contact p {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--bg-dark);
}

.tf-pay-contact i {
    font-size: 8px;
    color: var(--brand-700);
    margin-right: 6px;
}

.tf-pay-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tf-pay-method {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
}

.tf-pay-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--brand-50);
    color: var(--brand-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tf-pay-method h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.tf-pay-method p {
    font-size: 14px;
    color: var(--neutral-700);
    line-height: 1.6;
}

/* Tuition & Fees — responsive */
@media (max-width: 900px) {
    .tf-structure-row {
        flex-direction: column;
        align-items: stretch;
    }

    .tf-structure-label {
        max-width: 100%;
    }

    .tf-price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tf-covers-grid {
        grid-template-columns: 1fr;
    }

    .tf-covers-image {
        display: none;
    }

    .tf-pay-card {
        grid-template-columns: 1fr;
    }

    .tf-pay-methods {
        grid-template-columns: 1fr;
    }

    .tf-cert-card {
        padding: 28px;
    }
}

@media (max-width: 560px) {
    .tf-price-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Faculty detail page ===== */

.fac-check-orange i {
    background: var(--orange-600);
}

.fac-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.fac-why-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
}

.fac-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--brand-900);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.fac-why-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.fac-why-card p {
    font-size: 15px;
    color: var(--neutral-700);
    line-height: 1.6;
}

.fac-why-image {
    grid-row: 1 / 3;
    grid-column: 2;
    border-radius: 16px;
    overflow: hidden;
}

.fac-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fac-req-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.fac-req-card {
    border-radius: 16px;
    padding: 40px;
}

.fac-req-green {
    background: rgba(0, 185, 8, 0.06);
    border: 1px solid rgba(0, 185, 8, 0.25);
}

.fac-req-orange {
    background: rgba(225, 126, 0, 0.06);
    border: 1px solid rgba(225, 126, 0, 0.25);
}

.fac-req-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    color: #fff;
}

.fac-req-badge-green {
    background: var(--green-600);
}

.fac-req-badge-orange {
    background: var(--orange-600);
}

.fac-programmes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.fac-programme-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.fac-programme-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.fac-programme-body {
    padding: 24px;
}

.fac-programme-body h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.fac-programme-body p {
    font-size: 14px;
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: 16px;
}

.fac-programme-duration {
    font-size: 13px;
    color: var(--brand-700);
    font-weight: 600;
    margin-bottom: 18px;
}

.fac-programme-duration i {
    margin-right: 6px;
}

.fac-programme-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-700);
}

.fac-lecturers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.fac-lecturer-card {
    text-align: center;
}

.fac-lecturer-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.fac-lecturer-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.fac-lecturer-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.fac-lecturer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.fac-lecturer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

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

    .fac-why-image {
        grid-row: auto;
        grid-column: auto;
        min-height: 220px;
    }

    .fac-req-grid {
        grid-template-columns: 1fr;
    }

    .fac-programmes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fac-lecturers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .fac-programmes-grid {
        grid-template-columns: 1fr;
    }

    .fac-lecturers-grid {
        grid-template-columns: 1fr;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== Contact Us page ===== */

.cu-info-section {
    padding: 70px 0 0;
    background: var(--bg-grey);
}

.cu-info-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
}

.cu-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
}

.cu-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--brand-700);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
}

.cu-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.cu-info-card p {
    font-size: 15px;
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: 4px;
}

.cu-info-country {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cu-info-phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-700);
    margin: 6px 0 14px;
}

.cu-info-email a {
    color: var(--brand-700);
    font-weight: 600;
    text-decoration: none;
}

.cu-form-section {
    padding: 80px 0;
    background: var(--brand-50);
}

.cu-form-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.cu-form-grid h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--bg-dark);
    margin: 12px 0 28px;
}

.cu-alert {
    background: #e7f9e9;
    color: #1a7a2e;
    border: 1px solid #b8ebc0;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.cu-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cu-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cu-form input,
.cu-form select,
.cu-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--bg-dark);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cu-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.cu-form textarea {
    resize: vertical;
}

.cu-form-submit {
    background: var(--brand-700);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 17px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.cu-form-submit:hover {
    background: var(--brand-900);
}

.cu-form-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.cu-form-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.cu-form-badge {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: var(--brand-950);
    color: #fff;
    border-radius: 14px;
    padding: 22px;
    display: flex;
    gap: 16px;
}

.cu-form-badge i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cu-form-badge h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cu-form-badge p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.cu-cta-section {
    padding: 0 0 90px;
}

.cu-cta-box {
    background: linear-gradient(120deg, var(--brand-700), var(--brand-600));
    border-radius: 24px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    color: #fff;
}

.cu-cta-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cu-cta-box p {
    color: rgba(255, 255, 255, 0.9);
}

.cu-cta-btn {
    background: #fff;
    color: var(--brand-700);
    padding: 16px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .cu-info-grid {
        grid-template-columns: 1fr;
    }

    .cu-form-grid {
        grid-template-columns: 1fr;
    }

    .cu-form-row {
        grid-template-columns: 1fr;
    }

    .cu-cta-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Student Life page ===== */

.sl-founder-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 56px;
    align-items: start;
}

.sl-founder-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sl-founder-photos img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
}

.sl-pathway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sl-pathway-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    padding-bottom: 28px;
    text-align: left;
}

.sl-pathway-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.sl-pathway-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-700);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: -28px auto 16px;
    border: 4px solid #fff;
}

.sl-pathway-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 10px;
    padding: 0 24px;
}

.sl-pathway-card p {
    font-size: 14px;
    color: var(--neutral-700);
    line-height: 1.6;
    padding: 0 24px;
}

.sl-community-section {
    background: var(--brand-50);
    padding: 70px 0;
}

.sl-community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.sl-community-grid h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--bg-dark);
    margin: 12px 0 16px;
}

.sl-community-lead {
    font-weight: 600;
    color: var(--bg-dark);
    font-size: 16px;
}

.sl-community-photo {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 340px;
}

.sl-community-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sl-community-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
}

.sl-community-card h4 {
    color: var(--brand-700);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sl-community-card p {
    font-size: 14px;
    color: var(--neutral-700);
    line-height: 1.6;
}

.sl-join-band {
    background-size: cover;
    background-position: center;
    padding: 110px 0;
    color: #fff;
    text-align: center;
}

.sl-join-band h2 {
    font-size: 40px;
    font-weight: 700;
    max-width: 600px;
    margin: 0 auto 12px;
}

.sl-join-band p {
    font-size: 17px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.sl-quote-section {
    padding: 60px 0 90px;
}

.sl-quote-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    border-radius: 16px;
    overflow: hidden;
}

.sl-quote-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sl-quote-box {
    background: var(--brand-950);
    color: #fff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sl-quote-box p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.sl-quote-box h4 {
    color: var(--orange-500);
    font-size: 17px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .sl-founder-grid,
    .sl-community-grid,
    .sl-quote-grid {
        grid-template-columns: 1fr;
    }

    .sl-pathway-grid,
    .sl-community-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== Digital Learning Tools page ===== */

.dlt-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dlt-bullets li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: var(--neutral-700);
    line-height: 1.6;
}

.dlt-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-700);
}

.dlt-modules-section {
    padding: 0 0 90px;
}

.dlt-module-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
}

.dlt-module-card h4 {
    font-size: 26px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

.dlt-module-card img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    max-height: 340px;
}

.dlt-module-reverse {
    direction: rtl;
}

.dlt-module-reverse > * {
    direction: ltr;
}

.dlt-pathway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dlt-pathway-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 32px;
}

.dlt-pathway-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--brand-700);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
}

.dlt-pathway-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.dlt-pathway-card p {
    font-size: 14px;
    color: var(--neutral-700);
    line-height: 1.6;
}

.dlt-elib-section {
    padding: 90px 0;
    background: var(--bg-grey);
}

.dlt-elib-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
    min-height: 320px;
}

.dlt-elib-banner img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.dlt-elib-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 45%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 32px;
    color: #fff;
}

.dlt-elib-overlay h4 {
    font-size: 26px;
    font-weight: 700;
}

.dlt-elib-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dlt-elib-dark {
    background: var(--neutral-800);
    color: #fff;
    border-radius: 14px;
    padding: 32px;
    font-size: 15px;
    line-height: 1.7;
}

.dlt-elib-light {
    background: #f0edfa;
    border-radius: 14px;
    padding: 32px;
}

@media (max-width: 900px) {
    .dlt-module-card,
    .dlt-module-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .dlt-pathway-grid {
        grid-template-columns: 1fr;
    }

    .dlt-elib-info {
        grid-template-columns: 1fr;
    }

    .dlt-elib-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ===== Career Advancement Centre page ===== */

.cac-intro-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.cac-team-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cac-team-photos img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
}

.cac-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cac-service-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px;
}

.cac-service-card img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    border-radius: 10px;
}

.cac-service-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 14px;
}

.cac-industry-section {
    padding: 0 0 90px;
}

.cac-industry-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border-radius: 20px;
    overflow: hidden;
}

.cac-industry-box {
    background: #234d20;
    color: #fff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cac-industry-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cac-industry-box p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

.cac-industry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e7fce0;
    color: #234d20;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
}

.cac-industry-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .cac-intro-card,
    .cac-services-grid,
    .cac-industry-grid {
        grid-template-columns: 1fr;
    }

    .cac-service-card {
        grid-template-columns: 1fr;
    }
}

/* ===== Careers page ===== */

.car-roles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.car-role-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px 28px;
    flex-wrap: wrap;
}

.car-role-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 6px;
}

.car-role-card p {
    font-size: 14px;
    color: var(--neutral-700);
}

.car-roles-note {
    text-align: center;
    color: var(--neutral-700);
    font-size: 15px;
}

@media (max-width: 600px) {
    .car-role-card {
        flex-direction: column;
        align-items: flex-start;
    }
}
