/**
 * Stylesheet: Hero Banner Custom Tweaks
 */
.hero-container-height {
    min-height: unset !important;
    height: auto !important;
    aspect-ratio: 1000 / 370 !important;
    position: relative;
    width: 100%;
}

.hero-section-card {
    border-radius: 20px !important;
    overflow: hidden !important;
}

.hero-section-premium {
    padding-top: 72px;
    padding-bottom: 72px;
    padding-left: 48px;
    padding-right: 48px;
}

@media (max-width: 991px) {
    .hero-section-premium {
        padding-top: 48px;
        padding-bottom: 48px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}
.hero-glow-primary {
    background-color: #3b82f6;
    top: -50px;
    left: -50px;
}
.hero-glow-secondary {
    background-color: #a855f7;
    bottom: -50px;
    right: -50px;
}

.hero-animate-fade {
    animation: heroFadeIn 0.5s ease-out forwards;
}

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

/* Premium Flex Layout Alignment */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
}

.hero-text-col {
    width: 45%;
    flex-shrink: 0;
}

.hero-image-col {
    width: 55%;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }
    .hero-text-col, .hero-image-col {
        width: 100%;
        justify-content: center;
    }
}

/* Float animation */
@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.hero-animate-float {
    animation: heroFloat 4s ease-in-out infinite;
}

/* Slider and other elements support */
.hero-dot-active {
    background-color: var(--bs-primary, #3b82f6) !important;
    width: 1.5rem !important;
}

.hero-text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 12px rgba(0, 0, 0, 0.7);
}

/* Premium Glow Floating Animation */
@keyframes glowOrbit {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -30px) scale(1.15);
        opacity: 0.35;
    }
    100% {
        transform: translate(-10px, 15px) scale(0.9);
    }
}
.hero-glow-premium-animate {
    animation: glowOrbit 10s ease-in-out infinite alternate;
}

/* Glassmorphic border glow card */
.glass-glow-card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-glow-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(var(--bs-primary-rgb, 59, 130, 246), 0.3) !important;
    box-shadow: 0 0 20px rgba(var(--bs-primary-rgb, 59, 130, 246), 0.15);
    transform: translateY(-4px);
}

/* Shining glass reflection for premium buttons */
.premium-btn-shimmer {
    position: relative;
    overflow: hidden;
}
.premium-btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: none;
}
.premium-btn-shimmer:hover::after {
    left: 150%;
    transition: left 0.8s ease-in-out;
}



