/* =========================================
   Trainer Section
========================================= */

.trainer-section {
    background: #f4f7fd;
    padding: 72px 0;
}


/* =========================================
   Left Content
========================================= */

.trainer-content {
    max-width: 680px;
}

.trainer-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 17px;

    background: #e8f0ff;
    color: #0759d8;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
}


.trainer-title {
    margin: 0 0 16px;

    color: #111827;

    font-size: 42px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.2px;
}


.trainer-description {
    max-width: 660px;
    margin: 0 0 26px;

    color: #526784;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}


/* =========================================
   Features
========================================= */

.trainer-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 35px;
    row-gap: 12px;

    margin-bottom: 29px;
}


.trainer-feature {
    display: flex;
    align-items: center;
    gap: 4px;

    color: #17243a;

    font-size: 13px;
    font-weight: 600;
}


.trainer-feature i {
    color: #111827;
    font-size: 11px;
}


/* =========================================
   Register Button
========================================= */

.trainer-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 13px 21px;

    background: #1764e9;
    border: 1px solid #1764e9;
    border-radius: 11px;

    color: #fff;
    font-size: 14px;
    font-weight: 600;

    transition: all 0.2s ease;
}


.trainer-register-btn:hover {
    background: #0d53ce;
    border-color: #0d53ce;
    color: #fff;
}


/* =========================================
   Right Card
========================================= */

.trainer-info-card {
    min-height: 285px;

    padding: 34px;

    background: #fff;

    border: 1px solid #e6ebf3;
    border-radius: 24px;

    box-shadow: 0 18px 45px rgba(36, 55, 85, 0.09);
}


.trainer-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    margin-bottom: 21px;

    background: #eaf1ff;
    color: #075ee0;

    border-radius: 13px;

    font-size: 16px;
    font-weight: 700;
}


.trainer-info-card h2 {
    margin: 0 0 9px;

    color: #111827;

    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}


.trainer-info-card p {
    margin: 0;

    color: #5b718f;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================
   Large Desktop
========================================= */

@media (min-width: 1200px) {

    .trainer-section .container {
        max-width: 1170px;
    }

}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991.98px) {

    .trainer-section {
        padding: 60px 0;
    }

    .trainer-content {
        max-width: 100%;
    }

    .trainer-title {
        font-size: 38px;
    }

    .trainer-description {
        max-width: 100%;
    }

    .trainer-info-card {
        min-height: auto;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {

    .trainer-section {
        padding: 50px 0;
    }

    .trainer-label {
        margin-bottom: 14px;
    }

    .trainer-title {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.7px;
    }

    .trainer-description {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 22px;
    }

    .trainer-features {
        grid-template-columns: 1fr;
        gap: 11px;
        margin-bottom: 26px;
    }

    .trainer-feature {
        font-size: 13px;
    }

    .trainer-register-btn {
        width: auto;
        min-height: 52px;
    }

    .trainer-info-card {
        padding: 28px;
        border-radius: 20px;
    }

    .trainer-number {
        width: 46px;
        height: 46px;
        margin-bottom: 18px;
    }

    .trainer-info-card h2 {
        font-size: 21px;
    }

    .trainer-info-card p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* =========================================
   Small Mobile
========================================= */

@media (max-width: 575.98px) {

    .trainer-section {
        padding: 40px 0;
    }

    .trainer-title {
        font-size: 29px;
    }

    .trainer-register-btn {
        width: 100%;
    }

    .trainer-info-card {
        padding: 24px;
    }

}

/* =========================================
   Corporate Section
========================================= */

.corporate-section {
    background: #ffffff;
    padding: 78px 0;
}


/* =========================================
   Left Card
========================================= */

.corporate-info-card {
    min-height: 289px;
    padding: 34px;

    background: #f7f9fd;

    border: 1px solid #e3e9f2;
    border-radius: 23px;

    box-shadow: 0 18px 40px rgba(36, 55, 85, 0.07);
}


.corporate-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    margin-bottom: 20px;

    background: #eaf1ff;
    color: #075ee0;

    border-radius: 13px;

    font-size: 16px;
    font-weight: 700;
}


.corporate-info-card h2 {
    margin: 0 0 9px;

    color: #111827;

    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}


.corporate-info-card p {
    margin: 0;

    color: #5b718f;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.78;
}


/* =========================================
   Right Content
========================================= */

.corporate-content {
    max-width: 680px;
}


.corporate-label {
    display: inline-flex;
    align-items: center;

    padding: 8px 14px;
    margin-bottom: 17px;

    background: #eaf1ff;
    color: #0759d8;

    border-radius: 30px;

    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
}


.corporate-title {
    margin: 0 0 16px;

    color: #111827;

    font-size: 28px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.2px;
}


.corporate-description {
    max-width: 650px;

    margin: 0 0 26px;

    color: #526784;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}


/* =========================================
   Features
========================================= */

.corporate-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 35px;
    row-gap: 12px;

    margin-bottom: 29px;
}


.corporate-feature {
    display: flex;
    align-items: center;

    gap: 4px;

    color: #17243a;

    font-size: 13px;
    font-weight: 600;
}


.corporate-feature i {
    color: #111827;
    font-size: 11px;
}


/* =========================================
   Button
========================================= */

.corporate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 13px 21px;

    background: #1764e9;
    border: 1px solid #1764e9;

    border-radius: 11px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.2s ease;
}


.corporate-btn:hover {
    background: #0d53ce;
    border-color: #0d53ce;
    color: #ffffff;
}


/* =========================================
   Large Desktop
========================================= */

@media (min-width: 1200px) {

    .corporate-section .container {
        max-width: 1170px;
    }

}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991.98px) {

    .corporate-section {
        padding: 60px 0;
    }

    .corporate-content {
        max-width: 100%;
    }

    .corporate-title {
        font-size: 38px;
    }

    .corporate-info-card {
        min-height: auto;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {

    .corporate-section {
        padding: 50px 0;
    }

    .corporate-title {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.7px;
    }

    .corporate-description {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 22px;
    }

    .corporate-features {
        grid-template-columns: 1fr;

        gap: 11px;

        margin-bottom: 26px;
    }

    .corporate-feature {
        font-size: 13px;
    }

    .corporate-info-card {
        padding: 28px;
        border-radius: 20px;
    }

    .corporate-number {
        width: 46px;
        height: 46px;
        margin-bottom: 18px;
    }

    .corporate-info-card h2 {
        font-size: 21px;
    }

    .corporate-info-card p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 575.98px) {

    .corporate-section {
        padding: 40px 0;
    }

    .corporate-title {
        font-size: 29px;
    }

    .corporate-btn {
        width: 100%;
    }

    .corporate-info-card {
        padding: 24px;
    }

}

/* =========================================
   Hero Section
========================================= */

.hero-section {
    background: #f5f8fe;
    padding: 92px 0 74px;
}


/* =========================================
   Hero Content
========================================= */

.hero-content {
    max-width: 670px;
}


.hero-label {
    display: inline-flex;
    align-items: center;

    padding: 9px 14px;
    margin-bottom: 23px;

    background: #e8f0ff;
    color: #0759d8;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
}


.hero-title {
    margin: 0 0 20px;

    color: #20242d;

    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2.5px;
}


.hero-title span {
    color: #1764e9;
}


.hero-description {
    max-width: 650px;

    margin: 0 0 29px;

    color: #526784;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}


/* =========================================
   Hero Buttons
========================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}


.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;

    padding: 13px 20px;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.2s ease;
}


.hero-btn-primary {
    background: #1764e9;
    border: 1px solid #1764e9;
    color: #fff;
}


.hero-btn-primary:hover {
    background: #0d53ce;
    border-color: #0d53ce;
    color: #fff;
}


.hero-btn-secondary {
    background: #fff;
    border: 1px solid #d6dfed;
    color: #17243a;
}


.hero-btn-secondary:hover {
    background: #f5f8fd;
    border-color: #bfcce0;
    color: #17243a;
}


/* =========================================
   Search Card
========================================= */

.hero-search-card {
    padding: 48px 28px 27px;

    background: #fff;

    border: 1px solid #e3e9f2;
    border-radius: 25px;

    box-shadow: 0 20px 50px rgba(36, 55, 85, 0.10);
}


.hero-search-card h2 {
    margin: 0 0 21px;

    color: #111827;

    font-size: 18px;
    font-weight: 700;
}


.hero-search-card>p {
    margin: 0 0 20px;

    color: #526784;

    font-size: 16px;
    line-height: 1.6;
}


/* =========================================
   Search Form
========================================= */

.hero-search-input {
    display: flex;
    align-items: center;

    height: 75px;

    padding: 8px;

    background: #f7f9fd;

    border: 1px solid #dfe7f2;
    border-radius: 14px;
}


.hero-search-input .form-control {
    height: 100%;

    padding: 0 12px;

    background: transparent;
    border: 0;

    color: #303744;

    font-size: 14px;

    box-shadow: none;
}


.hero-search-input .form-control::placeholder {
    color: #72829a;
}


.hero-search-input .form-control:focus {
    box-shadow: none;
}


.hero-search-input .btn {
    flex: 0 0 auto;

    height: 54px;

    padding: 0 21px;

    background: #1764e9;
    border: 1px solid #1764e9;

    border-radius: 11px;

    color: #fff;

    font-size: 14px;
    font-weight: 600;
}


.hero-search-input .btn:hover {
    background: #0d53ce;
    border-color: #0d53ce;
}


/* =========================================
   Statistics
========================================= */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 9px;

    margin-top: 17px;
}


.hero-stat {
    min-height: 96px;

    padding: 18px 15px;

    background: #fff;

    border: 1px solid #dfe6f1;
    border-radius: 13px;
}


.hero-stat strong {
    display: block;

    margin-bottom: 6px;

    color: #111827;

    font-size: 21px;
    font-weight: 700;
    line-height: 1;
}


.hero-stat span {
    display: block;

    color: #526784;

    font-size: 11px;
    line-height: 1.4;
}


/* =========================================
   Large Desktop
========================================= */

@media (min-width: 1200px) {

    .hero-section .container {
        max-width: 1170px;
    }

}


/* =========================================
   Laptop / Tablet
========================================= */

@media (max-width: 1199.98px) {

    .hero-title {
        font-size: 56px;
    }

    .hero-search-card {
        padding: 40px 24px 25px;
    }

}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991.98px) {

    .hero-section {
        padding: 70px 0 60px;
    }

    .hero-content {
        max-width: 750px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-description {
        max-width: 700px;
    }

    .hero-search-card {
        max-width: 650px;
        margin: 0 auto;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {

    .hero-section {
        padding: 50px 0;
    }

    .hero-label {
        margin-bottom: 18px;

        font-size: 10px;
    }

    .hero-title {
        margin-bottom: 17px;

        font-size: 39px;
        line-height: 1.13;
        letter-spacing: -1.3px;
    }

    .hero-description {
        margin-bottom: 24px;

        font-size: 15px;
        line-height: 1.75;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
    }

    .hero-search-card {
        padding: 30px 20px 22px;
        border-radius: 20px;
    }

    .hero-search-card h2 {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .hero-search-card>p {
        font-size: 14px;
        margin-bottom: 17px;
    }

    .hero-search-input {
        height: auto;
        flex-direction: column;
        align-items: stretch;
        padding: 8px;
    }

    .hero-search-input .form-control {
        height: 52px;
        min-height: 52px;
    }

    .hero-search-input .btn {
        width: 100%;
        height: 50px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-stat {
        min-height: auto;
        padding: 15px;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 575.98px) {

    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-search-card {
        padding: 25px 16px 18px;
    }

}

/* =========================================
   Why TrainersLink Section
========================================= */

.why-trainerslink-section {
    background: #ffffff;
    padding: 78px 0 79px;
}


/* =========================================
   Heading
========================================= */

.why-trainerslink-heading {
    max-width: 900px;
    margin: 0 auto 45px;
}


.why-trainerslink-label {
    display: inline-flex;
    align-items: center;

    padding: 9px 14px;
    margin-bottom: 13px;

    background: #eaf1ff;
    color: #0759d8;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
}


.why-trainerslink-title {
    margin: 0 0 8px;

    color: #111827;

    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
}


.why-trainerslink-subtitle {
    margin: 0;

    color: #607391;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}


/* =========================================
   Cards
========================================= */

.why-trainerslink-cards {
    margin-left: 0;
    margin-right: 0;
}


.why-trainerslink-card {
    height: 100%;
    min-height: 208px;

    padding: 24px;

    background: #ffffff;

    border: 1px solid #e1e8f2;
    border-radius: 18px;

    box-shadow: 0 12px 30px rgba(36, 55, 85, 0.045);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.why-trainerslink-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 16px 35px rgba(36, 55, 85, 0.08);
}


/* =========================================
   Number
========================================= */

.why-trainerslink-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 22px;

    background: #eaf1ff;
    color: #075ee0;

    border-radius: 13px;

    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}


/* =========================================
   Card Content
========================================= */

.why-trainerslink-card-title {
    margin: 0 0 10px;

    color: #111827;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}


.why-trainerslink-card-text {
    max-width: 330px;

    margin: 0;

    color: #607391;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}


/* =========================================
   Large Desktop
========================================= */

@media (min-width: 1200px) {

    .why-trainerslink-section .container {
        max-width: 1170px;
    }

}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991.98px) {

    .why-trainerslink-section {
        padding: 65px 0;
    }

    .why-trainerslink-heading {
        margin-bottom: 35px;
    }

    .why-trainerslink-title {
        font-size: 34px;
    }

    .why-trainerslink-card {
        min-height: 200px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {

    .why-trainerslink-section {
        padding: 50px 0;
    }

    .why-trainerslink-heading {
        margin-bottom: 30px;
    }

    .why-trainerslink-label {
        font-size: 10px;
    }

    .why-trainerslink-title {
        font-size: 29px;
        line-height: 1.25;
        letter-spacing: -0.6px;
    }

    .why-trainerslink-subtitle {
        font-size: 13px;
        line-height: 1.7;
    }

    .why-trainerslink-card {
        min-height: auto;
        padding: 22px;
    }

    .why-trainerslink-number {
        width: 45px;
        height: 45px;
        margin-bottom: 18px;
    }

    .why-trainerslink-card-title {
        font-size: 19px;
    }

    .why-trainerslink-card-text {
        max-width: none;
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 575.98px) {

    .why-trainerslink-section {
        padding: 42px 0;
    }

    .why-trainerslink-title {
        font-size: 26px;
    }

    .why-trainerslink-card {
        padding: 20px;
        border-radius: 16px;
    }

}

/* =========================================
   Training Categories Section
========================================= */

.training-categories-section {
    background: #0e172b;
    padding: 78px 0 79px;
}


/* =========================================
   Section Heading
========================================= */

.training-categories-heading {
    max-width: 900px;
    margin: 0 auto 45px;
}


.training-categories-label {
    display: inline-flex;
    align-items: center;

    padding: 10px 14px;
    margin-bottom: 12px;

    background: #eaf1ff;
    color: #0759d8;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    line-height: 1;
}


.training-categories-title {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
}


.training-categories-subtitle {
    margin: 0;

    color: #91a1bd;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}


/* =========================================
   Cards Grid
========================================= */

.training-categories-grid {
    margin-left: 0;
    margin-right: 0;
}


/* =========================================
   Category Card
========================================= */

.training-categories-card {
    height: 100%;
    min-height: 170px;

    padding: 27px 24px;

    background: #141f34;

    border: 1px solid #263650;
    border-radius: 17px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}


.training-categories-card:hover {
    transform: translateY(-3px);

    background: #17243b;
    border-color: #344866;
}


/* =========================================
   Card Title
========================================= */

.training-categories-card-title {
    margin: 0 0 11px;

    color: #ffffff;

    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================
   Card Description
========================================= */

.training-categories-card-text {
    max-width: 330px;

    margin: 0;

    color: #7183a2;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}


/* =========================================
   Large Desktop
========================================= */

@media (min-width: 1200px) {

    .training-categories-section .container {
        max-width: 1170px;
    }

}


/* =========================================
   Laptop
========================================= */

@media (max-width: 1199.98px) {

    .training-categories-title {
        font-size: 36px;
    }

}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991.98px) {

    .training-categories-section {
        padding: 65px 0;
    }

    .training-categories-heading {
        margin-bottom: 35px;
    }

    .training-categories-title {
        font-size: 33px;
    }

    .training-categories-card {
        min-height: 165px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {

    .training-categories-section {
        padding: 50px 0;
    }

    .training-categories-heading {
        margin-bottom: 30px;
    }

    .training-categories-label {
        font-size: 10px;
        padding: 9px 13px;
    }

    .training-categories-title {
        font-size: 29px;
        line-height: 1.25;
        letter-spacing: -0.6px;
    }

    .training-categories-subtitle {
        font-size: 13px;
        line-height: 1.7;
    }

    .training-categories-card {
        min-height: auto;
        padding: 23px 21px;

        border-radius: 16px;
    }

    .training-categories-card-title {
        font-size: 18px;
    }

    .training-categories-card-text {
        max-width: none;

        font-size: 14px;
        line-height: 1.75;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 575.98px) {

    .training-categories-section {
        padding: 42px 0;
    }

    .training-categories-title {
        font-size: 26px;
    }

    .training-categories-card {
        padding: 21px 19px;
    }

}

/* =========================================
   Organisation CTA Section
========================================= */

.organisation-cta-section {
    background: #ffffff;
    padding: 78px 0 84px;
}


/* =========================================
   Content
========================================= */

.organisation-cta-content {
    max-width: 1000px;
    margin: 0 auto;
}


/* =========================================
   Label
========================================= */

.organisation-cta-label {
    display: inline-flex;
    align-items: center;

    padding: 9px 14px;
    margin-bottom: 13px;

    background: #eaf1ff;
    color: #0759d8;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
}


/* =========================================
   Title
========================================= */

.organisation-cta-title {
    margin: 0 0 10px;

    color: #111827;

    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
}


/* =========================================
   Description
========================================= */

.organisation-cta-description {
    margin: 0 auto 30px;

    color: #607391;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================
   Button
========================================= */

.organisation-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 55px;

    padding: 13px 22px;

    background: #1764e9;
    border: 1px solid #1764e9;

    border-radius: 11px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.2s ease;
}


.organisation-cta-button:hover {
    background: #0d53ce;
    border-color: #0d53ce;
    color: #ffffff;
}


/* =========================================
   Large Desktop
========================================= */

@media (min-width: 1200px) {

    .organisation-cta-section .container {
        max-width: 1170px;
    }

}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991.98px) {

    .organisation-cta-section {
        padding: 65px 0 70px;
    }

    .organisation-cta-title {
        font-size: 34px;
    }

    .organisation-cta-description {
        max-width: 750px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {

    .organisation-cta-section {
        padding: 50px 0 55px;
    }

    .organisation-cta-label {
        font-size: 10px;
    }

    .organisation-cta-title {
        font-size: 29px;
        line-height: 1.25;
        letter-spacing: -0.6px;
    }

    .organisation-cta-description {
        font-size: 13px;
        line-height: 1.75;
        margin-bottom: 25px;
    }

    .organisation-cta-button {
        width: 100%;
        max-width: 320px;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 575.98px) {

    .organisation-cta-section {
        padding: 42px 0 48px;
    }

    .organisation-cta-title {
        font-size: 26px;
    }

    .organisation-cta-description {
        font-size: 13px;
    }

    .organisation-cta-button {
        max-width: none;
    }

}

/* =========================================
   FAQ Section
========================================= */

.trainers-faq-section {
    background: #f5f8fd;
    padding: 78px 0 75px;
}


/* =========================================
   Heading
========================================= */

.trainers-faq-heading {
    max-width: 1000px;
    margin: 0 auto 43px;
}


.trainers-faq-label {
    display: inline-flex;
    align-items: center;

    padding: 9px 14px;
    margin-bottom: 12px;

    background: #eaf1ff;
    color: #0759d8;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
}


.trainers-faq-title {
    margin: 0 0 9px;

    color: #111827;

    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.8px;
}


.trainers-faq-subtitle {
    margin: 0;

    color: #607391;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
}


/* =========================================
   FAQ Container
========================================= */

.trainers-faq-accordion {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;
}


/* =========================================
   FAQ Item
========================================= */

.trainers-faq-item {
    margin-bottom: 12px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e0e7f1 !important;
    border-radius: 13px !important;

    box-shadow: 0 8px 20px rgba(36, 55, 85, 0.035);
}


.trainers-faq-item:last-child {
    margin-bottom: 0;
}


/* =========================================
   Question
========================================= */

.trainers-faq-button {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 65px;

    padding: 17px 19px;

    background: #ffffff !important;

    color: #111827 !important;

    border: 0 !important;

    box-shadow: none !important;

    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;

    line-height: 1.4;
}


.trainers-faq-button:hover {
    background: #ffffff !important;
}


/* =========================================
   Custom Plus Icon
========================================= */

.trainers-faq-button::after {
    width: auto;
    height: auto;

    margin-left: auto;

    background-image: none !important;

    content: "+";

    color: #1764e9;

    font-size: 20px;
    font-weight: 400;

    transform: none !important;
}


.trainers-faq-button:not(.collapsed)::after {
    content: "−";

    color: #1764e9;

    transform: none !important;
}


/* =========================================
   Answer
========================================= */

.trainers-faq-answer {
    padding: 0 19px 19px;

    color: #607391;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================
   Desktop
========================================= */

@media (min-width: 1200px) {

    .trainers-faq-section .container {
        max-width: 1170px;
    }

    .trainers-faq-accordion {
        max-width: 900px;
    }

}


/* =========================================
   Laptop
========================================= */

@media (max-width: 1199.98px) {

    .trainers-faq-accordion {
        max-width: 850px;
    }

}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991.98px) {

    .trainers-faq-section {
        padding: 65px 0;
    }

    .trainers-faq-heading {
        margin-bottom: 35px;
    }

    .trainers-faq-title {
        font-size: 34px;
    }

    .trainers-faq-accordion {
        max-width: 800px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {

    .trainers-faq-section {
        padding: 50px 0;
    }

    .trainers-faq-heading {
        margin-bottom: 30px;
    }

    .trainers-faq-label {
        padding: 8px 12px;

        font-size: 9px;
    }

    .trainers-faq-title {
        font-size: 29px;
        line-height: 1.25;
        letter-spacing: -0.6px;
    }

    .trainers-faq-subtitle {
        font-size: 13px;
        line-height: 1.7;
    }

    .trainers-faq-accordion {
        max-width: 100%;
    }

    .trainers-faq-item {
        margin-bottom: 9px;

        border-radius: 11px !important;
    }

    .trainers-faq-button {
        min-height: 58px;

        padding: 15px;

        font-size: 13px;
    }

    .trainers-faq-button::after {
        font-size: 19px;
    }

    .trainers-faq-answer {
        padding: 0 15px 17px;

        font-size: 13px;
        line-height: 1.7;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 575.98px) {

    .trainers-faq-section {
        padding: 42px 0;
    }

    .trainers-faq-title {
        font-size: 26px;
    }

    .trainers-faq-subtitle {
        font-size: 12px;
    }

    .trainers-faq-button {
        min-height: 56px;

        padding: 14px;
    }

    .trainers-faq-answer {
        padding-left: 14px;
        padding-right: 14px;
    }

}

/* =========================================
   Trainers Blog Section
========================================= */

.trainers-blog-section {
    background: #ffffff;
    padding: 70px 0 62px;
}


/* =========================================
   Section Heading
========================================= */

.trainers-blog-heading {
    max-width: 1000px;
    margin: 0 auto 44px;
}


.trainers-blog-label {
    display: inline-flex;
    align-items: center;

    padding: 9px 14px;
    margin-bottom: 12px;

    background: #eaf1ff;
    color: #0759d8;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
    line-height: 1;
}


.trainers-blog-title {
    margin: 0 0 8px;

    color: #111827;

    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.8px;
}


.trainers-blog-subtitle {
    margin: 0;

    color: #607391;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
}


/* =========================================
   Blog Row
========================================= */

.trainers-blog-row {
    margin-left: 0;
    margin-right: 0;
}


/* =========================================
   Blog Card
========================================= */

.trainers-blog-card {
    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e1e8f2;
    border-radius: 17px;

    box-shadow: 0 12px 30px rgba(36, 55, 85, 0.055);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.trainers-blog-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 18px 38px rgba(36, 55, 85, 0.09);
}


/* =========================================
   Blog Preview
========================================= */

.trainers-blog-preview {
    margin: 23px 24px 19px;

    padding: 11px;

    background: #edf3ff;

    border-radius: 12px;
}


/* Blue Top Bar */

.trainers-blog-preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 33px;

    padding: 0 13px;

    background: #1764e9;

    color: #ffffff;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
}


/* Preview Body */

.trainers-blog-preview-body {
    display: flex;
    align-items: center;

    min-height: 108px;

    padding: 12px;

    background: #ffffff;
}


.trainers-blog-preview-content {
    width: 72%;

    padding: 8px 10px;

    background: #f6f8fc;
}


.trainers-blog-preview-content small {
    display: block;

    margin-bottom: 7px;

    color: #0759d8;

    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.3px;
}


.trainers-blog-preview-content strong {
    display: block;

    color: #111827;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}


/* Preview Icon */

.trainers-blog-preview-person {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28%;

    color: #1764e9;

    font-size: 43px;
}


.trainers-blog-preview-person i {
    filter: drop-shadow(10px 3px 0 #dce8ff);
}


/* =========================================
   Card Content
========================================= */

.trainers-blog-card-content {
    display: flex;
    flex-direction: column;

    padding: 0 24px 25px;
}


/* =========================================
   Meta
========================================= */

.trainers-blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 19px;
}


.trainers-blog-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: #eaf1ff;
    color: #075ee0;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 700;
}


.trainers-blog-category {
    display: inline-flex;
    align-items: center;

    padding: 9px 12px;

    background: #eaf1ff;
    color: #0759d8;

    border-radius: 20px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
}


/* =========================================
   Blog Title
========================================= */

.trainers-blog-card-title {
    margin: 0 0 9px;

    color: #111827;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================
   Description
========================================= */

.trainers-blog-card-description {
    margin: 0 0 21px;

    color: #607391;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
}


/* =========================================
   Read Article
========================================= */

.trainers-blog-read-link {
    margin-top: auto;

    color: #075ee0;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.2s ease;
}


.trainers-blog-read-link:hover {
    color: #0d4fb9;
}


.trainers-blog-read-link span {
    margin-left: 2px;
}


/* =========================================
   Footer Button
========================================= */

.trainers-blog-footer {
    margin-top: 30px;
}


.trainers-blog-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 13px 21px;

    background: #ffffff;

    border: 1px solid #d7e0ed;
    border-radius: 11px;

    color: #17243a;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.2s ease;
}


.trainers-blog-view-button:hover {
    background: #f6f8fc;
    border-color: #bdc9da;
    color: #17243a;
}


/* =========================================
   Large Desktop
========================================= */

@media (min-width: 1200px) {

    .trainers-blog-section .container {
        max-width: 1170px;
    }

}


/* =========================================
   Laptop
========================================= */

@media (max-width: 1199.98px) {

    .trainers-blog-title {
        font-size: 34px;
    }

    .trainers-blog-card-content {
        padding-left: 21px;
        padding-right: 21px;
    }

    .trainers-blog-preview {
        margin-left: 20px;
        margin-right: 20px;
    }

}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991.98px) {

    .trainers-blog-section {
        padding: 65px 0 55px;
    }

    .trainers-blog-heading {
        margin-bottom: 35px;
    }

    .trainers-blog-title {
        font-size: 32px;
    }

    .trainers-blog-card-title {
        font-size: 19px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {

    .trainers-blog-section {
        padding: 50px 0;
    }

    .trainers-blog-heading {
        margin-bottom: 30px;
    }

    .trainers-blog-label {
        font-size: 9px;
    }

    .trainers-blog-title {
        font-size: 29px;
        line-height: 1.25;
        letter-spacing: -0.6px;
    }

    .trainers-blog-subtitle {
        font-size: 13px;
        line-height: 1.7;
    }

    .trainers-blog-preview {
        margin: 18px 18px 18px;
    }

    .trainers-blog-card-content {
        padding: 0 20px 22px;
    }

    .trainers-blog-meta {
        margin-bottom: 17px;
    }

    .trainers-blog-number {
        width: 40px;
        height: 40px;

        font-size: 14px;
    }

    .trainers-blog-category {
        font-size: 8px;
    }

    .trainers-blog-card-title {
        font-size: 19px;
    }

    .trainers-blog-card-description {
        font-size: 13px;
        line-height: 1.75;
    }

    .trainers-blog-footer {
        margin-top: 25px;
    }

    .trainers-blog-view-button {
        width: 100%;
        max-width: 300px;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 575.98px) {

    .trainers-blog-section {
        padding: 42px 0;
    }

    .trainers-blog-title {
        font-size: 26px;
    }

    .trainers-blog-card {
        border-radius: 15px;
    }

    .trainers-blog-preview {
        margin: 15px 15px 16px;
        padding: 9px;
    }

    .trainers-blog-preview-body {
        min-height: 100px;
    }

    .trainers-blog-preview-content strong {
        font-size: 11px;
    }

    .trainers-blog-preview-person {
        font-size: 38px;
    }

}

/* ================================
   HOME BANNERS
================================ */

.home-banners {
    width: 100%;
    overflow: hidden;
}

/* Individual banner */
.home-banner {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    border-radius: 10px;
}

/* Banner image */
.home-banner-img {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* White transparent content area */
.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 50px 7%;
}

/* Text box */
.banner-content {
    max-width: 850px;

    background: rgba(255, 255, 255, 0.88);

    padding: 42px 48px;

    border-radius: 18px;

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);

    backdrop-filter: blur(4px);
}

/* Heading */
.banner-content h2 {
    margin: 0 0 18px;
    color: #0757d5;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Description */
.banner-content p {
    margin: 0 0 28px;

    color: #26364f;

    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;

    max-width: 680px;
}

/* Button */
.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 15px 28px;

    background: #0866ed;
    color: #ffffff;

    font-size: 18px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 10px;

    transition: all 0.25s ease;
}

/* Arrow */
.banner-btn span {
    font-size: 26px;
    line-height: 1;
    transition: transform 0.25s ease;
}

/* Hover */
.banner-btn:hover {
    background: #0054cc;
    color: #ffffff;
    transform: translateY(-2px);
}

.banner-btn:hover span {
    transform: translateX(5px);
}

/* ================================
   TABLET
================================ */

@media (max-width: 991px) {

    .home-banner {
        min-height: 450px;
    }

    .home-banner-img {
        height: 450px;
    }

    .banner-overlay {
        padding: 35px 5%;
    }

    .banner-content {
        max-width: 650px;
        padding: 32px 36px;
    }

    .banner-content h2 {
        font-size: 38px;
    }

    .banner-content p {
        font-size: 18px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {

    .home-banner {
        min-height: 500px;
    }

    .home-banner-img {
        height: 500px;
    }

    .banner-overlay {
        padding: 20px;
        align-items: flex-end;
        justify-content: center !important;
    }

    .banner-content {
        width: 100%;
        max-width: 100% !important;

        padding: 25px 22px;

        border-radius: 14px;

        margin-bottom: 20px;
    }

    .banner-content h2 {
        font-size: 30px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .banner-content p {
        font-size: 16px;
        line-height: 1.45;
        margin-bottom: 20px;
    }

    .banner-btn {
        font-size: 16px;
        padding: 13px 22px;
    }
}

/* ================================
   YOUTUBE VIDEO SECTION
================================ */

.youtube-section {
    padding: 40px 20px;
    background: #f6f9ff;
}

.youtube-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */

.youtube-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-badge {
    display: inline-block;

    padding: 8px 16px;

    background: #e8f0ff;
    color: #0757d5;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 15px;
}

.youtube-heading h2 {
    margin: 0 0 15px;

    color: #111827;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.youtube-heading p {
    margin: 0;

    color: #5c6f89;

    font-size: 18px;
    line-height: 1.6;
}


/* ================================
   VIDEO
================================ */

.youtube-video-wrapper {
    position: relative;

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #000;

    border-radius: 18px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.youtube-video-wrapper iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* ================================
   TABLET
================================ */

@media (max-width: 991px) {

    .youtube-section {
        padding: 65px 20px;
    }

    .youtube-heading h2 {
        font-size: 34px;
    }

    .youtube-heading p {
        font-size: 17px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {

    .youtube-section {
        padding: 50px 15px;
    }

    .youtube-heading {
        margin-bottom: 28px;
    }

    .youtube-heading h2 {
        font-size: 28px;
    }

    .youtube-heading p {
        font-size: 16px;
    }

    .youtube-video-wrapper {
        border-radius: 12px;
    }
}