.aboutus {
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    background-color: #ffffff;
    /* background-image: url(../images/aboutuubg.png); */
}

.about-us {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 1px 1px 1px 1px #888888;
}

.text-container {
    padding: 20px;
    max-width: 600px;
    flex: 1;
}

.text-container h2 {
    margin: 0;
    color: #fb952f;
}

.text-container h3 {
    margin-top: 10px;
    color: #333;
}

.text-container p {
    margin: 20px 0;
    color: #555;
    line-height: 1.6;
}

.know-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8bc34a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.know-more:hover {
    background-color: #7cb342;
}

.image-container {
    max-width: 600px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 0 10px 10px 0;
}


/* Media Query for Mobile Devices */
@media (max-width: 1200px) {
    .aboutus {
        padding: 20px;
    }
}
@media (max-width: 1000px){
    .aboutus{
        height: auto;
        padding: 20px;
    
    }
}
@media (max-width: 768px) {
    .aboutus {
        height: auto;
        padding: 20px;
    }
    .about-us {
        flex-direction: column;
    }

    .text-container {
    }

    .image-container img {
        border-radius: 0 0 10px 10px;
    }
}



.yt-video{
    display: flex;
    justify-content: center;
    align-items: center;
    justify-items: center;
    margin-top: 20px;
    background-color: #ffffff;
  
}

.yt-video iframe{
    width: 750px;
    height: 410px;
}
@media (max-width: 800px) {
    .yt-video iframe{
        width: 500px;
        height: 315px;
    }
}

@media (max-width: 520px) {
    .yt-video iframe{
        width: 400px;
        height: 255px;
    }
}


@media (max-width: 405px) {
    .yt-video iframe{
        width: 300px;
        height: 185px;
    }
}