/* Global Variables */
:root {
    --primary-green: #1B5E20;
    --light-green: #4CAF50;
    --accent-gold: #D4AF37;
    --dark-gold: #B8960C;
    --bg-light: #F1F8F4;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --border-color: #E0E0E0;
    --shadow: 0 4px 20px rgba(27, 94, 32, 0.1);
    --shadow-lg: 0 10px 40px rgba(27, 94, 32, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: var(--bg-white);
    padding: 5px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-gray);
    cursor: pointer;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--primary-green);
    color: white;
}

.lang-btn:hover {
    background: var(--light-green);
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 999;
    padding: 15px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.brand-text h3 {
    font-size: 18px;
    color: var(--primary-green);
    font-weight: 700;
}

.brand-text .tagline {
    font-size: 12px;
    color: var(--accent-gold);
    font-weight: 500;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

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

.btn-donate {
    background: linear-gradient(135deg, var(--accent-gold), var(--dark-gold));
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-donate::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, #2E7D32 100%);
    overflow: hidden;
    margin-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(212,175,55,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 3px;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 14px;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

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

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    margin: 10px auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid white;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--primary-green), #2E7D32);
    color: white;
    text-align: center;
}

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

.mission-icon {
    margin-bottom: 30px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mission-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--accent-gold);
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.about-values h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.value-item h4 {
    color: var(--primary-green);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.value-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Programs Section */
.programs {
    background: white;
}

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

.program-card {
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.program-icon {
    margin-bottom: 25px;
}

.program-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.program-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
}

.program-features li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Impact Section */
.impact {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

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

.impact-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 5px solid var(--accent-gold);
}

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

.impact-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.impact-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.impact-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    margin-top: 60px;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 35px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 5px solid var(--accent-gold);
}

.testimonial-quote {
    font-size: 5rem;
    color: var(--accent-gold);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Media Section */
.media {
    background: var(--bg-light);
}

.video-section,
.gallery-section,
.press-kit {
    margin-bottom: 60px;
}

.video-section h3,
.gallery-section h3,
.press-kit h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.video-placeholder {
    background: white;
    border-radius: 15px;
    padding: 60px 30px;
    text-align: center;
    border: 3px dashed var(--border-color);
}

.video-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.press-kit {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.press-kit p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.press-downloads {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.download-btn {
    display: block;
    padding: 15px 25px;
    background: var(--bg-light);
    color: var(--primary-green);
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.download-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--accent-gold);
}

/* Resources Section */
.resources {
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.resource-category {
    padding: 35px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.resource-category:hover {
    box-shadow: var(--shadow-lg);
}

.resource-category h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.resource-list {
    list-style: none;
}

.resource-list li {
    margin-bottom: 12px;
}

.resource-list a {
    color: var(--text-gray);
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.resource-list a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

/* Careers Section */
.careers {
    background: var(--bg-light);
}

.careers-content {
    display: grid;
    gap: 60px;
}

.why-join h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-item {
    padding: 30px;
    background: white;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.job-openings h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.job-list {
    display: grid;
    gap: 25px;
    margin-bottom: 50px;
}

.job-card {
    padding: 35px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-gold);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.job-header h4 {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.job-type {
    display: inline-block;
    padding: 6px 15px;
    background: var(--bg-light);
    color: var(--primary-green);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-location {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.job-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.job-apply-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-green);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.volunteer-section {
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-green), #2E7D32);
    color: white;
    border-radius: 20px;
    text-align: center;
}

.volunteer-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.volunteer-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: white;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: var(--bg-light);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-green);
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 25px 30px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), #2E7D32);
    color: white;
}

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

.newsletter-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.newsletter-text p {
    margin-bottom: 35px;
    opacity: 0.95;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.newsletter-btn {
    padding: 15px 40px;
    background: var(--accent-gold);
    color: var(--primary-green);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.newsletter-privacy {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-green);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-logo {
    width: 80px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .programs-grid,
    .impact-grid,
    .benefits-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}


.contact-icon i {
    font-size: 20px;
    color: #e63946; /* change to your brand color */
}

.social-links a {
    margin-right: 12px;
    font-size: 18px;
    color: #333;
    transition: 0.3s ease;
}

.social-links a:hover {
    color: #e63946;
}


.benefit-icon i {
    font-size: 22px;
    color: #e63946;
}

.job-location i,
.job-type i,
.job-apply-btn i {
    margin-right: 6px;
}

.job-apply-btn i {
    font-size: 14px;
}


.language-switcher {
    position: fixed; /* keep it on top */
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.3); /* white with 30% opacity */
    backdrop-filter: blur(5px); /* optional: adds a nice blur effect behind */
    z-index: 9999;
    display: flex;
    gap: 8px;
}

.language-switcher .lang-btn {
    background-color: rgba(0, 0, 0, 0.4); /* semi-transparent button background */
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.language-switcher .lang-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
}


/* Contact Form Container */
.contact-form {
    max-width: 500px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Groups */
#contactForm div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Labels */
#contactForm label {
    font-weight: 600;
    color: #1a431d; /* Matching the dark green in your headers */
    font-size: 0.95rem;
}

/* Inputs and Textarea */
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Focus State */
#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #1a431d;
    box-shadow: 0 0 0 3px rgba(26, 67, 29, 0.1);
}

/* Textarea Specifics */
#contactForm textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit Button */
#contactForm button[type="submit"] {
    background-color: #1a431d;
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Aligns button to the left */
}

#contactForm button[type="submit"]:hover {
    background-color: #2d5a31;
}
