/* Hero Slider CSS */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
    height: 100vh;
}

.hero-slider .cc-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slider .cc-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Custom Navigation Arrows */


/* Centered Thumbnails */
.hero-thumbnails {
    position: absolute;
    bottom: 0px;
    /* Aligned to the bottom */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
    padding-bottom: 5px;
    /* Tiny bit of padding for visual balance */
}

.hero-thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-thumb:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-thumb.active {
    transform: translateY(-5px) scale(1.1);
    border-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .hero-slider .owl-nav {
        padding: 0 15px;
    }

    .hero-slider .owl-nav button {
        width: 32px;
        height: 32px;
        font-size: 12px !important;
    }

    .hero-thumbnails {
        bottom: 0px;
        gap: 8px;
    }

    .hero-thumb {
        width: 40px;
        height: 40px;
        border-width: 1px;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        height: 70vh;
    }

    .hero-slider .owl-stage-outer,
    .hero-slider .owl-stage,
    .hero-slider .owl-item {
        height: 70vh;
    }

    .hero-thumb {
        width: 35px;
        height: 35px;
    }
}