:root {
    --primary: #1790A8;
    --primary-dark: #087f97;
    --accent: #8bffff;
    --light-bg: #F8F9FA;
    --dark-text: #212529;
    --gray-text: #545f68;
    --white: #ffffff;
    --gradient-main: linear-gradient(135deg, #43D7CB 0%, #1790A8 100%);
    --gradient-hero: linear-gradient(135deg, #0a2a3c 0%, #1790A8 30%, #43D7CB 60%, #1790A8 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;
}

/* ================== TRAINING HERO SECTION ================== */
.training-hero-section {
    position: relative;
    padding: 40px 0;
    min-height: 70vh;
    background: url('../images/traning/banners/banner2.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.training-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 45, 48, 0.7) 10%, rgba(12, 8, 32, 0.3) 100%);
    z-index: 1;
}

.training-hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.training-hero-section .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.training-hero-section .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8) !important;
}

.hero-content-card .stat-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-content-card .stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.hero-content-card .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.hero-content-card .stat-text h3 {
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.hero-content-card .stat-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Form Card */
.hero-form-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-form-card .form-header {
    background: var(--gradient-hero);
    /* Orange color matching image */
    padding: 30px;
    text-align: left;
}

.hero-form-card .form-body {
    padding: 30px;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
    border-color: var(--gradient-main);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    background-color: #fff;
}

.hero-form-card .btn-warning {
    background-color: var(--gradient-main);
    border-color: var(--gradient-main);
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-form-card .btn-warning:hover {
    background-color: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.training-hero-btn {
    background: var(--gradient-main);
    border-color: var(--gradient-main);
    padding: 15px;
    border-radius: 10px;
    font-size: .90rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
}

.training-hero-btn:hover {
    background: var(--gradient-hero);
    border-color: var(--gradient-hero);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

@media (max-width: 991px) {
    .training-hero-section {
        padding: 80px 0;
    }

    .training-hero-section .hero-title {
        font-size: 2rem;
    }
}


.hero-highlight-points .highlight {
    color: var(--primary-light);
    /* font-weight: 600; */
    list-style: disc;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.training-hero-btn {
    background-color: var(--gradient-main);
    color: var(--white);
}

.training-hero-btn:hover {
    color: var(--white) !important;
}

.course-duration {
    color: rgb(155, 155, 155);
    font-weight: 400;
    font-size: 12px;
}

.course-duration .course-value {
    font-weight: 600;
    color: #2e1b0b;
}

.course-title-custom {
    /* font-size: 28px; */
    font-weight: 700;
    color: var(--dark-text);
    /* margin-bottom: 0; */
}

.traning-short-desc {
    margin-bottom: 6px;
    color: var(--gray-text);
}

.traning-card-title {
    font-size: 22px;
}

/* ================== OVERVIEW SECTION ================== */
.overview-section {
    position: relative;
    z-index: 2;
}

.highlight-text {
    color: var(--primary);
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overview-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-text);
}

.btn-primary-custom {
    background: var(--gradient-main);
    border: none;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--gradient-hero);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(247, 160, 0, 0.4) !important;
}

.glassmorphism-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.5); */
    border-radius: var(--radius);
    padding: 25px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary-dark);
}

/* .glassmorphism-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
} */

.glassmorphism-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.glassmorphism-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(247, 160, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.glassmorphism-card:hover .benefit-icon {
    background: var(--gradient-main);
    color: var(--white);
    transform: rotateY(180deg);
}

.benefit-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.benefit-desc {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 0;
}



/* ================= testimonial-slider=========================== */


/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonial-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #fff9f4 0%, #ffffff 100%);
}

/* BADGE */

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 183, 77, 0.12);
    color: var(--secondary-color);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* TITLE */

.testimonial-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 18px;
}

.testimonial-title span {
    display: block;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-desc {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 760px;
    margin-inline: auto;
}

/* SLIDER */

.testimonial-slider .owl-stage-outer {
    padding: 15px 0 30px;
}

/* CARD */

.brand-testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 183, 77, 0.15);
    border-radius: 30px;
    padding: 35px 30px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.brand-testimonial-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 122, 24, 0.25);
}

/* QUOTE */

.quote-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(255, 122, 24, 0.25);
    background: var(--gradient-blue);
}

.quote-icon i {
    color: var(--white);
    font-size: 36px;
}

/* RATING */

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 15px;
}

/* TEXT */

.testimonial-text {
    color: var(--gray-text);
    line-height: 1.9;
    margin-bottom: 28px;
    /* min-height: 150px; */
}

/* USER */

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-image img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 183, 77, 0.25);
}

.user-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark-text);
}

.user-info span {
    color: var(--gray-text);
    font-size: 14px;
}

/* OWL DOTS */

.testimonial-slider .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.testimonial-slider .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px;
    background: rgba(255, 183, 77, 0.25);
    border-radius: 50%;
    transition: var(--transition);
    display: block;
}

.testimonial-slider .owl-dot.active span {
    width: 36px;
    border-radius: 30px;
    background: var(--gradient-blue);
}

/* OWL NAV */

.testimonial-slider .owl-nav {
    display: none;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .brand-testimonial-card {
        padding: 30px 24px;
    }

    .testimonial-text {
        min-height: auto;
    }
}

@media (max-width: 767px) {

    .testimonial-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .testimonial-title {
        font-size: 2rem;
    }

    .testimonial-desc {
        font-size: 15px;
    }

    .brand-testimonial-card {
        border-radius: 24px;
    }

    .quote-icon {
        width: 60px;
        height: 60px;
    }
}

.section-space-top {
    margin-top: 50px;
}


.course-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px;
    margin-top: 30px;
}


.course-detail-item {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 183, 77, 0.15);
    border-radius: 10px;
    padding: 17px 10px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border-bottom: 4px solid var(--primary-dark);
}




.course-detail-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: #333333;
}


.course-detail-item:hover::after {
    width: 100%;
}

.detail-label {
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}

.detail-value {
    color: var(--dark-text);
    font-size: 15px;
    font-weight: 600;
}



.training-details-list li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    color: var(--primary);
    font-weight: 900;
    font-size: 18px;
    margin-right: 10px;
}

.course-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--light-bg);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.enroll-btn {
    background: var(--gradient-main);
    /* border-color: var(--gradient-main); */
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--white);
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
}

.enquery-form-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.enquery-form-card .form-header {
    background: var(--gradient-hero);
    /* Orange color matching image */
    padding: 30px;
    text-align: left;
}

.enquery-form-card .form-body {
    padding: 30px;
}

.enquery-form-card .form-control,
.enquery-form-card .form-select {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.enquery-form-card .form-control:focus,
.enquery-form-card .form-select:focus {
    border-color: var(--gradient-main);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    background-color: #fff;
}

.enquery-form-card .btn-warning {
    background-color: var(--gradient-main);
    border-color: var(--gradient-main);
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.enquery-form-card .btn-warning:hover {
    background-color: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.enroll-btn:hover {
    background: var(--gradient-hero);
    /* border-color: var(--gradient-hero); */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.enquery-right-form {
    position: sticky;
    top: 60px;
}

span.strip-value a {
    color: #45566a;
}

.title-stylish {

    font-weight: 700;
    color: var(--dark-text);
}

.title-stylish span {
    color: var(--primary);
}

.title-stylish::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-top: 8px;
    border-radius: 2px;
}


.students-review-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    overflow: hidden;
    /* box-shadow: 0 15px 40px rgba(23, 144, 168, 0.12); */
    transition: all .4s ease;
    border: 1px solid rgba(23, 144, 168, 0.5);
    height: 100%;
}

.students-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(23, 144, 168, 0.18);
}

.students-review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-main);
}

.students-review-card .quote-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-main);
    color: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    box-shadow: 0 10px 25px rgba(23, 144, 168, 0.25);
}

.students-review-card .review-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray-text);
    margin-bottom: 25px;
}

.students-review-card .student-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.students-review-card .student-image {
    max-width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(23, 144, 168, 0.15);
}

.students-review-card .student-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.students-review-card .student-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.students-review-card .rating {
    margin-top: 5px;
    color: #ffc107;
    font-size: 14px;
}

.students-review-card .verified-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(67, 215, 203, 0.12);
    color: var(--primary-dark);
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.students-review-card .verified-badge i {
    color: #1bbf73;
}

@media (max-width: 576px) {
    .students-review-card {
        padding: 24px;
        border-radius: 20px;
    }

    .students-review-card .student-name {
        font-size: 16px;
    }

    .students-review-card .review-text {
        font-size: 14px;
    }
}

.icon-wrapper {
    /* width: 40px;
    height: 40px;
    background: rgba(23, 144, 168, 0.1); */
    /* border-radius: 6px; */
    display: flex;
    align-items: start;
    justify-content: center;
    color: var(--primary);
}

.icon-wrapper i {
    font-size: 27px;
}

ul {
    list-style: none;
}



/* course-objective start */

.course-objectives {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.course-objectives::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(23, 144, 168, .08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.objective-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(23, 144, 168, .12);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark-text);
}

.section-title span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    max-width: 700px;
    margin: auto;
    color: var(--gray-text);
    font-size: 1.05rem;
}

.objective-card {
    height: 100%;
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(23, 144, 168, .08);
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: .4s;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.objective-card:hover::before {
    transform: scaleX(1);
}

.icon-box {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 28px;
    box-shadow: var(--shadow-md);
}

.objective-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.objective-card p {
    color: var(--gray-text);
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 767px) {

    .objective-card {
        text-align: center;
    }

    .icon-box {
        margin-left: auto;
        margin-right: auto;
    }

    .section-desc {
        font-size: .95rem;
    }
}

/* ======== Why-choose-us*/

.why-choose-sla {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-sla::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(67, 215, 203, .08);
    top: -250px;
    right: -200px;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(23, 144, 168, .1);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.why-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--dark-text);
    max-width: 850px;
    margin: auto;
}

.why-title span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-description {
    max-width: 700px;
    margin: auto;
    color: var(--gray-text);
    font-size: 1.05rem;
}

.why-feature {
    display: flex;
    gap: 20px;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(23, 144, 168, .08);
}

.why-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--gradient-main);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.why-feature h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.why-feature p {
    margin: 0;
    color: var(--gray-text);
    line-height: 1.7;
}

.why-highlight-card {
    background: var(--gradient-main);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.why-highlight-card::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    top: -120px;
    right: -80px;
}

.stat-box {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    text-align: center;
    padding: 25px 15px;
    height: 100%;
    color: var(--white);
}

.stat-box i {
    font-size: 30px;
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-box span {
    font-size: .95rem;
    opacity: .95;
}

.why-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.why-btn:hover {
    transform: translateY(-3px);
    color: var(--primary-dark);
}

@media(max-width:991px) {

    .why-feature {
        text-align: left;
    }

    .why-highlight-card {
        margin-top: 20px;
    }
}

@media(max-width:576px) {

    .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: auto;
    }

    .stat-box h3 {
        font-size: 1.6rem;
    }

    .why-highlight-card {
        padding: 25px;
    }
}