/* ================= HERO BANNER STYLES ================= */
/* Rotating 3D Banner Component */

.banner-hld {
    position: relative;
    overflow: hidden;
    height: 100vh;
    background: radial-gradient(circle at center, #1b2735 0%, #090a0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.banner-hld::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCJfaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+');
    opacity: 0.3;
    pointer-events: none;
}

.banner-hld .rotator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    perspective: 1000px;
}

.banner-hld .rotator figure {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1800px;
    height: 1800px;
    margin: 0;
    max-width: 150vw;
    max-height: 150vw;
}

.banner-hld .rotator figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    will-change: transform;
}

/* Wing Animations */
.wing-1 {
    opacity: 0.5;
    filter: blur(2px) hue-rotate(190deg) brightness(0.7);
    animation: rotate-cw 120s linear infinite;
}

.wing-2 {
    opacity: 0.9;
    filter: drop-shadow(0 0 20px rgba(228, 27, 23, 0.4));
    mix-blend-mode: normal;
    animation: rotate-ccw 90s linear infinite;
    z-index: 2;
}

.wing-3 {
    opacity: 0.5;
    filter: blur(1px) hue-rotate(190deg) brightness(0.7);
    animation: rotate-cw 80s linear infinite;
}

@keyframes rotate-cw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-ccw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 30px;
}

.banner-subtitle {
    letter-spacing: 4px;
    font-weight: var(--font-weight-bold);
    color: var(--iic-red);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(228, 27, 23, 0.3);
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-title {
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    text-transform: uppercase;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.banner-desc {
    color: #d0d0d0;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* Fade Up Animation */
.banner-content>* {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.banner-content .banner-subtitle {
    animation-delay: 0.2s;
}

.banner-content .banner-title {
    animation-delay: 0.4s;
}

.banner-content .banner-desc {
    animation-delay: 0.6s;
}

.banner-content .btn-group {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section (Generic) */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-accent-line {
    width: 80px;
    height: 4px;
    background: var(--iic-red);
    margin: 20px auto;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .banner-desc {
        font-size: 1.1rem;
    }

    .hero-section {
        min-height: 50vh;
    }

    .banner-hld .rotator figure {
        width: 1200px;
        height: 1200px;
    }
}