:root {
    /* Primary Colors - Enhanced Contrast */
    --primary: #FF8C00;      /* Darker Saffron for better contrast */
    --primary-dark: #D17A00;
    --secondary: #0F7D0F;    /* Darker Green for better contrast */
    --secondary-dark: #0A5A0A;
    --accent: #000066;       /* Darker Navy Blue for better contrast */
    --accent-light: #1A237E;
    
    /* Neutral Colors - Higher Contrast */
    --white: #FFFFFF;
    --light: #F1F3F5;
    --light-gray: #C1C7CD;
    --gray: #3E4C59;         /* Darker gray for better contrast */
    --dark: #0F172A;         /* Darker dark color */
    --black: #000000;
    
    /* Utility */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 9999px;
}

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

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    color: #FFFFFF;
    line-height: 1.8;
    background-color: #000000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 2rem;
    line-height: 1.25;
}

h4 {
    font-size: 1.5rem;
    line-height: 1.3;
}

h5 {
    font-size: 1.25rem;
    line-height: 1.4;
}

h6 {
    font-size: 1.1rem;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.9;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

.section {
    padding: 4.5rem 0;
}

.section-title {
    text-align: center;
    margin: 0 0 1rem 0;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    position: relative;
    padding: 0 1rem 0.5rem;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.5;
    text-align: center;
    padding: 0 1.5rem;
}

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

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 153, 51, 0.3);
    z-index: -1;
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    min-width: 200px;
    height: 50px;
}

.btn-primary {
    background-color: #FF9933;
    color: white;
    border: 2px solid #FF9933;
}

.btn-primary:hover {
    background-color: #e68a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
    background-color: rgba(255, 153, 51, 0.1);
    transform: translateY(-2px);
    color: #FF9933;
}

/* Primary Button Styles */
.btn-primary {
    display: inline-block;
    background-color: #FF8C00; /* Saffron color */
    color: #000000; /* Black text */
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid #FF8C00;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: #E67E00; /* Slightly darker on hover */
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: #000000;
    border-color: #E67E00;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background-color: var(--primary);
    color: white !important;
    font-weight: 500;
    margin-left: 1rem;
}

.btn-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: white !important;
}

.btn-newsletter {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-buttons {
    display: flex;            /* Enables Flexbox */
    flex-direction: column;   /* Stacks children vertically */
    align-items: center;      /* Centers buttons horizontally */
    gap: 15px;                /* Adds spacing between the buttons */
    margin-top: 30px;         /* Spacing from the subtitle */
}

/* Optional: Make buttons the same width for a cleaner look */
.hero-buttons .btn {
    min-width: 200px;
    text-align: center;
}

/* Header Styles */
.header {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

/* Navigation */
.nav {
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem 1rem;
    overflow: hidden;
    background-color: #000000; /* Fallback color */
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
}

.hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.white-text {
    color: #FFFFFF;
}

.saffron-text {
    color: #FF9933;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin: 2rem auto 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    padding: 0 1rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.hero-wave .shape-fill {
    fill: var(--light);
}

/* About Section */
.about-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.pillar-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

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

.pillar-card:hover::before {
    height: 8px;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(19, 136, 8, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #FFFFFF;
    transform: rotateY(180deg);
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.pillar-card p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 0;
}

/* What We Do Section */
.what-we-do {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.what-we-do .section-title {
    color: #000000 !important;
}

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

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

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

.impact-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(19, 136, 8, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.impact-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #FFFFFF;
}

.impact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.impact-card p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 0;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    transition: var(--transition);
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

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

.gallery-caption {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    color: #FFFFFF;
    text-align: center;
    z-index: 2;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    bottom: 0;
}

.gallery-caption h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.gallery-caption p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Communities Section */
.communities-section {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    align-items: center;
}

.partner-logo {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%) contrast(0.5);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0) contrast(1);
    opacity: 1;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    color: #FFFFFF;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.cta-box > * {
    position: relative;
    z-index: 2;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn {
    background-color: #FFFFFF;
    color: var(--primary);
    font-weight: 600;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(19, 136, 8, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-method:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #FFFFFF;
    transform: translateY(-3px);
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--accent);
}

.contact-method a {
    color: #000000;
    font-weight: 500;
    transition: var(--transition);
}

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

.contact-form {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

/* Footer */
.footer {
    background-color: #e6f2ff; /* Light blue background */
    color: #000000; /* Black text */
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.footer-brand {
    max-width: 350px;
}

.footer-brand .logo-link {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand .logo {
    height: 40px;
    width: auto;
    margin-right: 0.75rem;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand p {
    color: #000000; /* Black text */
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    color: #000000;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background-color: #1a56a7;
    transform: translateY(-3px);
    color: #FFFFFF;
    border-color: #1a56a7;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-links h4,
.newsletter h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #000000;
    position: relative;
    padding-bottom: 0.75rem;
    font-weight: 700;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links ul li a {
    color: #000000; /* Black text */
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: #1a56a7;
    padding-left: 8px;
    text-decoration: underline;
}

.footer-newsletter p {
    color: #000000; /* Black text */
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    max-width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    outline: none;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.footer-bottom p {
    color: #000000;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        text-align: center;
        margin: 0 auto;
    }
    
    .contact-methods {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        margin-top: 2rem;
    }
    
    .footer-newsletter {
        margin-top: 2rem;
    }
    
    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        color: var(--dark);
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .impact-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal span {
        display: none;
    }
}

/* AOS Animation Delay Classes */
[data-aos-delay='100'] {
    transition-delay: 0.1s;
}

[data-aos-delay='200'] {
    transition-delay: 0.2s;
}

[data-aos-delay='300'] {
    transition-delay: 0.3s;
}

[data-aos-delay='400'] {
    transition-delay: 0.4s;
}

[data-aos-delay='500'] {
    transition-delay: 0.5s;
}

/* Print Styles */
@media print {
    .nav,
    .footer,
    #back-to-top,
    .btn {
        display: none !important;
    }
    
    body {
        padding: 1cm;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        text-decoration: underline;
    }
    
    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
    
    .hero {
        color: #000;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .pillar-card,
    .impact-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #eee;
        margin-bottom: 1rem;
    }
}

/* Nav */
nav { 
    background: rgba(255, 255, 255, 0.98); 
    padding: 15px 5%; 
    display: flex; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container { 
    width: 100%; 
    max-width: 1400px;
    margin: 0 auto;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo { 
    height: 60px;
    width: auto;
    margin-right: 12px;
}

.logo-text {
    color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

nav ul { 
    list-style: none; 
    display: flex; 
    align-items: center;
}

nav ul li a { 
    margin-left: 35px; 
    text-decoration: none; 
    color: #000000; 
    font-weight: 600; 
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

nav ul li a:hover { 
    color: var(--accent-orange); 
}

nav ul li a:hover::after {
    width: 100%;
}

/* Mobile menu button */
.menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn__burger {
    width: 30px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.menu-btn__burger::before {
    transform: translateY(-8px);
}

.menu-btn__burger::after {
    transform: translateY(8px);
}

/* Hero */
.hero { 
    background: linear-gradient(rgba(11, 28, 140, 0.85), rgba(11, 28, 140, 0.9)), 
                url('https://images.unsplash.com/photo-1532996122724-e3c354a0b15b?q=80&w=2070&auto=format&fit=crop') center/cover; 
    height: 85vh; 
    min-height: 90vh;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 3.5rem; 
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.btn-primary { 
    display: inline-block; 
    padding: 15px 40px; 
    background: var(--accent-green); 
    color: #FFFFFF; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: 600; 
    margin-top: 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255,255,255,0.2);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Sections */
section { 
    padding: 100px 5%; 
    position: relative;
}

.section-title { 
    text-align: center; 
    font-size: 2.8rem; 
    margin-bottom: 60px; 
    color: var(--primary-blue); 
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

/* Pillars */
.pillars-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card { 
    background: white; 
    padding: 50px 25px; 
    border-radius: 15px; 
    text-align: center; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.pillar-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.pillar-card .icon { 
    font-size: 2.5rem; 
    font-weight: 800; 
    color: var(--primary-blue); 
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(75, 175, 71, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pillar-card:hover .icon {
    background: var(--primary-blue);
    color: #FFFFFF;
    transform: rotateY(180deg);
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.pillar-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Impact */
.impact-section { 
    background: linear-gradient(135deg, var(--primary-blue), #1a3ab8);
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.impact-section .section-title { 
    color: #000000;
    position: relative;
    z-index: 2;
}

.stats-grid { 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    text-align: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-box { 
    padding: 0 30px;
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background: rgba(255,255,255,0.2);
}

.stat-box span { 
    font-size: 4rem; 
    display: block; 
    font-weight: 800; 
    color: #FFFFFF;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    display: inline-block;
}

.stat-box span::after {
    content: '+';
    color: var(--accent-orange);
    margin-left: 5px;
}

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Animation for counters */
@keyframes countUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.counter.animate {
    animation: countUp 0.6s ease-out forwards;
}

/* Contact */
.contact-section {
    background: #f9f9f9;
    position: relative;
}

.contact-container { 
    max-width: 700px; 
    margin: 0 auto; 
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-container h2 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-container p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

form { 
    margin-top: 30px; 
    display: flex; 
    flex-direction: column;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
}

input, textarea { 
    width: 100%;
    padding: 15px 20px; 
    margin-bottom: 0; 
    border: 1px solid #e0e0e0; 
    border-radius: 8px; 
    font-family: inherit; 
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(11, 28, 140, 0.1);
    background: white;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit { 
    padding: 16px 30px; 
    background: var(--primary-blue); 
    color: #FFFFFF; 
    border: none; 
    border-radius: 50px; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-orange);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-submit:hover::before {
    width: 100%;
}

.btn-submit:hover { 
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

footer { 
    text-align: center; 
    padding: 30px 20px; 
    background: #111; 
    color: rgba(255,255,255,0.7); 
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-green));
}

footer a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

footer a:hover {
    color: var(--accent-orange);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-box {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 30px;
    }
    
    .stat-box:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        margin: 0;
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stat-box {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    form {
        padding: 25px 20px;
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

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

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

.section-padding {
    padding: 100px 0;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
*:focus {
    outline: 3px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}