/* aboutUs.css */


/* body {

    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    background-color: #ffffff; 
} */
.container-fluid{
    padding-left: 0% !important;
    padding-right: 0% !important;

}
.row {
    display: flex;
    --bs-gutter-x:0rem !important;
    align-items: center;
    justify-content: space-between;
    color: #9c9999;
    

}
.text-content p {
    text-align: justify;
    font-size: large;
    font-weight: 500;
    padding-left: 30px;
}
.text-content span{
    text-align: justify;
    font-size: large;
    font-weight: 500;
    padding-right: 30px;

}
.text-content {
    flex: 1;
    padding: 20px;  
}
.text-content h1 {
    font-size: 40px;
    color: #972A41;
    text-align: center;
}
.image-content {
    flex: 1;
    padding: 20px;
}
.image-content img {
    max-width: 65%; 
    height: auto;
    display: block;
    margin: 0 auto;
}
.about-us .row,
.our-vision .row {
    margin-bottom: 20px; 
}
.our-vision .image-content {
    margin-right: 20px; 
}
.our-vision .text-content {
    margin-left: 20px; 
}
button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}
.center {
    text-align: center;
    margin-bottom: 30px;
    color: #972A41;
    font-size: 100px;
}

.our-goals .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
    
}
/* .goal {
    flex: 1;
    margin: 10px;
    padding: 20px;
    text-align: center;
    
}
.goal i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #972A41; /* Adjust the color as needed */
/* } */

.row>*{
    padding-left: 0% !important;
    padding-right: 0% !important;
}

.goal h3 {
    margin-top: 10px;
    font-size: 25px;
    
}
.goal p {
    font-size: 16px;
    color: #9c9999;

        padding: 10px;
    text-align: justify;
} 

/* {
.flex-container
    margin: 0;
    padding: 0;
    font-family:
} */



.our-goals .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    

}
.goal {
    flex: 1;
    margin: 10px;
    padding: 20px;
    text-align: center;


    /* background-color: #f0f0f0; */

    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Required for pop-up positioning */
    overflow: hidden; /* Hide the pop-up initially */
}
.goal:hover {
    transform: scale(1.05);
    background-color: #fff; /* White background on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);



}
.goal i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #972A41; /* Adjust the color as needed */
}
.goal h3 {
    margin-top: 10px;
    font-size: 25px;




}
.goal p {
    font-size: 16px;
    color: #9c9999;



    transition: opacity 0.3s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}
.goal:hover p {
    max-height: 300px; /* Max height for expansion */
    opacity: 1;
}
.center {
    text-align: center;
    margin-bottom: 20px;

    font-size: 70px;
    font-weight: 600;

}
.text-content p {
    text-align: justify;
}
@media (max-width: 435px) {
    .about-us .row{
            flex-direction: column;
        }
    .our-Mission .row{
            flex-direction: column;
        }
        .our-Vision .row{
            flex-direction: column;
        }
        .our-goals .row{
            flex-direction: column;
        }

    }


