:root {
    --ev-blue: #1656d9;
    --ev-blue-dark: #0f3fa8;
    --ev-blue-light: #eaf2ff;
    --ev-red: #ff5a36;
    --ev-text: #101a2b;
    --ev-text-muted: #64748b;
    --ev-border: #e7ebf1;
    --ev-bg-soft: #f3f7fd;
    --ev-green: #16a34a;
    --ev-green-bg: #e7f8ed;
    --ev-orange-bg: #fff1e4;
    --ev-purple-bg: #f1eaff;
    --ev-blue-bg: #e5efff;
    --ev-radius: 14px;
    --ev-radius-sm: 10px;
    --ev-shadow: 0 4px 18px rgba(16, 26, 43, 0.06);
    font-family: "Roboto", sans-serif;
}

body {
    color: var(--ev-text);
    background: #fff;
}

a {
    text-decoration: none;
}

.ev-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.ev-container {
    max-width: 1550px;
}

/* ---------------- Header / Navbar ---------------- */
.ev-header {
    border-bottom: 1px solid var(--ev-border);
    background: #fff;
    padding: 14px 0;
}

.ev-header .ev-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ev-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ev-outline {
    border: 1px solid #d6dee8;
    color: var(--ev-text);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-ev-outline:hover {
    background: var(--ev-bg-soft);
    color: var(--ev-text);
}

.btn-ev-primary {
    background: var(--ev-blue);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 18px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-ev-primary:hover {
    background: var(--ev-blue-dark);
    color: #fff;
}

.btn-ev-ai {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 12px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg,
            #2563eb,
            #7c3aed,
            #0ea5e9);
    background-size: 250% 250%;
    box-shadow:
        0 8px 25px rgba(37, 99, 235, .25),
        0 0 0 1px rgba(255, 255, 255, .08) inset;
    transition: .35s ease;
}

.btn-ev-ai:hover {
    color: #fff;
    transform: translateY(-2px);
    background-position: right center;
    box-shadow:
        0 14px 35px rgba(59, 130, 246, .35),
        0 0 25px rgba(124, 58, 237, .25);
}

.btn-ev-ai::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background:
        linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);
    transition: .8s;
}

.btn-ev-ai:hover::before {
    left: 140%;

}

.ai-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
    font-size: 16px;
}

.ai-text {
    white-space: nowrap;
}

.ai-badge {
    margin-left: 4px;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.ev-for-employers {
    font-weight: 600;
    font-size: 14px;
    color: var(--ev-text);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================
   Primary Navbar (navbar-custom) + Mobile Navigation Drawer
   ========================================================== */
.navbar-custom {
    background: #fff;
    border-bottom: 1px solid var(--ev-border);
    position: relative;
    z-index: 1000;
    transition: box-shadow .25s ease;
}

.navbar-custom.scrolled {
    box-shadow: var(--ev-shadow);
}

.navbar-custom .navbar {
    padding: 14px 0;
}

.site-logo.main-logo {
    height: 45px;
    width: auto;
}

.navbar-custom .nav-link {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ev-text);
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: color .2s ease, background .2s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--ev-blue);
}

.navbar-custom .dropdown-menu {
    border: 1px solid var(--ev-border);
    border-radius: var(--ev-radius-sm);
    box-shadow: var(--ev-shadow);
    padding: 8px;
    margin-top: 8px;
}

.navbar-custom .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--ev-text);
    padding: 9px 12px;
    border-radius: 8px;
}

.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item.active {
    background: var(--ev-blue-bg);
    color: var(--ev-blue);
}

/* Animated hamburger toggler (three bars -> X) */
.navbar-custom .navbar-toggler {
    border: 1px solid var(--ev-border);
    border-radius: 9px;
    width: 42px;
    height: 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #fff;
    box-shadow: none !important;
    display: none;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: 0 0 0 3px var(--ev-blue-light) !important;
    outline: none;
}

.navbar-custom .toggler-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ev-text);
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease;
}

.navbar-custom .navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-custom .navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-custom .navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Dimmed backdrop behind the mobile drawer */
.ev-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(16, 26, 43, .45);
    backdrop-filter: blur(2px);
    z-index: 1040;
    opacity: 0;
    transition: opacity .3s ease;
}

.ev-nav-backdrop.show {
    display: block;
    opacity: 1;
}

body.ev-nav-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {

     .navbar-custom .navbar-toggler{
        display:flex;
    }

    /* Drawer panel slides in from the right */
    .navbar-custom .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        width: min(84vw, 340px);
        background: #fff;
        z-index: 1050;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        margin: 0;
        transform: translateX(100%);
        transition: transform .35s cubic-bezier(.22, .61, .36, 1);
        box-shadow: -12px 0 40px rgba(16, 26, 43, .12);
        overflow-y: auto;
    }

    .navbar-custom .navbar-collapse.show,
    .navbar-custom .navbar-collapse.collapsing {
        transform: translateX(0);
        height: 100dvh !important;
    }

    /* Drawer header: mini logo + close button */
    .ev-mobile-head {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        border-bottom: 1px solid var(--ev-border);
    }

    .ev-mobile-brand img {
        height: 28px;
    }

    .ev-nav-close {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--ev-border);
        background: var(--ev-bg-soft);
        color: var(--ev-text);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }

    .ev-nav-close:hover {
        background: var(--ev-blue-bg);
        color: var(--ev-blue);
    }

    /* Links */
    .navbar-custom .navbar-nav {
        width: 100%;
        margin: 0 !important;
        padding: 10px 12px;
    }

    .navbar-custom .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-custom .nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        padding: 13px 12px !important;
        border-radius: var(--ev-radius-sm);
    }

    .navbar-custom .nav-link i {
        font-size: 16px;
        width: 20px;
        color: var(--ev-text-muted);
        text-align: center;
    }

    .navbar-custom .nav-link:hover i,
    .navbar-custom .nav-link.active i {
        color: var(--ev-blue);
    }

    .navbar-custom .dropdown-menu {
        position: static !important;
        display: none;
        box-shadow: none;
        border: none;
        background: var(--ev-bg-soft);
        margin: 4px 0 4px 32px !important;
        width: calc(100% - 32px);
        transform: none !important;
        inset: auto !important;
    }

    .navbar-custom .dropdown-menu.show {
        display: block;
    }

    .navbar-custom .dropdown-toggle::after {
        margin-left: auto;
    }

    /* Footer actions pinned to the bottom of the drawer */
    .navbar-custom .ev-header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 16px 20px calc(20px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--ev-border);
        margin-top: auto;
    }

    .navbar-custom .ev-header-actions .btn-ev-ai,
    .navbar-custom .ev-header-actions .btn-ev-outline,
    .navbar-custom .ev-header-actions .btn-ev-primary {
        width: 100%;
        justify-content: center;
    }

    .navbar-custom .ev-header-actions form {
        width: 100%;
    }
}

/* ---------------- Hero ---------------- */
.ev-hero {
    background: linear-gradient(180deg, var(--ev-blue-light) 0%, #f7faff 65%, #f7faff 100%);
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.ev-hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--ev-text);
    letter-spacing: -1px;
}

.ev-hero-title .ev-blue-line {
    color: var(--ev-blue);
    display: block;
}

.ev-hero-sub {
    font-size: 16px;
    color: var(--ev-text-muted);
    margin: 18px 0 26px;
    max-width: 480px;
    line-height: 1.6;
}

.ev-hero-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.ev-hero-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14.5px;
    padding: 10px 18px;
    border-radius: 9px;
    background: #fff;
    color: var(--ev-text);
    border: 1px solid var(--ev-border);
}

.ev-hero-tab.active {
    background: var(--ev-blue);
    color: #fff;
    border-color: var(--ev-blue);
}

.ev-search-card {
    background: #fff;
    border-radius: var(--ev-radius);
    box-shadow: var(--ev-shadow);
    padding: 16px;
    border: 1px solid var(--ev-border);
}

.ev-search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.ev-search-field {
    flex: 1 1 190px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--ev-border);
    border-radius: 9px;
    padding: 10px 14px;
}

.ev-search-field i {
    color: var(--ev-text-muted);
}

.ev-search-field select,
.ev-search-field input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14.5px;
    background: transparent;
    color: var(--ev-text);
}

.ev-search-btn {
    background: var(--ev-blue);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    padding: 12px 24px;
    border-radius: 9px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ev-search-btn:hover {
    background: var(--ev-blue-dark);
    color: #fff;
}

.ev-popular-search {
    margin-top: 10px;
    font-size: 14px;
    color: var(--ev-text-muted);
}

.ev-popular-search b {
    color: var(--ev-text);
    font-weight: 700;
}

.ev-popular-search a {
    color: var(--ev-blue);
    font-weight: 600;
    margin-right: 4px;
}

.ev-popular-search a:not(:last-child)::after {
    content: ",";
    color: var(--ev-text-muted);
    margin-right: 4px;
}

/* hero image + new-to-envelai card */
.ev-hero-media {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 240px;
    right: 0;
    z-index: -1;
}

.ev-hero-media img.ev-hero-photo {
    width: 100%;
    max-width: 480px;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

.ev-hero-dots {
    position: absolute;
    top: 10px;
    right: -10px;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(var(--ev-red) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: .5;
}

.ev-new-card,
.ev-card {
    background: #fff;
    border-radius: var(--ev-radius);
    box-shadow: var(--ev-shadow);
    padding: 22px;
    border: 1px solid var(--ev-border);
}

.ev-new-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 14px;
}

.ev-new-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.ev-new-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 9px;
    background: var(--ev-blue-bg);
    color: var(--ev-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ev-new-item h5 {
    font-size: 14.5px;
    font-weight: 700;
    margin: 0;
}

.ev-new-item p {
    font-size: 12.5px;
    color: var(--ev-text-muted);
    margin: 0;
}

.ev-new-card .btn-ev-primary {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    padding: 11px;
}

/* ---------------- Stats bar ---------------- */
.ev-stats-bar {
    background: #fff;
    border: 1px solid var(--ev-border);
    border-radius: var(--ev-radius);
    box-shadow: var(--ev-shadow);
    padding: 26px 10px;
    margin-top: -8px;
    position: relative;
    z-index: 2;
}

.ev-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.ev-stat-item.right-border {
    border-right: 1px solid var(--ev-border);
}

.ev-stat-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ev-stat-icon.blue {
    background: var(--ev-blue-bg);
    color: var(--ev-blue);
}

.ev-stat-icon.green {
    background: var(--ev-green-bg);
    color: var(--ev-green);
}

.ev-stat-icon.orange {
    background: var(--ev-orange-bg);
    color: #e8763b;
}

.ev-stat-icon.purple {
    background: var(--ev-purple-bg);
    color: #8b5cf6;
}

.ev-stat-item h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.ev-stat-item p {
    font-size: 13.5px;
    color: var(--ev-text-muted);
    margin: 0;
}

/* ---------------- Section heading ---------------- */

.ev-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.ev-section-head h2 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.ev-view-all {
    font-size: 14px;
    font-weight: 700;
    color: var(--ev-blue);
}

/* ---------------- Categories ---------------- */
.ev-cat-card {
    border: 1px solid var(--ev-border);
    border-radius: var(--ev-radius-sm);
    background: #fff;
    padding: 8px 8px;
    text-align: center;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
    display: grid;
    align-content: space-evenly;
    justify-content: space-evenly;
    align-items: center;
    justify-items: center;
}

.ev-cat-card:hover {
    box-shadow: var(--ev-shadow);
    transform: translateY(-2px);
}

.ev-cat-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 8px;
    border-radius: 11px;
    background: var(--ev-blue-bg);
    color: var(--ev-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.ev-cat-card h6 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 3px;
    color: var(--ev-text);
}

.ev-cat-card p {
    font-size: 12.5px;
    color: var(--ev-text-muted);
    margin: 0;
}

.ev-cat-card.more .ev-cat-icon {
    background: var(--ev-bg-soft);
    color: var(--ev-text-muted);
}

/* ---------------- Latest jobs ---------------- */
.ev-job-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-bottom: 1px solid var(--ev-border);
    margin-bottom: 14px;
    padding-bottom: 10px;
    background: #fff;
}

.ev-job-logo {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 10px;
    background: var(--ev-blue-bg);
    color: var(--ev-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    overflow: hidden;
}

.ev-job-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ev-job-info {
    flex: 1;
    min-width: 0;
}

.ev-job-info h6 {
    font-size: 14.5px;
    font-weight: 700;
    margin: 0 0 2px;
}

.ev-job-info h6 a {
    color: var(--ev-text);
}

.ev-job-company {
    font-size: 13px;
    color: var(--ev-text-muted);
}

.ev-job-meta {
    font-size: 12.5px;
    color: var(--ev-text-muted);
    display: flex;
    gap: 14px;
    align-items: center;
}

.ev-job-side {
    text-align: right;
    min-width: 70px;
}

.ev-job-badge {
    background: var(--ev-green-bg);
    color: var(--ev-green);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 0px;
    line-height: normal;
}

.ev-job-time {
    display: block;
    font-size: 11.5px;
    color: var(--ev-text-muted);
}

.ev-view-all-btn {
    display: block;
    text-align: center;
    width: 100%;
    background: var(--ev-blue-bg);
    color: var(--ev-blue);
    font-weight: 700;
    font-size: 14px;
    padding: 12px;
    border-radius: 9px;
    margin-top: 6px;
}

.ev-view-all-btn:hover {
    background: var(--ev-blue);
    color: #fff;
}

/* ---------------- Top companies ---------------- */
.ev-company-card {
    border: 1px solid var(--ev-border);
    border-radius: var(--ev-radius-sm);
    padding: 10px;
    height: 100%;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    text-align: center;
}

.ev-company-logo {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 8px;
    width: 42px;
    height: 42px;
}

.ev-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ev-company-content h6 {
    font-size: 14px;
    text-transform: lowercase;
    margin-bottom: 10px;
}

.ev-company-content p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--ev-text);
}


/* ---------------- Explore more jobs ---------------- */
.ev-explore-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--ev-border);
    border-radius: var(--ev-radius-sm);
    padding: 16px;
    background: #fff;
    height: 100%;
}

.ev-explore-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: var(--ev-blue-bg);
    color: var(--ev-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.ev-explore-card h6 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.ev-explore-card p {
    font-size: 12px;
    color: var(--ev-text-muted);
    margin: 0;
}

@media (max-width: 991px) {
    .ev-nav {
        display: none;
    }

    .ev-hero-title {
        font-size: 32px;
    }

    .ev-stats-bar .ev-stat-item {
        justify-content: flex-start;
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .ev-search-row {
        align-items: stretch;
    }

    .ev-search-btn {
        justify-content: center;
    }
}

.cat-icon-1 {
    color: #2563eb;
    background: #eff6ff;
}

.cat-icon-2 {
    color: #ef4444;
    background: #fef2f2;
}

.cat-icon-3 {
    color: #16a34a;
    background: #f0fdf4;
}

.cat-icon-4 {
    color: #7c3aed;
    background: #f5f3ff;
}

.cat-icon-5 {
    color: #f59e0b;
    background: #fffbeb;
}

.cat-icon-6 {
    color: #06b6d4;
    background: #ecfeff;
}

.cat-icon-7 {
    color: #ec4899;
    background: #fdf2f8;
}

.cat-icon-8 {
    color: #475569;
    background: #f8fafc;
}


/* =========================================================
   HR Certification Programs page — page-specific styles
   Prefix: prog-
   Reuses existing global classes/variables:
   breadcrumb-sec, section-head, section-title, sub-heading,
   heading, check-list, feature-card, feature-icon, feature-title,
   bg-offWhite, cta-area, btn-button, and CSS vars from style-new.css
   ========================================================= */

.prog-intro-section {
    padding: 70px 0 40px;
}

.prog-intro-section .intro-text p {
    color: var(--ev-text-muted);
    line-height: 1.8;
    font-size: 15.5px;
    margin-bottom: 18px;
}

.prog-intro-section .intro-text p:last-child {
    margin-bottom: 0;
}

.prog-programs-heading {
    padding: 50px 0 10px;
}

/* Individual program sections */
.prog-program-section {
    padding: 60px 0;
}

.prog-program-image {
    border-radius: var(--ev-radius);
    box-shadow: var(--ev-shadow);
    border: 1px solid var(--ev-border);
    overflow: hidden;
}

.prog-program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prog-program-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--ev-blue-bg);
    color: var(--ev-blue);
    font-weight: 800;
    font-size: 15px;
    margin-right: 12px;
}

.prog-program-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--ev-text);
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.prog-program-desc {
    color: var(--ev-text-muted);
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 22px;
}

.prog-learning-label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ev-blue);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 14px;
}

/* Why choose section — split panel layout */
.prog-why-section {
    padding: 70px 0;
}

.prog-why-lead {
    color: var(--ev-text-muted);
    font-size: 15.5px;
    line-height: 1.75;
    margin-top: 10px;
    max-width: 380px;
}

.prog-why-panel {
    background: #fff;
    border: 1px solid var(--ev-border);
    border-radius: var(--ev-radius);
    box-shadow: var(--ev-shadow);
    padding: 8px 24px;
}

.prog-why-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--ev-border);
}

.prog-why-row:last-child {
    border-bottom: none;
}

.prog-why-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--ev-blue-bg);
    color: var(--ev-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.prog-why-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--ev-text);
}

/* ---------------------------------------------------------
   Corporate Training Programs page — page-specific styles
   Prefix: ctp- (distinct from prog-why-* used on HR page)
   --------------------------------------------------------- */

.ctp-why-card {
    background: #fff;
    border: 1px solid var(--ev-border);
    border-radius: var(--ev-radius);
    box-shadow: var(--ev-shadow);
    padding: 26px 24px;
    height: 100%;
}

.ctp-why-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: var(--ev-radius-sm);
    background: var(--ev-blue-bg);
    color: var(--ev-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.ctp-why-title {
    font-size: 16.5px;
    font-weight: 800;
    color: var(--ev-text);
    margin-bottom: 10px;
}

.ctp-why-desc {
    font-size: 14px;
    color: var(--ev-text-muted);
    line-height: 1.7;
    margin: 0;
}