/* ============ CSS Variables (White, Blue, Pink) ============ */
:root {
    /* Primary Blue */
    --primary: #1E88E5;
    --primary-dark: #0D47A1;
    --primary-light: #E3F2FD;

    /* Accent Pink */
    --secondary: #EC407A;
    --secondary-dark: #C2185B;
    --secondary-light: #FCE4EC;

    /* Neutrals */
    --bg: #FFFFFF;
    --bg-light: #F5F7FA;        /* Very light blue-grey */
    --text: #263238;            /* Dark blue-grey */
    --text-light: #546E7A;      /* Medium grey-blue */

    /* Effects */
    --shadow: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --radius: 10px;
}

/* ============ Base Styles ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ Header ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.site-header.scrolled {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 65px;               /* Adjust as needed */
    width: 80px;
    margin-right: 8px;
    vertical-align: middle;
    padding-left: 0px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    font-weight: 500;
    color: var(--text);
    padding: 5px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.donate-nav-btn {
    background: var(--secondary);   /* Pink for Donate button */
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 30px;
}

.donate-nav-btn::after {
    display: none !important;
}

.donate-nav-btn:hover {
    background: var(--secondary-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text);
    cursor: pointer;
}

/* ============ Hero ============ */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('imgaes/back.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    

}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    color: whitesmoke;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
    color: rgb(255, 255, 255);
    
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ Buttons ============ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30,136,229,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(236,64,122,0.3);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============ Sections ============ */
.section {
    padding: 80px 0;
}

.bg-light {
    background: var(--bg-light);
}

.section-tag {
    color: var(--secondary);         /* Pink accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.section-header p {
    color: var(--text-light);
}

/* ============ Stats ============ */
.stats-section {
    background: var(--primary-dark);
    padding: 50px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--secondary);     /* Pink icons */
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============ Two Column Layout ============ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.col-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.col-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.col-image img {
    width: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.col-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

blockquote {
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
    font-style: italic;
    color: var(--text-light);
    margin: 20px 0;
}

/* ============ Cards ============ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--secondary);   /* Pink accent on top */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
}

.card-link i {
    transition: var(--transition);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* ============ CTA Section ============ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============ Page Banner ============ */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============ Program Detail ============ */
.program-detail {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 50px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-detail:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.program-detail.reverse {
    flex-direction: row-reverse;
}

.program-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.program-info h2 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.program-info p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.program-info ul {
    list-style: none;
}

.program-info ul li {
    margin-bottom: 8px;
}

.program-info ul li i {
    color: var(--secondary);   /* Pink checkmarks */
    margin-right: 8px;
}

/* ============ Team ============ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--secondary);
}

.team-member h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============ Impact Stories ============ */
.story-card {
    display: flex;
    gap: 30px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: var(--transition);
}

.story-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.story-card.reverse {
    flex-direction: row-reverse;
}

.story-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--secondary);
}

.story-text h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.story-text p {
    color: var(--text-light);
}

/* ============ Donate Page ============ */
.donate-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.donate-info h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.impact-list {
    list-style: none;
    margin-bottom: 30px;
}

.impact-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.impact-list li i {
    color: var(--secondary);
    margin-right: 10px;
}

.donate-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.donate-form-card h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30,136,229,0.1);
}

.amount-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.amount-btn {
    padding: 10px 20px;
    background: var(--bg-light);
    border: 2px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.form-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

/* ============ Contact Page ============ */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-item h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
    text-align: center;
}

.map-placeholder {
    height: 300px;
    background: var(--bg-light);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 2px dashed #ccc;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

/* ============ Footer ============ */
.site-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
    background-color: rgb(8, 209, 209);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: black;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--secondary);
}

.footer-col a:hover {
    color: var(--secondary-light);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* ============ Responsive Design ============ */
@media (max-width: 992px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .two-col.reverse {
        direction: ltr;
    }

    .story-card,
    .story-card.reverse {
        flex-direction: column;
        text-align: center;
    }

    .story-card img {
        width: 150px;
        height: 150px;
    }

    .donate-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }

    .main-nav.open {
        transform: translateY(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-banner h1 {
        font-size: 2.2rem;
    }

    .program-detail,
    .program-detail.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .program-info ul {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}