
/* ==========================================================================
   Hero Carousel Styles (Custom)
   ========================================================================== */

/* Slider Container */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    width: 100%;
    min-height: 800px; /* Adjust as needed */
    position: relative;
}

/* Slide Item Backgrounds */
.hero-slide-item {
    width: 100%;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: linear-gradient(116deg, #0B0D17 0.94%, #26161C 35.88%, #2B1617 76.54%, #0B0D17 100%);
    position: relative;
    padding: 150px 0 100px; /* Adjust spacing for header */
}

/* Custom Buttons for Grid */
.glass-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(5px);
    width: 100%; /* Ensure full width in col */
    justify-content: center; /* Center content if needed, or 'flex-start' */
    white-space: nowrap;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--theme);
    color: #fff;
    transform: translateY(-2px);
}

.glass-btn.red-bg {
    background: var(--theme);
    border-color: var(--theme);
}
.glass-btn.red-bg:hover {
    background: #d64200; /* Darker shade of theme */
}

.glass-btn.red-hover:hover {
    background: var(--theme);
    border-color: var(--theme);
}

/* Glass Card Button (Large) */
.glass-card-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.glass-card-btn i {
    font-size: 34px;
    margin-bottom: 5px;
}
.glass-card-btn:hover {
    background: var(--theme);
    border-color: var(--theme);
    color: #fff;
}

.glass-card-btn.small {
    width: 60px;
    height: 60px;
    font-size: 12px;
}
.glass-card-btn.small i {
    font-size: 20px;
}

/* Hero Image Specifics */
.hero-img-main {
    max-width: 100%;
    height: auto;
    border-radius: 20px; /* Optional: adds rounded corners to main hero img */
    /* box-shadow: 0 20px 50px rgba(0,0,0,0.3); Optional shadow */
    animation: float-y 4s ease-in-out infinite;
}

@keyframes float-y {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Pagination Dots */
.hero-slider .swiper-pagination {
    bottom: 30px;
}
.hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 6px !important;
}
.hero-slider .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background: var(--theme);
}

/* Navigation Buttons */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    color: #fff;
    background: var(--theme);
}

/* Video Play Button in Image */
.hero-image {
    position: relative;
    display: inline-block;
}
.video-circle.style-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.video-circle.style-2 .video-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 24px;
}
.video-circle.style-2 .video-btn:hover {
    background: var(--theme);
    border-color: var(--theme);
    color: #fff;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .hero-slide-item {
        min-height: auto;
        padding: 120px 0 80px;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-btn .row {
        justify-content: center;
    }
    .hero-image {
        margin-top: 40px;
    }
    .glass-btn {
        width: auto;
        padding: 10px 15px;
    }
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none; /* Hide nav arrows on mobile */
    }
}
