.c-hero-section__wrapper {
    background-color: var(--sec); /* لون الخلفية الأصفر */
    border-radius: 50px; /* الحواف الدائرية الكبيرة */
    min-height: 400px;
    z-index: 1;
}

/* Side Images Positioning */
.c-hero-section__side-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 450px; /* تحكم في عرض الصورة المجمعة هنا */
    z-index: 2;
}

/* Offset the images so they are partially hidden (Overflow Hidden) */
.c-hero-section__side-img--left {
    left: -200px; /* دي اللي بتخلي نص الصورة يختفي بره الشمال */
}

.c-hero-section__side-img--right {
    right: -200px; /* دي اللي بتخلي نص الصورة يختفي بره اليمين */
}

.c-hero-section__side-img img {
    width: 100%;
    height: auto;
    display: block;
}

.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);
}

/* Content Styling */
.c-hero-section__content {
    z-index: 3;
    max-width: 600px;
}

.c-hero-section__title {
    font-size: 3rem; /* خط متجاوب */
}
html:lang(en) .c-hero-section__title {
    font-size: 2.5rem; /* خط متجاوب */
}

/* Responsive adjustments for mobile */

@media (max-width: 991px) {
    .c-hero-section__side-img {
        width: 300px; /* تصغير الصور في الموبايل */
    }
    .c-hero-section__side-img--left {
        left: -130px;
    }
    .c-hero-section__side-img--right {
        right: -130px;
    }

    .c-hero-section__wrapper {
        border-radius: 30px;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .c-hero-section__side-img {
        width: 200px; /* تصغير الصور في الموبايل */
    }
    .c-hero-section__side-img--left {
        left: -110px;
    }
    .c-hero-section__side-img--right {
        right: -110px;
    }

    .c-hero-section__wrapper {
        border-radius: 30px;
        min-height: 300px;
    }
}

@media (max-width: 991px) {
}

/* الهواتف الصغيرة جداً (أقل من 480px) */
@media (max-width: 479px) {
    html:lang(en) .c-hero-section__title {
        font-size: 2rem; /* أصغر حجم خط ليتناسب مع عرض الموبايل الصغير */
    }
}
