.about-us {
    margin: 2rem 5rem;

}

.about-us h2 {
    font-size: 2.5rem;
    color: #126929;
    margin: 1.2rem;
    text-align: center;
}

.about-us-cont {
    display: flex;
    align-items: center;
    justify-content: center;
}

.au-left img {
    height: 25rem;
    width: auto;
    border-radius: 40px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.au-right {
    margin-left: 4rem;
    font-size: 1.2rem;

}

.au-right h3 {
    margin-bottom: 1rem;
}

.meet-our-team {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f5eee3 40%, #b3be62 100%);

    text-align: center;
}

.meet-our-team h2 {
    font-size: 2.5rem;
    color: #126929;
    margin-bottom: 2rem;
    font-weight: bold;
}

.mot-cont {
    display: flex;
    flex-wrap: nowrap;
    /* Prevent wrapping */
    justify-content: center;
    /* Center cards horizontally */
    gap: 2rem;
    padding: 0 2rem;
}

.mot-item {
    flex: 0 0 200px;
    /* Fixed width to fit all 5 cards in row */
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mot-item img {
    width: 95%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.mot-item h4 {
    font-size: 1.2rem;
    color: #126929;
    margin-bottom: 0.5rem;
}

.mot-item h5 {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
}

.participation h2 {
    font-size: 2.5rem;
    color: #126929;
    margin-bottom: 1rem;
}

.participation p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.participation {
    margin: 4rem 5rem;
}

.p-gallery {
    margin: 0 3rem;
    display: flex;
    margin-top: 3rem;
    justify-content: space-between;

}

.p-gallery img {
    width: 100%;
    width: 22rem;
    height: 12rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 1rem;

}

.gallery-left,
.gallery-right {
    display: flex;
    flex-direction: column;
}

.gallery-mid img {
    height: 25rem;
    width: 22rem;
}

.mission {
    margin: 3rem 5rem;
    position: relative;

}

.mission h2 {
    font-size: 2.5rem;
    color: #126929;
    margin-bottom: 1rem;
    display: flex;
}
.m-left{
    display: flex;
    gap: 2rem;
}
.m-text{
    max-width: 80%;
    font-size: 1.1rem;
}
.m-text h3{
    margin-bottom: 0.7rem;
}
.m-left img{
    width: 20rem;
    border-radius: 40px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.m-right{
    display: flex;
    gap: 2rem;
}
.m-right img{
    margin-top: -8.6rem;
    width: 20rem;
    border-radius: 40px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.m-right p{
    margin-top: 1rem;
}
.m-t-r{
    margin-top: 5rem;
    margin-left: 2rem;
}
.m-logo{
    width: 10rem;
    position: absolute;
    bottom: 19rem;
    left: 31rem;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}








/* Tablets (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .about-us {
        margin: 2rem 3rem;
    }

    .about-us-cont {
        flex-direction: column;
        align-items: center;
    }

    .au-left img {
        height: 20rem;
        margin-bottom: 2rem;
    }

    .au-right {
        margin-left: 0;
        font-size: 1.1rem;
        text-align: center;
    }

    .mot-cont {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mot-item {
        flex: 0 0 180px;
    }

    .p-gallery {
        flex-direction: column;
        align-items: center;
    }

    .p-gallery img {
        width: 18rem;
        height: 10rem;
    }

    .gallery-mid img {
        height: 20rem;
        width: 18rem;
    }

    .m-left, .m-right {
        flex-direction: column;
        align-items: center;
    }

    .m-left img, .m-right img {
        width: 18rem;
        margin-top: 0;
    }

    .m-text {
        max-width: 100%;
        text-align: center;
    }

    .m-t-r {
        margin-top: 2rem;
        margin-left: 0;
    }

    .m-logo {
        position: static;
        margin: 2rem auto;
        display: block;
    }
}

/* Mobile Devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    .about-us {
        margin: 1rem 1.5rem;
    }

    .about-us h2 {
        font-size: 2rem;
    }

    .au-left img {
        height: 15rem;
    }

    .au-right {
        font-size: 1rem;
    }

    .meet-our-team h2 {
        font-size: 2rem;
    }

    .mot-cont {
        flex-direction: column;
        align-items: center;
    }

    .mot-item {
        flex: 0 0 100%;
        max-width: 250px;
    }

    .participation {
        margin: 2rem 1.5rem;
    }

    .participation h2 {
        font-size: 2rem;
    }

    .participation p {
        font-size: 1rem;
    }

    .p-gallery {
        margin: 0 1rem;
    }

    .p-gallery img {
        width: 100%;
        max-width: 15rem;
        height: 8rem;
    }

    .gallery-mid img {
        height: 15rem;
        width: 100%;
        max-width: 15rem;
    }

    .mission {
        margin: 2rem 1.5rem;
    }

    .mission h2 {
        font-size: 2rem;
    }

    .m-left img, .m-right img {
        width: 100%;
        max-width: 15rem;
    }

    .m-text {
        font-size: 1rem;
    }
}

/* Small Mobile Devices (max-width: 480px) */
/* Existing styles (unchanged) */
.about-us {
    margin: 2rem 5rem;
}

.about-us h2 {
    font-size: 2.5rem;
    color: #126929;
    margin: 1.2rem;
    text-align: center;
}

.about-us-cont {
    display: flex;
    align-items: center;
    justify-content: center;
}

.au-left img {
    height: 25rem;
    width: auto;
    border-radius: 40px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.au-right {
    margin-left: 4rem;
    font-size: 1.2rem;
}

.au-right h3 {
    margin-bottom: 1rem;
}

.meet-our-team {
    padding: 3rem 1rem;
    background-color: #f5ede0;
    text-align: center;
}

.meet-our-team h2 {
    font-size: 2.5rem;
    color: #126929;
    margin-bottom: 2rem;
    font-weight: bold;
}

.mot-cont {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
}

.mot-item {
    flex: 0 0 200px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mot-item img {
    width: 95%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.mot-item h4 {
    font-size: 1.2rem;
    color: #126929;
    margin-bottom: 0.5rem;
}

.mot-item h5 {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
}

.participation h2 {
    font-size: 2.5rem;
    color: #126929;
    margin-bottom: 1rem;
}

.participation p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.participation {
    margin: 4rem 5rem;
}

.p-gallery {
    margin: 0 3rem;
    display: flex;
    margin-top: 3rem;
    justify-content: space-between;
}

.p-gallery img {
    width: 100%;
    width: 22rem;
    height: 12rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.gallery-left,
.gallery-right {
    display: flex;
    flex-direction: column;
}

.gallery-mid img {
    height: 25rem;
    width: 22rem;
}

.mission {
    margin: 3rem 5rem;
    position: relative;
}

.mission h2 {
    font-size: 2.5rem;
    color: #126929;
    margin-bottom: 1rem;
    display: flex;
}

.m-left {
    display: flex;
    gap: 2rem;
}

.m-text {
    max-width: 80%;
    font-size: 1.1rem;
}

.m-text h3 {
    margin-bottom: 0.7rem;
}

.m-left img {
    width: 20rem;
    border-radius: 40px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.m-right {
    display: flex;
    gap: 2rem;
}

.m-right img {
    margin-top: -8.6rem;
    width: 20rem;
    border-radius: 40px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.m-right p {
    margin-top: 1rem;
}

.m-t-r {
    margin-top: 5rem;
    margin-left: 2rem;
}

.m-logo {
    width: 10rem;
    position: absolute;
    bottom: 19rem;
    left: 31rem;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Media Queries for Responsiveness */

/* Tablets (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .about-us {
        margin: 2rem 3rem;
    }

    .about-us-cont {
        flex-direction: column;
        align-items: center;
    }

    .au-left img {
        height: 20rem;
        margin-bottom: 2rem;
    }

    .au-right {
        margin-left: 0;
        font-size: 1.1rem;
        text-align: center;
    }

    .mot-cont {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mot-item {
        flex: 0 0 180px;
    }

    .p-gallery {
        flex-direction: column;
        align-items: center;
    }

    .p-gallery img {
        width: 18rem;
        height: 10rem;
    }

    .gallery-mid img {
        height: 20rem;
        width: 18rem;
    }

    .m-left, .m-right {
        flex-direction: column;
        align-items: center;
    }

    .m-left img, .m-right img {
        width: 18rem;
        margin-top: 0;
    }

    .m-text {
        max-width: 100%;
        text-align: center;
    }

    .m-t-r {
        margin-top: 2rem;
        margin-left: 0;
    }

    .m-logo {
        position: static;
        margin: 2rem auto;
        display: block;
    }
}

/* Mobile Devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    .about-us {
        margin: 1rem 1.5rem;
    }

    .about-us h2 {
        font-size: 2rem;
    }

    .au-left img {
        height: 15rem;
    }

    .au-right {
        font-size: 1rem;
    }

    .meet-our-team h2 {
        font-size: 2rem;
    }

    .mot-cont {
        flex-direction: column;
        align-items: center;
    }

    .mot-item {
        flex: 0 0 100%;
        max-width: 250px;
    }

    .participation {
        margin: 2rem 1.5rem;
    }

    .participation h2 {
        font-size: 2rem;
    }

    .participation p {
        font-size: 1rem;
    }

    .p-gallery {
        margin: 0 1rem;
    }

    .p-gallery img {
        width: 100%;
        max-width: 15rem;
        height: 8rem;
    }

    .gallery-mid img {
        height: 15rem;
        width: 100%;
        max-width: 15rem;
    }

    .mission {
        margin: 2rem 1.5rem;
    }

    .mission h2 {
        font-size: 2rem;
    }

    .m-left img, .m-right img {
        width: 100%;
        max-width: 15rem;
    }

    .m-text {
        font-size: 1rem;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .about-us {
        margin: 1rem 0.5rem;
        padding: 0 0.5rem;
    }

    .about-us h2 {
        font-size: 1.6rem;
        margin: 0.8rem 0;
        line-height: 1.3;
    }

    .about-us-cont {
        gap: 1rem;
    }

    .au-left img {
        height: 12rem;
        width: 100%;
        max-width: 280px;
        border-radius: 20px;
        margin: 0 auto;
        display: block;
    }

    .au-right {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 0.5rem;
        text-align: left;
    }

    .au-right h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .meet-our-team {
        padding: 1.5rem 0.5rem;
    }

    .meet-our-team h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .mot-cont {
        gap: 1.5rem;
    }

    .mot-item {
        max-width: 220px;
        padding: 0.8rem;
        border-radius: 15px;
    }

    .mot-item img {
        width: 85%;
        max-width: 150px;
        margin: 0.8rem auto;
    }

    .mot-item h4 {
        font-size: 1.1rem;
    }

    .mot-item h5 {
        font-size: 0.9rem;
    }

    .participation {
        margin: 1.5rem 0.5rem;
        padding: 0 0.5rem;
    }

    .participation h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .participation p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .p-gallery {
        margin: 0;
        gap: 0.8rem;
    }

    .p-gallery img {
        max-width: 100%;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 10px;
        margin-bottom: 0.8rem;
    }

    .gallery-mid img {
        height: auto;
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

    .gallery-left, .gallery-right {
        gap: 0.8rem;
    }

    .mission {
        margin: 1.5rem 0.5rem;
        padding: 0 0.5rem;
    }

    .mission h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .m-left, .m-right {
        gap: 1rem;
    }

    .m-left img, .m-right img {
        display: none;
    }

    .m-logo {
        display: none;
    }

    .m-text {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .m-text h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .m-t-r {
        margin-top: 1rem;
    }
}