.hero-section {
    position: relative;
    height: 420px;
    background: url(/front/images/About-us.webp) no-repeat center center/cover;
    display: flex;
    align-items: center
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / .35)
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff
}

.hero-text {
    max-width: 600px
}

.highlight-box {
    display: inline-block;
    color: #fff;
    padding: 8px 18px;
    font-size: 48px;
    margin-top: 10px
}

.about {
    padding: 60px 20px;
    background: #f5f5f5
}

.about-container {
    max-width: 1200px;
    margin: auto;
    width: 100%
}

.about-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px
}

.about-images {
    display: flex;
    align-items: center;
    gap: 30px
}

.circle-img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden
}

.circle-img.small {
    width: 200px;
    height: 200px
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-content {
    max-width: 550px
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 15px
}

.about-content h2 span {
    color: #4B2E83
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555
}

.about-content ul {
    list-style: none;
    padding: 0
}

.about-content li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px
}

.about-content li::before {
    content: "";
    width: 30px;
    height: 30px;
    background: #4B2E83;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px
}

.about-logos {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
    text-align: center
}

.about-logos img {
    max-width: 100%;
    height: 60px;
    object-fit: contain
}

@media (max-width:992px) {
    .about-top {
        flex-direction: column;
        text-align: center
    }

    .about-images {
        justify-content: center
    }

    .about-content {
        max-width: 100%
    }

    .about-content li {
        padding-left: 0
    }

    .about-content li::before {
        display: none
    }
}

@media (max-width:576px) {
    .circle-img {
        width: 200px;
        height: 200px
    }

    .circle-img.small {
        width: 150px;
        height: 150px
    }

    .about-content h2 {
        font-size: 32px
    }

    .highlight-box {
        font-size: 30px
    }

    .hero-section {
        height: auto;
        padding: 80px 0
    }
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center
}

.swiper-slide img {
    width: 100%;
    max-width: 180px;
    height: 80px;
    object-fit: contain
}

.mySwiper .swiper-slide img {
    max-width: 220px;
    height: 100px
}

@media (max-width:768px) {
    .swiper-slide img {
        max-width: 140px;
        height: 70px
    }
}