.about-hero-section {
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
    /* min-height: 75vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-section-left p {
    font-size: 1rem;
    color: var(--gray);
}

.modern-illustration-section {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-bgs {
    position: relative;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, #e3f2ff, #d1eaff);
    box-shadow: 0 25px 50px rgba(102, 176, 255, 0.15), inset -8px -8px 20px rgba(255, 255, 255, 0.6), inset 8px 8px 20px rgba(102, 176, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-bg {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, #e3f2ff, #d1eaff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 6px 6px 12px rgba(255, 255, 255, 0.3), inset -6px -6px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-image-wrapper {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(42, 42, 42, 0.15);
}

.main-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.floating-box {
    position: absolute;
    background-color: #ff9e4e;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    width: 170px;
    transition: transform 0.3s ease;
}

.floating-box:hover {
    transform: translateY(-5px);
}

.box-top-left {
    top: -20px;
    left: -30px;
}

.box-right {
    top: 50%;
    right: -124px;
}

.box-bottom-left {
    bottom: -20px;
    left: -30px;
}

.floating-icon-box {
    width: 36px;
    height: 36px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.floating-box h5 {
    margin: 0;
    font-weight: 700;
    color: #ffff;
}

.floating-box p {
    margin: 0;
    font-size: 1rem;
    color: #ffff;
    line-height: 1.2;
}

/* about us section */
.about-text {
    margin: 20px;
    font-size: 1rem;
    text-align: justify;
    color: var(--gray);
}

@media(max-width: 991px) {
    .about-text {
        text-align: center !important;
    }
}

.about-section-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* stats section */
.stats-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 20%);
    margin: 10px;
    position: relative;
    transition: transform 0.3s ease;
    align-items: center;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-card h1 {
    color: var(--primary);
    font-weight: 700;
}

.stats-info h5 {
    margin: 0 0 6px;
    font-weight: 600;
    text-align: start;
}

.stats-info p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 6px;
    text-align: start;
}

/* why chooseus section */
.why-chooseus-text {
    font-size: 1rem;
    color: var(--gray);
}

.why-chooseus-card h5 {
    font-weight: 600;
}

.why-chooseus-card p {
    font-size: 1rem;
    color: var(--gray);
}

.why-chooseus-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.why-chooseus-card {
    background: #ffffff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 15px;
    transition: transform 0.3s ease;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    text-align: start;
}

.why-chooseus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18) !important;
}

.why-chooseus-card-icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-right: 15px;
}

@media (min-width: 992px) and (max-width: 1290px) {
    .about-hero-section{
        text-align: start;
    }

    .circle-bgs {
        width: 360px;
        height: 360px;
    }

    .circle-bg {
        width: 280px;
        height: 280px;
    }

    .about-hero-image-wrapper {
        width: 200px;
        height: 200px;
    }

    .floating-box {
        padding: 14px 16px;
        font-size: 0.85rem;
        gap: 10px;
        width: 135px;
    }

    .floating-box h5 {
        font-size: 1.25rem;
    }

    .floating-box p {
        font-size: 0.8rem;
    }

    .box-top-left,
    .box-bottom-left {
        left: -45px;
    }

    .box-right {
        top: 37%;
        right: -75px;
    }

    .about-section-img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 992px) {
    .stats-info h5 {
        text-align: center;
    }

    .stats-info p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .circle-bgs {
        width: 260px;
        height: 260px;
    }

    .circle-bg {
        width: 190px;
        height: 190px;
    }

    .about-hero-image-wrapper {
        width: 140px;
        height: 140px;
    }

    .floating-box {
        padding: 10px 12px;
        gap: 8px;
        font-size: 0.75rem;
        max-width: 95px;
    }

    .floating-box p {
        font-size: 0.7rem;
        line-height: 1.1;
    }

    .floating-icon-box {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .box-top-left {
        top: -25px;
        left: -25px;
    }

    .box-right {
        right: -50px;
        top: 50%;
    }

    .box-bottom-left {
        bottom: -10px;
        left: -10px;
    }

    .about-section-img {
        max-width: 100%;
    }

    .stats-info h5 {
        text-align: center;
    }

    .stats-info p {
        text-align: center;
    }

    .floating-box:hover {
        transform: none;
    }
}

@media(min-width: 577px) and (max-width: 713px) {
    .circle-bgs {
        width: 477px !important;
        height: 477px !important;
    }
    .box-top-left {
        top: 10px;
        left: -60px;
    }
    .box-bottom-left {
        bottom: 15px;
        left: -31px;
    }
    .box-right {
        top: 56%;
        right: -60px;
    }
}

@media (min-width: 344px) and (max-width: 400px) {
    .circle-bgs {
        width: 235px;
        height: 235px;
    }
}