/* Ensure the about section uses Flexbox for layout */
.about_section .container-fluid {
    display: flex;
    align-items: stretch;
    /* Align items vertically */
    justify-content: space-between;
    /* Space between the text and image */
}

#about {
    padding-top: 90px;
}

/* Set the flex basis for both the text and image containers to occupy half of the container's width */
.about_section .col-md-3,
.about_section .padding_right0 {
    flex: 1;
    /* Allows the container to grow and shrink as needed */
    max-width: 50%;
    /* Each takes up half of the container */
}

/* Reverse the order of flex items to have the image on the left */
.about_section .row {
    display: flex;
    flex-direction: row-reverse;
    /* Reverse the order */
}

/* Adjust the text container */
.about_taital_main {
    background-color: #17a2b8;
    /* Example background color */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 560px;
    /* Ensure it matches the height of the image container */
}

/* Ensure the image container matches the height of the text container */
.about_img {
    display: flex;
    align-items: stretch;
}

/* Adjust the image to cover the available space */
.about_img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    /* Cover the container without losing aspect ratio */
}

.about_taital {
    text-align: center;
    font-size: 35px;

}

.about_text {
    text-align: center;
    font-size: 25px;
    justify-self: unset;
    align-self: center;
    line-height: 1.5;

}

.read_bt {
    text-align: center;
    margin-top: 10px;
    text-decoration: dotted;
}
.read_bt a :hover{
color: white;
}

.read_bt a {
    color: black;
    text-decoration: none;
    font-size: 20px;
}
.read_bt a :hover {
 color: white;
}

/* Additional styling for responsiveness and aesthetics */
