:root {
    --saffron: #e67e22;
    --deep-red: #c0392b;
    --white: #ffffff;
}

/* Slider Container */
.mySwiper {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 7; /* डेस्कटॉप के लिए */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Image Optimization & Ken Burns Effect */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-in-out;
}

/* जब स्लाइड एक्टिव हो तो इमेज ज़ूम होगी */
.swiper-slide-active img {
    transform: scale(1.15);
}

/* Content Overlay */
.slider-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 10%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    color: var(--white);
    z-index: 2;
}

.slider-content h2 {
    font-family: 'Martel', serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 800;
    max-width: 600px;
    line-height: 1.2;
    margin-bottom: 25px;
    /* Animation */
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.3s;
}

/* Interactive Slider Button */
.btn-slider {
    display: inline-block;
    width: fit-content;
    padding: 14px 30px;
    background: linear-gradient(45deg, var(--saffron), var(--deep-red));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    transition: 0.4s ease;
    transform: translateY(40px);
    opacity: 0;
}

.btn-slider:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--white);
    color: var(--deep-red);
}

/* एक्टिव होने पर टेक्स्ट एनीमेशन */
.swiper-slide-active .slider-content h2,
.swiper-slide-active .btn-slider {
    transform: translateY(0);
    opacity: 1;
}

/* Navigation Buttons Styling */
.swiper-button-next, .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    transition: 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--saffron);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
}

/* Modern Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--white) !important;
    opacity: 0.5;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 10px;
    background: var(--saffron) !important;
    opacity: 1;
}

/* 📱 Mobile Responsiveness */
@media (max-width: 768px) {
    .mySwiper {
        aspect-ratio: 4 / 3; /* मोबाइल पर हाइट बेहतर दिखेगी */
        border-radius: 12px;
    }
    
    .slider-content {
        padding: 0 5%;
        background: rgba(0,0,0,0.4);
        text-align: center;
        align-items: center;
    }
    
    .btn-slider {
        padding: 10px 20px;
        font-size: 14px;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none; /* मोबाइल पर टच स्वाइप काफी है */
    }
}



.about-section {
    padding: 80px 5%;
    background: #ffffff;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Image Styling */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.main-about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-border-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 10px solid var(--primary-saffron);
    border-radius: 20px;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -10px;
    background: linear-gradient(45deg, var(--primary-saffron), var(--deep-red));
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(192, 57, 43, 0.3);
    animation: float 3s ease-in-out infinite;
}

.experience-badge h2 { font-size: 35px; margin: 0; font-weight: 800; }
.experience-badge p { font-size: 13px; margin: 0; line-height: 1.2; text-transform: uppercase; }

/* Content Styling */
.section-tag {
    color: var(--deep-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.about-title {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 800;
}

.about-subtitle {
    color: var(--primary-saffron);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    transition: transform 0.3s ease;
}

.feature-item i {
    color: var(--deep-red);
    font-size: 18px;
}

.feature-item:hover { transform: translateX(5px); color: var(--primary-saffron); }

/* Button Styling */
.btn-read-more {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, var(--primary-saffron), var(--deep-red));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.btn-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(192, 57, 43, 0.4);
    background: var(--dark-text);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 📱 Responsive Adjustments */
@media (max-width: 991px) {
    .about-container { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrapper { order: 2; }
    .main-about-img { height: 350px; }
    .features-list { grid-template-columns: 1fr; }
}



/* Section */
.impact-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, #fdfdfd, #f8f9fa);
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .tag {
    color: var(--deep-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-header .title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-top: 10px;
    line-height: 1.3;
}

/* Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 70px;
}

/* Card */
.impact-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

/* Hover Glow Effect */
.impact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(230,126,34,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Icon */
.icon-box {
    width: 75px;
    height: 75px;
    background: rgba(230, 126, 34, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.icon-box i {
    font-size: 32px;
    color: var(--deep-red);
}

.impact-card:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
    background: rgba(230, 126, 34, 0.2);
}

/* Text */
.impact-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-blue);
}

.impact-card .plus {
    color: var(--saffron);
}

.impact-card p {
    color: #666;
    font-size: 15px;
    margin-top: 10px;
}

/* CSR Section */
.csr-container {
    background: linear-gradient(135deg, var(--dark-blue), #16222a);
    border-radius: 25px;
    padding: 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative Circle */
.csr-container::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: var(--saffron);
    opacity: 0.08;
    border-radius: 50%;
}

.csr-content h2 {
    font-size: 2rem;
    color: var(--saffron);
    margin-bottom: 15px;
}

/* Options */
.csr-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    transition: 0.3s;
}

.option-item i {
    color: var(--saffron);
    font-size: 18px;
}

.option-item:hover {
    transform: translateX(5px);
    color: var(--saffron);
}

/* Button */
.csr-btn {
    display: inline-block;
    background: var(--saffron);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(230,126,34,0.3);
}

.csr-btn:hover {
    background: var(--white);
    color: var(--deep-red);
    transform: scale(1.07);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .section-header .title {
        font-size: 2.2rem;
    }

    .csr-container {
        padding: 35px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .impact-section {
        padding: 60px 20px;
    }

    .section-header .title {
        font-size: 1.8rem;
    }

    .impact-card {
        padding: 30px 20px;
    }

    .csr-container {
        padding: 25px;
        text-align: center;
    }

    .option-item {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section-header .title {
        font-size: 1.5rem;
    }

    .csr-btn {
        width: 100%;
        text-align: center;
    }
}



.services-area {
    padding: 80px 5%;
    background-color: #fdf2e9; /* हल्का केसरिया बैकग्राउंड */
    font-family: 'Poppins', sans-serif;
}

/* Section Title Styling */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--deep-red);
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-saffron), var(--deep-red));
    border-radius: 2px;
}

/* Services Wrapper */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.service-item {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(192, 57, 43, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(230, 126, 34, 0.1);
}

.service-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(192, 57, 43, 0.2);
}

/* Image Section with Badge */
.service-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.service-item:hover .service-img-box img {
    transform: scale(1.2); /* Ken Burns Effect */
}

.service-type-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, var(--primary-saffron), var(--deep-red));
    color: var(--white);
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Details Section */
.service-details {
    padding: 30px;
    text-align: left;
}

.service-details h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s;
}

.service-item:hover .service-details h3 {
    color: var(--deep-red);
}

.location-info {
    font-size: 14px;
    color: var(--primary-saffron);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-details p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Action Button */
.view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    background: var(--deep-red);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-more:hover {
    background: var(--primary-saffron);
    padding-right: 35px;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.view-more i {
    transition: transform 0.3s ease;
}

.view-more:hover i {
    transform: translateX(5px);
}

/* 📱 Mobile Responsiveness */
@media (max-width: 768px) {
    .services-area {
        padding: 60px 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }

    .service-img-box {
        height: 220px;
    }
    
    .service-details {
        padding: 25px;
    }
}

.help-section {
    padding: 80px 5%;
    background-color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.help-header {
    text-align: center;
    margin-bottom: 50px;
}

.help-header .tag {
    color: var(--deep-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.help-header .title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-top: 10px;
}

/* Grid Layout */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Interactive Card Styling */
.help-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    position: relative;
    z-index: 1;
}

.help-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0;
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    border-radius: 20px;
    transition: 0.4s;
    z-index: -1;
    opacity: 0;
}

.help-card:hover::before {
    height: 100%;
    opacity: 1;
}

.help-card:hover {
    transform: translateY(-10px);
}

.help-card:hover h3, 
.help-card:hover p, 
.help-card:hover .help-link {
    color: var(--white);
}

/* Icon Box */
.help-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.help-icon i {
    font-size: 30px;
    color: var(--deep-red);
}

.help-card:hover .help-icon {
    background: rgba(255, 255, 255, 0.2);
}

.help-card:hover .help-icon i {
    color: var(--white);
}

.help-card h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.help-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.help-link {
    text-decoration: none;
    color: var(--deep-red);
    font-weight: 700;
    font-size: 15px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.help-link:hover {
    border-bottom: 2px solid var(--white);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .help-header .title { font-size: 1.8rem; }
    .help-card { padding: 30px 20px; }
}


/* --- Section Layout --- */
.gallery-section {
    padding: 60px 15px;
    background-color: #fffaf0; /* Light cream background */
}

.gallery-title {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-title h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

/* Saffron Underline Effect */
.gallery-title h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(to right, var(--bhagwa), var(--golden));
    bottom: 0;
    left: 20%;
    border-radius: 10px;
}

.gallery-title p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* --- Responsive Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Gallery Card & Interactive Effects --- */
.gallery-card {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid #fff; /* White frame */
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.5s ease;
    opacity: 0.9;
}

/* --- Overlay Animation --- */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(139, 0, 0, 0.9) 10%, transparent 90%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-overlay h3 {
    color: var(--golden);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* --- Hover States --- */
.gallery-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 153, 51, 0.4); /* Saffron shadow glow */
    border-color: var(--bhagwa);
}

.gallery-card:hover img {
    transform: scale(1.15);
    opacity: 1;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    .gallery-title h2 {
        font-size: 1.8rem;
    }
    .gallery-card {
        height: 240px;
    }
}


/* --- Section Container --- */
.cta-section {
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--dark-maroon) 100%);
    padding: 80px 20px;
    text-align: center;
    color: red;
    position: relative;
    overflow: hidden;
}

/* Background Texture Effect (Optional) */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(255,153,51,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- Typography --- */
.sub-title {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--bhagwa);
    margin-bottom: 15px;
    font-size: 14px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #3e0600;
    line-height: 1.2;
    margin-bottom: 30px;
    /* Glowing effect like the image text */
    text-shadow: 0 0 15px rgba(255, 153, 51, 0.6), 2px 2px 4px #000;
}

/* --- Interactive Glassmorphism Card --- */
.description-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3); /* Golden border */
    padding: 30px;
    border-radius: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.description-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

/* --- Button Group & Animations --- */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Become a Member - Outline Button */
.btn-outline {
    border: 2px solid var(--golden-glow);
    color: var(--golden-glow);
    background: transparent;
}

.btn-outline:hover {
    background: var(--golden-glow);
    color: var(--deep-red);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Donate Now - Filled Button */
.btn-fill {
    background: var(--bhagwa);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

.btn-fill:hover {
    background: #fff;
    color: var(--deep-red);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.6);
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .description-card {
        font-size: 1rem;
        padding: 20px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}



.activity-section {
    background-color: #fffaf0;
}

.section-title {
    color: var(--deep-red);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.title-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--bhagwa), var(--golden));
    margin: 10px auto;
    border-radius: 10px;
}

/* Grid Layout */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Card Styling */
.activity-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.15);
    border-color: var(--bhagwa);
}

/* Image Section */
.activity-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.img-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(139, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.img-overlay i {
    color: #fff;
    font-size: 30px;
    transform: scale(0.5);
    transition: 0.4s;
}

.activity-card:hover .img-overlay { opacity: 1; }
.activity-card:hover .img-overlay i { transform: scale(1); }
.activity-card:hover .activity-img img { transform: scale(1.1); }

/* Card Body */
.activity-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activity-title {
    color: var(--deep-red);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.activity-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Read More Button */
.read-more-btn {
    margin-top: auto;
    color: var(--deep-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    color: var(--bhagwa);
}

.read-more-btn:hover i {
    transform: translateX(8px);
}

/* Responsive */
@media (max-width: 768px) {
    .activity-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
}




.support-action-section {
    padding: 80px 0;
    background: linear-gradient(rgba(139, 0, 0, 0.05), rgba(255, 153, 51, 0.05));
    border-top: 1px solid #eee;
}

.badge-text {
    background: var(--bhagwa);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--deep-red);
    margin-top: 15px;
    line-height: 1.2;
}

.support-title span {
    color: var(--bhagwa);
}

.support-desc {
    font-size: 1.1rem;
    color: #555;
    margin: 20px 0;
    line-height: 1.7;
}

/* Feature List */
.support-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
}

.feature-item i {
    color: var(--bhagwa);
    font-size: 1.2rem;
}

/* Action Card Styling */
.action-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.1);
    border: 2px solid var(--bhagwa);
    text-align: center;
    transition: 0.4s;
}

.action-card:hover {
    transform: translateY(-5px);
}

.action-card h3 {
    color: var(--deep-red);
    font-weight: 800;
    margin-bottom: 10px;
}

.btn-member {
    background: transparent;
    border: 2px solid var(--deep-red);
    color: var(--deep-red);
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-member:hover {
    background: var(--deep-red);
    color: #fff;
}

.btn-donate {
    background: var(--bhagwa);
    color: #fff;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
    transition: 0.3s;
}

.btn-donate:hover {
    background: var(--deep-red);
    transform: scale(1.02);
}

.contact-info-small {
    margin-top: 20px;
    font-weight: 700;
    color: #777;
}

/* Responsive */
@media (max-width: 991px) {
    .support-title { font-size: 2.2rem; }
    .action-card { padding: 30px; margin-top: 20px; }
}

