@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');
/* ============================================================
   EBHRO6 — Hero Section
   Namespace  : ebhro6
============================================================ */

/* 1. Variables & Colors */
.ebhro6 {
    --ebhro6-helper: #0f1e2e;
    --ebhro6-primary: #ffffff;
    --ebhro6-secondary: #1f3b57;

    --ebhro6-accent: #2ecc71;
    --ebhro6-border: rgba(255,255,255,0.15);
    --ebhro6-shadow: 0 1rem 2.5rem rgba(0,0,0,0.2);
}

/* 2. Reset */
*,
.ebhro6 *,
.ebhro6 *::before,
.ebhro6 *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.ebhro6 {
    font-family: "El Messiri", sans-serif;
    background: linear-gradient(135deg, var(--ebhro6-helper), var(--ebhro6-secondary));
    color: var(--ebhro6-primary);
    padding:1.5rem 2rem;
    display: flex;
    align-items: center;
}

.ebhro6__container {
    width: 100%;
}

.ebhro6__content {
    max-width: 100%;
}

.ebhro6__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.ebhro6__desc {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

.ebhro6__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ebhro6__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    text-decoration: none;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 0.8rem;
    transition: 0.3s ease;
    text-align: center;
}

/* زر الاتصال */
.ebhro6__btn--call {
    background: var(--ebhro6-accent);
    color: var(--ebhro6-primary);
    box-shadow: var(--ebhro6-shadow);
}

/* زر الخدمات */
.ebhro6__btn--outline {
    border: 0.08rem solid var(--ebhro6-border);
    color: var(--ebhro6-primary);
    background: transparent;
}

/* Hover */
.ebhro6__btn--call:hover {
    transform: translateY(-0.2rem);
}

.ebhro6__btn--outline:hover {
    background: rgba(255,255,255,0.08);
}

/* 4. Breakpoints */

/* Small Tablet */
@media (min-width: 481px) {
    .ebhro6 {
        padding: 5rem 2rem;
    }
}

/* Medium Tablet */
@media (min-width: 601px) {
    .ebhro6__title {
        max-width: 90%;
    }
       .ebhro6__actions {
        flex-direction: row; 
    }

}

/* Large Tablet */
@media (min-width: 769px) {
 
    .ebhro6__btn {
        width: auto;
        padding: 1rem 2rem;
    }
}

/* Small Desktop */
@media (min-width: 1025px) {
    .ebhro6 {
        padding: 2rem 5rem;
    }

    .ebhro6__content {
        max-width: 60%;
    }
}

/* Medium Desktop */
@media (min-width: 1281px) {
    .ebhro6__title {
        font-size: clamp(2.5rem, 3vw, 3.2rem);
    }
}

/* Large Desktop */
@media (min-width: 1441px) {
    .ebhro6__content {
        max-width: 50%;
    }
}

/* Extra Large */
@media (min-width: 1921px) {
    .ebhro6 {
        padding: 3rem;
    }
}