/* =========================================
   HOME PAGE HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(16, 26, 40, 0.5) 0%, rgba(26, 47, 76, 0.35) 100%), var(--hero-bg) center/cover no-repeat;
    color: #fff;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #ffffff, transparent);
    z-index: 1;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(13, 110, 253, 0.4);
    background: linear-gradient(135deg, #0b5ed7 0%, #094eb3 100%);
    color: white;
}

.hero-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 13px 35px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-btn-outline:hover {
    background: #fff;
    color: #0d6efd;
    border-color: #fff;
    transform: translateY(-3px);
}

/* Glassmorphic Hero Card */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-glass-card img {
    border-radius: 12px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Section Headers (Homepage) */
.premium-header {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.premium-header .badge-top {
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.premium-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.premium-header .divider {
    height: 4px;
    width: 60px;
    background: #0d6efd;
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* Custom Hero Carousel Styles */
.hero-glass-card .carousel-indicators {
    bottom: -30px;
}

.hero-glass-card .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.hero-glass-card .carousel-indicators .active {
    background-color: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.carousel-fade .carousel-item {
    transition-duration: 0.8s;
}