/* ============================
   1) FULL WIDTH برای کانتینر اصلی در صفحه اصلی
   ============================ */

body.home #main-content.wd-content-layout.content-layout-wrapper.container {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

/* ============================
   2) HERO SECTION
   ============================ */

.home-hero {
    position: relative;
    width: 100%;
    height: 700px;             /* دسکتاپ */
    overflow: hidden;

    display: flex;
    align-items: center;        /* وسط عمودی متن */
    justify-content: center;    /* وسط افقی متن */
}

/* پس‌زمینه اسلایدر */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

/* لایه تیره روی عکس‌ها */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* محتوای متنی */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.hero-text {
    font-size: 18px;
    color: #ddd;
    line-height: 1.9;
}

/* ============================
   3) ریسپانسیو – ارتفاع و فونت
   ============================ */

@media (max-width: 1024px) { /* تبلت */
    .home-hero {
        height: 500px;
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) { /* موبایل */
    .home-hero {
        height: 360px;
    }
    .hero-title {
        font-size: 26px;
    }
    .hero-text {
        font-size: 14px;
        line-height: 1.6;
    }
}
.wd-content-layout
{
        padding-block: 0px !important;
}