/* 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;
    }
}






/* sadhu seva section end */