﻿.hero-image-box {
    position: relative;
    max-width: 1720px;
    margin: 0 auto;
    width: 100%;
    background-color: #000; /* پس‌زمینه تیره برای فضای خالی */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image-box img.hero-image {
        width: 100%;
        height: auto;
        max-height: 499px; /* دسکتاپ */
        object-fit: contain; /* تصویر کامل دیده بشه */
        display: block;
    }

@media (max-width: 768px) {
    .hero-image-box img.hero-image {
        width: auto; /* اجازه میدیم تصویر خودش بزرگ باشه */
        max-width: 100%;
        height: auto;
        max-height: 660px; /* ارتفاع موبایل */
        object-fit: contain;
    }
}

/* مخفی کردن متن */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
