/* --- 1. GLOBAL SETTINGS & VARIABLES --- */
:root {
    --primary: #1a3c5a;
    --accent: #c5a059;
    --white: #ffffff;
    --bg-dark: #0f2d44;
    --text-muted: #666;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; /* सफ़ेद पट्टी को रोकने के लिए सबसे जरूरी लाइन */
    width: 100%;
    background: #fff; /* डिफ़ॉल्ट सफ़ेद, कंटेंट लोड होने पर */
    font-family: 'Poppins', sans-serif;
}

/* --- 2. LOADER STYLES --- */
#loader-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.logo-anim-container {
    position: relative;
    width: 120px;
    height: 120px;
}

.loader-logo-img {
    width: 100%;
    border-radius: 50%;
    animation: pulse-logo 2s infinite ease-in-out;
}

.loader-circle {
    position: absolute;
    top: -10px; left: -10px;
    width: 140px; height: 140px;
    border: 4px solid transparent;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin-loader 1s linear infinite;
}

.icon-overlay {
    position: absolute;
    bottom: -5px; right: -5px;
    background: var(--white);
    width: 35px; height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: var(--accent);
    z-index: 10;
}

@keyframes spin-loader { 100% { transform: rotate(360deg); } }
@keyframes pulse-logo { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

.loading-text {
    color: var(--primary);
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
}

.loading-text span { display: inline-block; animation: wave-dots 1.3s infinite; }
.loading-text span:nth-child(2) { animation-delay: 0.2s; }
.loading-text span:nth-child(3) { animation-delay: 0.4s; }

@keyframes wave-dots {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
}

/* --- 3. SWIPER SLIDER --- */
.swiper { width: 100%; height: 75vh; }

.swiper-slide { position: relative; overflow: hidden; }

.swiper-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.slider-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 85%;
    z-index: 2;
}

.slider-content h2 {
    font-size: clamp(1.8rem, 5vw, 3.5rem); /* ऑटो-रिस्पॉन्सिव फोंट */
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.swiper-slide-active .slider-content h2 { opacity: 1; transform: translateY(0); }

.btn-slider {
    padding: 14px 35px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-slider:hover { background: var(--primary); transform: translateY(-3px); }

/* --- 4. ABOUT SECTION --- */
.about-section { padding: 80px 0; background-color: #f9fbfd; overflow: hidden; }

.about-container {
    max-width: 1200px;
    margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center;
    gap: 40px; flex-wrap: wrap;
}

.about-image-wrapper { flex: 1; min-width: 320px; position: relative; }

.main-about-img {
    width: 100%; border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative; z-index: 2;
}

.experience-badge {
    position: absolute; bottom: 20px; right: -10px;
    background: var(--primary); color: white;
    padding: 20px; border-radius: 15px;
    text-align: center; z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.about-content { flex: 1.2; min-width: 320px; }

.about-title { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--primary); font-weight: 700; margin-bottom: 20px; }

.features-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px; list-style: none; margin: 25px 0;
}

.feature-item { font-weight: 600; display: flex; align-items: center; gap: 10px; }
.feature-item i { color: var(--accent); }

/* --- 5. COUNTER SECTION --- */
.counter-section {
    background: linear-gradient(135deg, var(--primary), var(--bg-dark));
    padding: 80px 20px; color: #fff;
}

.counter-container {
    max-width: 1200px; margin: auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.counter-box {
    background: rgba(255,255,255,0.05);
    padding: 35px 20px; border-radius: 15px;
    backdrop-filter: blur(5px); transition: var(--transition);
}

.counter-box:hover { transform: translateY(-10px); background: rgba(255,255,255,0.1); }

/* --- 6. FOCUS AREAS SECTION --- */
.focus-section { padding: 80px 20px; background-color: #fcfcfc; text-align: center; }

.focus-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px; max-width: 1200px; margin: 0 auto;
}

.focus-card {
    background: #fff; border-radius: 15px; overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: var(--transition); display: flex; flex-direction: column;
}

.focus-img-box { width: 100%; height: 200px; overflow: hidden; }
.focus-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }

.focus-card:hover .focus-img-box img { transform: scale(1.1); }
.focus-card:hover { transform: translateY(-10px); }

.focus-body { padding: 25px; flex-grow: 1; }

/* --- 7. RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .swiper { height: 60vh; }
    .about-container { gap: 30px; }
}

@media (max-width: 768px) {
    .about-container { flex-direction: column; text-align: center; }
    .features-list { text-align: left; }
    .experience-badge { right: 10px; bottom: 10px; padding: 15px; }
    .experience-badge h2 { font-size: 1.8rem; }
    .focus-section { padding: 50px 10px; }
}

@media (max-width: 480px) {
    .swiper { height: 50vh; }
    .btn-slider { padding: 10px 25px; font-size: 0.9rem; }
}

/* --- Read More Button Styling --- */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: var(--primary); /* आपका गहरा नीला रंग #1a3c5a */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px; /* कैप्सूल शेप */
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 2px solid var(--primary);
    box-shadow: 0 10px 20px rgba(26, 60, 90, 0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* बटन के अंदर का आइकॉन (Arrow) */
.btn-read-more i {
    margin-left: 12px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

/* --- Hover Effects --- */

.btn-read-more:hover {
    background-color: var(--accent); /* आपका गोल्डन रंग #c5a059 */
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-3px); /* हल्का ऊपर उठेगा */
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}

/* होवर करने पर तीर (Arrow) आगे बढ़ेगा */
.btn-read-more:hover i {
    transform: translateX(6px);
}

/* बटन पर क्लिक करने का अहसास (Active state) */
.btn-read-more:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Media Queries --- */

/* छोटे मोबाइल के लिए */
@media (max-width: 576px) {
    .btn-read-more {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%; /* मोबाइल पर बटन पूरा चौड़ा हो जाएगा */
        max-width: 250px;
    }
    
    .btn-read-more i {
        margin-left: 8px;
    }
}

/* --- Donate Now Small Button --- */
.btn-donate-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #e74c3c; /* दान के लिए लाल रंग भरोसे और मदद का प्रतीक है */
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    cursor: pointer;
}

/* बटन के अंदर दिल (Heart) वाला आइकॉन */
.btn-donate-small i {
    margin-left: 10px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* --- Hover Effects --- */

.btn-donate-small:hover {
    background: transparent;
    color: #e74c3c !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

/* होवर करने पर दिल का धड़कने वाला (Beating) एनीमेशन */
.btn-donate-small:hover i {
    animation: heartBeat 0.8s infinite;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.3); }
    30% { transform: scale(1); }
    45% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* --- Responsive Media Queries --- */

@media (max-width: 768px) {
    .btn-donate-small {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .btn-donate-small {
        display: flex;
        width: 100%; /* मोबाइल पर पूरा बटन दिखेगा */
        max-width: 200px;
        margin: 0 auto;
    }
}

/* --- 1. Section Header Styling --- */
.program-section {
    padding: 80px 20px;
    background-color: #f4f7f9;
    perspective: 1000px; /* 3D इफेक्ट के लिए जरूरी */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-style: italic;
}

/* --- 2. Program Grid Layout --- */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 3. Flip Card Core Logic --- */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px; /* कार्ड की ऊंचाई */
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
}

/* होवर करने पर रोटेशन */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* पीछे का हिस्सा छुपाने के लिए */
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 15px;
}

/* --- 4. Front Side Styling --- */
.flip-card-front {
    background-color: #ffffff;
    color: var(--primary);
}

.flip-card-front i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.flip-card-front h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.card-line {
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin-top: 15px;
}

/* --- 5. Back Side Styling --- */
.flip-card-back {
    background-color: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.flip-card-back p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-card-link {
    padding: 10px 25px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-card-link:hover {
    background: white;
    color: var(--primary);
}

/* --- 6. Responsive Adjustments --- */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    .flip-card {
        height: 280px;
    }
}

/* --- Gallery Section Styling --- */
.dynamic-gallery {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.gallery-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.gallery-title h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--accent);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* 1. Gallery Grid Layout */
.gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 0;
}

/* 2. Individual Gallery Box */
.gallery-box {
    position: relative;
    height: 250px; /* आप इसे अपनी पसंद के अनुसार बढ़ा या घटा सकती हैं */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* इमेज को बिना स्ट्रेच किए फिट करेगा */
    transition: transform 0.5s ease;
}

/* 3. Overlay Effect (Hover) */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 60, 90, 0.85); /* var(--primary) with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0; /* शुरू में छुपा रहेगा */
    transition: all 0.4s ease;
    color: white;
}

.gallery-overlay h5 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

/* Hover Actions */
.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-box:hover .gallery-overlay {
    opacity: 1;
}

.gallery-box:hover .gallery-overlay h5 {
    transform: translateY(0);
}

/* 4. Button Container */
.gallery-btn-container {
    margin-top: 50px;
}

/* --- Responsive Media Queries --- */

/* Tablets */
@media (max-width: 992px) {
    .gallery-row {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    .gallery-box {
        height: 200px;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .dynamic-gallery {
        padding: 50px 15px;
    }
    .gallery-title h2 {
        font-size: 1.8rem;
    }
    .gallery-row {
        grid-template-columns: 1fr; /* मोबाइल पर एक लाइन में एक इमेज */
    }
    .gallery-box {
        height: 250px;
    }
}

/* --- Video Section Styling --- */
.video-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f2d44 0%, #1a3c5a 100%); /* गहरा नीला बैकग्राउंड */
    text-align: center;
    color: #ffffff;
}

.video-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 5px;
}

/* 1. Video Container & Wrapper */
.video-container {
    max-width: 900px; /* वीडियो की चौड़ाई को कंट्रोल करने के लिए */
    margin: 40px auto 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

/* 2. HTML5 Video Tag Styling */
#ngoVideo {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9; /* वीडियो को हमेशा सही शेप में रखने के लिए */
    object-fit: cover;
}

/* 3. Video Footer & Button */
.video-footer {
    margin-top: 40px;
}

.btn-all-videos {
    display: inline-flex;
    align-items: center;
    padding: 14px 35px;
    background-color: var(--accent); /* आपका गोल्डन कलर #c5a059 */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-all-videos:hover {
    background-color: #ffffff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.btn-all-videos i {
    transition: transform 0.3s ease;
}

.btn-all-videos:hover i {
    transform: scale(1.2) rotate(360deg);
}

/* --- 4. Responsive Media Queries --- */

@media (max-width: 768px) {
    .video-section {
        padding: 50px 15px;
    }
    
    .video-wrapper {
        border-radius: 12px;
        border-width: 3px;
    }
    
    .btn-all-videos {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-container {
        margin-top: 25px;
    }
    
    /* मोबाइल पर बटन पूरा चौड़ा करने के लिए (Optional) */
    .btn-all-videos {
        width: 100%;
        max-width: 250px;
    }
}

/* --- CTA Section Styling --- */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(rgba(15, 45, 68, 0.9), rgba(15, 45, 68, 0.9)), 
                url('Admin/images/cta-bg.jpg'); /* पीछे एक धुंधली इमेज लगाने के लिए */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* पैरालैक्स इफेक्ट के लिए */
    text-align: center;
    color: #ffffff;
}

.cta-container {
    max-width: 850px;
    margin: 0 auto;
}

.cta-container span {
    font-size: 1.1rem;
    color: var(--accent); /* #c5a059 */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.cta-container h2 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* स्क्रीन के हिसाब से फॉन्ट एडजस्ट होगा */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.cta-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* --- Buttons Container --- */
.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* मोबाइल पर बटन ऊपर-नीचे हो जाएंगे */
}

/* Common Button Style */
.btn-main {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
}

/* Member Button (Outline Style) */
.btn-member {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-member:hover {
    background: #ffffff;
    color: var(--primary);
    transform: translateY(-5px);
}

/* Donate Button (Solid Accent Style) */
.btn-donate-cta {
    background: var(--accent);
    color: #ffffff;
    border: 2px solid var(--accent);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-donate-cta:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
}

.btn-donate-cta i {
    transition: transform 0.3s;
}

.btn-donate-cta:hover i {
    transform: scale(1.3);
}

/* --- Responsive Media Queries --- */

@media (max-width: 768px) {
    .cta-section {
        padding: 70px 15px;
    }
    
    .cta-container p {
        font-size: 1rem;
    }

    .cta-btns {
        flex-direction: column; /* मोबाइल पर बटन्स एक के नीचे एक */
        align-items: center;
    }

    .btn-main {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
   }

   /* --- Testimonial Section Styles --- */
.testimonial-section {
    padding: 80px 20px;
    background-color: #f9fbfd; /* हल्का ग्रे/नीला बैकग्राउंड */
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header span {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary);
    font-weight: 700;
}

.header-line {
    width: 70px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto 0;
}

/* --- Responsive Grid Layout --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Card Design --- */
.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-bottom: 4px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- Quote Icon & Stars --- */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.1;
}

.star-rating {
    margin-bottom: 20px;
}

.star-rating i {
    font-size: 0.9rem;
    margin-right: 2px;
}

/* --- Text Content --- */
.testi-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1; /* यह सुनिश्चित करता है कि यूजर इन्फो हमेशा नीचे रहे */
}

/* --- User Profile Section --- */
.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.testi-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    transition: 0.3s;
}

.testimonial-card:hover .testi-user img {
    border-color: var(--accent);
}

.user-info h4 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 3px;
    font-weight: 700;
}

.user-info span {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
}

/* --- Media Queries for Mobile --- */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 15px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr; /* मोबाइल पर सिर्फ एक कार्ड दिखेगा */
    }

    .testimonial-card {
        padding: 30px;
    }
}

/* --- Events Section Styling --- */
.events-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Event Card --- */
.event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Image & Date Badge */
.event-image {
    position: relative;
    height: 230px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--accent); /* आपका गोल्डन कलर */
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.event-date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.event-date-badge .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Event Content */
.event-content {
    padding: 25px;
}

.event-meta {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.event-meta li {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-meta li i {
    color: var(--accent);
}

.event-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.event-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.read-more-btn:hover {
    color: var(--accent);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Partners Section with Icons --- */
.partners-section {
    padding: 60px 20px;
    background-color: #f9fbfd;
    text-align: center;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.partner-item {
    text-align: center;
    color: #b0b0b0; /* हल्का ग्रे कलर */
    transition: all 0.4s ease;
    cursor: pointer;
}

.partner-item i {
    font-size: 3.5rem; /* आइकॉन का साइज */
    margin-bottom: 15px;
    display: block;
}

.partner-item p {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Effect: आइकॉन आपके प्राइमरी या एक्सेन्ट कलर में बदल जाएगा */
.partner-item:hover {
    color: var(--accent); /* आपका गोल्ड कलर #c5a059 */
    transform: translateY(-10px);
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .partners-grid {
        gap: 30px;
    }
    .partner-item i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* मोबाइल पर 2 कॉलम */
    }
  }

  .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .hero h1 { font-size: 3.5rem; letter-spacing: 2px; }

        /* Main Container */
        .container {
            max-width: 1140px;
            margin: auto;
            padding: 50px 20px;
        }

        /* Mission, Vision, Values Grid */
        .grid-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .card {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border-bottom: 4px solid #0f2d44;
        }

        .card:hover { transform: translateY(-5px); }
        .card h2 { color: #2ecc71; margin-bottom: 15px; font-size: 1.5rem; }

        /* Story Section */
        .content-block {
            background: #fff;
            padding: 50px;
            border-radius: 12px;
            margin-bottom: 60px;
        }

        .content-block h2 { 
            margin-bottom: 25px; 
            color: #0f2d44; 
            position: relative;
            padding-bottom: 10px;
        }

        .content-block h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: #0f2d44;
        }

        /* Team Section */
        .team-title { text-align: center; margin-bottom: 40px; font-size: 2.5rem; }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .member {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
        }

        .member img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            filter: grayscale(20%);
        }

        .member h3 { margin-bottom: 5px; color: #2c3e50; }
        .member p { color: #0f2d44; font-weight: 600; }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .content-block { padding: 30px; }
        }
        .who-we-are-section {
    padding: 70px 20px;
    background: linear-gradient(to right, #f9fbff, #eef5ff);
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #1e3a8a;
}

.section-header p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    color: #555;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.who-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.who-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.icon-box {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 20px;
}

.who-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

.who-card p {
    font-size: 14px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
}

.transparency-section {
    padding: 80px 20px;
    background: #f5f7fb;
}

.transparency-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

.transparency-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.transparency-content {
    flex: 1;
}

.transparency-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #0f172a;
}

.section-desc {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-card {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 22px;
    color: #2563eb;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .transparency-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .info-card {
        text-align: left;
    }

    .transparency-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .transparency-content h2 {
        font-size: 26px;
    }
}

.cta-section {
    background: #d4af37;
    padding: 100px 20px;
    text-align: center;
    color: #111;
}

.cta-container {
    max-width: 900px;
    margin: auto;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ffffff;
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
}

.btn-secondary {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 25px;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

.mission-vision-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.mv-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
}

.mv-icon {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 20px;
}

.mv-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #111;
}

.mv-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mv-card {
        padding: 25px 20px;
    }

    .mv-card h2 {
        font-size: 22px;
    }
}

.core-values-section {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #111;
}

.section-header p {
    color: #666;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.value-card {
    background: #f9fafb;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.value-icon {
    font-size: 38px;
    color: #d4af37;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 26px;
    }

    .value-card {
        padding: 25px 18px;
    }
}

.journey-section {
    padding: 90px 20px;
    background: #f8fafc;
    text-align: center;
}

.journey-section .section-header h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.journey-section .section-header p {
    color: #666;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #d4af37;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: #d4af37;
    border-radius: 50%;
    top: 30px;
    z-index: 1;
}

.timeline-item:nth-child(odd)::before {
    right: -9px;
}

.timeline-item:nth-child(even)::before {
    left: -9px;
}

/* Responsive */
@media (max-width: 768px) {

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        text-align: left !important;
        left: 0 !important;
    }

    .timeline-item::before {
        left: 11px !important;
    }
}

.leadership-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('images/ngo-banner.jpg') center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.leadership-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.leadership-hero p {
    font-size: 18px;
}

@media (max-width:768px){
    .leadership-hero h1 {
        font-size: 30px;
    }
}

.leadership-wrapper {
    padding: 80px 20px;
    background: #f4f6f9;
}

.category-section {
    margin-bottom: 80px;
}

.category-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
    color: #111;
    position: relative;
}

.category-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #d4af37;
    display: block;
    margin: 10px auto 0;
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.leader-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
}

.leader-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.leader-content h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #1e293b;
}

.leader-role {
    color: #0ea5e9;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.leader-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0284c7;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 12px;
}

.leader-address {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {

    .category-title {
        font-size: 24px;
    }

    .leader-img img {
        height: 240px;
    }

    .leader-card {
        padding: 20px;
    }
}

.impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: #fff;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.impact-box h2 {
    font-size: 40px;
    font-weight: 700;
}

.impact-box p {
    font-size: 16px;
    margin-top: 10px;
}
.cta-section {
    padding: 80px 0;
    background: #0f2d44;
    border: 2px solid #d4af37;
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 25px;
}

.cta-buttons a {
    padding: 12px 30px;
    border-radius: 30px;
    margin: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn-donate {
    background: #0d6efd;
    color: #fff;
}

.btn-join {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-buttons a:hover {
    transform: scale(1.05);
}

.reports-section {
    background: #2d3436;
    padding: 80px 0;
    color: #c5a059;
}

.reports-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.reports-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #c5a059;
}

.reports-section p {
    color: #ddd;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.report-card {
    background: #1e272e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.report-card:hover {
    transform: translateY(-8px);
}

.report-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.report-content {
    padding: 25px;
    text-align: center;
}

.report-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #c5a059;
}

.report-date {
    display: block;
    margin-bottom: 15px;
    color: #aaa;
}

.download-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #c5a059;
    color: #2d3436;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.download-btn:hover {
    background: #fff;
    color: #2d3436;
}

/* Responsive */
@media(max-width:768px){
    .reports-section {
        padding: 50px 20px;
    }

    .reports-section h2 {
        font-size: 26px;
    }

    .report-image img {
        height: 200px;
    }
  }

  .transparency-section {
    background: white;
    padding: 80px 0;
    color: #c5a059;
}

.transparency-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.transparency-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.transparency-section p {
    color: #ccc;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trans-card {
    background: ;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.trans-card:hover {
    transform: translateY(-10px);
}

.trans-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.trans-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #c5a059;
}

.trans-card p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #ddd;
}

.view-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #c5a059;
    color: #2d3436;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.view-btn:hover {
    background: #fff;
    color: #2d3436;
}

/* Responsive */
@media(max-width:768px){
    .transparency-section {
        padding: 50px 20px;
    }

    .transparency-section h2 {
        font-size: 24px;
    }
}

.financial-status {
    padding: 80px 20px;
    background: #f4f6f9;
}

.finance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.finance-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.finance-card:hover {
    transform: translateY(-10px);
}

.finance-card .icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.finance-card h4 {
    font-size: 22px;
    color: #2d3436;
}

.finance-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0;
    color: #2d3436;
}

.finance-card p {
    letter-spacing: 2px;
    font-size: 14px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.positive {
    background: #d4f8d4;
    color: #1e7e34;
}

.negative {
    background: #ffe3e3;
    color: #c82333;
}

.success {
    background: #d1ecf1;
    color: #0c5460;
}

.info {
    background: #e2e3e5;
    color: #383d41;
}

/* Responsive */
@media(max-width:768px){
    .finance-card {
        padding: 30px 15px;
    }

    .finance-card h2 {
        font-size: 28px;
    }
}

.finance-section{
    padding:80px 20px;
    background:#f1f4f9;
}

.finance-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:40px;
}

.finance-card{
    background:#fff;
    padding:30px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.finance-card h2{
    margin-bottom:20px;
    font-size:24px;
    font-weight:700;
    color:#2d3436;
}

canvas{
    width:100% !important;
    height:350px !important;
}

@media(max-width:768px){
    canvas{
        height:280px !important;
    }
}

.impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 700px;
    margin: auto;
    color: #475569;
    font-size: 16px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.impact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.impact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.impact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.impact-card p {
    font-size: 15px;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .impact-card {
        padding: 20px;
    }
}

  :root {
    --dark-blue: #002B5B;
    --yellow: #F5A623;
    --gray-text: #4a4a4a;
  }

  .partner-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
  }

  /* Header Lines Design */
  .header-group {
    position: relative;
    margin-bottom: 50px;
    display: inline-block;
    width: 100%;
  }

  .blue-line-top, .blue-line-bottom {
    height: 2px;
    background-color: #3b82f6; /* Light Blue Line as per image */
    width: 60%;
  }

  .partner-title {
    color: var(--dark-blue);
    font-size: 2.8rem;
    font-weight: 900;
    margin: 10px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .yellow-bar {
    width: 100px;
    height: 6px;
    background-color: var(--yellow);
    margin: 15px auto 15px 20%;
  }

  /* Flex Layout */
  .partner-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
  }

  .text-side {
    flex: 1;
    min-width: 300px;
  }

  .text-side p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 25px;
  }

  .image-side {
    flex: 0.6;
    min-width: 300px;
  }

  .img-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: block;
  }

  /* --- Responsive Breakpoints --- */
  @media (max-width: 768px) {
    .partner-title {
      font-size: 1.8rem;
    }
    
    .blue-line-top, .blue-line-bottom {
      width: 100%;
    }

    .partner-content {
      flex-direction: column; /* Mobile par image niche jayegi */
    }

    .yellow-bar {
      margin: 10px 0;
    }
  }

  .school-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/education-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
}

.school-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.school-hero p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-btn {
    background: #d4af37;
    padding: 12px 30px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.school-about {
    padding: 80px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 40px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
}

.school-objectives {
    padding: 80px 20px;
    background: #f9fafb;
    text-align: center;
}

.objective-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.objective-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.objective-card i {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 15px;
}

.school-process {
    padding: 80px 20px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.step {
    max-width: 300px;
}

.step span {
    background: #d4af37;
    color: #fff;
    font-weight: bold;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

.school-cta {
    padding: 80px 20px;
    background: #2d3436;
    color: #fff;
    text-align: center;
}

.cta-btn {
    background: #d4af37;
    padding: 12px 30px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

@media(max-width:768px){
    .school-hero h1 {
        font-size: 32px;
    }
}

.roles-section { text-align: center; padding: 60px 0; background-color: #fcfcfc; }
        .roles-title { 
            font-size: 2.2rem; 
            font-weight: 800; 
            color: var(--dark-blue); 
            margin-bottom: 50px; 
        }

        .roles-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 40px; 
            text-align: left;
        }

        .role-card { display: flex; align-items: flex-start; gap: 20px; }

        /* Icon Styling */
        .icon-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-size: 1.8rem;
        }
        .blue-bg { background-color: var(--sky-blue); }
        .green-bg { background-color: var(--forest-green); }

        .role-info h3 { font-size: 1.5rem; color: var(--dark-blue); margin-bottom: 8px; }
        .role-info p { color: var(--text-gray); line-height: 1.5; font-size: 1rem; }

        /* --- Responsive Logic --- */
        @media (max-width: 768px) {
            .flex-row { flex-direction: column; }
            .yellow-stripe { margin-left: 0; }
            .roles-title { font-size: 1.8rem; }
            .role-card { flex-direction: column; align-items: center; text-align: center; }
        }

  .hero-section {
            width: 100%;
            height: 400px; /* आप अपनी जरूरत के हिसाब से कम-ज्यादा कर सकती हैं */
            background: linear-gradient(90deg, #1a3c5a 0%, #c5a059 100%); /* Blue Gradient as per image */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 20px;
        }

        /* Main Heading */
        .hero-title {
            font-family: 'Playfair Display', serif; /* Serif font like image */
            font-size: clamp(2.5rem, 8vw, 5rem); /* Responsive font size */
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: 1px;
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Breadcrumb / Sub-text */
        .breadcrumb {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .breadcrumb span {
            opacity: 0.8;
            margin: 0 10px;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .breadcrumb a:hover {
            opacity: 0.7;
        }

        /* Responsive Mobile adjustment */
        @media (max-width: 600px) {
            .hero-section {
                height: 300px;
            }
            .breadcrumb {
                font-size: 0.8rem;
                letter-spacing: 1px;
            }
        }      

.hero-philanthropy {
            background: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 20px;
        }

        .hero-philanthropy h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .breadcrumb {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .breadcrumb span { margin: 0 8px; opacity: 0.7; }

        /* --- Content Section --- */
        .content-section {
            max-width: 1000px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .intro-text {
            text-align: center;
            font-size: 1.25rem;
            color: var(--dark-blue);
            margin-bottom: 50px;
            font-weight: 500;
        }

        /* --- Grid of Pillars --- */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pillar-card {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--gradient-start);
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .pillar-card:hover {
            transform: translateY(-5px);
        }

        .pillar-card h3 {
            color: var(--dark-blue);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        /* --- Call to Action --- */
        .cta-box {
            background: #f0f9ff;
            padding: 40px;
            border-radius: 20px;
            margin-top: 60px;
            text-align: center;
        }

        .cta-btn {
            display: inline-block;
            background: var(--dark-blue);
            color: white;
            padding: 12px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 20px;
            transition: background 0.3s;
        }

        .cta-btn:hover { background: #004080; }

        /* --- Mobile Responsiveness --- */
        @media (max-width: 768px) {
            .hero-philanthropy { height: 300px; }
            .content-section { margin: 50px auto; }
            .intro-text { font-size: 1.1rem; }
        }

        .journey-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f8f9fc, #eef2f7);
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.journey-header p {
    max-width: 750px;
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.journey-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.journey-card .year {
    display: inline-block;
    background: #d4af37;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.journey-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.journey-card p {
    font-size: 15px;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .journey-header h2 {
        font-size: 28px;
    }

    .journey-header p {
        font-size: 15px;
    }
}

.testimonial-section {
    padding: 80px 20px;
    background: #f4f6f9;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.faq-section {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    border-left: 5px solid #d4af37;
    background: #f8f9fc;
}

/* General Styling */
:root {
    --primary-blue: #1b3d5f; /* लोगो का गहरा नीला रंग */
    --accent-gold: #c5a059;  /* लोगो का गोल्डन बॉर्डर */
    --accent-orange: #f28c33; /* सूरज का रंग */
    --text-gray: #555;
    --white: #ffffff;
}

.activity-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* हेडिंग के नीचे एक छोटी लाइन */
.section-heading h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 10px auto;
}

.section-heading p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Grid Layout */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Activity Card Styling */
.activity-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--accent-gold);
}

/* Icon & Image Styling */
.activity-icon {
    font-size: 50px;
    color: var(--primary-blue);
    padding: 30px 0 10px;
    text-align: center;
}

.activity-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.1);
}

/* Content Styling */
.activity-content {
    padding: 25px;
    text-align: center;
}

.activity-content h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.activity-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .activity-grid {
        grid-template-columns: 1fr; /* मोबाइल पर एक कॉलम */
    }
}


