@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Tajawal:wght@400;700&display=swap');

:root {
    --primaryColor: #FEA958;
    --middleColor: #393E46;
    --helperColor: #400B50;
    --lightHelper: #B60C52;
    --hrColor: #F8F5FF;
    --transparentColor: rgba(0, 0, 0, 0.699);
    --shadow: rgba(189, 188, 188, 0.514);
    /* --------------------------------- */
    --whatsappColor: #25D366;
    --white: #ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray: #f8f8f8;
    --container-width: 1340px;
    --header-height: 200px;
    /* 👈 غيّر الرقم حسب الارتفاع اللي تحبه */

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.5s;

}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stages-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 20px;
}
.stages-section{
    position: relative;
}
.stages-section svg{
    position: absolute;
    right: 0;
    left: 0;
    height: 20px;
    width: 100%;
}
.stages-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.stages-section-title {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--helperColor);
    position: relative;
}

.stages-section-title::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 5px;
    border-radius: 25px;
    bottom: -10%;
    right: 0;
    background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--primaryColor) 100%);

}

.stages-section-title::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 5px;
    border-radius: 25px;
    bottom: -25%;
    right: 0;
    background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--primaryColor) 100%);

}

.stages-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stages-col {
    width: 33.33%;
}

.stages-col img {
    width: 100%;
}

.stage-card {
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.stage-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--helperColor);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 60px;
    padding: 40px;
    margin: 0 auto 16px;
    box-shadow: 0 1px 20px #b60c5398;
}

.stage-title {
    font-size: 25px;
    color: var(--lightHelper);
    font-weight: 700;
    margin-bottom: 10px;
}

.stage-desc {
    font-size: 18px;
    color: var(--muted);
}
@media (max-width: 912px) {
    .stages-row {
        flex-direction: column;
    }
    .stages-col {
        display: flex;
        width: 100%;
    }
    .stages-img{
        width: 50%;
    }
}
@media (max-width: 576px) {
    .stages-col {
        flex-direction: column;
        width: 100%;
    }
}