/* --- HERO SECTION GENERAL STYLES --- */
.hero-section {
    padding: 15px 0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-flex {
    display: flex;
    gap: 15px;
    height: 450px; /* Desktop Fixed Height */
}

/* --- SLIDER STYLES (LEFT SIDE) --- */
.hero-slider {
    flex: 0 0 68%; 
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 100%;
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* PHOTO FIX: Photo stretch nahi hogi, fit hogi */
    display: block;
}

/* --- SIDE BANNERS STYLES (RIGHT SIDE) --- */
.hero-side-banners {
    flex: 0 0 30%; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.side-btn {
    display: block;
    height: calc(50% - 7.5px); 
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 12px;
}

.side-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* PHOTO FIX: Fit for side banners */
    display: block;
}

/* --- SLIDER BUTTONS (PREV/NEXT) --- */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #1B4D3E; 
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.prev-btn:hover, .next-btn:hover {
    background: #1B4D3E;
    color: #D4AF37;
}

/* --- MOBILE RESPONSIVE (FIXED SIZES) --- */
@media (max-width: 768px) {
    .hero-flex {
        flex-direction: column;
        height: auto; /* Container auto taaki content fit ho */
        gap: 10px;
        padding: 0 10px;
    }

    /* Bada Slider Mobile par - SIZE FIXED */
    .hero-slider {
        flex: 0 0 100%;
        height: 200px !important; /* HEIGHT LOCKED: Isse zyada bada nahi hoga */
        border-radius: 8px;
    }

    /* Niche ke 2 Banners Side-by-Side - SIZE FIXED */
    .hero-side-banners {
        flex: 0 0 100%;
        flex-direction: row; 
        gap: 10px;
        height: 120px !important; /* HEIGHT LOCKED: Dono chote banners ki height fix */
    }

    .side-btn {
        flex: 1; /* Dono ko 50-50% width milegi */
        height: 100% !important; /* Container ki 120px height lega */
        border-radius: 8px;
    }

    .side-btn img, .slide img {
        object-fit: cover; /* Isse image box ke andar fit ho jayegi bina stretch hue */
    }

    .prev-btn, .next-btn {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}