body {
    background-color: #e5e7eb;
}

.training-banner {
    padding: 180px 0 80px;
    /* background: linear-gradient(135deg, #8c1cad 0%, #2b1b32 100%); */
    background-color: #8c1cad;
    text-align: center;
}

.training-banner h1 {
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    line-height: 70px;
}

.training-banner h1 span {
    color: #cda102;
}

.training-banner p {
    max-width: 800px;
    margin: 20px auto 0;
    color: #fff;
    font-size: 20px;
}

.training-section {
    padding: 80px 0;
}

.training-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.training-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid #e8e0eb;
}

.training-card:hover {
    transform: translateY(-10px);
}

.training-card .icon {
    width: 70px;
    height: 70px;
    background-color: #8c1cad;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    margin-bottom: 25px;
}

.training-card .icon i {
    color: #fff;
    font-size: 28px;
}

.training-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #2b1b32;
    margin-bottom: 15px;
}

.training-card p {
    color: #7c5c8a;
    font-size: 16px;
    margin-bottom: 25px;
}

.training-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #8c1cad;
    margin-bottom: 15px;
}

.training-card ul {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.training-card ul li {
    list-style: none;
    background-color: #f3f0f4;
    color: #2b1b32;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.training-card .course-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 20px;
}

.training-card .course-info .box {
    background-color: #faf7fb;
    padding: 15px;
    border-radius: 12px;
    width: 100%;
    text-align: center;
}

.training-card .course-info .box h6 {
    font-size: 14px;
    color: #7c5c8a;
    margin-bottom: 5px;
}

.training-card .course-info .box span {
    font-size: 18px;
    font-weight: 700;
    color: #2b1b32;
}

.training-card a {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 16px;
}

.why-join {
    padding: 80px 0;
    background-color: #fff;
}

.why-join .sec-heading {
    text-align: center;
    margin-bottom: 50px;
}

.why-join .sec-heading h2 {
    font-size: 45px;
    font-weight: 700;
    color: #2b1b32;
}

.why-join .sec-heading h2 span {
    color: #8c1cad;
}

.why-join-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-box {
    background-color: #f9f7fa;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
}

.why-box i {
    font-size: 35px;
    color: #8c1cad;
    margin-bottom: 20px;
}

.why-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2b1b32;
    margin-bottom: 15px;
}

.why-box p {
    color: #7c5c8a;
    font-size: 15px;
}

@media(max-width: 991px) {
    .training-wrap {
        grid-template-columns: 1fr;
    }

    .why-join-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-banner h1 {
        font-size: 45px;
        line-height: 55px;
    }
}

@media(max-width: 767px) {
    .why-join-wrap {
        grid-template-columns: 1fr;
    }

    .training-banner h1 {
        font-size: 35px;
        line-height: 45px;
    }

    .training-banner p {
        font-size: 16px;
    }
}