/* --- Slider Container --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 550px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active { opacity: 1; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Text Content --- */
.slide-content {
    max-width: 650px;
    color: #fff;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.9;
}

/* --- Gradient Donate Button (As per Image) --- */
.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 40px;
    background: linear-gradient(90deg, #00bfa5 0%, #fbc02d 100%);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: 0.3s transform;
}

.donate-btn:hover {
    transform: scale(1.05);
}

/* --- Navigation Buttons (Orange Squares) --- */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%); /* मोबाइल पर सेंटर के लिए */
    display: flex;
    gap: 15px;
    z-index: 10;
}

.ctrl-btn {
    width: 60px;
    height: 60px;
    background: #ff6d00; /* Bright Orange */
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px; /* Slightly rounded corners like image */
    transition: 0.3s;
}

.ctrl-btn:hover {
    background: #e65100;
}

/* --- Responsive Adjustments --- */

/* For Desktop */
@media (min-width: 1024px) {
    .slider-controls {
        left: 5%; /* डेस्कटॉप पर बाईं तरफ */
        transform: none;
    }
}
.heart-donate-btn {
    display: inline-flex;
    align-items: center;
    background: #0081A7; /* आपका थीम कलर (Cyan) */
    color: white;
    text-decoration: none;
    padding: 10px 30px 10px 10px; /* लेफ्ट में कम पैडिंग ताकि दिल सेट रहे */
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 129, 167, 0.3);
}

/* दिल वाला गोला (Circle for Heart) */
.heart-icon {
    background: #FF7E07; /* ऑरेंज कलर */
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* धड़कने वाला एनीमेशन (Heartbeat Animation) */
.heart-icon i {
    animation: heartbeat 1.5s 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); }
}

/* होवर इफ़ेक्ट (Hover Effect) */
.heart-donate-btn:hover {
    background: #FF7E07; /* होवर पर कलर बदल जाएगा */
    box-shadow: 0 15px 30px rgba(255, 126, 7, 0.4);
    transform: translateY(-3px);
}

.heart-donate-btn:hover .heart-icon {
    background: white;
    color: #FF7E07;
}

/* मोबाइल के लिए रिस्पॉन्सिव */
@media (max-width: 480px) {
    .heart-donate-btn {
        padding: 8px 20px 8px 8px;
        font-size: 0.9rem;
    }
    .heart-icon {
        width: 35px;
        height: 35px;
    }
}

/* For Mobile */
@media (max-width: 768px) {
    .hero-slider { height: 85vh; }
    
    .slide-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .donate-btn {
        width: 100%;
        justify-content: center;
    }

    .slider-controls {
        bottom: 20px;
    }
    
    .ctrl-btn {
        width: 50px;
        height: 50px;
    }
}
/* हेडिंग के लिए गहरी शैडो */
.slide-content h1 {
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.8), 
                 -1px -1px 0px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

/* पैराग्राफ के लिए हल्की शैडो */
.slide-content p {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.95);
}
/* --- About Section Styling --- */
/* --- About Us Section Replacement CSS --- */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ================= IMAGES ================= */
.about-images {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

/* Static / Main Image */
.main-img-box {
    width: 85%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.main-img-box img {
    width: 100%;
    display: block;
}

/* Dynamic / Overlay Image */
.small-img-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border: 10px solid #ffffff;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    z-index: 5;
}

.small-img-box img {
    width: 100%;
    display: block;
}

/* ================= CONTENT ================= */
.about-content {
    color: #333;
}

.sub-title {
    color: #FF7E07;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.7rem;
    color: #002855;
    line-height: 1.25;
    margin-bottom: 22px;
}

.about-content h2 .highlight {
    color: #FF7E07;
}

.description {
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* ================= BUTTON ================= */
.read-more-btn {
    display: inline-block;
    background: #002855;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 40, 85, 0.25);
}

.read-more-btn:hover {
    background: #FF7E07;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 126, 7, 0.35);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .about-images {
        max-width: 520px;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
    }
}

@media (max-width: 580px) {
    .about-content h2 {
        font-size: 2rem;
    }

    .small-img-box {
        width: 65%;
        border-width: 6px;
    }
}
.about-heading {
    position: relative;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #002855;
    text-transform: capitalize;
    margin-bottom: 30px;
    display: inline-block;
    letter-spacing: 0.5px;
    cursor: default;
}

/* Highlight word */
.about-heading span {
    color: #FF7E07;
    position: relative;
    z-index: 2;
}

/* Animated underline */
.about-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 65%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #FF7E07,
        #0081A7
    );
    border-radius: 10px;
    transition: all 0.4s ease;
}

/* Glow on hover */
.about-heading:hover::after {
    width: 100%;
    box-shadow: 0 0 15px rgba(255, 126, 7, 0.6);
}

/* Subtle lift effect */
.about-heading:hover {
    transform: translateY(-2px);
    transition: 0.3s ease;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .about-heading::after {
        width: 50%;
    }
}
/* ===========================
   IMPACT SECTION – PREMIUM UI
=========================== */

.impact-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #fff7f0, #ffffff);
    overflow: hidden;
}

/* Soft animated background shapes */
.impact-section::before,
.impact-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,126,7,0.18), transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.impact-section::before {
    top: -120px;
    left: -120px;
}

.impact-section::after {
    bottom: -120px;
    right: -120px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(25px); }
}

/* Grid */
.impact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
 }
/* Card */
.impact-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 45px 20px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
 }
/* Gradient border glow */
.impact-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #ff7e07, #00b4d8);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.5s;
   }

/* Hover */
.impact-box:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: 0 40px 90px rgba(255,126,7,0.25);
}

.impact-box:hover::before {
    opacity: 1;
}

/* Numbers */
.impact-box h2 {
    font-size: 3.4rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ff7e07, #ffae00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    transition: 0.4s;
}

/* Plus sign */
.impact-box h2 span {
    font-size: 1.6rem;
}

/* Text */
.impact-box p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
}

/* Subtle shine animation */
.impact-box::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: rotate(25deg);
    transition: 0.7s;
}

.impact-box:hover::after {
    top: 100%;
}

/* =====================
   RESPONSIVE MAGIC
===================== */

@media (max-width: 992px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .impact-section {
        padding: 80px 20px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .impact-box {
        padding: 35px 20px;
    }

    .impact-box h2 {
        font-size: 2.6rem;
    }
}
/* ===============================
   ACTIVITIES SECTION
================================ */
/* ===============================
   ACTIVITIES SECTION
================================ */
.activities-section {
    padding: 80px 0;
    background: #f6f9fc;
    font-family: 'Poppins', sans-serif;
}

.activities-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* GRID SETUP */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===============================
   CARD STYLING (THE FIX)
================================ */
.activity-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden; /* इमेज को कोनों से राउंड रखने के लिए */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    
    /* Flexbox ताकि कंटेंट और बटन सही से अलाइन हों */
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* IMAGE SETUP */
.activity-img {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* ===============================
   CONTENT AREA
================================ */
.activity-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1; /* यह कंटेंट को पूरी जगह लेने देगा जिससे बटन नीचे फिक्स रहेगा */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* कंटेंट ऊपर और बटन नीचे रखेगा */
}

.activity-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 12px;
}

.activity-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===============================
   BUTTON STYLING (FIXED)
================================ */
.activity-btn {
    display: inline-block;
    align-self: center; /* बटन को बीच में रखने के लिए */
    padding: 12px 30px;
    border-radius: 50px; /* कैप्सूल शेप */
    background: #0a2540; /* डार्क ब्लू कलर जैसा इमेज में है */
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    visibility: visible !important;
    opacity: 1 !important;
}

.activity-btn:hover {
    background: #ff7a00; /* होवर पर ऑरेंज कलर */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .activities-grid { grid-template-columns: 1fr; }
    .activity-img { height: 200px; }
}

.difference-section {
    padding: 90px 0;
    background: #ffffff;
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: #ffe7d3;
    color: #ff7a00;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    color: #072a35;
    margin-bottom: 60px;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.difference-card {
    padding: 30px 20px 40px;
    transition: 0.4s ease;
}

.difference-card:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
}

.orange { background: #ff7a00; }
.red    { background: #e63946; }
.green  { background: #2e8b57; }
.blue   { background: #00b4d8; }

.difference-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #072a35;
}

.difference-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.orange-btn {
    color: #ff7a00;
    border: 2px solid #ff7a00;
}
.orange-btn:hover {
    background: #ff7a00;
    color: #fff;
}

.red-btn {
    color: #e63946;
    border: 2px solid #e63946;
}
.red-btn:hover {
    background: #e63946;
    color: #fff;
}

.green-btn {
    color: #2e8b57;
    border: 2px solid #2e8b57;
}
.green-btn:hover {
    background: #2e8b57;
    color: #fff;
}

.blue-btn {
    color: #00b4d8;
    border: 2px solid #00b4d8;
}
.blue-btn:hover {
    background: #00b4d8;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.1rem;
    }
}

.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff, #ffffff);
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-heading span {
    color: #ff7a00;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 3rem;
    color: #0a2540;
    margin: 15px 0;
}

.section-heading h2 span {
    color: #ff7a00;
}

.section-heading p {
    color: #666;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: 0.4s ease;
    border: 2px solid orange;
}

.gallery-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 65px rgba(255,122,0,0.3);
}

.gallery-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.6s ease;
}

.gallery-card:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,37,64,0.95),
        rgba(10,37,64,0.6),
        rgba(10,37,64,0.2)
    );
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: 0.5s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.view-btn {
    align-self: flex-start;
    padding: 10px 26px;
    background: linear-gradient(135deg, #ff7a00, #ff9f40);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.view-btn:hover {
    background: #ffffff;
    color: #0a2540;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2.2rem;
    }

    .gallery-img img {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 70px 0;
    }
}
.cert-section {
        padding: 60px 5%;
        background: #fdfdfd;
        text-align: center;
        font-family: 'Poppins', sans-serif;
    }

    .cert-header h2 {
        font-size: 2.2rem;
        color: var(--dark-blue);
        margin-bottom: 10px;
    }

    .underline {
        width: 70px;
        height: 4px;
        background: var(--primary-orange);
        margin: 0 auto 20px;
    }

    .cert-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 40px auto;
    }

    .cert-card {
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        transition: 0.3s;
        cursor: pointer;
        border: 1px solid #eee;
    }

    .cert-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .cert-img-container {
        height: 200px;
        background: #f9f9f9;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .cert-img-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .cert-info {
        padding: 15px;
        border-top: 1px solid #eee;
    }

    .cert-info h3 {
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 10px;
    }

    .view-btn {
        color: var(--deep-cyan);
        font-weight: 600;
        font-size: 0.85rem;
        text-decoration: none;
        text-transform: uppercase;
    }

    /* --- Modal CSS (Popup) --- */
    .cert-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.9);
        padding-top: 40px;
    }

    .modal-content {
        margin: auto;
        display: block;
        max-width: 90%;
        max-height: 80vh;
        border-radius: 8px;
        animation: zoomIn 0.3s;
    }

    @keyframes zoomIn {
        from { transform: scale(0.8); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }

    .close-cert {
        position: absolute;
        top: 20px;
        right: 35px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
    }

    #caption {
        text-align: center;
        color: #ccc;
        padding: 20px;
        font-size: 1.2rem;
    }

    .awards-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffaf4, #ffffff);
}

.awards-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.award-tag {
    display: inline-block;
    background: #fff1e6;
    color: #ff7a00;
    padding: 7px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.award-tag i {
    margin-right: 6px;
}

.awards-heading h2 {
    font-size: 3rem;
    color: #0a2540;
    margin: 15px 0;
}

.awards-heading h2 span {
    color: #ff7a00;
}

.awards-heading p {
    color: #666;
    line-height: 1.7;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.award-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    text-align: center;
}

.award-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(255,122,0,0.25);
}

.award-img {
    background: linear-gradient(135deg, #ff7a00, #ffb347);
    padding: 25px;
}

.award-img img {
    width: 90px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
}

.award-content {
    padding: 30px 25px 40px;
}

.award-content h3 {
    font-size: 1.25rem;
    color: #0a2540;
    margin-bottom: 15px;
}

.award-content h3 i {
    color: #ff7a00;
    margin-right: 6px;
}

.award-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .awards-heading h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .awards-section {
        padding: 70px 0;
    }
}

.support-section {
        /* Background Gradient (Orange to Blue) */
        background: linear-gradient(135deg, var(--orange-light) 0%, var(--blue-deep) 50%, var(--blue-dark) 100%);
        padding: 80px 5%;
        min-height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Poppins', sans-serif;
        color: white;
    }

    .support-container {
        max-width: 900px;
        width: 100%;
        text-align: left;
    }

    .support-container h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .support-container p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 40px;
        max-width: 600px;
    }

    /* Glassmorphism Box */
    .buttons-box {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 25px 45px rgba(0,0,0,0.1);
    }

    .box-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 30px;
        display: block;
    }

    /* Grid for Buttons */
    .btn-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .support-btn {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        font-size: 1rem;
        border: none;
        cursor: pointer;
    }

    /* Specific Button Colors */
    .btn-orange {
        background: var(--orange-dark);
        color: white;
    }

    .btn-white {
        background: rgba(255, 255, 255, 0.8);
        color: var(--blue-dark);
    }

    .support-btn i {
        font-size: 1.2rem;
    }

    /* Hover Effects */
    .support-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        opacity: 1;
        background: white;
        color: var(--orange-dark);
    }

    .btn-white:hover {
        background: var(--blue-deep);
        color: white;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .support-container h1 { font-size: 2rem; }
        .buttons-box { padding: 25px; }
    }
    :root {
        --orange-light: #FF9F43;
        --orange-dark: #FF7E07;
        --blue-deep: #0081A7;
        --blue-dark: #003444;
    }

    

/* NGO Causes Section */
.ngo-causes {
    padding: 70px 20px;
    background: linear-gradient(135deg, #ff9800, #0d6efd);
}

.container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #f1f1f1;
    margin-bottom: 50px;
}

/* Grid */
.cause-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card */
.cause-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cause-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* Icon */
.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd, #ff9800);
    color: #fff;
    font-size: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
}

/* Text */
.cause-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0d6efd;
}

.cause-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Button */
.donate-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 30px;
    background: #ff9800;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: #0d6efd;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

.hero-section {
            background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(255, 140, 0, 0.8)), 
                        url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            clip-path: ellipse(150% 100% at 50% 0%); /* Curved bottom effect */
        }

        .hero-content h1 {
            font-size: 4rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            animation: fadeInDown 1s ease-out;
        }

        /* --- Main Content Section --- */
        .content-container {
            max-width: 1200px;
            margin: -50px auto 50px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
        }

        .text-card {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border-left: 8px solid var(--primary-orange);
            transition: transform 0.3s ease;
        }

        .text-card:hover {
            transform: translateY(-10px);
        }

        .text-card h2 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .text-card p {
            color: #555;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .image-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .image-card img {
            width: 100%;
            height: 100%;
            display: block;
            transition: scale 0.5s ease;
        }

        .image-card:hover img {
            scale: 1.1;
        }

        /* --- Buttons --- */
        .cta-button {
            display: inline-block;
            margin-top: 25px;
            padding: 12px 30px;
            background-color: var(--primary-orange);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
        }

        .cta-button:hover {
            background-color: var(--primary-blue);
            transform: scale(1.05);
        }

        /* Animations */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .content-container {
                grid-template-columns: 1fr;
            }
            .hero-content h1 { font-size: 3rem; }
        }

        @media (max-width: 600px) {
            .hero-section { height: 40vh; }
            .hero-content h1 { font-size: 2.5rem; }
            .text-card h2 { font-size: 1.8rem; }
        }

        .header-curve {
            background: var(--orange-grad);
            height: 350px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            clip-path: ellipse(80% 60% at 50% 0%); /* Creates the image-like curve */
            position: relative;
        }

        .header-curve h1 {
            color: var(--text-blue);
            font-size: 3rem;
            font-weight: 700;
            margin-top: 50px;
        }

        /* --- Values Container --- */
        .values-container {
            max-width: 1200px;
            margin: -80px auto 50px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            padding: 0 20px;
            position: relative;
        }

        /* --- Individual Card Style --- */
        .value-card {
            background: white;
            width: 260px;
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
            border: 2px solid orange;
        }

        /* The Orange Connector Line */
        .value-card::before {
            content: "";
            position: absolute;
            top: -100px;
            left: 50%;
            width: 2px;
            height: 100px;
            background-color: var(--border-orange);
            z-index: -1;
        }

        .value-card:hover {
            transform: translateY(-15px);
            border-color: var(--border-orange);
            box-shadow: 0 15px 40px rgba(230, 81, 0, 0.2);
        }

        /* Icons placeholder (using emoji or you can use FontAwesome) */
        .icon {
            font-size: 40px;
            margin-bottom: 15px;
            display: block;
        }

        .value-card h3 {
            color: #333;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .value-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .value-card::before { display: none; } /* Hide lines on smaller screens */
            .header-curve h1 { font-size: 2.2rem; }
            .values-container { margin-top: 20px; }
        }


        .mv-section{
    padding: 70px 0;
    background: #f9fafb;
}

.mv-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card{
    background: #fff;
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    border: 2px solid orange;
    transition: 0.3s;
}

.mv-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.mv-icon{
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.mission-icon{
    background: linear-gradient(135deg, #1e90ff, #4facfe);
}

.vision-icon{
    background: linear-gradient(135deg, #9b59b6, #c471ed);
}

.mv-card h3{
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.mv-card p{
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Responsive */
@media(max-width: 768px){
    .mv-wrapper{
        grid-template-columns: 1fr;
    }
}


/* ===== GLOBAL ORANGE THEME ===== */

/* ===== HERO / HEADER SECTION ===== */

/* --- Events Section Styling --- */
.events-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #003366; /* Deep Blue */
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FF8C00; /* Vibrant Orange */
    border-radius: 2px;
}

.section-title p {
    color: #666;
    margin-top: 10px;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Event Card */
.event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border-bottom: 4px solid transparent;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #FF8C00; /* Border color on hover */
}

/* Event Image */
.event-img {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.1);
}

/* Event Content */
.event-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-content h3 {
    color: #003366;
    font-size: 1.4rem;
    margin-bottom: 15px;
    height: 50px; /* To keep titles consistent */
    overflow: hidden;
}

/* Event Meta (Date & Location) */
.event-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.event-meta i {
    color: #FF8C00; /* Orange Icons */
    margin-right: 5px;
}

.event-content p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Event Button */
.event-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #003366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto; /* Pushes button to bottom */
}

.event-btn:hover {
    background-color: #FF8C00;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

/* Modal Card */
.modal-card {
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #FF8C00;
    padding-bottom: 10px;
}

.modal-header h3 { color: #003366; }

.close-modal {
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

/* Form Styling */
.registration-form .form-group { margin-bottom: 15px; }

.registration-form input, 
.registration-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.registration-form input:focus { border-color: #FF8C00; }

.row-flex {
    display: flex;
    gap: 10px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover { background: #FF8C00; }

/* Active class to show modal */
.modal-active { display: flex; }

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* JS control karega */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

/* Modal Card */
.modal-card {
    background: #fff;
    width: 95%;
    max-width: 500px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
}

.close-modal {
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

/* Form Styling */
.registration-form .form-group {
    margin-bottom: 15px;
}

.registration-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.registration-form input:focus {
    border-color: #e67e22;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive Tablet/Mobile */
@media (max-width: 768px) {
    .section-title h2 { font-size: 2rem; }
    .modal-card { padding: 20px; width: 90%; }
}
/* Events Section Styling */
.events-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

/* Grid Layout */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Event Card */
.event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-content {
    padding: 20px;
}

.event-content h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.4rem;
}

.event-meta {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.event-meta i {
    color: #e67e22; /* Matching Foundation Theme */
    margin-right: 5px;
}

.book-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.book-btn:hover {
    background: #d35400;
}

.container { max-width: 1200px; margin: -50px auto 50px; padding: 0 20px; }

        .activity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .activity-card {
            background: white; border-radius: 15px; overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease; display: flex; flex-direction: column;
        }

        .activity-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }

        .activity-img { position: relative; height: 230px; overflow: hidden; }

        .activity-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

        .activity-card:hover .activity-img img { scale: 1.1; }

        .activity-badge {
            position: absolute; top: 15px; left: 15px;
            background: var(--primary-color); color: white;
            padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: bold;
        }

        .activity-body { padding: 25px; flex-grow: 1; }

        .activity-body h3 { margin: 0 0 15px; color: var(--secondary-color); font-size: 1.5rem; }

        .activity-content {
            color: #666; line-height: 1.6; font-size: 0.95rem;
            margin-bottom: 20px;
            display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
        }

        .read-more-btn {
            color: var(--primary-color); text-decoration: none;
            font-weight: bold; display: inline-flex; align-items: center; gap: 8px;
            transition: 0.3s;
        }

        .read-more-btn:hover { gap: 12px; }

        /* Responsive */
        @media (max-width: 768px) {
            .activity-grid { grid-template-columns: 1fr; }
            .activity-header h1 { font-size: 2rem; }
        }

        .activity-header {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(255, 140, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    padding: 120px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%); /* Stylish Bottom Cut */
}

.activity-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 0.8s ease-out;
}

.activity-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out;
}

/* --- Grid & Cards --- */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 60px 20px;
}

.activity-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Hover Effect: Card jumps up and shadow deepens */
.activity-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.activity-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.1) rotate(2deg);
}

/* Overlay on Hover */
.activity-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 140, 0, 0.2);
    opacity: 0;
    transition: 0.3s;
}

.activity-card:hover .activity-img::after {
    opacity: 1;
}

.activity-body {
    padding: 25px;
}

.activity-body h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 12px;
    transition: 0.3s;
}

.activity-card:hover h3 {
    color: var(--primary-orange);
}

/* --- Animations --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .activity-header h1 { font-size: 2.2rem; }
    .activity-header { padding: 80px 15px; clip-path: none; }
    .activity-grid { grid-template-columns: 1fr; gap: 25px; }
}

