/* Global Styles */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #3b82f6;
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .active-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
}

.nav-links .active-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.hero-text .highlight {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: #eff6ff;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

/* Mission Section */
.mission {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.mission h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mission p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

/* Objectives Section */
.objectives {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
    /* very subtle shadow */
    transition: transform 0.3s;
    border: 1px solid #f1f5f9;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.icon-box {
    background-color: #eff6ff;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Leadership Section */
.leadership {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.leader-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.role-highlight {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.leader-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.leader-card .designation {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.leader-card .message {
    color: var(--text-main);
    line-height: 1.7;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* Stats Section */
.stats {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    opacity: 0.9;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Main Footer */
.main-footer {
    background-color: #020617;
    /* Dark slate/black */
    color: #cbd5e1;
    /* Light gray text */
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}

.brand-col p {
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.links-col ul li {
    margin-bottom: 0.75rem;
}

.links-col a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-col p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-bottom {
    background-color: #020617;
    border-top: 1px solid #1e293b;
    padding: 2rem 0;
    text-align: center;
    margin-top: 0;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* simple mobile hide for now */
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* About Page Specifics */
.page-hero {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.vision-mission {
    padding: 5rem 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vm-card {
    background-color: #f0f9ff;
    /* Light blue tint */
    padding: 3rem;
    border-radius: 1rem;
}

.vm-card h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vm-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.detailed-objectives {
    padding: 2rem 0 5rem;
}

.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.obj-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
    border: 1px solid #e2e8f0;
}

.obj-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-main);
}

.check-list li i {
    color: #16a34a;
    /* Green checkmark */
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }
}

/* Core Values Section */
.core-values {
    background-color: var(--primary);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.value-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 250px;
}

/* Programs Page Styles */
.programs-intro {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--white);
}

.programs-intro h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.programs-intro p {
    font-size: 1.125rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.8;
}

.programs-list {
    padding-bottom: 5rem;
}

.program-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
}

.program-row.reverse {
    flex-direction: row-reverse;
}

.program-visual {
    flex: 1;
    display: flex;
}

.program-card-blue {
    background-color: var(--secondary);
    /* Using secondary for vibrant blue */
    color: var(--white);
    padding: 4rem 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 350px;
}

.program-card-blue i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.program-card-blue h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.program-content {
    flex: 1.5;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-content .description {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-block h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 1rem;
}

.feature-list li i {
    font-size: 0.4rem;
    color: var(--primary);
}

@media (max-width: 992px) {
    .program-row {
        flex-direction: column;
    }

    .program-row.reverse {
        flex-direction: column;
    }

    .program-card-blue {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .program-content {
        padding: 2rem;
    }
}

/* Impact Section */
.impact-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.impact-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.impact-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.impact-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.impact-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.impact-stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Program CTA */
.program-cta {
    background-color: var(--primary);
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
}

.program-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.program-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-image {
        order: -1;
    }
}

/* Contact Page Styles */
.contact-hero {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 6rem 0 10rem;
    /* Extra padding bottom for overlap effect */
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-info {
    margin-top: -5rem;
    /* Negative margin to pull up into hero */
    padding-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid #f1f5f9;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: #eff6ff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-card .sub-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-form-section {
    padding: 2rem 0 5rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: outline 0.3s, border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary);
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.partnership-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.partnership-cta h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.partnership-cta p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}