.about-hero-section {
    width: 100%;
    padding: 80px;
    overflow: hidden;
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
    align-items: center;
}

.about-hero-section-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.about-hero-section-left .mv-hero-button {
    background-color: var(--secondary);
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

.about-hero-section-left .mv-hero-button:hover {
    background-color: var(--secondary);
}

.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: 303px;
    height: 303px;
    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;
    max-width: 1500px;
    transition: transform 0.3s ease;
}

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

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

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

.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 h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffff;
}

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

/* about us section */
.about-section {
    text-align: center;
}

.about-row {
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.about-text {
    font-size: 18px;
    text-align: justify;
    color: var(--gray);
}

.about-section-img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 20%);
}

/* stats section */
.about-stats-section {
    text-align: center;
}

.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-info h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: start;
}

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

/* team section */
/* .our-team-section {
    text-align: center;
    padding: 60px 0;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--secondary);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 15px rgba(250, 146, 61, 0.3);
    margin-bottom: 20px;
    border: 3px solid #fff;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.team-role {
    font-size: 1rem;
    color: #777;
    margin-bottom: 15px;
}

.team-desc {
    font-size: 0.9rem;
    color: #555;
    padding: 0 10px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.team-socials {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-socials a {
    color: var(--secondary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-socials a:hover {
    color: #333;
} */


/* why-chooseus-section */
.why-chooseus-section {
    text-align: center;
}

.why-chooseus-text {
    font-size: 1rem;
    text-align: justify;
    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;
}

/* .why-chooseus-card h6{
    color: var(--gray);
} */
@media (max-width: 1024px) {
    .about-hero-section {
        padding: 40px 30px;
    }

    .about-hero-section-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 60px;
    }

    .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: 150px;
    }

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

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

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

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

    .about-hero-section-left .mv-hero-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .about-text {
        font-size: 14px;
    }

    .about-section {
        text-align: center;
        padding: 30px 20px;
    }

    .about-stats-section {
        text-align: center;
        padding: 30px 20px;
    }

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


@media (max-width: 576px) {
    .about-hero-section {
        padding: 30px 16px;
    }

    .about-hero-section-left p {
        font-size: 0.9rem;
    }

    .about-hero-section-left .mv-hero-button {
        width: 100%;
        display: inline-block;
        text-align: center;
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    .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: 120px;
    }

    .floating-box h4 {
        font-size: 1rem;
    }

    .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: -75px;
        top: 50%;
        transform: translateY(-50%);
    }

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

    .about-text {
        font-size: 16px;
    }

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

    .about-section {
        text-align: center;
        padding: 30px;
    }

    .about-stats-section {
        text-align: center;
        padding: 30px;
    }
}