main {
    color: #333;
    background: #FEFAF6;
    display: flex;
    flex-direction: column;
    width: 100%;
}


.main-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 62px 0 0 0;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    margin-top: 76px;
}

.hero-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 1.2rem;
    color: #333333;
    max-width: 900px;
    opacity: 0.9;
    line-height: 1.8;
    position: relative;
    top: -76px;
}

.decorative-icon {
    width: 500px;
    aspect-ratio: 1 / .83;
    transform: scale(1, -1);
    position: relative;
    top: -59px;
    right: -330px;
}

.decorative-icon>img {
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}

.change-status {
    background-color: #FDF0EE;
    width: 100%;
}

.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 160px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
} */

.section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.section-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 775px;
}

.visual-element {
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.visual-element:hover {
    transform: translateY(-10px);
}


.modren-experience {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
    padding: 80px 0px;
}

.final-section {
    background: #EFEBFF;
    padding: 60px 0;
    border-radius: 25px;
    text-align: center;
    position: relative;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    overflow: hidden;
}

.final-section .decoration-svg {
    position: absolute;
    top: 0px;
    left: 0px;
}

.last-decoration-svg {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.final-title {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    z-index: 2;
    font-size: clamp(2rem, 4vw, 3rem);
    ;
}

.final-text {
    font-size: 1.2rem;
    max-width: 900px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.gear-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 10s linear infinite;
    position: relative;
    z-index: 2;
}

.divider {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.divider svg {
    height: 146px;
    position: absolute;
    z-index: 1;
    top: -73px;
}

.put-decision {
    background-color: #F2E7EF;
}

.smart-tools {
    background-color: #FDE7EA;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 62px 20px;
    }

    .hero-content {
        /* margin-top: 62px; */
    }

    .section {
        padding: 40px 20px;
        /* margin: 20px 0; */
    }

    .visual-element {
        width: 200px;
        height: 160px;
        border-radius: 15px;
    }

    .section-text {
        font-size: 1rem;
        padding: 0 10px;
    }

    .final-section {
        padding: 60px 20px;
    }

    .decorative-icon {
        width: 200px;
        height: 200px;
        top: unset;
        right: unset;
        margin: auto;
        /* display: none; */
    }

    .hero-description {
        top: unset;
        /* line-height: 1.4rem; */
    }

    .divider {
        /* display: none; */
    }
    .divider svg {
        height: 80px;
        top: -40px;
    }
}

@media (max-width: 480px) {
    /* .hero-section {
        padding: 40px 15px;
    } */

    .section {
        padding: 50px 15px;
    }

    .decorative-icon {
        /* width: 200px;
        height: 200px; */
        /* display: none; */
    }

    .decorative-icon::after {
        font-size: 2rem;
    }

    .section-text {
        font-size: 1.2rem;
        /* line-height: 1.4rem; */
    }
}

[lang="ar"] {
    .decorative-icon {
        right: unset;
    }
}