/* Basic Styles */
:root {
    --color-primary: #0d47a1; /* Premium Blue requested */
    --color-secondary: #2e7d32; /* Premium Green requested */
    --color-accent: #f59e0b;
    --color-text: #0f172a;
    --color-text-muted: #475569;
    --color-background: #ffffff;
    --color-light-gray: #f8fafc;
    --color-glass: rgba(255, 255, 255, 0.85);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --section-padding: 120px;
    --border-radius-lg: 32px;
    --border-radius-md: 20px;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    margin: 0;
    line-height: 1.6;
    letter-spacing: -0.01em;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

p {
    margin: 0;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 5%; /* Fluid padding instead of fixed margins */
}

/* Reveal Animation Support */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    scroll-margin-top: 100px; /* Account for fixed header on jump links */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0; /* Reduced from 2.5rem */
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.header.scrolled {
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; /* Constrain header width */
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 70px; /* Increased from 50px */
    width: 70px; /* Increased from 50px */
    border-radius: 50%; /* Make it circular */
    object-fit: cover; /* Ensure the image covers the circle */
    background-color: #fff; /* Optional: Add a background color if the logo has transparency */
    padding: 5px; /* Optional: Add some padding around the logo */
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 55px; /* Adjusted for new size */
    width: 55px; /* Adjusted for new size */
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-text {
    color: var(--color-text);
    font-size: 1.5rem;
}

.header-nav {
    display: flex;
    gap: 3rem;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-smooth);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition-smooth);
}

.header-nav a:hover {
    color: #fff !important;
}

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

.header.scrolled .header-nav a {
    color: var(--color-text);
}

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

.header.scrolled .header-nav a::after {
    background-color: var(--color-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.header.scrolled .mobile-nav-toggle span {
    background-color: var(--color-text);
}

.mobile-nav-toggle.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    .hero-content {
        padding-top: 100px;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .mobile-nav-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.4s ease-in-out;
        z-index: 1050;
    }

    .header-nav.is-active {
        right: 0;
    }

    .header-nav a {
        color: var(--color-text) !important;
        font-size: 1.5rem;
    }

    .header-actions .btn-primary {
        display: none; /* Hide Join Us button on mobile to simplify header */
    }
}

/* Global Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-weight: 700;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    gap: 0.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #000; /* Fallback */
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.5s;
    padding-top: 80px; /* Account for fixed header */
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
    display: inline-block;
}

/* @keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: var(--color-secondary) }
} */

.hero-subtext {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #fff;
    max-width: 650px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(13, 71, 161, 0.2);
}

.btn-primary:hover {
    background-color: #0284c7;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(2, 132, 199, 0.1);
    color: var(--color-primary);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--color-text);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Programs Section */
.programs-section {
    padding: var(--section-padding) 0;
    background-color: #fff9db; /* Synced with Approach Section */
}

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

/* Cards Design */
.program-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.15);
}

.program-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
    background-color: #eee;
}

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

.program-card h3 {
    padding: 2.5rem 2.5rem 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.program-card p {
    padding: 0 2.5rem 2.5rem;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    flex-grow: 1;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
    background-color: var(--color-light-gray);
}

.blog-card h3 {
    padding: 1.5rem 1.5rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.blog-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    padding: 0 1.5rem 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

/* Featured Initiative Section */
.featured-initiative-section {
    background-color: var(--color-background);
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.featured-initiative-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 8rem;
    align-items: center;
}

.featured-initiative-visual {
    position: relative;
    z-index: 1;
}

.visual-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: visible;
}

.visual-container img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.15);
    display: block;
    transition: var(--transition-smooth);
}

.visual-container:hover img {
    transform: translateY(-5px);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-badge i {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.floating-badge span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.featured-initiative-visual::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(var(--color-primary) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.15;
    z-index: -1;
}

.featured-initiative-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 2rem;
}

.featured-initiative-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.initiative-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.highlight-icon {
    width: 54px;
    height: 54px;
    background-color: rgba(13, 71, 161, 0.08);
    color: var(--color-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.highlight-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.initiative-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-outline-alt {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline-alt:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Gallery Section */
.gallery-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-light-gray);
}

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

.gallery-item {
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background-color: var(--color-light-gray); /* Placeholder background */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background-color: var(--color-primary);
    color: #fff;
    text-align: center;
}

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

.impact-item {
    padding: 2rem;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.impact-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}

.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline-white {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--color-primary);
    transform: translateY(-3px);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
}

.cta-section .btn-secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cta-section .btn-secondary:hover {
    background-color: #fff;
    color: var(--color-text);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #fff;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}

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

.footer-about h3, .footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    position: relative;
}

.footer-about h3::after, .footer-links h3::after, .footer-contact h3::after, .footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition-smooth);
    transform: translateX(-10px);
}

.footer-links a:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
}

.footer-contact i {
    color: var(--color-secondary);
    margin-top: 5px;
}

.footer-contact p a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact p a:hover {
    color: var(--color-primary);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn-primary {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
}

.footer-social {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--color-secondary);
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Footer */
.footer {
    background-color: #0f172a;
    color: #fff;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 80px;
}

.footer-about h3, .footer-links h3, .footer-contact h3, .footer-newsletter h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-about h3::after, .footer-links h3::after, .footer-contact h3::after, .footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 12px;
}

.footer-contact i {
    color: var(--color-secondary);
    margin-top: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    color: #fff;
}

.footer-social {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--color-secondary);
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

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

/* About & Mission Section */
.about-section {
    padding: var(--section-padding) 0;
    background-color: #fff9db; /* Synced with Approach Section */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--color-text);
}

.about-content p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500; /* Better visibility on yellow */
}

.mission-box {
    background: linear-gradient(135deg, #5d4037 0%, #3e2723 100%); /* Synced with Vision Box */
    color: #fdfaf6;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(62, 39, 35, 0.2);
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/pinstriped-suit.png');
    opacity: 0.05;
    pointer-events: none;
}

.mission-box h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.mission-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.mission-list i {
    color: var(--color-accent); /* Golden accent for better visibility on brown */
    margin-top: 5px;
}

.mission-footer {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Programs Refinement */
.program-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin: 2.5rem 2.5rem 0;
}

.extra-learning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 5rem;
}

.learning-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: #fff;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.learning-icon {
    font-size: 2rem;
    color: var(--color-accent);
}

/* Approach Section */
.approach-section {
    padding: var(--section-padding) 0;
    background-color: #fff9db; /* Slightly more vibrant yellow shade */
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(13, 71, 161, 0.25);
    border: 4px solid #fff; /* Added white border for better contrast on yellow */
}

.step-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.step-item p {
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Vision Section */
.vision-section {
    padding: var(--section-padding) 0;
    background-color: #fff9db; /* Synced with Approach Section */
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.vision-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.vision-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.vision-list i {
    color: var(--color-accent);
    margin-top: 4px;
}

.vision-box {
    background: linear-gradient(135deg, #5d4037 0%, #3e2723 100%); /* Rich Brown Shade Sketch */
    color: #fdfaf6; /* Warm off-white for perfect visibility */
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    font-size: 1.4rem;
    line-height: 1.6;
    box-shadow: 0 30px 60px rgba(62, 39, 35, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.vision-box .section-badge,
.mission-box .section-badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/pinstriped-suit.png'); /* Subtle sketch texture */
    opacity: 0.05;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .about-grid, .vision-grid, .extra-learning-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .approach-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}
