/* =========================================
   GITA SARASWATI FOUNDATION GLOBAL STYLES
   ========================================= */
   :root {
    /* ब्रांड के नए रंग: Teal Blue और Gold */
    --primary-teal: #2A7FA1; 
    --primary-blue: #1C5A76; /* गहरे शेड के लिए */
    --accent-gold: #FFB701;  
    --gradient-primary: linear-gradient(135deg, var(--primary-teal), var(--primary-blue));
    
    /* टेक्स्ट के रंग */
    --text-dark: #1a455a;  /* पठन के लिए गहरा टेक्स्ट */
    --text-light: #ffffff; 
    
    /* बैकग्राउंड और अन्य */
    --bg-light: #f4f9fb;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(42, 127, 161, 0.1);
    
    /* शैडो और रेडियस */
    --shadow-soft: 0 10px 30px rgba(42, 127, 161, 0.08);
    --shadow-hover: 0 15px 40px rgba(42, 127, 161, 0.2);
    --radius-lg: 30px;
    --radius-md: 15px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- ग्लोबल टेक्स्ट रंग सुधार (7+ सेंटर्स और इमेज के नीचे) --- */
/* जैसा कि यानवी ने अनुरोध किया था, सफ़ेद पैराग्राफ को गहरा काला कर दिया गया है */
p, .hero-content p, .verified p, .stat p {
    color: var(--text-dark) !important; 
}

/* ========================================================
   HERO SLIDER STYLES
========================================================= */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background: var(--bg-light);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    display: none;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 5%;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    animation: fadeInSlide 0.8s ease-out forwards;
}

@keyframes fadeInSlide {
    0% { opacity: 0; transform: translateY(20px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- HERO CONTENT --- */
.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.tagline {
    display: inline-block;
    background: rgba(255, 183, 1, 0.1); /* हल्का गोल्ड बैकग्राउंड */
    color: var(--accent-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 183, 1, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(42, 127, 161, 0.05);
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    /* रंग को ग्लोबल स्तर पर गहरा कर दिया गया है */
    margin-bottom: 2.5rem;
}

/* --- BUTTONS --- */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}

.donate-btn, .campaign-btn {
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.donate-btn {
    background: var(--gradient-primary);
    color: white !important;
    box-shadow: 0 8px 25px rgba(42, 127, 161, 0.2);
}

.donate-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(42, 127, 161, 0.3);
    background: linear-gradient(135deg, #1C5A76, #2A7FA1);
}

.campaign-btn {
    background: white;
    color: var(--primary-teal);
    border: 2px solid transparent;
    box-shadow: var(--shadow-soft);
}

.campaign-btn:hover {
    transform: translateY(-4px);
    border-color: var(--primary-teal);
}

/* --- STATS (7+ एजुकेशन सेंटर्स) --- */
.hero-stats {
    display: flex;
    gap: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: var(--radius-md);
    border: 2px solid var(--accent-gold); /* गोल्ड बॉर्डर */
    box-shadow: var(--shadow-soft);
    display: inline-flex;
}

.stat { text-align: center; position: relative; }

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(42, 127, 161, 0.1);
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-teal);
    font-weight: 800;
    margin-bottom: 2px;
}

.stat p {
    font-size: 0.9rem;
    /* रंग अब गहरा काला है */
    font-weight: 600;
}

/* --- HERO IMAGE & VERIFIED TAG --- */
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.6s ease;
    border: 8px solid white;
}

.hero-slide:hover .hero-image img {
    transform: scale(1.03) rotate(-1deg);
}

.verified {
    position: absolute;
    bottom: -25px;
    left: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-gold);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.verified i {
    font-size: 2rem;
    color: var(--accent-gold);
    background: rgba(255, 183, 1, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.verified strong { display: block; color: var(--primary-teal); font-size: 1rem; }
.verified p { /* रंग अब गहरा काला है */ font-size: 0.85rem; }

/* --- SLIDER ARROWS --- */
.slider-arrows {
    position: absolute;
    top: 50%; left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.slider-arrows button {
    pointer-events: auto;
    width: 55px; height: 55px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--primary-teal);
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}

.slider-arrows button:hover {
    background: var(--primary-teal);
    color: white;
    transform: scale(1.1);
}

/* =========================================
   रेस्पॉन्सिव डिजाइन (टेबलेट और मोबाइल)
========================================= */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-image img { max-width: 450px; }
}

@media (max-width: 768px) {
    .hero-slide {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content { order: 2; /* मोबाइल पर टेक्स्ट को इमेज के नीचे ले जाएं */ }
    .hero-image { order: 1; justify-content: center; margin-bottom: 3rem; }

    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; width: 100%; border-width: 1px; }

    .verified {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        animation: none; /* मोबाइल पर फ़्लोट को अक्षम करें */
        width: max-content;
    }

    .slider-arrows {
        top: auto; bottom: 30px;
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        padding: 20px;
    }

    .stat:not(:last-child)::after { display: none; }
    .stat { width: 45%; margin-bottom: 10px; }
    .stat h3 { font-size: 1.8rem; }
}


/* =========================================
   ABOUT US SECTION STYLES
   ========================================= */
.about-page {
    padding: 80px 0;
    background-color: white;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-yellow);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-hover);
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-img img:hover {
    transform: translateY(-10px);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
}

.about-content>p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-box:hover {
    background: white;
    box-shadow: var(--shadow-soft);
    border-left-color: var(--accent-yellow);
    transform: translateY(-3px);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-teal);
    background: rgba(15, 76, 117, 0.1);
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-box:hover i {
    background: var(--primary-teal);
    color: white;
}

.feature-box h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-box p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(15, 76, 117, 0.2);
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(15, 76, 117, 0.4);
}

/* =========================================
   RESPONSIVE DESIGN FOR ABOUT SECTION
   ========================================= */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 60px;
    }

    .about-img {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-img::before {
        display: none;
    }
}

/* =========================================
   IMPACT SECTION STYLES
   ========================================= */
.impact-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    color: white;
}

/* Subtle dot pattern overlay */
.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    pointer-events: none;
}

.impact-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.impact-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.impact-title p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.impact-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 20px;
    text-align: center;
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.impact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.impact-card i {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.impact-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.impact-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.impact-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* =========================================
   RESPONSIVE DESIGN FOR IMPACT SECTION
   ========================================= */
@media (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-title h2 {
        font-size: 2rem;
    }

    .impact-card {
        padding: 30px 20px;
    }
}

/* =========================================
   KEY OBJECTIVES SECTION STYLES
   ========================================= */
.objectives-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.objectives-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 168, 38, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.objectives-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .sub-title {
    display: inline-block;
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: rgba(249, 168, 38, 0.15);
    padding: 5px 15px;
    border-radius: 20px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title .highlight {
    color: var(--primary-teal);
    position: relative;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.objective-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-bottom: 5px solid transparent;
    z-index: 1;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--accent-yellow);
}

.obj-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(15, 76, 117, 0.3);
    transition: transform 0.4s ease;
}

.objective-card:hover .obj-icon {
    transform: scale(1.1) rotateY(180deg);
}

.objective-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.objective-card:hover h3 {
    color: var(--primary-teal);
}

.objective-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

.obj-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
    transition: all 0.4s ease;
}

.objective-card:hover .obj-number {
    color: rgba(249, 168, 38, 0.1);
    transform: scale(1.1) translate(-10px, 10px);
}

/* =========================================
   RESPONSIVE DESIGN FOR OBJECTIVES
   ========================================= */
@media (max-width: 992px) {
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
    }

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

    .objective-card {
        padding: 30px 20px;
    }
}

/* =========================================
   EDUCATION GOALS SECTION STYLES
   ========================================= */
.edu-goals-section {
    padding: 80px 0;
    background-color: white;
}

.edu-goals-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.edu-goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.edu-goal-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Hover line animation at top */
.edu-goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.edu-goal-card:hover::before {
    width: 100%;
}

.edu-goal-card:hover {
    background: white;
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.goal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(249, 168, 38, 0.15);
    color: var(--accent-yellow);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.edu-goal-card:hover .goal-icon {
    background: var(--accent-yellow);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(249, 168, 38, 0.3);
}

.edu-goal-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 12px;
}

.edu-goal-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   RESPONSIVE DESIGN FOR EDUCATION GOALS
   ========================================= */
@media (max-width: 1024px) {
    .edu-goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .edu-goals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .edu-goal-card {
        padding: 30px 20px;
    }
}

/* =========================================
   GALLERY SECTION STYLES
   ========================================= */
.gallery-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.gallery-title {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.gallery-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
}

.gallery-title p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 20px;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 76, 117, 0.9) 0%, rgba(15, 76, 117, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE DESIGN FOR GALLERY
   ========================================= */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-title h2 {
        font-size: 2.2rem;
    }
}

/* =========================================
   EVENTS SECTION STYLES
   ========================================= */
.events-section {
    padding: 80px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .sub-title {
    display: inline-block;
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: rgba(249, 168, 38, 0.15);
    padding: 5px 15px;
    border-radius: 20px;
}

.section-header .main-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header .highlight {
    color: var(--primary-teal);
}

.events-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.event-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    bottom: 0;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}

.event-info {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-info .location {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-info .location i {
    color: var(--primary-teal);
}

.event-info h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.event-card:hover .event-info h3 {
    color: var(--primary-teal);
}

.event-info h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.event-info .desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.event-info .read-more {
    display: inline-block;
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    position: relative;
    transition: color 0.3s ease;
}

.event-info .read-more::after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    transition: margin 0.3s ease;
}

.event-info .read-more:hover {
    color: var(--primary-blue);
}

.event-info .read-more:hover::after {
    margin-left: 12px;
}

/* =========================================
   RESPONSIVE DESIGN FOR EVENTS
   ========================================= */
@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

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

/* =========================================
   MEMBERSHIP SECTION STYLES
   ========================================= */
.membership-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.membership-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Box */
.membership-main {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    color: white;
    box-shadow: 0 15px 40px rgba(15, 76, 117, 0.2);
    position: relative;
    overflow: hidden;
}

/* Background pattern */
.membership-main::after {
    content: '\f0c0';
    /* Users icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 20rem;
    opacity: 0.05;
    transform: rotate(-15deg);
    pointer-events: none;
}

.membership-content {
    flex: 1;
    z-index: 1;
}

.membership-content .badge {
    display: inline-block;
    background: rgba(249, 168, 38, 0.2);
    color: var(--accent-yellow);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(249, 168, 38, 0.4);
}

.membership-content .main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.membership-content .description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.membership-content .description span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-list li i {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

/* Membership Action Card */
.membership-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--text-dark);
    min-width: 320px;
    box-shadow: var(--shadow-soft);
    z-index: 1;
}

.membership-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    font-weight: 500;
}

.price-tag span {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-top: 5px;
}

.join-now-btn {
    display: block;
    background: var(--gradient-primary);
    color: white !important;
    padding: 15px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(15, 76, 117, 0.2);
    margin-bottom: 15px;
}

.join-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.3);
}

.join-now-btn span {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.small-text {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.small-text i {
    color: #4CAF50;
}

/* Bottom Benefits */
.bottom-benefits {
    margin-top: 60px;
}

.benefits-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.benefits-title span {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-item {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary-teal);
}

.benefit-item .icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(15, 76, 117, 0.1);
    color: var(--primary-teal);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.benefit-item:hover .icon-box {
    background: var(--primary-teal);
    color: white;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* =========================================
   RESPONSIVE DESIGN FOR MEMBERSHIP
   ========================================= */
@media (max-width: 992px) {
    .membership-main {
        flex-direction: column;
        padding: 40px 30px;
    }

    .membership-content {
        text-align: center;
    }

    .benefit-list li {
        justify-content: center;
    }

    .membership-card {
        width: 100%;
        max-width: 400px;
    }

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

@media (max-width: 576px) {
    .membership-main {
        padding: 30px 20px;
    }

    .membership-content .main-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   AWARDS SECTION STYLES
   ========================================= */
.awards-section {
    padding: 80px 0;
    background-color: white;
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.awards-header {
    text-align: center;
    margin-bottom: 50px;
}

.awards-header .sub-title {
    display: inline-block;
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: rgba(249, 168, 38, 0.15);
    padding: 5px 15px;
    border-radius: 20px;
}

.awards-header .main-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.awards-header .title-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin: 0 auto;
    border-radius: 2px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.award-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(15, 76, 117, 0.2);
}

.award-icon {
    width: 100%;
    height: 200px;
    background: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.award-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.award-card:hover .award-icon img {
    transform: scale(1.1);
}

.award-info {
    padding: 25px 20px;
    position: relative;
}

.award-year {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(15, 76, 117, 0.3);
}

.award-info h3 {
    font-size: 1.15rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* =========================================
   RESPONSIVE DESIGN FOR AWARDS
   ========================================= */
@media (max-width: 1024px) {
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .awards-header .main-title {
        font-size: 2.2rem;
    }
}

/* =========================================
   PRESIDENT SECTION STYLES
   ========================================= */
.president-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.president-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 50px;
    position: relative;
    z-index: 1;
}

.president-image-area {
    flex: 0 0 400px;
    position: relative;
}

.president-image-area .image-box {
    position: relative;
    border-radius: var(--radius-md);
    padding: 15px;
    background: white;
    box-shadow: var(--shadow-hover);
    z-index: 2;
}

.president-image-area .image-box::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    z-index: -1;
}

.president-image-area img {
    width: 100%;
    border-radius: calc(var(--radius-md) - 5px);
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(249, 168, 38, 0.3);
    border: 3px solid white;
}

.president-content {
    flex: 1;
}

.president-content .sub-title {
    display: inline-block;
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.president-name {
    font-size: 2.8rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 5px;
}

.president-role {
    font-size: 1.2rem;
    color: var(--primary-teal);
    font-weight: 500;
    margin-bottom: 30px;
}

.message-quote {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.message-quote i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    color: rgba(15, 76, 117, 0.1);
}

.message-quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.signature {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    display: inline-block;
}

.signature p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

.signature strong {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-family: 'Brush Script MT', cursive, sans-serif;
    letter-spacing: 1px;
}

/* =========================================
   RESPONSIVE DESIGN FOR PRESIDENT SECTION
   ========================================= */
@media (max-width: 1024px) {
    .president-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .president-image-area {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 40px;
    }

    .president-image-area .image-box::before {
        top: 10px;
        left: -10px;
    }

    .experience-badge {
        bottom: -15px;
        right: 50%;
        transform: translateX(50%);
    }

    .message-quote {
        padding-left: 0;
    }

    .message-quote i {
        position: relative;
        display: block;
        text-align: center;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .president-name {
        font-size: 2.2rem;
    }
}

/* =========================================
   ABOUT US / MISSION HERO STYLES
   ========================================= */
.about-hero {
    background: linear-gradient(rgba(15, 76, 117, 0.7), rgba(15, 76, 117, 0.9)), url('Admin/images/ngo4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   MISSION & VISION CARDS
   ========================================= */
.mv-section {
    padding: 0 0 80px 0;
    background-color: var(--bg-light);
}

.mv-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(15, 76, 117, 0.15);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 5px solid var(--accent-yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-teal);
}

.mv-card i {
    font-size: 3.5rem;
    color: var(--primary-teal);
    margin-bottom: 25px;
    background: rgba(15, 76, 117, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.mv-card:hover i {
    background: var(--primary-teal);
    color: white;
    transform: rotateY(180deg);
}

.mv-card h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

.mv-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* =========================================
   OUR JOURNEY TIMELINE STYLES
   ========================================= */
.journey-section {
    padding: 100px 0;
    background-color: white;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--gradient-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: white;
    border: 5px solid var(--accent-yellow);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(249, 168, 38, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover::after {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 8px rgba(50, 130, 184, 0.2);
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even)::after {
    left: -12px;
}

.timeline-content {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-content:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    background: white;
    border-color: var(--accent-yellow);
}

.timeline-content h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
}

/* --- Responsive for Mission/Timeline --- */
@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .timeline::after {
        left: 40px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 90px;
        padding-right: 20px;
        text-align: left !important;
    }

    .timeline-item::after {
        left: 28px;
        right: auto;
    }

    .timeline-item:nth-child(even) {
        left: 0%;
    }
}

/* =========================================
   CORE VALUES SECTION STYLES
   ========================================= */
.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.values-header {
    margin-bottom: 50px;
}

.values-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.values-header p {
    color: #666;
    max-width: 600px;
    margin: 10px auto 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-yellow);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* =========================================
   VOLUNTEER CTA SECTION STYLES
   ========================================= */
.volunteer-cta {
    background: var(--gradient-primary);
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.volunteer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 10%, transparent 10%), radial-gradient(circle, rgba(255, 255, 255, 0.1) 10%, transparent 10%);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.5;
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-blue) !important;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(249, 168, 38, 0.3);
}

.cta-btn:hover {
    transform: scale(1.05);
    background: white;
    color: var(--primary-teal) !important;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
}

/* --- Responsive for Values & CTA --- */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

/* =========================================
   ACTIVITY HERO STYLES
   ========================================= */
.activity-hero {
    background: linear-gradient(rgba(15, 76, 117, 0.8), rgba(15, 76, 117, 0.9)), url('Admin/images/activity-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.activity-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.activity-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
   ACTIVITY SECTION & CARDS
   ========================================= */
.activity-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.activity-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(15, 76, 117, 0.2);
}

.activity-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.1);
}

.activity-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.activity-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.activity-content h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.activity-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.donate-btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.donate-btn-outline:hover {
    background: var(--primary-teal);
    color: white;
    box-shadow: 0 5px 15px rgba(50, 130, 184, 0.3);
}

/* =========================================
   SOCIAL ICON CARDS
   ========================================= */
.social-activities {
    padding: 80px 0;
    background: white;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-card {
    background: white;
    padding: 40px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.social-card:hover::before {
    transform: scaleX(1);
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(15, 76, 117, 0.1);
    color: var(--primary-teal);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.social-card:hover .social-icon {
    background: var(--primary-teal);
    color: white;
    transform: rotateY(180deg);
}

.social-card h5 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.social-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .activity-grid { grid-template-columns: repeat(2, 1fr); }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .activity-hero h1 { font-size: 2.5rem; }
    .activity-grid { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: 1fr; }
}


