:root {
    --primary: #5579a7;
    --primary-dark: #233961;
    --accent: #f4f6ff;
    --light-bg: #F8F9FA;
    --dark-text: #212529;
    --gray-text: #545f68;
    --white: #ffffff;
    --gradient-main: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #0a2a3c 0%, var(--primary) 30%, var(--primary-dark) 60%, var(--primary) 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;
}

.trail-info-strip {
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
    padding: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.trail-info-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0 20px;
}

.trail-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 30px;
    transition: background 0.3s ease;
}

.trail-strip-item:hover {
    background: var(--trail-surface);
}

.trail-strip-item>i {
    font-size: 22px;
    color: var(--trail-primary);
    width: 36px;
    text-align: center;
    flex-shrink: 0;
}

.strip-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--trail-text-muted);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
}

.strip-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--trail-secondary);
    line-height: 1;
}

.trail-strip-divider {
    width: 1px;
    height: 40px;
    background: #E2E8F0;
    flex-shrink: 0;
}

.trail-overview {
    padding: 50px 0;
    background: #fff;
}

.trail-overview-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.trail-overview-highlights {
    margin-top: 32px;
}

.trail-highlights-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--trail-secondary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E2E8F0;
}

.trail-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.trail-highlight-item i {
    color: var(--trail-primary);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.trail-requirements {
    background: var(--trail-surface);
    border-radius: var(--trail-radius);
    padding: 24px 28px;
    border-left: 4px solid var(--trail-primary);
}

.trail-req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trail-req-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #475569;
    padding: 8px 0;
    border-bottom: 1px dashed #E2E8F0;
}

.trail-req-list li:last-child {
    border-bottom: none;
}

.trail-req-list li i {
    color: var(--trail-primary);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ================== TRAINING HERO SECTION ================== */
.training-hero-section {
    position: relative;
    padding: 40px 0;
    min-height: 70vh;
    background: url('../images/traning/banners/banner5.webp') 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.03);
    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: 1rem;
    line-height: 1.6;
    color: white;
}

.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: 12px 20px;
    transition: transform 0.3s ease, background 0.3s ease;
    justify-content: center;
}

.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: 17px;
    font-weight: 600;
    /* 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: 1rem;
}

.hero-highlight-points .highlight::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    color: var(--white);
    font-weight: 900;
    font-size: 18px;
    margin-right: 10px;
}

.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(--primary);
    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;
}

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

.course-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 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: var(--dark-text);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
    font-weight: 600;
}

.detail-value {
    color: var(--gray-text);
    font-size: 15px;

}



/* .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;
} */
.voucher-details-list li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    color: var(--primary);
    font-weight: 900;
    font-size: 18px;
    margin-right: 10px;
}

.training-details-list p {
    display: inline;
    color: var(--gray-text);
    font-size: 1rem;
    /* line-height: 1.6; */
    /* padding: 20px; */
    font-weight: 400;

}

.training-details-list li {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.05rem;
    list-style: none;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 6px;

}

.voucher-details-list li {
    margin-bottom: 8px;
    color: var(--gray-text);
    font-size: 1.05rem;
    list-style: none;
    margin-bottom: 6px;
}

.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);
}

@media (width<=575px) {
    .course-card {
        flex-direction: column;
    }
}

.course-image {
    min-width: 120px;
}

.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;
    display: inline-block;
    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: 100px;
}

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 {

    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;
    display: none;
}

.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 {

    margin: auto;
    color: var(--gray-text);
    font-size: 1.05rem;
    margin-bottom: 16px;

    /* text-align: justify; */
}

.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:hover {
    /* transform: translateY(-10px); */
    box-shadow: var(--shadow-lg);
}



.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;
    }
}


.career-opportunities {

    position: relative;
}

/* Ambient colored background orbs for deep premium aesthetic */
.career-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #00508f;
    bottom: 15%;
    right: -150px;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: #ef4444;
    top: 45%;
    left: 35%;
}

.career-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(6, 187, 204, 0.08);
    color: var(--primary);
    border: 1px solid rgba(6, 187, 204, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(6, 187, 204, 0.04);
}

.career-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.25;
}

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

.career-description {
    max-width: 800px;
    margin: auto auto 40px;
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* --- Career Card Styles --- */
.career-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(6, 187, 204, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* .career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: all 0.4s ease;
} */

.career-card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(6, 187, 204, 0.25);
    background: #ffffff;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(6, 187, 204, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.career-card:hover .card-glow {
    opacity: 1;
}

/* Brand Colors & Custom Glows */
.aws-card::before {
    background: linear-gradient(90deg, #ff9900, #ff5500);
}

.aws-card:hover {
    border-color: rgba(255, 153, 0, 0.3);
}

.aws-card .career-icon {
    /* background: linear-gradient(135deg, rgba(255, 153, 0, 0.15), rgba(255, 85, 0, 0.15)); */
    color: #ff9900;
}

.aws-card .badge-demand {
    /* background: rgba(255, 153, 0, 0.1); */
    color: #ff5500;
}

.ms-card::before {
    background: linear-gradient(90deg, #008ad7, #00508f);
}

.ms-card:hover {
    border-color: rgba(0, 138, 215, 0.3);
}

.ms-card .career-icon {
    /* background: linear-gradient(135deg, rgba(0, 138, 215, 0.15), rgba(0, 80, 143, 0.15)); */
    color: #008ad7;
}

.ms-card .badge-demand {
    background: rgba(0, 138, 215, 0.1);
    color: #00508f;
}

.cisco-card::before {
    background: linear-gradient(90deg, #1d70b8, #0a3254);
}

.cisco-card:hover {
    border-color: rgba(29, 112, 184, 0.3);
}

.cisco-card .career-icon {
    /* background: linear-gradient(135deg, rgba(29, 112, 184, 0.15), rgba(10, 50, 84, 0.15)); */
    color: #1d70b8;
}

.cisco-card .badge-demand {
    background: rgba(29, 112, 184, 0.1);
    color: #1d70b8;
}



/* Card Elements */
.card-header-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.career-icon {
    max-width: 120px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.1);
}

.header-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.badge-demand {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.badge-growth {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 3px;
}

.badge-growth::before {
    content: '▲';
    font-size: 0.6rem;
}

.hero-right-image img {
    border-radius: 20px;
    max-width: 100%;
}

.card-heading {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.salary-meter {
    background: #f8fafc;
    border-radius: 12px;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    border: 1px solid #f1f5f9;
}

.salary-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salary-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #047857;
    /* Emerald Deep */
    font-family: 'Montserrat', sans-serif;
}

/* Card List */
.roles-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 150px;
}


.roles-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.roles-list li i {
    font-size: 16px;
    color: var(--primary);
    margin-top: 3px;
}

.roles-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.roles-list li strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-text);
}

.roles-list li span {
    font-size: 0.82rem;
    color: var(--gray-text);
    line-height: 1.4;
}

/* Card Footer */
.career-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.career-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(6, 187, 204, 0.08);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(6, 187, 204, 0.12);
}

.btn-card-action {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-card-action i {
    transition: transform 0.25s ease;
    font-size: 11px;
    color: var(--primary);
}

.career-card:hover .btn-card-action {
    color: var(--primary);
}

.career-card:hover .btn-card-action i {
    transform: translateX(4px);
}

/* --- Stepper Journey Styles --- */
.journey-section-title {
    margin-top: 80px;
}

.journey-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-text);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.journey-desc {
    color: var(--gray-text);
    font-size: 0.95rem;
    max-width: 600px;
    margin: auto;
}

.career-journey {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.journey-step-container {
    flex: 1 1 0%;
    position: relative;
}

.journey-step {
    text-align: center;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-num-glow {
    position: absolute;
    top: -24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(180deg, rgba(6, 187, 204, 0.08) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    z-index: -1;
    user-select: none;
}

.step-icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid #f1f5f9;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.journey-step:hover .step-icon-circle {
    transform: scale(1.1) translateY(-3px);
    background: var(--gradient-main);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(6, 187, 204, 0.35);
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.82rem;
    color: var(--gray-text);
    line-height: 1.5;
    max-width: 180px;
    margin: 0;
}

.journey-line {
    flex-grow: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(6, 187, 204, 0.2) 100%);
    border-radius: 10px;
    margin-top: 36px;
    opacity: 0.5;
    min-width: 40px;
}

@media(max-width:991.98px) {
    .career-journey {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    .journey-step-container {
        width: 100%;
    }

    .journey-step {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 20px;
        padding: 20px;
        background: var(--white);
        border-radius: 20px;
        border: 1px solid rgba(6, 187, 204, 0.08);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    }

    .step-num-glow {
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 5rem;
    }

    .step-icon-circle {
        margin-bottom: 0;
        width: 65px;
        height: 65px;
        font-size: 22px;
        flex-shrink: 0;
    }

    .step-desc {
        max-width: 100%;
    }

    .journey-line {
        display: none;
    }
}


.voucher-benifits {
    margin-bottom: 20px;
}



.certification-journey {
    background: var(--white);
    overflow: hidden;
}

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

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

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

.journey-desc {
    max-width: 700px;
    margin: auto;
    color: var(--gray-text);
}

.journey-wrapper {
    position: relative;
    margin-top: 40px;
}

.journey-line {
    position: absolute;
    top: 55px;
    left: 12%;
    width: 76%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary),
            var(--primary-dark));
    z-index: 1;
}

.journey-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.journey-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--white);
    border: 6px solid rgba(23, 144, 168, .15);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.journey-icon::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: var(--gradient-main);
}

.journey-icon i {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 34px;
}

.journey-item:hover .journey-icon {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.journey-item h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.journey-item p {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: .95rem;
    max-width: 260px;
    margin: auto;
}

/* Tablet */
@media(max-width:991px) {

    .journey-line {
        display: none;
    }

    .journey-item {
        background: var(--white);
        padding: 25px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(23, 144, 168, .08);
    }

}

@media(max-width:767px) {

    .journey-icon {
        width: 90px;
        height: 90px;
    }

    .journey-icon i {
        font-size: 28px;
    }

    .journey-item {
        margin-bottom: 10px;
    }

}

.journey-line {
    position: absolute;
    top: 55px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary),
            var(--primary-dark));
    z-index: 1;
}


.duration {
    display: inline-block;
    margin-top: 10px;

    background: rgba(23, 144, 168, .08);
    color: var(--primary);

    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.vouchers-card-listing .banner-breadcrumb li {
    color: var(--gray-text);
}

.vouchers-card-listing .banner-breadcrumb li a {
    color: var(--primary);
}

.banner-breadcrumb li:not(:last-child)::after {
    color: var(--gray-text);
}

.course-inner-info {
    /* margin-bottom: 7px; */
}

.course-inner-info span {
    color: var(--primary);
    font-weight: 600;
}

/* only 4 line visible */
.course-content .course-short-desc {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

}


.course-features-list {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    max-width: 400px;
}

/* .enroll-btn-wrapper {
    max-width: 400px;
} */

.image-shape {
    /* background-color: var(--primary); */
    padding: 6px;
    border-radius: 14px;
}