/* style.css - Fully consolidated */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Ensure AOS elements are visible if library fails */
[data-aos] {
    opacity: 1 !important; /* Fallback visibility */
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #FF6B6B, #FFD93D); /* Coral to Yellow */
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #4ECDC4, #556270); /* Teal to Gray */
}

.bg-gradient-accent {
    background: linear-gradient(135deg, #45B7D1, #FF6B6B); /* Blue to Coral */
}

.btn-gradient-success {
    background: linear-gradient(135deg, #4ECDC4, #28a745);
    border: none;
    color: white;
    animation: pulse 2s infinite;
}

.btn-gradient-success:hover {
    background: linear-gradient(135deg, #3EBCB3, #218838);
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* Slightly darker for better text contrast */
    padding: 120px 20px;
    border-radius: 15px;
}

.bg-hero {
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    position: relative;
}

.carousel-img {
    height: 450px;
    object-fit: cover;
}

.impact-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.story-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    transition: background 0.3s;
}

.story-card:hover {
    background: rgba(255, 255, 255, 0.35);
}

.testimonial-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border: 4px solid white;
}

.award-img {
    max-height: 220px;
    object-fit: contain;
}

.counter {
    font-size: 3.5rem;
    font-weight: bold;
    color: #FF6B6B;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.6rem;
}

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

/* Remove fixed footer if it causes scroll issues */
footer {
    position: relative;
}
----
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Animation Keyframes */
@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.animate-fade-in {
    animation: fade-in 1s ease-out forwards;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Custom Components */
.grant-card {
    transition: all 0.3s ease;
}

.grant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0066CC;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0052a3;
}
.hidden {
    display: none !important;
}