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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat';
    font-weight: 700;              /* Makes headings bold and strong */
    letter-spacing: -0.5px;        /* Slightly tighter letters for a modern look */
    line-height: 1.2;              /* Good vertical spacing */
    color: #ffffff;                /* A deep gray is more elegant than pure black */
    margin-bottom: 0.5em;          
    }


/* Navigation */
.navbar {
    position: static;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    /* padding: 1rem 0; */
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
        bottom: 0;
        /* z-index: 99; */
    }
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: #25c0eb;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    z-index: 1;
}

.nav-links a {
    text-decoration: none;
    color: #25c0eb;
    font-weight: 700;
    font-size:1.2rem;
    font-family:'Montserrat' ;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    background: #25c0eb;
color: #ffffff;
border-radius: 999px; /* makes it an oval shape */
padding: 0.5em 1em;   /* optional: ensures space around the text */
transition: all 0.3s ease; /* optional: smooth effect */
}

/* Hero Section with Enhanced Animation */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
position: relative;
overflow: hidden;
background: none;
z-index: 0;
}

/* Moving Gradient Layer */
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #25c0eb, #1abfec, #25c0eb, #15beec);
background-size: 400% 400%;
animation: moveGradient 20s ease infinite;
z-index: 0;
}

/* Floating SVG Particles Layer */
.hero::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox=\'0 0 200 200\'><defs><pattern id=\'circles\' x=\'0\' y=\'0\' width=\'40\' height=\'40\' patternUnits=\'userSpaceOnUse\'><circle cx=\'20\' cy=\'20\' r=\'3\' fill=\'rgba(255,255,255,0.1)\'/><circle cx=\'5\' cy=\'5\' r=\'1.5\' fill=\'rgba(255,255,255,0.08)\'/><circle cx=\'35\' cy=\'10\' r=\'2\' fill=\'rgba(255,255,255,0.06)\'/></pattern></defs><rect width=\'100%\' height=\'100%\' fill=\'url(%23circles)\'/></svg>');
animation: floatyStuff 30s infinite linear;
z-index: 1;
opacity: 0.6;
pointer-events: none;
}

/* Gradient movement */
@keyframes moveGradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

/* Floating movement */
@keyframes floatyStuff {
0% { transform: translate(0, 0) rotate(0deg); }
50% { transform: translate(30px, -30px) rotate(180deg); }
100% { transform: translate(0, 0) rotate(360deg); }
}


.hero-content {
max-width: 900px;
padding: 0 2rem;
z-index: 3;
position: relative;
}

.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
text-shadow: 0 4px 15px rgba(39, 31, 31, 0.3);
animation: floatText 4s ease-in-out infinite alternate;
font-weight: 800;
letter-spacing: -1px;
}
@keyframes floatText {
0% { transform: translateY(0); }
100% { transform: translateY(-10px); }
}


.hero p {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.95;
text-shadow: 0 0 15px rgba(39, 31, 31, 0.3);
animation: floatText 4s ease-in-out infinite alternate;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}


.cta-button {
background-color: #1dc1ee;
color: white;
padding: 1.2rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
animation: fadeInUp 1s ease-out 0.6s both;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
margin: 0 1rem 1rem 0;
z-index: 1;
}

.cta-button:hover {
background: white;
color: #2563eb;
}

.cta-button.secondary {
background-color: #1dc1ee;
color: white;
}

.cta-button.secondary:hover {
background: white;
color: #2563eb;
}

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


/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
}

.whiteText {
    color: white !important;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Programs Section */
.programs {
    padding: 6rem 0;
    background: white;
}

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

.program-card {
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

.program-header {
    height: 220px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.program-content {
    padding: 2.5rem;
}

.program-title {
    font-size: 1.6rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-description {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

/* Impact Section */
.impact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="20" r="15" fill="rgba(255,255,255,0.03)"/><rect x="70" y="10" width="20" height="20" fill="rgba(255,255,255,0.04)"/></svg>');
    animation: float 30s infinite linear;
}

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

.impact-item {
    text-align: center;
    z-index: 2;
    position: relative;
}

.impact-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.impact-text {
    opacity: 0.95;
    font-size: 1.1rem;
}

/* Donation Section */
.donation {
    padding: 6rem 0;
    background: #f8fafc;
    text-align: center;
}

.donation-card {
    background: white;
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.amount-btn {
    padding: 1.2rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: #2563eb;
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.donate-button {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    padding: 1.2rem 4rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.donate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

/* Pickup Form Section */
.pickup-form {
    padding: 6rem 0;
    background: white;
    text-align: center;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-embed {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: #2563eb;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-section a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* .nav-links {
        display: none;
    } */

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

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

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-button {
        display: block;
        margin: 1rem auto;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.socialIcons {
    display: flex;
    gap: 12px;
    margin: 8px 4px;
}
.socialIcons img {
    height: 30px;
    width: 30px;
}