/* ============================================
   CSS Variables & Base Styles
   ============================================ */

:root {
    /* Colors - Harvard Crimson Theme */
    --primary: #a50000;
    --primary-light: #c93b3b;
    --primary-dark: #800000;
    --foreground: #1a1a1a;
    --background: #ffffff;
    --muted: #666666;
    --muted-light: #999999;
    --border: #e5e5e5;
    --accent: #fff5f5;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Exo', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 1rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 10px 40px -10px rgba(165, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-primary {
    color: var(--primary);
}

/* ============================================
   Header Styles
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-primary {
    color: var(--primary);
}

.logo-year {
    color: var(--foreground);
    margin-left: 0.25rem;
}

.nav {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-apply {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* ============================================
   Hero Section Styles
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: var(--spacing-2xl);
    overflow: hidden;
    background: var(--background);
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        var(--primary) 2px,
        var(--primary) 4px
    );
    background-size: 100% 40px;
}

.hero-glow {
    position: absolute;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    background: rgba(165, 0, 0, 0.1);
    filter: blur(60px);
    animation: glow-pulse 3s ease-in-out infinite;
}

.hero-glow-1 {
    top: 10%;
    left: 10%;
}

.hero-glow-2 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--foreground);
    color: var(--background);
    border-radius: 9999px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
    animation: fade-in 0.6s ease-out;
}

.hero-badge-icon {
    font-size: 1.25rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size:  6rem;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: var(--spacing-lg);
    animation: fade-in 0.8s ease-out;
}

.hero-title-line1 {
    display: block;
    color: var(--foreground);
}

.hero-title-line2 {
    display: block;
    color: var(--primary);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.7;
    animation: fade-in 1s ease-out;
}

.hero-description strong {
    color: var(--foreground);
    font-weight: 700;
}

.hero-challenges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-lg);
    animation: fade-in 1.2s ease-out;
}

.challenge-badge {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.875rem;
    border: 2px solid;
    box-shadow: var(--shadow-md);
}

.challenge-easy,
.challenge-medium {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.challenge-hard {
    background: var(--foreground);
    color: white;
    border-color: var(--foreground);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    animation: fade-in 1.4s ease-out;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background: rgba(26, 26, 26, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.btn-outline:hover {
    background: rgba(165, 0, 0, 0.05);
    color: var(--primary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.leaderboard-stats {
    background: #f5f5f5;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    animation: fade-in 1.6s ease-out;
}

.leaderboard-stats-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.leaderboard-header-icon {
    width: 20px;
    height: 20px;
}

.leaderboard-stats-title {
   text-align: left;
    font-weight: 700;
    font-size: 1rem;
    color: var(--foreground);
    text-transform: uppercase;
    flex: 1;
}

.leaderboard-stats-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.leaderboard-stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(165, 0, 0, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.stat-icon-img {
    width: 24px;
    height: 24px;
}

.stat-content {
    flex: 1;
    text-align: left;
}

.stat-value {
    font-family: 'Courier New', monospace;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--muted);
    text-transform: uppercase;
}

.hero-image-container {
    position: relative;
    animation: fade-in 1.8s ease-out;
}

.terminal-window {
    background: var(--foreground);
    border-radius: var(--radius-xl);
    padding: 4px;
    box-shadow: var(--shadow-xl);
}

.terminal-header {
    background: rgba(26, 26, 26, 0.9);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-dots {
    display: flex;
    gap: 0.375rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ef4444;
}

.dot-yellow {
    background: #f59e0b;
}

.dot-green {
    background: #10b981;
}

.terminal-title {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.hero-image {
    width: 100%;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    display: block;
}

.achievement-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.achievement-icon {
    font-size: 1.25rem;
}

.achievement-label {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    opacity: 0.9;
}

.achievement-value {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    font-weight: 700;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Code. Create. Collaborate. Section
   ============================================ */

.code-create-collaborate {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(to bottom, white, var(--accent), white);
    position: relative;
    overflow: hidden;
}

.code-create-collaborate::before,
.code-create-collaborate::after {
    content: '';
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    background: rgba(165, 0, 0, 0.05);
    filter: blur(80px);
}

.code-create-collaborate::before {
    top: 5rem;
    right: 0;
}

.code-create-collaborate::after {
    bottom: 5rem;
    left: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-heading);
    font-size:  3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

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

.section-content p {
    font-size: 1.2rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.highlight-text {
    color: var(--foreground) !important;
    font-weight: 600;
    font-size: 1.25rem !important;
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    border: 2px solid rgba(165, 0, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.benefit-icon {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: rgba(165, 0, 0, 0.1);
    border-radius: var(--radius-lg);
}

.benefit-icon-img {
    width: 32px;
    height: 32px;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.benefit-description {
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.7;
    font-size: 1.125rem;
    text-align: left;
}

/* ============================================
   Program Details Section
   ============================================ */

.program-details {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: white;
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.program-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.program-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
}

.program-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex: 1;
}

.program-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: var(--spacing-sm);
}

.program-icon-img {
    width: 20px;
    height: 20px;
}

.program-value {
    color: var(--foreground);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

/* ============================================
   Skills Section
   ============================================ */

.skills {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(26, 26, 26, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: var(--spacing-xl) auto 0;
}

.skill-card {
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.skill-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.skill-card-red {
    background: var(--primary);
    color: white;
}

.skill-card-white {
    background: white;
    color: var(--foreground);
    border: 2px solid var(--border);
}

.skill-card-full {
    grid-column: 1 / -1;
}

.skill-card-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
}

.skill-list {
    list-style: none;
    padding: 0;
}

.skill-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    line-height: 1.6;
}

.skill-list li::before {
    content: '•';
  
    flex-shrink: 0;
    margin-right: var(--spacing-sm);
    display: inline-block;
}

.skills-disclaimer {
    text-align: center;
    font-style: italic;
    color: var(--muted);
    font-size: 0.875rem;
    margin-top: var(--spacing-xl);
}

/* ============================================
   Mentors Section
   ============================================ */

.mentors {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(to bottom, white, var(--accent), white);
}

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

.mentor-card {
    background: white;
    border: 1px solid var(--primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.mentor-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.mentor-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.mentor-content {
    padding: var(--spacing-lg);
}

.mentor-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.mentor-academic {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: var(--spacing-md);
}

.mentor-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.mentor-tag-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.mentor-bio {
    font-size: 1rem;
    color: var(--foreground);
    line-height: 1.7;
}

.mentors-footer {
    margin-top: var(--spacing-2xl);
    text-align: center;
}

.mentors-footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-lg);
}

.mentors-footer-text {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    border: 1px solid rgba(165, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(165, 0, 0, 0.02);
}

.mentors-footer-text p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Schedule Section
   ============================================ */

.schedule {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.schedule-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.schedule-day {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-lg);
}

.schedule-day:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.schedule-day-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.schedule-day-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.schedule-icon-img {
    width: 100%;
    height: 100%;
}

.schedule-day-number {
    font-size: 1rem;
    font-weight: 400;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.schedule-day-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    text-transform: uppercase;
}

.schedule-activities {
    list-style: none;
    padding: 0;
}

.schedule-activities li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: var(--foreground);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    font-size: 1rem;
}

.schedule-activities li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.about-content p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 192, 203, 0.3);
    border-radius: 50%;
}

.highlight-icon-img {
    width: 32px;
    height: 32px;
}

.highlight-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-xs);
}

.highlight-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--muted);
    margin: 0;
}

/* ============================================
   CTA Section
   ============================================ */

.cta {
    padding: var(--spacing-2xl) 0;
    background: rgba(255, 245, 245, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


.cta-title {
    font-family: var(--font-heading);
    font-size:  3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.cta-description {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
}

.cta-description strong {
    color: var(--foreground);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.cta-btn-primary {
    background: var(--primary-dark) !important;
    color: white !important;
    border-color: var(--primary-dark) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn-primary:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.cta-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon-right {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-icon-left {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.cta-stat-card {
    padding: var(--spacing-lg);
    background: white;
    border: 1px solid rgba(165, 0, 0, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
    position: relative;
    overflow: visible;
}

.cta-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #800000 !important;
    margin-bottom: 0.5rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.2;
    font-family: var(--font-primary);
    white-space: normal;
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.cta-stat-value span {
    display: inline !important;
    color: #800000 !important;
    visibility: visible !important;
}

.cta-stat-label {
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 400;
    display: block;
}

.cta-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-xl);
}

.cta-quote-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cta-quote-text {
    font-style: italic;
    color: var(--muted);
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   Footer Styles
   ============================================ */

.footer {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--border);
    background: white;
}

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

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer-text {
    color: var(--muted);
    margin-bottom: var(--spacing-md);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted);
}

/* ============================================
   Modal Styles
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2rem;
    font-weight: 300;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--foreground);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mentors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .program-grid,
    .mentors-grid,
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-card-full {
        grid-column: 1;
    }
    
    .leaderboard-stats-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}


.program-stats-full {
  
  padding: 50px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.program-stats-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

.program-stat-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 50px 20px;
  transition: all 0.3s ease;
}

.program-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.program-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #b30000;
  line-height: 1.1;
}

.program-stat-value span {
  font-weight: 700;
}

.program-stat-label {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}

/* Responsive design */
@media (max-width: 992px) {
  .program-stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .program-stats-wrapper {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .program-stat-card {
    padding: 40px 20px;
  }
}

.cta-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.btn-apply {
  background-color: #b30000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-apply:hover {
  background-color: #8a0000;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-center {
    flex-direction: column;
    gap: 15px;
  }

  .program-card {
    padding: 20px;
  }
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.btn-apply {
  background-color: #b30000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 180px;
  text-decoration: none;
}

.btn-apply:hover {
  background-color: #8a0000;
  transform: translateY(-2px);
}

/* ✅ Hide on Mobile */
@media (max-width: 768px) {
  .cta-buttons {
    display: none;
  }
}
