/* academic.css */

.subpage-hero {
    background: url('../images/img-banner.webp') no-repeat center center;
    background-size: cover;
}
/* Global classes */
.bg-dark-green {
    background-color: var(--primary-green) !important;
}

.bg-light-gold {
    background-color: #FFFDF5 !important;
}

.icon-box-large {
    width: 70px;
    height: 70px;
    background-color: #0b9d74;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2.5rem;
}

.key-components {
    border: 1px solid #e9fbf6 !important;
    background-color: #fbfffd !important;
    box-shadow: 0 10px 40px rgba(11, 157, 116, 0.05) !important;
}

.icon-box-gold {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: inline-block;
}

.lang-tag {
    background: var(--white);
    padding: 20px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #EEE;
    transition: var(--transition);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.lang-tag:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.lang-tag strong {
    display: block;
    color: var(--primary-green);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.training-methodology {
    background-color: #FFFDF5;
}

.method-num {
    width: 30px;
    height: 30px;
    background: var(--accent-gold);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.method-item {
    font-weight: 500;
}

.custom-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.custom-check-list li::before {
    content: "\F26E";
    font-family: "bootstrap-icons";
    color: #0b9d74;
    font-weight: 700;
}

.training-box {
    background: rgba(255, 255, 255, 0.05);
}

.training-box ul li {
    align-items: flex-start;
}

.training-box ul li i {
    margin-top: 3px;
    flex-shrink: 0;
}