.hero-section {
    background: url('/wp-content/uploads/2025/11/Top-Banner.webp') center/cover no-repeat;
    position: relative;
    padding: 100px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    color:#ffffff;
}

.hero-text p {
    font-size: 18px;
    color: #ffffff;
    margin: 20px 0;
}

.slider-indicator span {
    display: block;
    width: 60px;
    height: 2px;
    background: #fff;
    margin-top: 10px;
}

.btn-yellow {
    background-color: #FFC107;
    color: #000;
    font-weight: 600;
    border-radius: 5px;
    padding: 12px 30px;
    text-decoration: none;
}

.btn-yellow:hover {
    background-color: #e6ac00;
    color: #000;
}

.programs-box {
    background-color: #0F3B6D;
    color: #fff;
    padding: 40px;
}

.programs-box h5 {
    font-size: 22px;
    margin-bottom: 5px;
    line-height: 32px;
    color: #ffffff;
}

.programs-box a {
    color: #FFC107;
    text-decoration: none;
    font-weight: 600;
}

.programs-box a:hover {
    text-decoration: underline;
}

.programs-box hr {
    border-color: rgba(255,255,255,0.3);
    margin: 15px 0;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 70px 20px;
    }
    .hero-text h1 {
        font-size: 2rem;
        color: #ffffff;
    }
    .programs-box {
        margin-top: 30px;
    }
}