/*==========================================================
   FILTON FILTERS - CUSTOM RESPONSIVE HERO SLIDER CSS
===========================================================*/

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 92vh;
    min-height: 680px;
    max-height: 950px;
    overflow: hidden;
    background-color: #0f172a;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Background Media */
.hero-media-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center center !important;
    z-index: 1;
    transform: scale(1);
    transition: transform 10s ease-out;
}

video.hero-media-bg {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
}

.hero-slide.active .hero-media-bg.kenburns {
    transform: scale(1.08);
}

/* Overlay Mask */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.65) 100%);
    z-index: 2;
}

/* Caption Container & Typography */
.hero-caption-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-caption-content {
    max-width: 850px;
    color: #ffffff;
}

.hero-caption-content.center-text {
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(2, 132, 199, 0.85);
    border-radius: 30px;
    backdrop-filter: blur(8px);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-title-highlight {
    color: #fdb813;
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 30px;
    max-width: 650px;
}

.hero-caption-content.center-text .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-caption-content.center-text .hero-btn-group {
    justify-content: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background-color: #0284c7;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
}

.hero-btn:hover {
    background-color: #0369a1;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.5);
    text-decoration: none;
}

.hero-btn-secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    box-shadow: none;
}

.hero-btn-secondary:hover {
    background-color: #ffffff;
    color: #0f172a;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Animations */
.hero-slide.active .hero-animate {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide.active .hero-animate-delay-1 {
    animation-delay: 0.15s;
}

.hero-slide.active .hero-animate-delay-2 {
    animation-delay: 0.3s;
}

.hero-slide.active .hero-animate-delay-3 {
    animation-delay: 0.45s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Arrow Controls */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: rgba(2, 132, 199, 0.9);
    border-color: #0284c7;
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.hero-prev-btn {
    left: 24px;
}

.hero-next-btn {
    right: 24px;
}

/* Dot Indicators */
.hero-dots-container {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    width: 32px;
    border-radius: 12px;
    background: #0284c7;
}

/* Mobile Media Queries */
@media (max-width: 768px) {
    .hero-slider-wrapper {
        height: 75vh;
        min-height: 520px;
    }
    
    .hero-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .hero-prev-btn {
        left: 12px;
    }
    
    .hero-next-btn {
        right: 12px;
    }
}