       /* top bar and header section */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(sans-serif);
            font-size: 16px;
            line-height: 1.6;
            color: #333333;
            background-color: #f8f9fa;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Bar */
        .gd-top-bar {
    background-color: #8e1b22;
    color: #ffffff;
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gd-top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #8e1b22 0%, #a51c30 100%);
    z-index: -1;
}

.gd-top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gd-contact-info {
    display: flex;
    gap: 25px;
}

.gd-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-decoration: none;
}

.gd-contact-info a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.gd-contact-info i {
    font-size: 0.9rem;
    color: white;
}

.gd-social-icons {
    display: flex;
    gap: 18px;
}

.gd-social-icons a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gd-social-icons a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}


       /* Main Header */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 100px; /* Increased from 60px */
    height: 75px; /* Increased from 60px */
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; /* Increased from 1.5rem */
    font-weight: 700;
    color: #8e1b22;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo-text p {
    font-size: 0.75rem; /* Increased from 0.7rem */
    color: #212529;
    margin: 0;
    opacity: 0.9;
    letter-spacing: 0.5px;
    font-weight: 400;
    text-transform: uppercase;
}

/* Navigation */
.nav-container {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu a {
    color: #212529;
    font-weight: 500;
    padding: 8px 0;
    display: inline-block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #8e1b22;
}

/* Add underline effect on hover */
.nav-menu a:not(.donate-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #8e1b22;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu a:not(.donate-btn):hover::after {
    width: 100%;
}

.donate-btn {
    background: #9f1c2c;
    color: white !important;
    padding: 16px 36px !important;
    border-radius: 50px;
    margin-left: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    background: #8e1b22; /* Darker shade on hover */
}

/* Add ripple effect to donate button */
.donate-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50px;
}

.donate-btn:hover::after {
    transform: scale(1);
}

.donate-btn i {
    font-size: 1rem;
    line-height: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #8e1b22;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(142, 27, 34, 0.1);
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        padding: 100px 30px 40px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 999;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .donate-btn {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        width: 100%;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 8px 0;
    }
}

@media (max-width: 340px){
.top-bar {
    display: none;
}

}


@media (max-width: 768px) {
    .gd-top-bar {
        display: none;
    }
}


@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 12px;
        padding: 10px 0;
        display: none;
    }

.top-bar {
    display: none;
}

    .contact-info {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .social-icons {
        width: 100%;
        justify-content: center;
    }

    .header-container {
        padding: 8px 0;
    }

    .logo {
        width: 60px; /* Adjusted from 50px */
        height: 60px; /* Adjusted from 50px */
    }

    .logo-text h1 {
        font-size: 15px; /* Adjusted from 1.3rem */
    }

    .logo-text p {
        font-size: 0.7rem; /* Adjusted from 0.65rem */
    }

    .donate-btn {
        padding: 12px 24px; /* Adjusted from 8px 18px */
        font-size: 0.9rem; /* Adjusted from 0.85rem */
    }
}

@media (max-width: 576px) {
    .logo-container {
        gap: 8px;
    }

    .logo {
        width: 55px; /* Adjusted from 45px */
        height: 55px; /* Adjusted from 45px */
    }

    .logo-text h1 {
        font-size: 15px; /* Adjusted from 1.1rem */
    }

    .nav-menu {
        width: 90%;
        padding: 90px 25px 30px;
    }
}


        /* footer section */
         /* Gyaandeep Foundation Footer Styles */
        .gdf-footer {
            background-color: rgb(140, 62, 62);
            color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding: 50px 0 0;
            position: relative;
            line-height: 1.6;
        }

        .gdf-footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .gdf-footer-main {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .gdf-footer-column {
            flex: 1 1 300px;
            margin-bottom: 30px;
            padding: 0 15px;
        }

        .gdf-footer-title {
            color: #ffffff;
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .gdf-footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: rgba(255, 255, 255, 0.3);
        }

        .gdf-footer-content p {
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .gdf-footer-social h4 {
            margin: 20px 0 15px;
            font-size: 1.1rem;
        }

        .gdf-social-icons {
            display: flex;
            gap: 15px;
        }

        .gdf-social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .gdf-social-icons a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .gdf-footer-menu {
            list-style: none;
            padding: 0;
        }

        .gdf-footer-menu li {
            margin-bottom: 10px;
        }

        .gdf-footer-menu a {
            color: #ffffff;
            opacity: 0.9;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .gdf-footer-menu a:hover {
            opacity: 1;
            padding-left: 5px;
        }

        .gdf-footer-menu i {
            margin-right: 8px;
            font-size: 0.8rem;
            opacity: 0.7;
        }

        .gdf-contact-info {
            margin-top: 10px;
        }

        .gdf-contact-item {
            display: flex;
            margin-bottom: 15px;
        }

        .gdf-contact-item i {
            margin-top: 3px;
            margin-right: 15px;
            opacity: 0.8;
        }

        .gdf-contact-item a {
            color: #ffffff;
            text-decoration: none;
            transition: opacity 0.3s;
            opacity: 0.9;
        }

        .gdf-contact-item a:hover {
            opacity: 1;
        }

        .gdf-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .gdf-footer-copyright, .gdf-footer-credit {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .gdf-footer-credit a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
        }

        .gdf-footer-credit i {
            color: #ff6b6b;
            margin: 0 5px;
        }

        @media (max-width: 768px) {
            .gdf-footer-column {
                flex: 1 1 100%;
            }
            
            .gdf-footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .gdf-footer-copyright, .gdf-footer-credit {
                margin-bottom: 10px;
            }
        }

        /* Modal Styles (hidden by default) */
        .gdf-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
        }

        .gdf-modal-content {
            background-color: #fefefe;
            margin: 10% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 600px;
            border-radius: 5px;
        }

        .gdf-close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .gdf-close:hover {
            color: black;
        }


         /* SLIDER */
/* Main Slider Container */
/* Base Slider Styles */

/* Base Styles */
.gyaandeep-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    max-height: 800px;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
}

.gyaandeep-slider-item {
    position: relative;
    height: 100vh;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

/* Dark Overlay */
.gyaandeep-slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4); /* optional dark overlay */
}

/* Slide Content */
.gyaandeep-slider-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* Active Slide */
.gyaandeep-slider-item.active .gyaandeep-slider-content {
    opacity: 1;
    transform: translateY(0);
}

/* Title */
.gyaandeep-slider-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.gyaandeep-slider-title strong {
    color: #9d1b2b;
    position: relative;
}

.gyaandeep-slider-title strong::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: #9d1b2b;
    border-radius: 2px;
}

/* Subtitle */
.gyaandeep-slider-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0 auto 2rem;
    max-width: 800px;
    line-height: 1.6;
}

/* Button */
.gyaandeep-slider-btn {
    padding: 0.8rem 2rem;
    background: #9d1b2b;
    color: #fff;
    border: 2px solid #9d1b2b;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.5s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.gyaandeep-slider-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    border-color: #fff;
}

.gyaandeep-slider-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.gyaandeep-slider-btn:hover::before {
    left: 100%;
}

/* Owl Navigation Arrows */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 3;
}

.owl-carousel .owl-nav button {
    background: rgba(157, 27, 43, 0.7) !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    backdrop-filter: blur(5px);
    transition: all 0.5s ease;
    font-size: 1.5rem !important;
    line-height: 1;
}

.owl-carousel .owl-nav button:hover {
    background: rgba(145, 73, 94, 0.9) !important;
}

/* Dots */
.owl-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

/* ------------------------------------------------- */
/*                    RESPONSIVE                     */
/* ------------------------------------------------- */

/* Large Tablets and below */
@media (max-width: 1024px) {
    .gyaandeep-slider,
    .gyaandeep-slider-item {
        height: 80vh;
    }

    .gyaandeep-slider-title {
        font-size: 2.8rem;
    }

    .gyaandeep-slider-subtitle {
        font-size: 1.3rem;
    }
}

/* Medium Tablets and below */
@media (max-width: 768px) {
    .gyaandeep-slider,
    .gyaandeep-slider-item {
        height: 60vh;
    }

    .gyaandeep-slider-title {
        font-size: 2.2rem;
    }

    .gyaandeep-slider-subtitle {
        font-size: 1.2rem;
        max-width: 90%;
    }

    .gyaandeep-slider-btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .owl-carousel .owl-nav button {
        width: 40px;
        height: 40px;
    }
}

/* Small Phones */
@media (max-width: 576px) {
    .gyaandeep-slider,
    .gyaandeep-slider-item {
        height: 170px; /* More usable than 150px */
    }

    .gyaandeep-slider-item {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .gyaandeep-slider-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .gyaandeep-slider-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }

    .gyaandeep-slider-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1.2rem;
    }

    .owl-carousel .owl-dots {
        bottom: 20px;
    }

    .gyaandeep-slider-content {
        padding: 1rem;
    }
}




















/* about us  */

.about-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding-left: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.section-title,
.section-title_1 {
    font-size: 31px;
    color: #9d1b2b;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after,
.section-title_1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: rgb(145, 73, 94);
    border-radius: 2px;
}

.about-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.about-highlights {
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.highlight-icon {
    color: #9d1b2b;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.highlight-text {
    flex: 1;
    color: #333;
}

.about-cta {
    margin-top: 40px;
}

.about-btn {
    padding: 12px 30px;
    background: #9d1b2b;
    color: #fff;
    border: 2px solid #9d1b2b;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-block;
    text-decoration: none;
    margin-right: 15px;
}

.about-btn:hover {
    background: transparent;
    color: #9d1b2b;
    transform: translateY(-3px);
}

.about-btn.outline {
    background: transparent;
    color: #9d1b2b;
}

.about-btn.outline:hover {
    background: #9d1b2b;
    color: #fff;
}

.quote-section {
    margin-top: 40px;
    padding: 25px;
    background: rgba(157, 27, 43, 0.05);
    border-left: 4px solid #9d1b2b;
    border-radius: 0 5px 5px 0;
}

.quote-text {
    font-style: italic;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.quote-author {
    color: #9d1b2b;
    font-weight: 600;
}

/* Large displays: 1200px and above */
@media (min-width: 1200px) {
    .about-section {
        padding: 120px 0;
    }
}

/* Medium screens (992px to 1199px) */
@media (max-width: 1199px) {
    .section-title,
    .section-title_1 {
        font-size: 2.2rem;
    }

    .about-content {
        padding-left: 30px;
    }
}

/* Tablets: 768px to 991px */
@media (max-width: 991px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content,
    .about-image {
        padding: 0;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .section-title,
    .section-title_1 {
        font-size: 21px;
    }

    .about-btn {
        display: block;
        width: 100%;
        margin: 10px auto;
        text-align: center;
    }
}

/* Small screens: 576px to 767px */
@media (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }

    .section-title,
    .section-title_1 {
        font-size: 21px;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-image img {
        max-width: 90%;
    }
}

/* Extra small devices: below 576px */
@media (max-width: 575px) {
    .about-section {
        padding: 50px 0;
    }

    .about-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .quote-section {
        padding: 20px;
    }

    .quote-text {
        font-size: 1rem;
    }
}


        

 /* Mission & Vision Section */
        .mission-vision {
            padding: 80px 0;
            background-color: #f9f9f9;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: #9d1b2b;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: rgb(145, 73, 94);
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: #666;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .mv-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .mv-card {
            flex: 1;
            min-width: 300px;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .mv-card-header {
            background: linear-gradient(135deg, #9d1b2b, rgb(145, 73, 94));
            color: #fff;
            padding: 25px;
            text-align: center;
        }
        
        .mv-card-title {
            font-size: 1.5rem;
            margin: 0;
        }
        
        .mv-card-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .mv-card-body {
            padding: 30px;
        }
        
        .mv-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mv-list-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            color: #555;
            line-height: 1.6;
        }
        
        .mv-list-item::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: #9d1b2b;
        }
        
        .vision-highlight {
            font-style: italic;
            background: rgba(157, 27, 43, 0.05);
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            border-left: 4px solid #9d1b2b;
            color: #333;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .mv-card {
                min-width: calc(50% - 30px);
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .mv-card {
                min-width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .mission-vision {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .mv-card-header {
                padding: 20px;
            }
            
            .mv-card-title {
                font-size: 1.3rem;
            }
            
            .mv-card-body {
                padding: 20px;
            }
        }

         .explore-btn-container {
            text-align: center;
            margin-top: 50px;
        }
        
        .explore-btn {
            padding: 12px 30px;
            background: #9d1b2b;
            color: #fff;
            border: 2px solid #9d1b2b;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.5s ease;
            display: inline-block;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        
        .explore-btn:hover {
            background: transparent;
            color: #9d1b2b;
            transform: translateY(-3px);
        }
        
        .explore-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }
        
        .explore-btn:hover::before {
            left: 100%;
        }
        
        
        

/* Who We Are Section */



.gdf-identity {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(157, 27, 43, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.gdf-identity-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.gdf-identity-content {
    flex: 1;
    min-width: 300px;
}

.gdf-identity-heading {
    font-size: 2.2rem;
    color: #9d1b2b;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.gdf-identity-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: rgb(145, 73, 94);
    border-radius: 2px;
}

.gdf-identity-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.gdf-identity-highlight {
    background: rgba(157, 27, 43, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #9d1b2b;
    margin: 25px 0;
}

.gdf-identity-highlight p {
    margin: 0;
    color: #333;
    font-style: italic;
    line-height: 1.6;
}

.gdf-identity-cta {
    margin-top: 30px;
}

.gdf-identity-btn {
    padding: 10px 24px;
    background: #9d1b2b;
    color: #fff;
    border: 2px solid #9d1b2b;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.5s ease;
    display: inline-block;
    text-decoration: none;
}

.gdf-identity-btn:hover {
    background: transparent;
    color: #9d1b2b;
    transform: translateY(-3px);
}

.gdf-identity-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.gdf-identity-btn:hover i {
    transform: translateX(5px);
}

.gdf-identity-image {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.gdf-identity-image img {
    width: 80%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover zoom effect */
.gdf-identity-image:hover img {
    transform: scale(1.05);
}

/* ---------------------- Responsive Design ---------------------- */

@media (max-width: 992px) {
    .gdf-identity-container {
        flex-direction: column;
    }

    .gdf-identity-image {
        order: -1;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .gdf-identity-heading {
        font-size: 2rem;
    }

    .gdf-identity-text {
        font-size: 1rem;
    }

    .gdf-identity-image img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .gdf-identity {
        padding: 50px 15px;
    }

    .gdf-identity-heading {
        font-size: 1.8rem;
    }

    .gdf-identity-highlight {
        padding: 16px;
        margin: 20px 0;
    }

    .gdf-identity-image img {
        max-height: 260px;
        width: 58%;
        margin: 0 auto; 
        display: block; 
    }
}

@media (max-width: 576px) {
    .gdf-identity {
        padding: 40px 10px;
    }

    .gdf-identity-heading {
        font-size: 1.6rem;
    }

    .gdf-identity-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .gdf-identity-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
        display: block;
        margin: 0 auto 15px auto;
        text-align: center;
    }
}









 /* ===== Enhanced Gallery Section ===== */
        /* Unique Gallery Styles */
    .gdf-unique-gallery {
        padding: 100px 0;
        background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .gdf-unique-gallery::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        opacity: 0.02;
        z-index: 0;
    }

    .gdf-unique-gallery::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle, rgba(157, 27, 43, 0.1) 2px, transparent 2px);
        background-size: 100px 100px;
        animation: gdf-unique-float 20s infinite linear;
        z-index: 0;
    }

    @keyframes gdf-unique-float {
        0% { transform: translateY(0px) rotate(0deg); }
        100% { transform: translateY(-100px) rotate(360deg); }
    }

    .gdf-unique-gallery-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    /* Section Title */
    .gdf-unique-section-title {
        font-size: 2.5rem;
        color: #9d1b2b;
        margin-bottom: 20px;
        text-align: center;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        animation: gdf-unique-fadeInUp 1s ease-out;
    }

    .gdf-unique-section-title::after {
        content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: rgb(145, 73, 94);
            border-radius: 2px;
            margin-left: 90px;
    }

    @keyframes gdf-unique-fadeInUp {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }

    @keyframes gdf-unique-expandLine {
        from { width: 0; }
        to { width: 100px; }
    }

    .gdf-unique-section-subtitle {
        color: #666;
        font-size: 1.3rem;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px;
        line-height: 1.8;
        opacity: 0.9;
        animation: gdf-unique-fadeIn 1s ease-out 0.7s both;
    }

    @keyframes gdf-unique-fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* Gallery Filters */
    .gdf-unique-gallery-filters {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 40px;
    }

    .gdf-unique-filter-btn {
        padding: 12px 25px;
        background: rgba(255, 255, 255, 0.9);
        color: #9d1b2b;
        border: 2px solid #9d1b2b;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }

    .gdf-unique-filter-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(157, 27, 43, 0.1), transparent);
        transition: 0.5s;
    }

    .gdf-unique-filter-btn:hover::before {
        left: 100%;
    }

    .gdf-unique-filter-btn:hover, 
    .gdf-unique-filter-btn.active {
        background: #9d1b2b;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(157, 27, 43, 0.3);
    }

    /* Gallery Grid */
    .gdf-unique-gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .gdf-unique-gallery-item {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        aspect-ratio: 1 / 1;
        cursor: pointer;
        background: #fff;
        width: 100%;
        height: 300px;
    }

    .gdf-unique-gallery-item:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(157, 27, 43, 0.2);
    }

    .gdf-unique-gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .gdf-unique-gallery-item:hover .gdf-unique-gallery-img {
        transform: scale(1.1);
    }

    .gdf-unique-gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(157, 27, 43, 0.9) 0%, rgba(145, 73, 94, 0.9) 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all 0.4s ease;
        padding: 30px;
        text-align: center;
        color: #fff;
    }

    .gdf-unique-gallery-item:hover .gdf-unique-gallery-overlay {
        opacity: 1;
    }

    .gdf-unique-gallery-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        font-weight: 700;
        transform: translateY(20px);
        transition: transform 0.4s ease 0.1s;
    }

    .gdf-unique-gallery-item:hover .gdf-unique-gallery-title {
        transform: translateY(0);
    }

    .gdf-unique-gallery-desc {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
        transform: translateY(20px);
        transition: transform 0.4s ease 0.2s;
    }

    .gdf-unique-gallery-item:hover .gdf-unique-gallery-desc {
        transform: translateY(0);
    }

    /* Gallery Item Actions */
    .gdf-unique-gallery-actions {
        display: flex;
        gap: 15px;
        transform: translateY(20px);
        transition: transform 0.4s ease 0.3s;
    }

    .gdf-unique-gallery-item:hover .gdf-unique-gallery-actions {
        transform: translateY(0);
    }

    .gdf-unique-action-btn {
        padding: 8px 15px;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        color: #fff;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .gdf-unique-action-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    /* Impact Badge */
    .gdf-unique-impact-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(157, 27, 43, 0.9);
        color: #fff;
        padding: 5px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Lightbox */
    .gdf-unique-lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 1000;
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(5px);
    }

    .gdf-unique-lightbox-content {
        max-width: 90%;
        max-height: 90%;
        position: relative;
        animation: gdf-unique-lightboxAppear 0.3s ease;
    }

    @keyframes gdf-unique-lightboxAppear {
        from {
            opacity: 0;
            transform: scale(0.8);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .gdf-unique-lightbox-img {
        max-width: 100%;
        max-height: 80vh;
        border-radius: 10px;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        margin-top: 123px;
    }

    .gdf-unique-lightbox-close {
        position: absolute;
        top: -50px;
        right: 0;
        color: #fff;
        font-size: 2.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .gdf-unique-lightbox-close:hover {
        color: #9d1b2b;
        transform: scale(1.1);
    }

    .gdf-unique-lightbox-info {
        position: absolute;
        bottom: -60px;
        left: 0;
        right: 0;
        color: #fff;
        text-align: center;
    }

    .gdf-unique-lightbox-title {
        font-size: 1.3rem;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .gdf-unique-lightbox-desc {
        font-size: 1rem;
        opacity: 0.8;
    }

    /* View More Button */
    .gdf-unique-view-more {
        text-align: center;
        margin-top: 40px;
    }

    .gdf-unique-view-more-btn {
        padding: 15px 40px;
        background: linear-gradient(135deg, #9d1b2b 0%, rgb(145, 73, 94) 100%);
        color: #fff;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.4s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        font-size: 1rem;
    }

    .gdf-unique-view-more-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: 0.6s;
    }

    .gdf-unique-view-more-btn:hover::before {
        left: 100%;
    }

    .gdf-unique-view-more-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(157, 27, 43, 0.3);
    }

  /* ===== Responsive Enhancements ===== */

/* Large devices (Desktops > 1200px) */
@media (min-width: 1200px) {
    .gdf-unique-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    }
}

/* Medium devices (Laptops/Tablets 992px–1199px) */
@media (max-width: 1199.98px) {
    .gdf-unique-gallery-grid {
        gap: 25px;
    }

    .gdf-unique-gallery-title {
        font-size: 1.4rem;
    }

    .gdf-unique-gallery-desc {
        font-size: 0.95rem;
    }
}

/* Tablets (768px–991px) */
@media (max-width: 991.98px) {
    .gdf-unique-section-title {
        font-size: 2.2rem;
    }

    .gdf-unique-section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .gdf-unique-gallery-item {
        height: 280px;
    }

    .gdf-unique-view-more-btn {
        padding: 13px 35px;
        font-size: 0.95rem;
    }
}

/* Small Devices (576px–767px) */
@media (max-width: 767.98px) {
    .gdf-unique-section-title {
        font-size: 2rem;
    }

    .gdf-unique-section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .gdf-unique-gallery-item {
        height: 250px;
    }

    .gdf-unique-gallery-actions {
        flex-direction: column;
        gap: 10px;
    }

    .gdf-unique-gallery-desc {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices (<576px) */
@media (max-width: 575.98px) {
    .gdf-unique-section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .gdf-unique-gallery-item {
        height: 220px;
    }

    .gdf-unique-gallery-title {
        font-size: 1.2rem;
    }

    .gdf-unique-view-more-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}



    /* statics counter */
    .stats-section {
          
            background-size: cover;
            padding: 100px 20px;
            color: white;
            position: relative;
            position: sticky;
            background-attachment: fixed;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 30px 20px;
            flex: 1;
            min-width: 200px;
            transition: all 0.3s ease;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            background-color: rgba(156, 36, 54, 0.3);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }

        .stat-title {
            font-size: 1.2rem;
            font-weight: 400;
            position: relative;
            padding-bottom: 15px;
        }

        .stat-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: rgb(156, 36, 54);
        }

        @media (max-width: 768px) {
            .stats-container {
                flex-direction: column;
                align-items: center;
            }

            .stat-card {
                width: 80%;
                min-width: unset;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }



        
    /* Scroll to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: rgb(156, 36, 54);
      color: #fff;
      border: none;
      border-radius: 50%;
      font-size: 22px;
      cursor: pointer;
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
      transition: opacity 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .back-to-top:hover {
      transform: translateY(-5px);
      background-color: rgb(180, 40, 60);
    }

    .back-to-top.show {
      display: flex;
      opacity: 1;
    }

    /* donate section */
      .gyaandeep-donation-cta {
            background-color: #843737;
            color: white;
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
           
            margin: 0 auto;
       
            min-height: 90px;
        }

        .gyaandeep-donation-text {
            font-weight: bold;
            font-size: 22px;
        }

        .gyaandeep-donation-text i {
            font-style: italic;
        }

        .gyaandeep-donation-controls {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .gyaandeep-donation-input {
            background: transparent;
            border: 1px solid white;
            color: white;
            padding: 12px 15px;
            width: 120px;
            height: 50px;
            text-align: center;
            border-radius: 5px;
            font-size: 18px;
        }

        .gyaandeep-donate-button {
            background: white;
            color: #843737;
            border: none;
            padding: 12px 25px;
            height: 50px;
            font-weight: bold;
            font-size: 18px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 150px;
        }

        .gyaandeep-donate-button:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .gyaandeep-donation-cta {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                padding: 25px;
            }
            
            .gyaandeep-donation-controls {
                width: 100%;
                justify-content: center;
            }
            
            .gyaandeep-donation-input {
                width: 100px;
            }
        }

        @media (max-width: 480px) {
            .gyaandeep-donation-text {
                font-size: 20px;
            }
            
            .gyaandeep-donation-controls {
                flex-direction: column;
                width: 100%;
            }
            
            .gyaandeep-donation-input,
            .gyaandeep-donate-button {
                width: 100%;
                height: 45px;
            }
        }


        /* founder message subpage */
        
      

        /* Contact Us */
       .contact-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #9e1c2c;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: rgba(49, 53, 56, 0.7);
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-container {
            display: flex;
            gap: 40px;
            margin-bottom: 50px;
        }

        .contact-panel {
            flex: 1;
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(158, 28, 44, 0.1);
        }

        .panel-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #9e1c2c;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .panel-title::before {
            content: '';
            width: 4px;
            height: 30px;
            background: #9e1c2c;
            border-radius: 2px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-group {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #9e1c2c;
        }

        .info-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #9e1c2c;
            margin-bottom: 15px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-icon {
            width: 24px;
            height: 24px;
            background: #9e1c2c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .info-text {
            color: rgb(49, 53, 56);
            line-height: 1.5;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            font-weight: 600;
            color: rgb(49, 53, 56);
            margin-bottom: 8px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #ffffff;
            color: rgb(49, 53, 56);
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #9e1c2c;
            box-shadow: 0 0 0 3px rgba(158, 28, 44, 0.1);
        }

        .form-textarea {
            height: 120px;
            resize: vertical;
        }

        .captcha-group {
            background: linear-gradient(135deg, #9e1c2c, #b8243a);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            text-align: center;
        }

        .captcha-label {
            color: white;
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        .captcha-display {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 24px;
            font-weight: bold;
            padding: 15px;
            border-radius: 8px;
            margin: 10px 0;
            letter-spacing: 3px;
            border: 2px dashed rgba(255, 255, 255, 0.5);
        }

        .captcha-input {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            font-size: 18px;
            font-weight: 600;
            color: #9e1c2c;
            margin-top: 10px;
        }

        .captcha-refresh {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: white;
            padding: 8px 15px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            margin-top: 10px;
            transition: all 0.3s ease;
        }

        .captcha-refresh:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .submit-btn {
            background: linear-gradient(135deg, #9e1c2c, #b8243a);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(158, 28, 44, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .map-container {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(158, 28, 44, 0.1);
            margin-top: 40px;
        }

        .map-frame {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .success-message {
            background: linear-gradient(135deg, #28a745, #34ce57);
            color: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 600;
            display: none;
        }

        .error-message {
            background: linear-gradient(135deg, #dc3545, #e74c3c);
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            text-align: center;
            font-weight: 500;
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
                gap: 30px;
            }

            .contact-panel {
                padding: 30px 25px;
            }

            .section-title {
                font-size: 2rem;
            }

            .panel-title {
                font-size: 1.5rem;
            }

            .map-container {
                padding: 30px 25px;
            }

            .map-frame {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 40px 15px;
            }

            .contact-panel {
                padding: 25px 20px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .info-group {
                padding: 20px;
            }

            .map-container {
                padding: 25px 20px;
            }
        }  


        /* Donation section */
        
        .donation-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            min-height: 100vh;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #9e1c2c;
            margin-bottom: 20px;
        }

        .thank-you-message {
            font-size: 1.2rem;
            color: rgb(49, 53, 56);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .legal-info {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 50px;
            border-left: 5px solid #9e1c2c;
            box-shadow: 0 4px 15px rgba(158, 28, 44, 0.1);
        }

        .legal-info h3 {
            color: #9e1c2c;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .legal-info p {
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .legal-link {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .legal-link:hover {
            color: #0056b3;
            text-decoration: underline;
        }

        .donation-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .donation-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }

        .donation-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(158, 28, 44, 0.15);
            border-color: #9e1c2c;
        }

        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .card-icon {
            font-size: 2rem;
            color: #9e1c2c;
            margin-right: 15px;
            background: rgba(158, 28, 44, 0.1);
            padding: 15px;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: rgb(49, 53, 56);
        }

        .qr-container {
            text-align: center;
            margin: 20px 0;
        }

        .qr-code {
            width: 200px;
            height: 200px;
            background: #f8f9fa;
            border: 2px dashed #9e1c2c;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .qr-code:hover {
            transform: scale(1.05);
        }

        .qr-placeholder {
            color: #9e1c2c;
            font-size: 1rem;
            text-align: center;
        }

        .bank-details {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }

        .bank-info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #dee2e6;
        }

        .bank-info-row:last-child {
            border-bottom: none;
        }

        .bank-label {
            font-weight: 600;
            color: rgb(49, 53, 56);
            flex: 1;
        }

        .bank-value {
            flex: 2;
            text-align: right;
            font-family: 'Courier New', monospace;
            color: #9e1c2c;
            font-weight: 500;
        }

        .copy-btn {
            background: #9e1c2c;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            margin-left: 10px;
        }

        .copy-btn:hover {
            background: #7a1520;
            transform: translateY(-2px);
        }

        .floating-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

        .float-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            font-size: 1.2rem;
        }

        .back-to-top {
            background: #9e1c2c;
            color: white;
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: #7a1520;
            transform: translateY(-3px);
        }

        .whatsapp-btn {
            background: #25d366;
            color: white;
        }

        .whatsapp-btn:hover {
            background: #128c7e;
            transform: translateY(-3px);
        }

        .call-btn {
            background: #007bff;
            color: white;
        }

        .call-btn:hover {
            background: #0056b3;
            transform: translateY(-3px);
        }

        .contact-info {
            text-align: center;
            margin-top: 40px;
            padding: 30px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
        }

        .contact-info h3 {
            color: #9e1c2c;
            margin-bottom: 20px;
        }

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: white;
            color: rgb(49, 53, 56);
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .contact-link:hover {
            background: #9e1c2c;
            color: white;
            transform: translateY(-2px);
            border-color: #9e1c2c;
        }

        @media (max-width: 768px) {
            .donation-methods {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .floating-buttons {
                right: 15px;
                bottom: 15px;
            }
            
            .float-btn {
                width: 48px;
                height: 48px;
                font-size: 1rem;
            }
            
            .bank-info-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .bank-value {
                text-align: left;
                word-break: break-all;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Donate now form */
        .donation-form-section {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(158, 28, 44, 0.1);
            border: 2px solid rgba(158, 28, 44, 0.1);
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h2 {
            font-size: 2rem;
            color: #9e1c2c;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .form-header h2 i {
            margin-right: 10px;
        }

        .form-header p {
            color: rgb(49, 53, 56);
            font-size: 1.1rem;
            opacity: 0.8;
        }

        .donation-form-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .amount-section {
            background: linear-gradient(135deg, #9e1c2c 0%, #7a1520 100%);
            color: white;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(158, 28, 44, 0.3);
        }

        .amount-section h3 {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 600;
        }

        .amount-section i {
            margin-right: 8px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }

        .form-group {
            position: relative;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            color: rgb(49, 53, 56);
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-group label i {
            color: #9e1c2c;
            margin-right: 8px;
            width: 16px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 18px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            color: rgb(49, 53, 56);
            background: white;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #9e1c2c;
            box-shadow: 0 0 0 3px rgba(158, 28, 44, 0.1);
            transform: translateY(-1px);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 50px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(49, 53, 56, 0.5);
            font-style: italic;
        }

        .form-submit {
            text-align: center;
            margin-top: 40px;
        }

        .donate-btn {
            background: linear-gradient(135deg, #9e1c2c 0%, #7a1520 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(158, 28, 44, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .donate-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(158, 28, 44, 0.4);
        }

        .donate-btn:active {
            transform: translateY(-1px);
        }

        .donate-btn i {
            margin-right: 10px;
        }

        .secure-note {
            margin-top: 15px;
            color: rgba(49, 53, 56, 0.7);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .secure-note i {
            color: #28a745;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .donation-form-section {
                padding: 20px;
                margin: 20px 0;
            }
            
            .amount-section h3 {
                font-size: 1.5rem;
            }
            
            .donate-btn {
                width: 100%;
                padding: 16px 30px;
                font-size: 1.1rem;
            }
            
            .form-header h2 {
                font-size: 1.8rem;
            }
        }