/* Modern Hero Section */
.modern-hero {
    height: 50vh; /* smaller hero section */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff; /* ensures all text inside is white */
    max-width: 700px;
    padding: 0 15px;
}

.hero-title {
    font-size: 36px; /* smaller font for smaller hero */
    font-weight: 800;
    line-height: 1.2;
    color: #fff; /* explicitly white */
}

.hero-subtitle {
    font-size: 16px;
    margin-top: 10px;
    color: #f0f0f0; /* soft white */
}

.hero-breadcrumbs ol {
    margin-top: 15px;
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 6px;
    justify-content: center;
}

.hero-breadcrumbs a {
    color: #d9f3ff;
    text-decoration: none;
}

.hero-breadcrumbs .current {
    color: #fff;
    font-weight: 600;
}

/* Animation */
.animate-hero {
    animation: fadeInHero 1s ease-out;
}

@keyframes fadeInHero {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.program-title {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
}

.program-subtitle {
    color: #d9ffd9;
    font-size: 18px;
    max-width: 600px;
    margin: 15px auto;
}

.breadcrumbs ol {
    display: flex;
    gap: 10px;
    justify-content: center;
    color: #fff;
}

.breadcrumbs a {
    color: #c9ffcf;
}

.section-heading {
    color: #2a9d4b;
    font-weight: 700;
    margin-bottom: 15px;
}

.program-info-card,
.content-card,
.coordinator-card,
.benefits-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.program-meta {
    list-style: none;
    padding: 0;
}

.program-meta li {
    margin: 10px 0;
    color: #444;
}

.program-meta i {
    color: #2a9d4b;
    margin-right: 6px;
}

.subject-list {
    list-style: none;
    padding-left: 0;
}

.subject-list li {
    margin-bottom: 6px;
}

.subject-list i {
    color: #2a9d4b;
    margin-right: 8px;
}

.coordinator-img img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.benefits-card ul {
    padding-left: 0;
    list-style: none;
}

.benefits-card li {
    margin-bottom: 8px;
}

.benefits-card i {
    color: #2a9d4b;
    margin-right: 10px;
}
