@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
.about{
    text-align: center;
     font-family: "Roboto", sans-serif;
     margin-top: 2%;
     width: 80%;
     margin-left: 10%;
}
.abt1{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 2%;
    flex-direction: row;
}
.abt1 div:nth-child(1){
    width: 30%;
}
.abt1 div:nth-child(2){
    width: 70%;
}
.abt1 img{
    width: 100%;
    border-radius: 20%;
}
.abt1 p{
    text-align: justify;
    margin-top: 1%;
    font-size: 20px;
    line-height: 2;
}
.mv{
    background-color: #f2f2f2;
    padding: 60px 20px;
    display: flex;
    gap: 5%;
    width: 90%;
    margin: 50px auto;
    border-radius: 15px;
}
.vision, .mission{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vision:hover, .mission:hover {
    transform: translateY(-5px);
}
.vision h4, .mission h4{
    font-family: "Limelight", cursive;
    font-size: 28px;
    margin-bottom: 15px;
    color: #8c225f;
}
.vision > div:first-child, .mission > div:first-child {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8c225f, #9c4971);
    border-radius: 50%;
    margin-bottom: 20px;
}

.vision i, .mission i {
    font-size: 48px;
    color: white;
}
.vision div:nth-child(2), .mission div:nth-child(2) {
    text-align: center;
}

.vision div:nth-child(2) p, .mission div:nth-child(2) p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
    text-align: justify;
}

@media (max-width: 768px) {
    .mv {
        flex-direction: column;
        gap: 30px;
        padding: 40px 15px;
    }
    
    .vision, .mission {
        padding: 30px 20px;
    }
    
    .vision > div:first-child, .mission > div:first-child {
        width: 100px;
        height: 100px;
    }
    
    .vision i, .mission i {
        font-size: 40px;
    }
    .abt1{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 2%;
    flex-direction: column;
}
.abt1 div:nth-child(1){
    width: 100%;
}
.abt1 div:nth-child(2){
    width: 100%;
}
.abt1 p{
    text-align: justify;
    margin-top: 1%;
    font-size: 18px;
    line-height: 2;
}
}

