/* ==========================================================================
   TNB TRAINING & EDUCATION SECTION
   ========================================================================== */
.tnb-training-page {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.tnb-training-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.tnb-training-header .sub-title {
    color: #3764EB;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.tnb-training-header .title {
    color: #142441;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tnb-training-header p {
    color: #6B778C;
    font-size: 17px;
    line-height: 1.8;
}

/* Module Grid */
.tnb-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

/* Module Card Design */
.tnb-module-card {
    background: #F8FAFD;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #EAEFEF;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.tnb-module-card:hover {
    background: #FFFFFF;
    box-shadow: 0 15px 35px rgba(55, 100, 235, 0.08);
    transform: translateY(-5px);
    border-color: #3764EB;
}

/* Icon Styling */
.tnb-module-icon {
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    color: #00B0FC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.tnb-module-card:hover .tnb-module-icon {
    background: #3764EB;
    color: #FFFFFF;
}

.tnb-module-title {
    color: #142441;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Arimo', sans-serif;
    margin-bottom: 15px;
}

.tnb-module-desc {
    color: #6B778C;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Call to Action Box */
.tnb-training-cta {
    background: linear-gradient(135deg, #142441 0%, #3764EB 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 20px 40px rgba(20, 36, 65, 0.15);
}

.tnb-training-cta h3 {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tnb-training-cta p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.tnb-btn-white {
    background: #FFFFFF;
    color: #142441;
    padding: 15px 35px;
    border-radius: 40px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.tnb-btn-white:hover {
    background: #00B0FC;
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(0, 176, 252, 0.3);
}