/* Classic Scrollable Layout - Standard Wave */
.hero-main-gradient {
    min-height: 100vh;
    /* يسمح بالسكرول */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* يرفع المحتوى للأعلى */
    padding-bottom: 150px;
    /* يرفع المحتوى عن الأسفل */
    padding-top: 0;
    /* إصلاح المسافة عند النافبار */
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
    /* الطول الافتراضي للتموج */
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}