/* HERO SLIDER MAIN BOX */
.hero-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    margin-top: 100px;
    background: #000; /* Extra: black background so empty area neat lage */
}

/* SLIDER WRAPPER */
.slider {
    display: flex;
    width: 100%;
    transition: transform 0.8s ease-in-out;
}

/* EACH SLIDE */
.slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

/* IMAGE FULL VISIBLE, NO CROP */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;      /* Full image visible */
    object-position: center;
    background-color: #000;    /* Blank space fill */
}

/* HEADING ON IMAGE */
.hero-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
    padding: 0 15px;
}

.hero-heading h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-heading p {
    font-size: 1.3rem;
    margin-top: 10px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .hero-slider {
        height: 50vh;
        margin-top: 80px;
    }

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

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

@media (max-width: 480px) {
    .hero-slider {
        height: 45vh;
    }

    .hero-heading h1 {
        font-size: 1.6rem;
    }

    .hero-heading p {
        font-size: 0.9rem;
    }
}

/* ----------section_2--------------- */


