        :root {
            --primary-dark: #D35400; /* Dark orange */
            --primary-light: #F39C12; /* Lighter orange */
            --accent-yellow: #FFF9E6; /* Light yellow */
            --accent-yellow-dark: #FFEAA7; /* Slightly darker yellow */
            --accent-green: #27ae60;
            --accent-blue: #2980b9;
            --accent-purple: #8e44ad;
            --text-dark: #2C3E50;
            --text-light: #7F8C8D;
            --white: #FFFFFF;
            --light-gray: #F8F9FA;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.12);
            --border-radius: 10px;
            --transition: all 0.3s ease;
        }


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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.space{
    margin-top: 130px;
}
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.logo-placeholder {
    width: 400px;
    height: 150px;
    background-color: var(--accent-yellow);
    border: 2px dashed var(--primary-dark);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 20px;
    text-align: center;
}

.logo-placeholder .letter-a {
    font-size: 4rem;
    line-height: 1;
}

.logo-placeholder .letters-es {
    font-size: 2rem;
    color: var(--text-light);
    letter-spacing: 8px;
    margin-top: -10px;
}

.logo-placeholder .org-name {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 10px;
    font-weight: 600;
}

.logo-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Header & Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--primary-dark) !important;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    margin: 0 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--primary-dark) !important;
    background-color: var(--accent-yellow);
}

.donate-btn {
    background-color: var(--primary-dark);
    color: white !important;
    border-radius: 30px;
    padding: 8px 25px !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background-color: #A84300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 84, 0, 0.2);
}

/* Hero Slider */
.hero-slider {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 700px;
}

.hero-btn {
    background-color: var(--primary-light);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Section Styling */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-light);
}

.section-bg-light {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.section-bg-yellow {
    background-color: var(--accent-yellow);
    padding: 80px 0;
}

/* Programs Gallery */
.program-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

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

.program-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.program-content {
    padding: 25px;
}

.program-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.program-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.program-link {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.program-link:hover {
    color: #A84300;
}

/* About Section */
.about-img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
}

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

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-light);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #BDC3C7;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    color: #BDC3C7;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.legal-links a {
    color: #BDC3C7;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Add to home.css */
.subscribe-form .input-group {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.subscribe-form .form-control {
    border: 1px solid #dee2e6;
    border-right: none;
}

.subscribe-form .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding-left: 25px;
    padding-right: 25px;
}

.subscribe-form .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

#subscriptionMessage .alert {
    padding: 10px 15px;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Validation styles */
.subscribe-form input:invalid {
    border-color: #dc3545;
}

.subscribe-form input:valid {
    border-color: #28a745;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 10px 0;
    }
    
    .donate-btn {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-slider {
        padding: 70px 0;
        margin-bottom: 50px;
    }
    
    .section-bg-light, .section-bg-yellow {
        padding: 50px 0;
    }
    
    .stat-item {
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .about-stats {
        justify-content: center;
    }
    
    .stat-item {
        min-width: 45%;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
}

/* Additional Custom Styles */
.impact-badge {
    display: inline-block;
    background-color: var(--accent-yellow-dark);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 25px;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary-dark);
    color: white;
}
