/* Reset and Base Styles */
:root {
    /* Logo Colors - Brand Palette */
    --primary-dark-blue: #1e3a5f;
    --primary-red: #dc2626;
    --primary-teal: #264653;
    --accent-light-blue: #2c5f7f;
    
    /* Supporting Colors */
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2d3748;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a202c;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.01em;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark-blue);
    border: 1px solid var(--primary-dark-blue);
}

.btn-secondary:hover {
    background: var(--primary-dark-blue);
    color: white;
    border-color: var(--primary-dark-blue);
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header - Mobile First */
.header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    top: 10px;
    left: 10px;
    right: 10px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    min-height: 70px;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    transform: translateY(-1px);
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 300px;
    min-width: 150px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    object-fit: contain;
    display: block;
}

.nav-logo a:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Scrolled header text colors */
.header.scrolled .nav-menu a {
    color: var(--primary-dark-blue);
}

.header.scrolled .nav-menu a:hover {
    color: var(--primary-red);
}

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

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

.nav-menu a[aria-current="page"] {
    color: white;
    font-weight: 600;
}

.nav-menu a[aria-current="page"]::after {
    width: 100%;
}

/* Scrolled header underline */
.header.scrolled .nav-menu a::after {
    background: var(--primary-red);
}

.header.scrolled .nav-menu a[aria-current="page"] {
    color: var(--primary-red);
}

.dropdown > a::after {
    content: ' ▼';
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #4a5568;
    border-bottom: 1px solid #f7fafc;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f7fafc;
    color: #1a202c;
}

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

.nav-cta {
    display: none;
    gap: 1rem;
    align-items: center;
}

.nav-cta .btn-primary {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    background: var(--primary-red);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.nav-cta .btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.nav-cta .btn-secondary {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid white;
    background: transparent;
    color: white;
    transition: all 0.3s ease;
}

.nav-cta .btn-secondary:hover {
    background: white;
    color: var(--primary-dark-blue);
}

/* Scrolled header CTA buttons */
.header.scrolled .nav-cta .btn-secondary {
    border: 1px solid var(--primary-dark-blue);
    color: var(--primary-dark-blue);
}

.header.scrolled .nav-cta .btn-secondary:hover {
    background: var(--primary-dark-blue);
    color: white;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Scrolled hamburger color */
.header.scrolled .hamburger span {
    background: var(--primary-dark-blue);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 90px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    z-index: 999;
}

.nav-menu.active li {
    margin: 0.5rem 0;
}

.nav-menu.active a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Mobile CTA Buttons */
.nav-cta.mobile {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
}

.nav-cta.mobile .btn-primary,
.nav-cta.mobile .btn-secondary {
    flex: 1;
    max-width: 150px;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Video optimization for mobile */
@media (max-width: 768px) {
    .hero-video {
        /* Reduce video quality on mobile for better performance */
        filter: brightness(0.6);
    }
}

/* Pause video on mobile to save data */
@media (max-width: 768px) {
    .hero-video {
        /* Video will be paused by default on mobile */
        pointer-events: none;
    }
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    color: white;
    text-align: left;
    padding: 2rem 0;
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--primary-red);
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.hero-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-stars i {
    margin-right: 2px;
}

.rating-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.rating-source {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.rating-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.rating-link:hover {
    color: white;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    color: #1a202c;
    margin-bottom: 2rem;
}

.about-text p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Learning Pathways */
.learning-pathways {
    padding: 100px 0;
    background: #f7fafc;
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pathway-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.pathway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d3748, #4a5568);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.pathway-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.pathway-icon {
    width: 60px;
    height: 60px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #4a5568;
    transition: all 0.3s ease;
}

.pathway-card:hover .pathway-icon {
    background: #2d3748;
    color: white;
    border-color: #2d3748;
}

.pathway-card h3 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.pathway-age {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.pathway-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pathway-link {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pathway-link:hover {
    color: #1a202c;
}

.pathway-link i {
    transition: transform 0.2s ease;
}

.pathway-link:hover i {
    transform: translateX(3px);
}

/* Statistics */
.statistics {
    padding: 80px 0;
    background: white;
    color: #1a202c;
}

.statistics h2 {
    color: #1a202c;
    margin-bottom: 3rem;
}

.statistics .container {
    max-width: 1600px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    width: 100%;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: #edf2f7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

/* Community */
.community {
    padding: 100px 0;
    background: white;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.community-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.community-icon {
    width: 60px;
    height: 60px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #4a5568;
    transition: all 0.3s ease;
}

.community-card:hover .community-icon {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.community-card h3 {
    color: #1a202c;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.community-card p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Values */
.values {
    padding: 100px 0;
    background: #f7fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #4a5568;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #f59e0b;
    color: white;
    border-color: #f59e0b;
}

.value-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.3s ease;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #2d3748;
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateX(20px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info h4 {
    color: #2d3748;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info span {
    color: #4a5568;
    font-size: 0.85rem;
}

.testimonial-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testimonial-prev,
.testimonial-next {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background: #2d3748;
}

.dot:hover {
    background: #4a5568;
}

/* Events */
.events {
    padding: 100px 0;
    background: #f7fafc;
}

.events-subtitle {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 1.5rem;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.event-date {
    background: #f7fafc;
    color: #2d3748;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
    height: fit-content;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #4a5568;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.event-content h3 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.event-content p {
    color: #4a5568;
    margin-bottom: 1rem;
    text-align: left;
    font-size: 0.9rem;
}

.event-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.event-meta span {
    background: #f7fafc;
    color: #4a5568;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.events-cta {
    text-align: center;
}

/* STEAM */
.steam {
    padding: 80px 0;
    background: var(--primary-teal);
    color: white;
    text-align: center;
}

.steam h2 {
    color: white;
    margin-bottom: 2rem;
}

.steam p {
    font-size: 1rem;
    color: #a0aec0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA */
.cta {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.cta h2 {
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.cta p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary-dark-blue);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #e2e8f0;
}

.footer-section p {
    color: #a0aec0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #4a5568;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #718096;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: #718096;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #a0aec0;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #1a202c;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a5568;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f7fafc;
    color: #1a202c;
}

.modal-body {
    padding: 2rem;
}

/* Forms */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d3748;
    box-shadow: 0 0 0 3px rgba(45, 55, 72, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53e3e;
}

.error-message {
    color: #e53e3e;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #2d3748;
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.form-group small {
    color: #4a5568;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.success-message.active .success-content {
    transform: scale(1);
}

.success-content i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.success-content h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-content p {
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .header {
        top: 15px;
        left: 15px;
        right: 15px;
        border-radius: 16px;
    }
    
    .header.scrolled {
        top: 8px;
        left: 8px;
        right: 8px;
    }
    
    .nav-menu {
        display: flex;
        position: static;
        background: none;
        box-shadow: none;
        border: none;
        padding: 0;
        flex-direction: row;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 8px 0;
        font-size: 0.9rem;
        text-align: left;
        border-bottom: none;
    }
    
    .nav-menu a::after {
        display: block;
    }
    
    .nav-cta {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
    
    .logo-img {
        height: 60px;
        max-width: 250px;
        min-width: 150px;
    }
    
    .nav-container {
        height: 80px;
        min-height: 80px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .header {
        top: 20px;
        left: 20px;
        right: 20px;
        border-radius: 20px;
    }
    
    .header.scrolled {
        top: 10px;
        left: 10px;
        right: 10px;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .nav-cta .btn-primary,
    .nav-cta .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 70px;
        max-width: 300px;
        min-width: 180px;
    }
    
    .nav-container {
        height: 90px;
        min-height: 90px;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
        height: 120px;
        min-height: 120px;
        grid-template-columns: 1fr 2fr 1fr;
        gap: 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
    }
    
    .nav-cta .btn-primary,
    .nav-cta .btn-secondary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .logo-img {
        height: 112px;
        max-width: 375px;
        min-width: 225px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .pathways-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        top: 10px;
        left: 10px;
        right: 10px;
        border-radius: 12px;
    }
    
    .nav-container {
        height: 105px;
        min-height: 105px;
        padding: 0 16px;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-logo {
        justify-self: center;
        padding-left: 0;
    }
    
    .nav-cta {
        justify-self: center;
        padding-right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        width: calc(100% - 20px);
        left: 10px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        padding: 2rem 0;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 10px;
    }
    
    .logo-img {
        height: 97px;
        max-width: 300px;
        min-width: 210px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        border-top: 1px solid #e2e8f0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid #f7fafc;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    

    .dropdown-menu {
        position: static;
        background: rgba(247, 250, 252, 0.8);
        backdrop-filter: blur(10px);
        box-shadow: none;
        border: 1px solid rgba(226, 232, 240, 0.3);
        border-radius: 8px;
        margin: 0.5rem 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
    }

    .dropdown-menu a {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    }
    
    .hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .pathways-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        align-self: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .pathway-card,
    .community-card,
    .value-card,
    .testimonial-card,
    .event-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-controls {
        display: none;
    }
    
    .modal-content {
        margin: 5px;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #2d3748;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .btn-secondary {
        border: 2px solid #000;
        color: #000;
    }
    
    .pathway-card,
    .community-card,
    .value-card,
    .testimonial-card,
    .event-card {
        border: 2px solid #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-bg-image {
        animation: none;
    }
}

/* Page Header Styles */
.page-header {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Page Styles */
.about-overview {
    padding: 100px 0;
    background: white;
}

.about-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 100px 0;
    background: #f7fafc;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #4a5568;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background: #2d3748;
    color: white;
    border-color: #2d3748;
}

.head-message {
    padding: 100px 0;
    background: white;
}

.head-message-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.head-photo {
    text-align: center;
}

.head-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.head-quote {
    margin-bottom: 2rem;
}

.head-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    padding: 1.5rem;
    background: #f7fafc;
    border-left: 4px solid #2d3748;
    border-radius: 8px;
}

.head-info h3 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.head-role {
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 1rem;
}

.head-bio {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.full-message {
    padding: 80px 0;
    background: #f7fafc;
}

.full-message-content {
    max-width: 800px;
    margin: 0 auto;
}

.full-message-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.accreditations {
    padding: 100px 0;
    background: white;
}

.accreditations-subtitle {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.accreditation-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.accreditation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.accreditation-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.accreditation-item h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.accreditation-item p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-stats {
    padding: 80px 0;
    background: #2d3748;
    color: white;
}

.about-stats h2 {
    color: white;
    margin-bottom: 3rem;
}

/* Academics Page Styles */
.academic-overview {
    padding: 100px 0;
    background: white;
}

.academic-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.academic-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.highlight-item i {
    color: #2d3748;
    font-size: 1.2rem;
}

.highlight-item span {
    color: #1a202c;
    font-weight: 500;
    font-size: 0.9rem;
}

.program-overview {
    padding: 100px 0;
    background: #f7fafc;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.program-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.program-card:hover .program-img {
    transform: scale(1.05);
}

.program-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(45, 55, 72, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.program-content {
    padding: 1.5rem;
}

.program-content h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.program-content p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.program-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-features li {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.program-link {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.program-link:hover {
    color: #1a202c;
}

.program-link i {
    transition: transform 0.2s ease;
}

.program-link:hover i {
    transform: translateX(3px);
}

.curriculum-highlights {
    padding: 100px 0;
    background: white;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.curriculum-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.curriculum-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.curriculum-icon {
    width: 60px;
    height: 60px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #4a5568;
    transition: all 0.3s ease;
}

.curriculum-item:hover .curriculum-icon {
    background: #2d3748;
    color: white;
    border-color: #2d3748;
}

.curriculum-item h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.curriculum-item p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.assessment-progress {
    padding: 100px 0;
    background: #f7fafc;
}

.assessment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.assessment-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.assessment-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-item i {
    color: #2d3748;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-item p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.university-prep {
    padding: 100px 0;
    background: white;
}

.university-subtitle {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.university-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.university-stat {
    text-align: center;
    padding: 2rem 1rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.university-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: block;
}

.university-stat .stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.university-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.university-feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.university-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.university-feature h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.university-feature p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header {
        min-height: 50vh;
    }
    
    .about-overview-content,
    .academic-overview-content,
    .assessment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .head-message-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .head-img {
        width: 200px;
        height: 200px;
    }
    
    .academic-highlights {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .university-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .university-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .university-stats {
        grid-template-columns: 1fr;
    }
    
    .university-stat .stat-number {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-buttons,
    .cta,
    .modal {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-content {
        color: #000;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}