
/* about css */

.eh-why-card .sisf-e-inner {
   display: flex;
   direction: ltr;
}

/* Product Details */
.details-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    text-align: center;
}

.detail-item i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
}

.detail-item h4 {
    font-size: 15px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.detail-item p {
    font-size: 13px;
    color: var(--text-gray);
}
.detail-item {
    text-align: center;
}

.detail-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.detail-item h4 {
    font-size: 15px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.detail-item p {
    font-size: 13px;
    color: var(--text-gray);
}
@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   Project Journey
======================================== */

.project-journey {
    position: relative;
    background: #FFF;
    padding: 45px 0px 50px;
    overflow: hidden;
    direction: rtl;
}

/* تأثير خفيف للخلفية */
.project-journey::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            rgba(194, 152, 91, 0.06),
            transparent 60%
        );
    pointer-events: none;
}

.project-journey .container {
    position: relative;
    z-index: 1;
    /* max-width: 1000px; */
    margin: 0 auto;
}

/* العنوان */

.journey-title {
    position: relative;
    text-align: center;
    color: #c2985b;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 42px;
    line-height: 1.4;
}

.journey-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background: #c2985b;
    margin: 9px auto 0;
    opacity: 0.8;
}

/* الخط الزمني */

.journey-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
    direction: rtl;
}

/* الخط الأفقي */

.journey-timeline::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: #c2985b;
    opacity: 0.9;
    z-index: 0;
}

/* كل مرحلة */

.journey-step {
    position: relative;
    z-index: 1;
    text-align: center;
    min-width: 0;
}

/* دائرة الرقم */

.step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 1px solid #c2985b;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FFF;
    color: #c2985b;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 0 0 4px #c2985b;
}

/* الأيقونة */

.step-icon {
    width: 48px;
    height: 48px;
    margin: 8px auto 8px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

/* عنوان المرحلة */

.journey-step h3 {
    margin: 0;
    color: #0b0b0b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

/* الوصف */

.journey-step p {
    margin: 0;
    color: #0b0b0b;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.9;
}

/* ========================================
   Hover
======================================== */

.journey-step {
    transition: transform 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-4px);
}

.journey-step:hover .step-number {
    background: #c2985b;
    color: #0b0b0b;
}

.journey-step:hover .step-icon img {
    transform: scale(1.08);
}

.step-icon img {
    transition: transform 0.3s ease;
}


/* ========================================
   Tablet
======================================== */

@media (max-width: 768px) {

    .project-journey {
        padding: 40px 15px;
    }

    .journey-title {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .journey-timeline::before {
        right: 8%;
        left: 8%;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .step-icon {
        width: 42px;
        height: 42px;
    }

    .step-icon img {
        width: 36px;
        height: 36px;
    }

    .journey-step h3 {
        font-size: 12px;
    }

    .journey-step p {
        font-size: 10px;
    }
}


/* ========================================
   Mobile
======================================== */

@media (max-width: 576px) {

    .project-journey {
        padding: 35px 10px;
    }

    .journey-title {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .journey-timeline {
        grid-template-columns: repeat(5, minmax(75px, 1fr));
        min-width: 500px;
    }

    .journey-timeline-wrapper {
        overflow-x: auto;
    }

    .journey-timeline::before {
        right: 8%;
        left: 8%;
    }

    .step-number {
        width: 34px;
        height: 34px;
    }

    .step-icon img {
        width: 32px;
        height: 32px;
    }

    .journey-step h3 {
        font-size: 11px;
    }

    .journey-step p {
        font-size: 9px;
    }
}

