/* general donation section start */
.general-donations-section-main {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.general-donations-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.general-donations-description {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

.donation-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 1rem;
}

.form-select {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 1rem;
}

.btn-donate {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s;
    width: 100%;
    color: #fff;
}

.btn-donate:hover {
    background-color: #0056b3;
}

/* general donation section end*/

/* sadhu seva section start */
.sadhu-seva-section-main {
    padding: 50px 0;
    background-color: #F4E1D2;
}

.description {
    letter-spacing: 0.5px;
    line-height: 30px;
    padding-top: 30px;
    font-size: 17px;
    text-align: center;
}

/* Make both columns equal height */
.sadhu-seva-section-main .row {
    display: flex;
    align-items: stretch;
}

/* Image container */
.sadhu-seva-image {
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure the image covers the full height */
.sadhu-seva-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Content container */
.sadhu-seva-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Centers text vertically */
    height: 100%;
}

/* Content styling */
.sadhu-seva-content h1 {
    color: #d9534f;
    font-weight: bold;
    padding-bottom: 30px;
}

.sadhu-seva-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.sadhu-seva-content blockquote {
    font-style: italic;
    color: #555;
    border-left: 5px solid #d9534f;
    padding-left: 15px;
    margin-top: 15px;
}

/* Flexbox to align icons with text */
.sadhu-seva-content-title {
    display: flex;

}

.sadhu-seva-content i {
    color: #d9534f;
    margin-right: 8px;
    font-size: 20px;
    padding-top: 10px;
}

.sadhu-images-section-main {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sadh-images {
    height: 360px;
    width: 33%;
    border-radius: 100%;
    border: 10px solid red;

}

.sadh-images img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
    object-position: center center;

}

.book-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}


.styled-button {
    background-color: #FF4500;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.styled-button:hover {
    background-color: #ff652c;
    transform: scale(1.1);
}



@media(max-width:769px) {
    .sadhu-images-section-main {
        display: flex;
        flex-wrap: wrap;
    }

    .sadh-images {
        width: 48%;
        height: 330px;
    }
}

@media(max-width:426px) {


    .sadh-images {
        width: 100%;
        height: 400px;
    }
}

 .section-title {
            color: #562C39;
            font-weight: bold;
        }

        .custom-card {
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            color: #562C39;
            font-weight: bold;
        }

        .custom-card img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .donation_section_main_section {
            box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
            padding: 30px 20px;
            border-radius: 5px;
        }

        .donation_section {
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            border-radius: 5px;
        }

        .donation-box {
            border-bottom: 2px solid #dbdada;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .donation-box:nth-last-child(1) {
            border-bottom: 0;
        }

        .donate-btn {
            display: inline-block;
            padding: 10px 22px;
            background-color: transparent;
            border: 2px solid #F0A53D;
            color: #F0A53D;
            font-size: 14px;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            transition: background 0.3s;
        }

        .donate-btn:hover {
            background-color: #F0A53D;
            color: white;
        }

        .donation-input {
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            background: #f8f9fa;
            width: 30%;
        }

        .donation-input span {
            margin-right: 10px;
            font-size: 18px;
        }

        .donation-input input {
            border: none;
            outline: none;
            background: transparent;
            width: 100%;
        }

        /* Payment Section */
        .payment-section {
            margin-top: 40px;
            padding: 40px 20px;
            background-color: #fff;
        }


        .payment-subtitle {
            font-size: 15px;
            color: #3f3e3e;
            margin-bottom: 30px;
            font-style: italic;
        }

        .payment-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid #e5e5e5;
        }

        .payment-card:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            transform: translateY(-4px);
        }

        .payment_type_main {
            display: flex;
            justify-content: space-between;
        }

        .payment-card h5 {
            font-weight: bold;
            font-size: 18px;
            color: #222;
            margin-bottom: 15px;
            text-align: start;
        }

        .payment-card p {
            font-size: 16px;
            color: #333;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .payment-card p:nth-last-child(1) {
            margin-bottom: 0;
        }

        .payment_logo {
            display: flex;
            width: 100px;
            height: 30px;
        }

        .payment_logo img {
            width: 100%;
            height: 100%;
        }

        .qr-code {
            width: 80px;
            height: 80px;
        }

        .qr-code img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .payment_upi {
            display: flex;
            justify-content: space-between;
            align-items: end;
        }

        .payment_upi_main {
            display: flex;
            justify-content: space-between;
        }

        .payment_upi_logo {
            display: flex;
        }

        .upi_logo {
            width: 80px;
            height: 30px;
        }

        .upi_logo img {
            width: 100%;
            height: 100%;
        }



        .upi-info {
            font-size: 13px;
            color: #666;
            margin-top: 5px;
        }

        /* 80G Section */
        .certificate-section {
            margin-top: 40px;
            padding: 30px;
            background-color: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #e5e5e5;
        }

        .certificate-section h3 {
            font-weight: bold;
            font-size: 22px;
            color: #222;
            margin-bottom: 15px;
        }

        .certificate-section p {
            font-size: 15px;
            color: #444;
            margin-bottom: 10px;
        }

        .certificate-section a {
            color: #F0A53D;
            font-weight: bold;
            text-decoration: none;
        }

        .certificate-section a:hover {
            text-decoration: underline;
        }

        .certificate-section .whatsapp {
            color: #28a745;
            font-weight: bold;
        }

        .donation_for_food {
            box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
        }

        /* ============================= */
        /* RESPONSIVE FIXES START HERE  */
        /* ============================= */

        /* ---------- For Laptops & Small Desktops (max-width: 1024px) ---------- */
        @media screen and (max-width: 1024px) {
            .donation_section_main_section {
                padding: 20px 15px;
            }

            .donation_section {
                padding: 0;
            }

            .donation-box {
                padding: 12px 15px;
            }

            .custom-card img {
                width: 100%;
                height: auto;
            }

            .payment-card {
                padding: 15px;
            }

            .payment-card h5 {
                font-size: 16px;
            }

            .payment-card p {
                font-size: 14px;
            }
        }

        @media(max-width:768px) {
            .payment-section {
                padding: 0;
            }
        }

        @media(max-width:426px) {
            .payment-section {
                padding: 0;
            }

            .certificate-section {
                padding: 10px;
            }

            .donation_section_main_section {
                padding: 20px 0px;
            }
        }






/* sadhu seva section end */