.hero-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--main);
    padding: 0.6rem; /* مساحة أقل من اليمين بسبب الدائرة */
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border: none;
    color: white;
}

/* النص داخل الزر */
.hero-btn-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

/* الدائرة الصفراء المحيطة بالسهم */
.hero-btn-icon-wrapper {
    width: 30px;
    height: 30px;
    background-color: var(--sec);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* أيقونة السهم نفسه */
.hero-btn-icon-wrapper i {
    font-size: 1rem;
    color: var(--main);
}

/* About */

.about-hero {
    padding: 5rem 0;
    background: #fff;
}

.about-hero .title {
    margin-top: 8rem;
    font-size: calc(60 / 16 * 1rem);
    color: var(--main);
}

.desc {
    font-size: calc(20 / 16 * 1rem);
    color: var(--main);
}

/* Text */
.about-badge {
    display: inline-block;
    color: var(--sec);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--main);
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* Image */
.image-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    isolation: isolate;
}

.hero-img {
    max-width: 702px;
    width: 100%;
    display: block;
}

/* Fade layer */
.image-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 7rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 62rem) {
    .about-hero {
        padding: 3rem 0;
    }

    .about-btn {
        margin: 1.5rem auto 0;
    }
}
