.index .hero-video {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.index .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.index .hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.index .hero-overlay p {
    font-size: 1.3rem;
}

/* موبايل */
@media (max-width: 768px) {
    .index .hero-video {
        height: 60vh;
    }

    .index .hero-overlay h1 {
        font-size: 2rem;
    }

    .index .hero-overlay p {
        font-size: 1rem;
    }
}