/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: #f0f8f5; /* Soft light background */
    color: #333;
}

/* Header and Navigation */
header {
    background-color: #388e3c;
    padding: 20px 30px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    color: white;
    font-weight: bold;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style-type: none;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #66bb6a;
    border-radius: 5px;
}

.apply-btn {
    background-color: #fff;
    color: #388e3c;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.apply-btn:hover {
    background-color: #c8e6c9;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 50px;
    background-color: #66bb6a;
    color: white;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 5rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Button Styles */
.cta-button, .donate-btn {
    background-color: #1b5e20;
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover, .donate-btn:hover {
    background-color: #2e7d32;
}

/* About Section */
.about {
    padding: 80px 50px;
    text-align: center;
    background-color: #f1f8e9;
}

.about h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Impact Section */
.impact {
    padding: 80px 50px;
    background-color: #e8f5e9;
    text-align: center;
}

.impact-content {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.impact-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.impact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.impact-card p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Quote Section */
#quote {
    height: 100vh;
    background: url('quote-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px;
    background-size: cover;
}

#quoteText {
    font-size: 10rem;
    color: white;
    font-family: 'Merriweather', serif;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

/* Before & After Section */
.before-after {
    padding: 80px 50px;
    background-color: #f1f8e9;
    text-align: center;
}

.before-after-slider {
    display: flex;
    gap: 30px;
}

.before-after-slider img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Donation Section */
.donate {
    padding: 80px 50px;
    text-align: center;
    background-color: #e8f5e9;
}

.donate h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.donate-btn {
    background-color: #388e3c;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.donate-btn:hover {
    background-color: #1b5e20;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #388e3c;
    color: white;
    text-align: center;
    font-size: 1rem;
}

footer p {
    margin: 0;
}

