 /* General Styles */
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            color: #213544;
            background-color: #f4f4f4;
        }

        /* Navbar Styles */
        header {
            background: #fff;
            color: #fff;
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            border-bottom: 1px solid pink;
        }

        .logo img {
            height: 50px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .nav-links li {
            margin: 0 15px;
        }

        .nav-links li a {
            color: #333;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .nav-links li a:hover {
            color: #be0057;
        }

        .nav-links li a.donate-btn,
        .nav-links li a.join-btn {
            padding: 10px 20px;
            border-radius: 5px;
            background: #be0057;
            color: #fff;
            transition: background 0.3s ease;
        }

        .nav-links li a.donate-btn:hover,
        .nav-links li a.join-btn:hover {
            background: #9a0046;
        }

        /* Responsive Navbar */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                background: #fff;
                position: absolute;
                top: 70px;
                right: 0;
                width: 100%;
                text-align: center;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 10px 0;
            }

            .logo {
                margin-right: auto;
            }

            .menu-toggle {
                display: block;
                cursor: pointer;
                font-size: 1.5em;
                color: #213544;
            }
        }

        /* Hero Section */
        #hero {
            background: url('../images/back.jpg') no-repeat center center/cover;
            color: #fff;
            text-align: center;
            padding: 150px 20px;
            position: relative;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(33, 53, 68, 0.7);
        }

        #hero h1 {
            font-size: 3em;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        #hero p {
            font-size: 1.5em;
            position: relative;
            z-index: 1;
        }

        #hero .cta-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background: #be0057;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s ease;
            position: relative;
            z-index: 1;
        }

        #hero .cta-btn:hover {
            background: #9a0046;
        }

        /* General Section Styles */
        section {
            padding: 80px 20px;
            text-align: center;
        }

        section h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #213544;
        }

        .offer-container {
            display: flex;
        }

        .section-style {
            max-width: 40%;
            height: 200px;
            /*background-color: lightpink;*/
            margin-left: auto;
            margin-right: auto;
            border:1px solid #be0057;
            /*margin-top: 2rem;*/
            border-radius: 20px;
            text-align: justify;

        }

        /* Activities Section */
        .activities {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .activity {
            background: #fff;
            padding: 20px;
            width: 30%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .activity:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .activity h3 {
            color: #be0057;
        }

        /* Gallery Styles */
        #gallery {
            padding: 80px 20px;
            text-align: center;
            background: #f4f4f4;
            overflow: hidden;
        }

        .gallery-container {
            width: 100%;
            overflow: hidden;
        }

        .gallery-images {
            display: flex;
            width: max-content;
            animation: scrollGallery 20s linear infinite;
        }

        .gallery-images img {
            width: 300px;
            height: 200px;
            object-fit: cover;
            margin-right: 10px;
            border-radius: 10px;
        }

        .gallery-images:hover {
            animation-play-state: paused;
        }

        @keyframes scrollGallery {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }



        /* Join Benefits Section Styles */
#join-benefits {
    padding: 80px 20px;
    text-align: center;
    background: #f4f4f4; /* Light background */
}

#join-benefits h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #213544; /* Dark blue */
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #be0057; /* Vibrant pink */
}

.benefit-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #213544; /* Dark blue */
}

.benefit-card p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefit-card {
        width: 100%;
        max-width: 400px;
    }
}



        /* Footer Styles */
        footer {
            background: #213544;
            color: #fff;
            text-align: center;
            padding: 20px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            header nav ul {
                flex-direction: column;
                align-items: center;
            }

            .activity {
                width: 100%;
            }

            .gallery-images img {
                width: 100%;
            }

            .hero {
                background-size: contain;
                background-image: none;
            }
        }

        /* Contact Form Styles */
#contact {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #be0057; /* Vibrant pink */
    outline: none;
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 1em;
    color: #999;
    background: #f9f9f9;
    padding: 0 5px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label, .form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label, .form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.8em;
    color: #be0057; /* Vibrant pink */
}

.submit-btn {
    padding: 10px 20px;
    background: #be0057; /* Vibrant pink */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #9a0046; /* Darker pink on hover */
}

@media (max-width: 768px) {
    .contact-container {
        padding: 15px;
    }

    .form-group input, .form-group textarea {
        font-size: 0.9em;
    }
}


/*footer*/

/* Footer Styles */
footer {
    background: #213544; /* Dark blue */
    color: #fff;
    padding: 60px 20px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px; /* Increased gap for better spacing */
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #be0057; /* Vibrant pink */
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #be0057; /* Vibrant pink underline */
}

.footer-section p {
    margin: 10px 0;
    font-size: 0.9em;
    line-height: 1.6;
    color: #ddd; /* Light gray for better readability */
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #be0057; /* Vibrant pink on hover */
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2); /* Enlarge icons on hover */
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #be0057; /* Vibrant pink */
    font-size: 0.9em;
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%); /* Center the underline */
    }

    .social-icons {
        justify-content: center;
    }
}


/* About & Mission Section Styles */
#about-mission {
    padding: 80px 20px;
    background: #f4f4f4; /* Light background */
    /*display: flex;*/
}

.about-mission-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-box, .mission-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: calc(50% - 15px); /* Two boxes in one row with gap */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-box:hover, .mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-box h2, .mission-box h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #213544; /* Dark blue */
    position: relative;
    padding-bottom: 10px;
}

.about-box h2::after, .mission-box h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #be0057; /* Vibrant pink underline */
}

.about-box p, .mission-box p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
}

.mission-box strong {
    color: #213544; /* Dark blue for emphasis */
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-box, .mission-box {
        width: 100%; /* Stack boxes vertically on smaller screens */
    }
}

 /* Loading Spinner Styles */
        .loading-spinner {
            display: none; /* Hidden by default */
            border: 4px solid #f3f3f3; /* Light grey */
            border-top: 4px solid #be0057; /* Pink */
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Success and Error Message Styles */
        .success-message {
            color: #28a745;
            font-weight: bold;
            text-align: center;
        }

        .error-message {
            color: #dc3545;
            font-weight: bold;
            text-align: center;
        }
        
        
        
        /* Scoped CSS with unique IDs and classes */
        #donation-page-main {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            color: #213544;
            background-color: #f4f4f4;
        }

        #donation-header {
            background: #fff;
            color: #fff;
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        #donation-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            border-bottom: 1px solid pink;
        }

        #donation-logo img {
            height: 50px;
        }

        #donation-nav-links {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        #donation-nav-links li {
            margin: 0 15px;
        }

        #donation-nav-links li a {
            color: #333;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        #donation-nav-links li a:hover {
            color: #be0057;
        }

        .donation-nav-btn {
            padding: 10px 20px;
            border-radius: 5px;
            background: #be0057;
            color: #fff;
            transition: background 0.3s ease;
        }

        .donation-nav-btn:hover {
            background: #9a0046;
        }

        #donation-hero-section {
            background: linear-gradient(135deg, #213544 0%, #be0057 100%);
            color: #fff;
            text-align: center;
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        #donation-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        #donation-hero-title {
            font-size: 2.5em;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }

        #donation-hero-text {
            font-size: 1.2em;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.3s both;
        }

        #donation-main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            display: flex;
            flex-direction: column;
            align-items: center; /* This centers child elements horizontally */
        }

        #donation-section-title {
            text-align: center;
            font-size: 2.2em;
            margin-bottom: 50px;
            color: #213544;
            position: relative;
        }

        #donation-section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #be0057;
        }

        .donation-methods-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 60px;
            width: 100%; /* Ensure it takes full width */
        }

        .donation-method-card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 30px;
            width: 100%;
            max-width: 500px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .donation-method-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .donation-method-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: #be0057;
        }

        .donation-method-title {
            font-size: 1.5em;
            color: #213544;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .donation-method-icon {
            margin-right: 15px;
            color: #be0057;
            font-size: 1.8em;
        }

        .donation-qr-container {
            text-align: center;
            margin: 25px 0;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 8px;
            animation: pulse 2s infinite;
        }

        #donation-qr-image {
            max-width: 200px;
            height: auto;
            border: 1px solid #ddd;
            padding: 10px;
            background: #fff;
        }

        .donation-bank-details {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .donation-detail-item {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .donation-detail-label {
            font-weight: bold;
            min-width: 120px;
            color: #213544;
        }

        .donation-detail-value {
            flex: 1;
            word-break: break-all;
        }

        .donation-copy-btn {
            background: #be0057;
            color: #fff;
            border: none;
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            margin-left: 10px;
            transition: background 0.3s ease;
        }

        .donation-copy-btn:hover {
            background: #9a0046;
        }

        .donation-amount-selector {
            margin: 30px 0;
        }

        .donation-amount-title {
            font-size: 1.1em;
            margin-bottom: 15px;
            color: #213544;
        }

        .donation-amount-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
            justify-content: center; /* Center amount buttons */
        }

        .donation-amount-btn {
            background: #fff;
            border: 2px solid #be0057;
            color: #be0057;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .donation-amount-btn:hover, .donation-amount-btn.active {
            background: #be0057;
            color: #fff;
        }

        .donation-custom-amount {
            display: flex;
            align-items: center;
            margin-top: 15px;
            justify-content: center; /* Center custom amount input */
        }

        .donation-currency-symbol {
            font-size: 1.2em;
            margin-right: 5px;
            color: #213544;
        }

        #donation-custom-amount-input {
            flex: 1;
            max-width: 200px; /* Limit width of input */
            padding: 10px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1em;
            transition: border-color 0.3s ease;
        }

        #donation-custom-amount-input:focus {
            border-color: #be0057;
            outline: none;
        }

        .donation-submit-btn {
            display: block;
            width: 100%;
            max-width: 300px; /* Limit button width */
            padding: 15px;
            background: #be0057;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
            margin: 20px auto 0; /* Center the button */
        }

        .donation-submit-btn:hover {
            background: #9a0046;
        }

        .donation-footer {
            background: #213544;
            color: #fff;
            text-align: center;
            padding: 30px 20px;
            margin-top: 60px;
        }

        .donation-footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .donation-footer-text {
            margin-bottom: 20px;
        }

        .donation-social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .donation-social-link {
            color: #fff;
            font-size: 1.5em;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .donation-social-link:hover {
            color: #be0057;
            transform: translateY(-5px);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(190, 0, 87, 0.2);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(190, 0, 87, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(190, 0, 87, 0);
            }
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            #donation-nav-links {
                display: none;
                flex-direction: column;
                background: #fff;
                position: absolute;
                top: 70px;
                right: 0;
                width: 100%;
                text-align: center;
            }

            #donation-nav-links.active {
                display: flex;
            }

            #donation-nav-links li {
                margin: 10px 0;
            }

            #donation-menu-toggle {
                display: block;
                cursor: pointer;
                font-size: 1.5em;
                color: #213544;
            }

            #donation-hero-title {
                font-size: 2em;
            }

            #donation-hero-text {
                font-size: 1em;
            }

            .donation-method-card {
                padding: 20px;
            }

            .donation-method-title {
                font-size: 1.3em;
            }

            .donation-detail-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .donation-detail-label {
                margin-bottom: 5px;
            }
        }

        /* Success message */
        #donation-success-message {
            display: none;
            background: rgba(40, 167, 69, 0.1);
            border-left: 4px solid #28a745;
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
            animation: fadeIn 0.5s ease;
            width: 100%;
            max-width: 500px;
            text-align: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }