

body {
    width: 100%;
    margin: 0;   
}
/* ===== SECTION STYLES ===== */
.about-section {
    background-color: #fff;
    margin: 40px auto;
    width: 85%;
    overflow: hidden;
    padding-top:  20px;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: center;
    gap: 10px;
}

/* ===== TEXT BOX ===== */
.text-box {
    background-color:royalblue;
    padding: 3px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    flex-direction: center;
    margin-top:  5px;
}

.text-box h2 {
    color: beige;
     margin-bottom: 10px;
} 
.text-box h3 {
    color: skyblue;
     margin-bottom: 30px;
     padding-right: 20px;
}
#disc{
    align-items: center;
    justify-content: center;
    display: flex;
}
.founder img{
    width: 150px;
    height: 150px;

}
.image-box img{
  text-align: center;
  display: flex;

}
.background p{
    width: 400px;
    padding-right: 200px;
    
}
.founderess{
    width: 150px;
    height: 350px;
    box-shadow: skyblue;
}
.charism-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    margin-bottom: 80px;
}
.charism-box {
    display: flex;
    /* flex-direction: row; image on the left  */
    align-items: center;
    background-color:skyblue;
    margin-top: 10px;
    max-width: 800px;
    overflow: hidden;
    /* transition: transform 0.3s ease; */
}
/* ===== RESPONSIVE LAYOUT ===== */
@media (min-width: 768px) {

}

    .content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    
.about-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left:  40px;
}

/* Each Box */
.about-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #fffaf2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
} 

/* Text Content */
.text-content {
    padding: 20px 30px;
    flex: 1;
}

.text-content h2 {
    color: #6c584c;
    margin-bottom: 15px;
}

.text-content p {
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {

}
    .about-box {
        flex-direction: column;
    }

    .about-box img {
        width: 55%;
        height: 200px;
    }


.section-heading {
    text-align: center;
    color: #6c584c;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.core-value {
    display: flex;
    flex-direction: left;
    align-items: center;
    background-color: skyblue;
    box-shadow: floralwhite 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
    margin: 10px 0;
    overflow: hidden;
    transition: transform 0.3s ease;
      
}

* Section Container */
.spirituality-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    margin-bottom: 80px;
}

/* Main Box */
.spirituality-box {
    display: flex;
    flex-direction: left; /* Side by side layout */
    align-items: center;
    /* background-color:beige; */
    box-shadow: 0 6px 16px rgba(0,0,0,0.15); 
    border-radius: 30px;
    max-width: 1000px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 40px;
}

.spirituality-box:hover {
    transform: translateY(-5px);
}

/* Image Styling */
.spirituality-box img {
    width: 45%;
    height: 350px;
    object-fit: cover;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
}

/* Text Styling */
.spirituality-text {
    padding: 30px 40px;
    flex: 1;
    margin-top: 5px;
}

.spirituality-text h2 {
     /* color: #6c584c; */
    margin-top: 5px; 
}

.spirituality-text p {
    line-height: 50px;
    margin-bottom: 15px;
    text-align: justify;

 }

    .spirituality-box {
        flex-direction: column; /* Stack on small screens */
     }

    .spirituality-box img {
        width: 30%;
        height: 250px;
        margin-top: 5px;
     }

    .spirituality-text {
        padding: 20px;
        text-align: center;
        margin-top: 0px;
    


/* Box Styling */
.spirituality-box {
    display: flex;
    flex-direction: left;
    align-items: center;
    /* background-color: #fffaf2; */
    /* box-shadow: 0 6px 16px rgba(0,0,0,0.15); */
    border-radius: 15px;
    max-width: 600px;
    /* overflow: hidden; */
    transition: transform 0.3s ease;
}

.spirituality-box:hover {
    transform: translateY(-5px); 
}

/* Image Styling */
.spirituality-box img {
    width: 80%;
    height: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Text Styling */
.spirituality-text {
    padding: 30px 40px;
    text-align: center;
}

}
.spirituality-text p {
    line-height: 1.7;
    margin-bottom: 15px;
}

Responsive Design
@media (max-width: 768px){

}
    .spirituality-box {
        width: 100%;
    }

    .spirituality-box img {
        height: 250px;
    }

    .spirituality-text {
        padding: 20px;
    } 

 

