/* HERO SECTION */
.course-hero-bg {
    min-height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

/* OVERLAY (Gradient Professional Look) */
.course-hero-bg .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.75)
    );

    pointer-events: none;
}

/* TITLE */
.course-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

/* DESCRIPTION */
.course-hero-desc {
    max-width: 750px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* META BOXES (Glass Effect 🔥) */
.meta-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    transition: all 0.3s ease;
}

.meta-box i {
    color: #ffc107;
}

/* Hover Effect */
.meta-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* BUTTON */
.hero-btn {
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .course-hero-title {
        font-size: 2rem;
    }

    .course-hero-desc {
        font-size: 1rem;
    }
}