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

:root {
    --primary-blue: #0066cc;
    --dark-blue: #003d7a;
    --light-blue: #3399ff;
    --accent-cyan: #00d9ff;
    --dark-bg: #0a1628;
    --darker-bg: #050d1a;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #6c757d;
    --border-color: #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
}

.ai-accent {
    color: var(--accent-cyan);
    margin-left: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-links .cta-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    color: white !important;
}

.nav-links .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-light);
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--light-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #a8b2d1;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: rgba(0, 102, 204, 0.1);
    border-color: var(--light-blue);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 1.4rem;
    color: var(--accent-cyan);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.stat p {
    color: #a8b2d1;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Value Proposition Section */
.value-prop {
    padding: 60px 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
}

.value-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Programs Section */
.programs {
    padding: 60px 0;
    background: white;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.program-card {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.program-card.featured {
    background: linear-gradient(135deg, #f0f8ff, #e6f2ff);
    border: 2px solid var(--primary-blue);
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.program-header h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
}

.badge {
    background: var(--primary-blue);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.program-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.program-features li {
    padding: 0.7rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.program-features li:last-child {
    border-bottom: none;
}

/* Leadership Section */
.leadership {
    padding: 60px 0;
    background: var(--light-bg);
}

.leader-card {
    display: flex;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 3rem auto;
    max-width: 900px;
    align-items: center;
}

.leader-image {
    flex-shrink: 0;
}

.placeholder-avatar {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
}

.leader-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.leader-info h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.leader-title {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.leader-companies {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.company-badge {
    background: var(--dark-bg);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.leader-bio {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.leadership-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 12px;
}

.leadership-cta h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.leadership-cta p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Mentors Section */
.mentors {
    padding: 60px 0 40px;
    background: white;
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mentor-card {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mentor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
}

.mentor-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.mentor-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.mentor-role {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mentor-experience {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background: var(--light-bg);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.partner-card {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
}

.partner-card h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.partner-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.partner-card ul {
    list-style: none;
}

.partner-card ul li {
    padding: 0.7rem 0;
    color: var(--text-dark);
    padding-left: 1.5rem;
    position: relative;
}

.partner-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.partner-benefits {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f8ff, #e6f2ff);
    border-radius: 16px;
}

.partner-benefits h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 1.5rem;
}

.benefit h4 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 0.8rem;
}

.benefit p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: white;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 0.8rem;
}

.step p {
    color: var(--text-gray);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    color: var(--text-light);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #a8b2d1;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.footer-section p {
    color: #a8b2d1;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #a8b2d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a8b2d1;
}

.footer-bottom .disclaimer {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #6c8299;
    opacity: 0.8;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-content h2 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.close {
    color: var(--text-gray);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--dark-blue);
}

.modal-content form p {
    margin-bottom: 1.5rem;
}

.modal-content form label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-content form input,
.modal-content form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.modal-content form input:focus,
.modal-content form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.modal-content form textarea {
    min-height: 100px;
}

.modal-content form button {
    width: 100%;
    cursor: pointer;
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .program-cards,
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .leader-card {
        flex-direction: column;
        text-align: center;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

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

    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .logo h2 {
        font-size: 1.5rem;
    }

    .stat h3 {
        font-size: 1.2rem;
    }

    .stat p {
        font-size: 0.9rem;
    }
}
