.about-section{
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.about-msg{
    width: 50%;
    padding: 20px 10px;
    box-shadow: 0 0 5px 0.3px rgba(0, 0, 0, 0.479);
    border-radius: 12px;
    font-family: poppins, sans-serif;
}
.about-msg h4{
    text-align: center;
    font-weight: bold;
    font-size: 30px;
}
.about-msg p{
    margin-top: 5px;
    color: #000;
    font-size: 18px;
    text-align: justify;
    
    line-height: 30px;
}
/* .about-img{
    width: 40%;
    box-shadow: 0 0 5px 0.3px rgba(0, 0, 0, 0.479);
    border-radius: 12px;
    padding: 10px 10px;

} */
.about-img{
   width: 28%;
  height: 350px;
  background: url("../assets/about.png") no-repeat center center;
  background-size: cover;
  border-radius: 12px;
  box-shadow: 0 0 5px 0.3px rgba(0, 0, 0, 0.48);
  background-position: center;

  /* min-height: 350px; */
}
.about-img img{
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.about-img img:hover{
    transform: scale(1.03);
    border-bottom: 5px solid grey;
}
@media (max-width: 720px){
    .about-section{
        flex-direction: column;
    }
    .about-msg{
        width: 95%;
    }
    .about-img{
        width: 95%;
        min-height: 400px;
        object-fit: contain;
    }
}