body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.programs-hero {
    background: linear-gradient(
                rgba(0, 0, 0, 0.2),
                rgba(0, 0, 0, 0.2)
              ),
              url("../images/programs.jpeg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.section-title {
    color: var(--secondary-blue);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    display: inline-block; /* <-- make the element shrink to text */
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; /* <-- now matches the text width */
    height: 4px;
    background-color: var(--accent-yellow);
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.program-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-card .card-body {
    padding: 30px;
}

.program-card .card-title {
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.program-duration {
    background-color: var(--accent-yellow);
    color: var(--secondary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.program-icon {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.certificate-list {
    list-style-type: none;
    padding-left: 0;
}

.certificate-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.certificate-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: bold;
}

.intro-section {
    padding: 80px 0;
    background-color: var(--tertiary-blue);
}

.programs-section {
    padding: 80px 0;
}

.certificate-section {
    padding: 80px 0;
    background-color: var(--light-blue);
}

.program-highlight {
    border-left: 4px solid var(--accent-yellow);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
}

.program-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.program-feature i {
    color: var(--secondary-blue);
    margin-right: 10px;
    margin-top: 5px;
}

.program-category {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.call-to-action-section {
    background-color: var(--secondary-blue);
}
.call-to-action-section .btn{
    font-size: 1.1rem;
    padding: 12px 30px;
    background-color: var(--accent-yellow);
}
.call-to-action-section .btn:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}
