/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header styles moved to assets/css/header.css */

/* Hero styles moved to assets/css/hero.css */

/* ── Programmes Catalogue ── */
.programmes-catalogue {
    background: #f8f7ff;
    padding: 5rem 0 4rem;
}

/* Section header */
.prog-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.prog-header-left {
    max-width: 560px;
}

.prog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #312f93;
    background: rgba(49, 47, 147, 0.08);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.prog-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 0.75rem 0;
    line-height: 1.1;
}

.prog-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.prog-header-right {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.prog-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.22s ease;
    white-space: nowrap;
    border: 2px solid transparent;
}

.prog-btn-primary {
    background: #312f93;
    color: #fff;
    border-color: #312f93;
}

.prog-btn-primary:hover {
    background: #211f6e;
    border-color: #211f6e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49,47,147,0.3);
    text-decoration: none;
}

.prog-btn-outline {
    background: transparent;
    color: #312f93;
    border-color: #312f93;
}

.prog-btn-outline:hover {
    background: #312f93;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Programme cards grid */
.programmes-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.programme-card-link {
    text-decoration: none;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.programme-card {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.programme-card-link:hover .programme-card {
    transform: scale(1.02);
}

.programme-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 8, 50, 0.92) 0%,
        rgba(10, 8, 50, 0.45) 50%,
        rgba(10, 8, 50, 0.1) 100%
    );
    transition: background 0.4s ease;
}

.programme-card-link:hover .programme-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 8, 50, 0.96) 0%,
        rgba(10, 8, 50, 0.65) 55%,
        rgba(10, 8, 50, 0.2) 100%
    );
}

.programme-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.75rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.programme-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(245, 197, 24, 0.18);
    border: 1px solid rgba(245, 197, 24, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
    transition: background 0.3s ease;
}

.programme-icon-wrap i {
    color: #f5c518;
    font-size: 1.1rem;
}

.programme-card-link:hover .programme-icon-wrap {
    background: rgba(245, 197, 24, 0.3);
}

.programme-content h3 {
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    font-size: 1.55rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.programme-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}

.programme-card-link:hover .programme-desc {
    max-height: 80px;
    opacity: 1;
}

.programme-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #f5c518;
    letter-spacing: 0.04em;
    margin-top: 0.25rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.programme-card-link:hover .programme-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ── Principal Message Section ── */
.principal-message {
    background: #fff;
    overflow: hidden;
}

.principal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

/* Left image side */
.principal-image-side {
    position: relative;
    overflow: hidden;
}

.principal-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.principal-message:hover .principal-photo {
    transform: scale(1.03);
}

.principal-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(49, 47, 147, 0.55) 0%,
        rgba(10, 8, 50, 0.25) 100%
    );
}

.principal-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    padding: 0.6rem 1rem;
}

.badge-icon i {
    color: #f5c518;
    font-size: 1rem;
}

.badge-text {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Right text side */
.principal-text-side {
    background: #f8f7ff;
    padding: 4rem 4rem 4rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.principal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #312f93;
    background: rgba(49, 47, 147, 0.08);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.principal-quote-mark {
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 0.6;
    color: #312f93;
    opacity: 0.15;
    margin-bottom: 0.5rem;
    user-select: none;
}

.principal-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.principal-role {
    font-size: 0.9rem;
    color: #312f93;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.principal-divider {
    width: 48px;
    height: 3px;
    background: #f5c518;
    border-radius: 2px;
    margin-bottom: 1.75rem;
}

.principal-excerpt {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 1rem 0;
}

.principal-excerpt:last-of-type {
    margin-bottom: 2rem;
}

.principal-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #312f93;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    transition: all 0.22s ease;
    border: 2px solid #312f93;
}

.principal-read-more:hover {
    background: transparent;
    color: #312f93;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49,47,147,0.2);
    text-decoration: none;
}


/* Responsive Design for Programmes Cards */
@media (max-width: 768px) {
    .prog-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .prog-header-right {
        width: 100%;
    }

    .prog-btn {
        flex: 1;
        justify-content: center;
    }

    .programmes-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .programme-card {
        height: 280px;
    }

    .programme-desc {
        max-height: 80px;
        opacity: 1;
    }

    .programme-cta {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Principal Message Mobile */
    .principal-inner {
        grid-template-columns: 1fr;
    }

    .principal-image-side {
        min-height: 320px;
    }

    .principal-text-side {
        padding: 2.5rem 1.5rem;
    }

    .principal-quote-mark {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .programmes-catalogue {
        padding: 3rem 0;
    }

    
    .programme-card {
        height: 220px;
    }

    .programme-content h3 {
        font-size: 1.2rem;
    }

    /* Principal Message Small Mobile */
    .principal-image-side {
        min-height: 260px;
    }

    .principal-text-side {
        padding: 2rem 1.25rem;
    }
}

.dot:hover {
    background-color: #841810;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* ── About Section ── */
.about {
    padding: 5rem 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #312f93;
    background: rgba(49, 47, 147, 0.08);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.about-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.05;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.about-title-accent {
    color: #312f93;
}

.about-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    border-left: 3px solid #f5c518;
    padding-left: 0.85rem;
}

/* Mission / Vision cards */
.about-mv-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.about-mv-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #f8f7ff;
    border: 1px solid rgba(49,47,147,0.1);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-mv-card:hover {
    box-shadow: 0 6px 24px rgba(49,47,147,0.1);
    border-color: rgba(49,47,147,0.25);
}

.about-mv-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #312f93;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-mv-icon i {
    color: #f5c518;
    font-size: 1rem;
}

.about-mv-body h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.35rem 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about-mv-body p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}

/* Stats bar */
.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
}

.about-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1rem;
    gap: 0.2rem;
}

.about-stat-num {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #f5c518;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* Image side */
.about-image {
    height: 100%;
}

.about-image-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    box-shadow: 0 20px 60px rgba(49,47,147,0.15);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrap:hover .about-photo {
    transform: scale(1.04);
}

.about-image-tag {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #312f93;
    color: #fff;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 16px rgba(49,47,147,0.4);
}

.about-image-tag i {
    color: #f5c518;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.image-placeholder i {
    font-size: 4rem;
    opacity: 0.8;
}

/* Programs Section */
.programs {
    padding: 80px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #200769 0%, #841810 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 1.5rem;
    color: white;
}

.program-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.program-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-card ul {
    list-style: none;
}

.program-card li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.program-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* ── Admissions Section ── */
.admissions {
    background: #f8f7ff;
    padding-bottom: 4rem;
}

/* Banner */
.adm-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #312f93 60%, #c11b2e 100%);
    padding: 3.5rem 0;
    margin-bottom: 3rem;
}

.adm-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.adm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5c518;
    margin-bottom: 0.75rem;
}

.adm-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.adm-tagline {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.5;
}

.adm-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.adm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #c11b2e;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid #c11b2e;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.adm-btn-primary:hover {
    background: #a1162a;
    border-color: #a1162a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193,27,46,0.4);
    text-decoration: none;
}

.adm-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.22s ease;
    white-space: nowrap;
}

.adm-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Section label */
.adm-section-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #312f93;
    background: rgba(49,47,147,0.07);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    margin-bottom: 1.25rem;
    width: fit-content;
    border-left: 3px solid #c11b2e;
}

.admissions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.admissions-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
}

.course-level {
    margin-bottom: 0.75rem;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(49,47,147,0.1);
    transition: box-shadow 0.22s ease;
}

.course-level:hover {
    box-shadow: 0 4px 16px rgba(49,47,147,0.08);
}

.course-header {
    padding: 1rem 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s ease;
}

.course-header:hover {
    background: #f8f7ff;
}

.course-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.course-level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.diploma-badge {
    background: rgba(49,47,147,0.1);
    color: #312f93;
}

.cert-badge {
    background: rgba(193,27,46,0.1);
    color: #c11b2e;
}

.poly-badge {
    background: rgba(245,197,24,0.2);
    color: #9a7d00;
}

.faq-badge {
    background: #f3f4f6;
    color: #6b7280;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 6px;
    font-size: 0.8rem;
}

.course-title {
    color: #1a1a2e;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
}

.course-icon {
    color: #c11b2e;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.course-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #ffffff;
    padding: 0 1.5rem;
}

.course-content.expanded {
    max-height: 500px;
    padding: 1.5rem;
}

/* Mobile responsive styles for FAQ */
@media (max-width: 768px) {
    .course-level {
        margin-bottom: 1rem;
    }
    
    .course-header {
        padding: 1rem;
    }
    
    .course-title {
        font-size: 1rem;
    }
    
    .course-content {
        padding: 0 1rem;
    }
    
    .course-content.expanded {
        padding: 1rem;
    }
    
    .course-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .read-more-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

.course-icon.expanded {
    transform: rotate(180deg);
}

.course-content .requirements-list {
    margin: 0;
    padding: 1.5rem;
}

.requirements-list {
    list-style: none;
    margin-bottom: 3rem;
}

.requirements-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #6b7280;
}

.requirements-list i {
    color: #c11b2e;
    margin-right: 0.75rem;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #312f93, #c11b2e);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(193,27,46,0.25);
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

.admissions-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.admissions-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

/* Inline link inside expanded accordion */
.adm-inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #c11b2e;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(193,27,46,0.3);
    transition: border-color 0.2s ease, color 0.2s ease;
    margin-top: 0.5rem;
}

.adm-inline-btn:hover {
    color: #a1162a;
    border-bottom-color: #a1162a;
    text-decoration: none;
}

/* CTA card inside FAQ column */
.adm-cta-card {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #312f93 60%, #c11b2e 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.adm-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(245,197,24,0.18);
    border: 1px solid rgba(245,197,24,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.adm-cta-icon i {
    color: #f5c518;
    font-size: 1.3rem;
}

.adm-cta-card h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.adm-cta-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.5;
}

.application-option {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #841810;
    transition: all 0.3s ease;
}

.application-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.option-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.option-header i {
    font-size: 1.5rem;
    color: #841810;
    margin-right: 1rem;
}

.option-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.application-option p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.apply-now-btn {
    display: inline-block;
    background-color: #ffd700;
    color: #333;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
}

.apply-now-btn:hover {
    background-color: #333;
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.office-info {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.office-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

.office-info p:last-child {
    margin-bottom: 0;
}

.btn-primary {
    background-color: #841810;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 300px;
}

.btn-primary:hover {
    background-color: #6b130d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(132, 24, 16, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

/* ── Featured News Section ── */
.featured-news {
    padding: 5rem 0;
    background: #fff;
}

.featured-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.featured-news-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #312f93;
    background: rgba(49,47,147,0.08);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 0.6rem;
}

.featured-news-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.1;
}

.featured-news-viewall {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #312f93;
    text-decoration: none;
    border-bottom: 2px solid rgba(49,47,147,0.25);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.featured-news-viewall:hover {
    color: #c11b2e;
    border-color: #c11b2e;
    text-decoration: none;
}

/* Loading / error states */
.featured-news-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 0;
    color: #6b7280;
}

.featured-news-error {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 3rem 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.featured-news-error i {
    font-size: 2rem;
    color: #c11b2e;
}

/* Grid layout: hero left + side column right */
.featured-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

/* Hero card */
.fn-hero-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: transform 0.4s ease;
}

.fn-hero-card:hover {
    transform: scale(1.015);
    text-decoration: none;
}

.fn-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,8,50,0.92) 0%,
        rgba(10,8,50,0.4) 50%,
        rgba(10,8,50,0.05) 100%
    );
}

.fn-hero-body {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.fn-tag {
    display: inline-flex;
    width: fit-content;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #c11b2e;
    color: #fff;
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
}

.fn-hero-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.25;
}

.fn-date {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
}

.fn-hero-card .fn-date {
    color: rgba(255,255,255,0.65);
}

/* Side column */
.fn-side-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Small card */
.fn-small-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f7ff;
    border: 1px solid rgba(49,47,147,0.08);
    text-decoration: none;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.fn-small-card:hover {
    box-shadow: 0 8px 28px rgba(49,47,147,0.12);
    transform: translateY(-3px);
    text-decoration: none;
}

.fn-small-img {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
    flex-shrink: 0;
}

.fn-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(49,47,147,0.06);
}

.fn-img-placeholder i {
    font-size: 2rem;
    color: rgba(49,47,147,0.2);
}

.fn-small-body {
    padding: 0.9rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.fn-small-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fn-small-card .fn-date {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 900px) {
    .featured-news-grid {
        grid-template-columns: 1fr;
    }

    .fn-hero-card {
        min-height: 320px;
    }

    .fn-side-col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .fn-side-col {
        grid-template-columns: 1fr;
    }
}

/* ── Collaborations Section ── */
.collaborations {
    background: #f8f7ff;
    padding-bottom: 4rem;
}

/* Banner */
.collab-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #312f93 100%);
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.collab-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.collab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5c518;
    margin-bottom: 0.6rem;
}

.collab-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.4rem 0;
    text-transform: uppercase;
    line-height: 1;
}

.collab-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.collab-banner-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    flex-shrink: 0;
}

.collab-stat-num {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f5c518;
    line-height: 1;
}

.collab-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}

/* Groups layout */
.collab-groups {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.collab-group {
    padding: 2.5rem 0;
}

.collab-divider {
    height: 1px;
    background: rgba(49,47,147,0.1);
}

.collab-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.collab-group-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.collab-group-icon.educational {
    background: #312f93;
}

.collab-group-icon.industrial {
    background: #c11b2e;
}

.collab-group-icon i {
    color: #f5c518;
    font-size: 1.1rem;
}

.collab-group-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.collab-group-sub {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

/* Logo grid */
.collab-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.collab-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    border: 1px solid rgba(49,47,147,0.08);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    min-width: 150px;
    flex: 0 1 auto;
    transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
    cursor: default;
}

.collab-logo-item:hover {
    box-shadow: 0 8px 24px rgba(49,47,147,0.1);
    transform: translateY(-3px);
    border-color: rgba(49,47,147,0.2);
}

.collab-logo-item img {
    height: 48px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.22s ease;
}

.collab-logo-item:hover img {
    filter: grayscale(0%);
}

.collab-logo-item span {
    font-size: 0.78rem;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    .collab-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .collab-banner-stat {
        align-self: flex-start;
    }

    .collab-logos {
        gap: 0.75rem;
    }

    .collab-logo-item {
        min-width: 120px;
        padding: 1rem;
    }
}


/* ── Video & Connect Section ── */
.video-connect {
    padding: 5rem 0;
    background: #f8f7ff;
}

.vc-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* Shared eyebrow */
.vc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #312f93;
    background: rgba(49,47,147,0.08);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.vc-eyebrow.light {
    color: #f5c518;
    background: rgba(245,197,24,0.12);
}

/* Video side */
.vc-video-side {
    display: flex;
    flex-direction: column;
}

.vc-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    line-height: 1.05;
}

.vc-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.vc-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(49,47,147,0.15);
}

.vc-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Social side */
.vc-social-side {
    height: 100%;
}

.vc-social-card {
    background: linear-gradient(160deg, #1a1a2e 0%, #312f93 100%);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 20px 60px rgba(49,47,147,0.25);
}

.vc-social-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.4rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.vc-social-sub {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    margin: 0 0 1.75rem 0;
    line-height: 1.55;
}

/* Handle rows */
.vc-handles {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.vc-handle {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vc-handle:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    transform: translateX(4px);
    text-decoration: none;
}

.vc-handle-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.vc-handle.facebook .vc-handle-icon  { background: #1877f2; }
.vc-handle.twitter  .vc-handle-icon  { background: #1da1f2; }
.vc-handle.youtube  .vc-handle-icon  { background: #ff0000; }
.vc-handle.whatsapp .vc-handle-icon  { background: #25d366; }

.vc-handle-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.1rem;
}

.vc-handle-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.vc-handle-tag {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
}

.vc-handle-arrow {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.vc-handle:hover .vc-handle-arrow {
    color: #f5c518;
}

/* Responsive */
@media (max-width: 900px) {
    .vc-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #200769 !important;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* ── Contact Section ── */
.ct-section {
    display: grid;
    grid-template-columns: 5fr 6fr;
    min-height: 680px;
}

/* Left dark panel */
.ct-panel {
    background: linear-gradient(160deg, #1a1a2e 0%, #312f93 100%);
    display: flex;
    align-items: stretch;
}

.ct-panel-inner {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5c518;
    margin-bottom: 0.75rem;
}

.ct-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    line-height: 1;
}

.ct-lead {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
    max-width: 380px;
}

/* Detail rows */
.ct-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ct-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ct-detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(245,197,24,0.15);
    border: 1px solid rgba(245,197,24,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ct-detail-icon i {
    color: #f5c518;
    font-size: 0.9rem;
}

.ct-detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.3rem;
}

.ct-detail-value {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.ct-link {
    text-decoration: none;
    transition: color 0.2s;
}

.ct-link:hover {
    color: #f5c518;
    text-decoration: none;
}

/* Map embed */
.ct-map {
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    min-height: 180px;
    border: 1px solid rgba(255,255,255,0.1);
}

.ct-map iframe {
    width: 100%;
    height: 100%;
    min-height: 180px;
    border: none;
    display: block;
    filter: grayscale(20%) invert(90%) hue-rotate(180deg);
    opacity: 0.85;
}

/* Right white form panel */
.ct-form-panel {
    background: #fff;
    display: flex;
    align-items: stretch;
}

.ct-form-inner {
    padding: 4rem 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ct-form-header {
    margin-bottom: 2rem;
}

.ct-form-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 0.35rem 0;
    text-transform: uppercase;
}

.ct-form-sub {
    font-size: 0.88rem;
    color: #6b7280;
    margin: 0;
}

/* Form layout */
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ct-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ct-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
    padding: 0.7rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #1a1a2e;
    background: #f9f8ff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
    color: #9ca3af;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    border-color: #312f93;
    box-shadow: 0 0 0 3px rgba(49,47,147,0.08);
    background: #fff;
}

.ct-field textarea {
    resize: vertical;
    min-height: 100px;
}

.ct-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: #312f93;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    margin-top: 0.25rem;
}

.ct-submit:hover {
    background: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(49,47,147,0.25);
}

/* Quick links */
.ct-quick-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0eeff;
}

.ct-quick-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 0.25rem;
}

.ct-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    background: rgba(49,47,147,0.07);
    color: #312f93;
    border: 1px solid rgba(49,47,147,0.15);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ct-chip:hover {
    background: #312f93;
    color: #fff;
    border-color: #312f93;
    text-decoration: none;
}

.ct-chip-green {
    background: rgba(37,211,102,0.08);
    color: #15803d;
    border-color: rgba(37,211,102,0.25);
}

.ct-chip-green:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

/* Responsive */
@media (max-width: 900px) {
    .ct-section {
        grid-template-columns: 1fr;
    }

    .ct-panel-inner,
    .ct-form-inner {
        padding: 3rem 2rem;
    }

    .ct-map {
        min-height: 220px;
    }
}

@media (max-width: 560px) {
    .ct-row {
        grid-template-columns: 1fr;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    
    .programmes-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .programmes-text h2 {
        font-size: 2rem;
    }
    
    
    /* About Section Mobile */
    .about {
        padding: 3rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-wrap {
        min-height: 300px;
    }

    .about-stats {
        flex-wrap: wrap;
    }

    .about-stat {
        min-width: 30%;
    }
    
    /* Small mobile slider styles */
    
    .admissions-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .adm-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }

    .adm-banner-actions {
        width: 100%;
    }

    .adm-btn-primary,
    .adm-btn-outline {
        flex: 1;
        justify-content: center;
    }

    /* Collaborations Mobile Styles */
    
}


@media (max-width: 480px) {
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    
    .programmes-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .programmes-text h2 {
        font-size: 1.8rem;
    }
    
    .programme-icon {
        width: 60px;
        height: 60px;
    }
    
    .programme-icon i {
        font-size: 1.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-detailed {
    padding: 80px 0;
    background: #f9fafb;
}

.about-detailed .about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-detailed h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-detailed h2:first-child {
    margin-top: 0;
}

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #6b7280;
}

.values-list i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.stats-section {
    padding: 60px 0;
    background: white;
}

.programs-detailed {
    padding: 80px 0;
}

.program-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.program-details p {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content,
.programs-grid,
.admissions-content,
.ct-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Application Form Download Popup Styles */
.popup-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
    margin: 0;
    padding: 0;
}

.popup-overlay.show {
    display: flex !important;
}

.popup-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    padding: 1.25rem;
    max-width: 450px;
    width: 70%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideInFromRight 0.6s ease-out;
    text-align: center;
    backdrop-filter: blur(10px);
    font-family: 'Arial Narrow', Arial, sans-serif;
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    padding: 3px 5px;
    transition: color 0.3s ease;
    z-index: 1;
}

.popup-close:hover {
    color: #841810;
}

.popup-icon {
    font-size: 2rem;
    color: #841810;
    margin-bottom: 0.5rem;
}

.popup-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Arial Narrow', Arial, sans-serif;
}

.popup-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-family: 'Arial Narrow', Arial, sans-serif;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-download-btn {
    background-color: #841810;
    color: white;
    padding: 6px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 0.85rem;
    font-family: 'Arial Narrow', Arial, sans-serif;
}

.popup-download-btn:hover {
    background-color: #a01d15;
    transform: translateY(-2px);
    color: white;
}

.popup-close-btn {
    background-color: #f0f0f0;
    color: #333;
    padding: 6px 15px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.85rem;
    font-family: 'Arial Narrow', Arial, sans-serif;
}

.popup-close-btn:hover {
    background-color: #e0e0e0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive styles for popup */
@media (max-width: 768px) {
    .popup-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
        overflow-y: auto;
    }
    
    .popup-content {
        padding: 1.5rem 1rem;
        max-width: 90%;
        width: 90%;
        margin: 10px auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .popup-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .popup-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .popup-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .popup-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .popup-download-btn,
    .popup-close-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .popup-close {
        top: 10px;
        right: 10px;
        font-size: 1.2rem;
        padding: 5px 8px;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .popup-content {
        padding: 1.25rem 0.875rem;
        max-width: 95%;
        width: 95%;
        margin: 5px;
    }
    
    .popup-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .popup-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .popup-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .popup-download-btn,
    .popup-close-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .popup-close {
        top: 8px;
        right: 8px;
        font-size: 1rem;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .popup-content {
        max-width: 70%;
        width: 70%;
        padding: 1rem;
    }
    
    .popup-icon {
        font-size: 2rem;
    }
    
    .popup-content h3 {
        font-size: 1rem;
    }
    
    .popup-content p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .popup-buttons {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .popup-download-btn,
    .popup-close-btn {
        width: auto;
        flex: 1;
        padding: 8px 16px;
    }
}

/* ── Shared loading/error utilities (used by featured news + events) ── */
.loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(49,47,147,0.15);
    border-top-color: #312f93;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

