.hero-slider-wrapper {
    width: 100%;
    padding-top: 20px;
    background: #fff;
}

.hero-slider-container {
    position: relative;
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    height: 600px;
    /* Desktop height */
    border-radius: 20px;
    overflow: hidden;
    background: #f8f8f8;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.slider-main {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-image {
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    /* ⚡ MAIN FIX: Image stays centered and fills space */
    object-fit: cover;
    object-position: center center;
}

/* Progress Bar */
.slider-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.progress-line {
    height: 100%;
    width: 0;
    background: #C5A059;
}

/* Navigation Buttons */
.slider-controls {
    position: absolute;
    bottom: 25px;
    right: 30px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.nav-btn span::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #1a1a1a;
    border-right: 2px solid #1a1a1a;
    display: block;
}

.prev span::before {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.next span::before {
    transform: rotate(45deg);
    margin-right: 3px;
}

/* ✨ MOBILE MODERN FIX ✨ */
@media (max-width: 768px) {
    .hero-slider-container {
        width: 95%;
        height: 500px;
        /* Mobile par portrait feel ke liye height set ki hai */
        border-radius: 15px;
    }

    .slide-image img {
        /* Mobile par image ka main focus area hamesha center mein rahega */
        object-position: center center;
    }

    .slider-controls {
        right: 50%;
        transform: translateX(50%);
        /* Mobile par center controls */
        bottom: 20px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        background: white;
    }
}