/* ==========================================================================
   TungAkshar Hard Metal - Index Page Custom Styles
   ========================================================================== */

/* Hero Banner & Index Specific Animations */
.hero-banner-main {
    background-position: center;
    background-size: cover;
}

/* Hero Slider Transitions */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.hero-slide .hero-bg-zoom {
    transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1);
}

.hero-slide.active .hero-bg-zoom {
    transform: scale(1.08);
}

.hero-slide .hero-content-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-slide.active .hero-content-anim {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Indicators */
.hero-indicator {
    height: 4px;
    width: 28px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-indicator.active {
    width: 56px;
    background-color: #001AFF;
    box-shadow: 0 0 12px rgba(0, 26, 255, 0.6);
}
