        #loader {
            position: fixed;
            width: 100%;
            height: 100%;
            background: #111;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* HIDE AFTER LOAD */
        .hide-loader {
            display: none;
        }

        main {
            padding: 40px;
        }


/* Container Styles */
.slider-container {
    position: relative;
    max-width: 100%;
    height: 600px; /* आप अपनी ज़रूरत अनुसार बदल सकते हैं */
    overflow: hidden;
    background-color: #000; /* Black Background */
    font-family: 'Arial', sans-serif;
    border: 2px solid #ff0e1e;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay Styling */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 30%, transparent 100%); /* Dark gradient for readability */
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.overlay-content {
    max-width: 500px;
    color: #fff;
}

.overlay-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: black;
}

/* Donate Button */
.donate-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e63946; /* Red Color */
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.donate-btn:hover {
    background-color: #fff;
    color: #e63946;
    border: 2px solid #e63946;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(230, 57, 70, 0.7); /* Semi-transparent Red */
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 10;
}

.prev:hover, .next:hover {
    background-color: #000;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Responsive Design */
@media (max-width: 768px) {
    .slider-container { height: 400px; }
    
    .overlay {
        background: rgba(0, 0, 0, 0.6); /* Full dark overlay on mobile */
        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }

    .overlay-content h2 {
        font-size: 1.8rem;
    }
}


/* Section */
:root {
    --red: #ff1a1a;
    --dark-red: #cc0000;
    --white: #ffffff;
    --text-dark: #111;
    --light-gray: #f5f5f5;
}

/* Section */
.about-section {
    background: var(--white);
    padding: 80px 0;
    color: var(--text-dark);
}

/* Heading */
.about-heading {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: var(--text-dark); /* Black heading */
}

.about-heading span {
    color: var(--red);
}

/* Layout */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Images */
.about-images {
    flex: 1;
    position: relative;
}

.main-img-box img {
    width: 100%;
    border-radius: 10px;
    transition: 0.4s;
}

.main-img-box img:hover {
    transform: scale(1.05);
}

/* Small Image */
.small-img-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
}

.small-img-box img {
    width: 180px;
    border-radius: 10px;
    border: 3px solid var(--red);
    background: #fff;
}

/* Content */
.about-content {
    flex: 1;
}

.sub-title {
    color: var(--red);
    font-weight: bold;
}

.about-title {
    font-size: 28px;
    margin: 10px 0;
    color: var(--text-dark); /* Black heading */
}

.description {
    color: #555;
    line-height: 1.7;
}

/* List */
.handicap-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.handicap-list li {
    background: var(--light-gray); /* Light instead of black */
    margin-bottom: 10px;
    padding: 12px;
    border-left: 4px solid var(--red);
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.handicap-list li i {
    margin-right: 10px;
    color: var(--red);
}

/* Hover */
.handicap-list li:hover {
    background: var(--red);
    color: #fff;
    transform: translateX(6px);
}

.handicap-list li:hover i {
    color: #fff;
}

/* Button */
.read-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: var(--dark-red);
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
    }

    .small-img-box {
        position: static;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .about-heading {
        font-size: 28px;
    }

    .about-title {
        font-size: 22px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f9f9f9;
}

/* Heading */
.service-heading {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #111;
}

.service-heading span {
    color: #ff1a1a;
}

.service-subtext {
    text-align: center;
    color: #666;
    margin-top: 10px;
}

/* Grid */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Card */
.service-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.service-card i {
    font-size: 40px;
    color: #ff1a1a;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

.service-card p {
    font-size: 14px;
    color: #555;
}

/* Hover */
.service-card:hover {
    background: #ff1a1a;
    transform: translateY(-8px);
}

.service-card:hover i,
.service-card:hover h4,
.service-card:hover p {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .service-heading {
        font-size: 28px;
    }
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

/* Heading */
.impact-heading {
    font-size: 36px;
    font-weight: bold;
    color: #111;
}

.impact-heading span {
    color: #ff1a1a;
}

.impact-subtext {
    color: #666;
    margin-top: 10px;
}

/* Grid */
.impact-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Card */
.impact-card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.impact-card i {
    font-size: 35px;
    color: #ff1a1a;
    margin-bottom: 10px;
}

.impact-card h3 {
    font-size: 28px;
    margin: 10px 0;
    color: #111;
}

.impact-card p {
    color: #555;
}

/* Hover */
.impact-card:hover {
    background: #ff1a1a;
    transform: translateY(-8px);
}

.impact-card:hover i,
.impact-card:hover h3,
.impact-card:hover p {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .impact-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .impact-wrapper {
        grid-template-columns: 1fr;
    }

    .impact-heading {
        font-size: 28px;
    }
}


/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

/* Heading */
.gallery-heading {
    font-size: 36px;
    font-weight: bold;
    color: #111;
}

.gallery-heading span {
    color: #ff1a1a;
}

.gallery-subtext {
    color: #666;
    margin-top: 10px;
}

/* Grid */
.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s;
}

/* Hover Zoom */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 26, 26, 0.8);
    color: #fff;
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-heading {
        font-size: 28px;
    }
}

/* Section */
.testimonial-section {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

/* Heading */
.testimonial-heading {
    font-size: 36px;
    font-weight: bold;
    color: #111;
}

.testimonial-heading span {
    color: #ff1a1a;
}

.testimonial-subtext {
    color: #666;
    margin-top: 10px;
}

/* Grid */
.testimonial-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Card */
.testimonial-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.4s;
    position: relative;
    border: 1px solid #eee;
}

/* Image */
.user-img {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 15px;
}

.user-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #ff1a1a;
}

/* Stars */
.stars {
    margin-bottom: 10px;
}

.stars i {
    color: #ff1a1a;
    margin: 2px;
}

/* Message */
.message {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

/* Name */
.testimonial-card h4 {
    margin: 5px 0;
    color: #111;
}

/* Role */
.testimonial-card span {
    font-size: 13px;
    color: #777;
}

/* Hover */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #ff1a1a;
}

/* Hover Text */
.testimonial-card:hover h4,
.testimonial-card:hover span,
.testimonial-card:hover .message {
    color: #fff;
}

.testimonial-card:hover .stars i {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonial-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonial-heading {
        font-size: 28px;
    }
}


/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    text-align: center;
    color: #fff;
}

/* Content */
.cta-wrapper h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-wrapper p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Buttons */
.cta-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

/* Donate Button */
.btn-donate {
    background: #fff;
    color: #ff1a1a;
    font-weight: bold;
}

.btn-donate:hover {
    background: #f1f1f1;
}

/* Join Button */
.btn-join {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-join:hover {
    background: #fff;
    color: #ff1a1a;
}

/* Responsive */
@media (max-width: 576px) {
    .cta-wrapper h2 {
        font-size: 26px;
    }
}

/* Section */
.awards-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

/* Heading */
.awards-heading {
    font-size: 36px;
    font-weight: bold;
    color: #111;
}

.awards-heading span {
    color: #ff1a1a;
}

.awards-subtext {
    color: #666;
    margin-top: 10px;
}

/* Grid */
.awards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Card */
.award-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #eee;
}

/* Image */
.award-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Content */
.award-content {
    padding: 15px;
}

.award-content h4 {
    margin: 5px 0;
    color: #111;
}

.award-content span {
    color: #ff1a1a;
    font-weight: bold;
}

/* Hover */
.award-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Hover Overlay Effect */
.award-card:hover .award-content {
    background: #ff1a1a;
}

.award-card:hover h4,
.award-card:hover span {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .awards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .awards-wrapper {
        grid-template-columns: 1fr;
    }

    .awards-heading {
        font-size: 28px;
    }
}

/* Section Background */
.donation-section {
    padding: 80px 0;
    background: #fff;
}

/* Layout */
.donation-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Card */
.donation-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    width: 320px;
    transition: 0.4s;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Hover Effect */
.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255,0,0,0.15);
}

/* Icon Circle */
.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000000, #ff1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 30px;
    color: #fff;
}

/* Heading */
.donation-card h3 {
    color: #111;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Text */
.donation-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Button */
.donate-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #ff1a1a;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

/* Alternate Button (Black) */
.donate-btn.blue {
    background: #000;
    color: #fff;
}

/* Button Hover */
.donate-btn:hover {
    background: #cc0000;
    transform: scale(1.05);
}

.donate-btn.blue:hover {
    background: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .donation-wrapper {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .donation-card {
        width: 100%;
    }
}


.gallery-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('Admin/images/banner.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

.gallery-hero h1 {
    font-size: 45px;
    color: var(--red);
}

.gallery-hero p {
    font-size: 18px;
}

/* GALLERY */
.gallery-section {
    padding: 60px 20px;
    background: var(--gray);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 26, 26, 0.8);
    width: 100%;
    height: 100%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: 0.4s;
    padding: 15px;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* ANIMATION */
.gallery-card {
    transform: translateY(30px);
    opacity: 0;
    transition: 0.6s ease;
}

.gallery-card.show {
    transform: translateY(0);
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 30px;
    }

    .gallery-card img {
        height: 200px;
    }
}


:root {
    --red: #ff1a1a;
    --black: #000000;
    --white: #ffffff;
    --gray: #f4f4f4;
}

/* SECTION */
.gallery-section {
    padding: 60px 20px;
    background: var(--gray);
}

/* CARD */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: var(--black);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* IMAGE */
.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* HOVER ZOOM */
.gallery-card:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 26, 26, 0.85);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    opacity: 0;
    transition: all 0.4s ease;
}

/* SHOW OVERLAY */
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* TEXT */
.gallery-overlay h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

/* LIGHTBOX IMAGE FIX */
.gallery-card a {
    display: block;
}

/* ANIMATION (SCROLL EFFECT) */
.gallery-card {
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s ease;
}

.gallery-card.show {
    transform: translateY(0);
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gallery-card img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 15px;
    }

    .gallery-card img {
        height: 200px;
    }

    .gallery-overlay h5 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-card img {
        height: 180px;
    }
}