/* ============================================
   SCIT – New Stylesheet (scit-style.css)
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --blue: #1D4ED8;
    --blue-light: #3B82F6;
    --blue-bg: #EFF6FF;
    --blue-mid: #DBEAFE;
    --navy: #0a3191;
    --navy-bg: #2f76ff33;
    --dark: #1E293B;
    --text: #374151;
    --text-light: #6B7280;
    --green: #059669;
    --green-bg: #F0FDF4;
    --green-mid: #D1FAE5;
    --orange: #D97706;
    --orange-bg: #FFFBEB;
    --purple: #7C3AED;
    --purple-bg: #F5F3FF;
    --pink: #EC4899;
    --pink-bg: #FDF2F8;
    --sky-blue: #34aaef;
    --sky-blue-bg: #eaf8ff;
    --border: #E5E7EB;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-hero: #F0F4FF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.11);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.13);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

input,
textarea,
button,
select {
    font-family: inherit;
}

/* ===== UTILITY ===== */
.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 40px;
}

.text-blue {
    color: var(--blue);
}

.text-navy {
    color: var(--navy);
}

.text-green {
    color: var(--green)
}

.text-orange {
    color: var(--orange)
}

.text-purple {
    color: var(--purple)
}

.text-pink {
    color: var(--pink)
}

.text-yellow {
    color: #F57F17;
    background: #f1e7ce
}

.text-light-blue {
    color: #34aaef;
    background: #2d9bda3b;
}

.bg-blue {
    background: var(--blue-bg)
}

.bg-navy {
    background: var(--navy-bg)
}

.bg-green {
    background: var(--green-bg)
}

.bg-orange {
    background: var(--orange-bg)
}

.bg-purple {
    background: var(--purple-bg)
}

.bg-pink {
    background: var(--pink-bg)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: #1538B0;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.3);
}

.btn-outline-hero {
    background: transparent;
    color: var(--navy);
    border-color: var(--border);
}

.btn-outline-hero:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

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

.logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 13px;
    font-weight: 800;
    color: #000;
    letter-spacing: 0.4px;
    line-height: 1.2;
}

.logo-white {
    color: var(--white) !important;
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.enroll-btn {
    padding: 10px 22px;
    font-size: 13px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--navy);
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    padding-top: 70px;
    background: var(--bg-hero);
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 60px 0 40px;
}

.hero-left {
    flex: 0 0 48%;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border: 1.5px solid var(--blue-mid);
    background: var(--blue-bg);
    border-radius: 999px;
    padding: 5px 16px;
    margin-bottom: 20px;
}

.hero-title {
    /* font-family: 'Roboto Condensed', sans-serif; */
    font-size: 64px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: 18px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow);
}

.pill-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-right {
    flex: 1;
}

.hero-img-wrap {
    position: relative;
}

.hero-main-img {
    width: 100%;
    border-radius: var(--radius-xl);
}

.hero-float {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.hero-float img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.hero-float-tl {
    top: 20px;
    left: -20px;
}

.hero-float-bl {
    bottom: 60px;
    left: -20px;
}

.hero-float-tr {
    top: 20px;
    right: -20px;
}

.hero-float-br {
    bottom: 60px;
    right: -20px;
}

/* Hero Stats Bar */
.hero-stats-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.hero-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 28px;
}

.hero-stat-img {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40%;
}

.hstat-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.hero-stat-div {
    display: flex;
    flex-direction: column;
}

.hstat-num {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.hstat-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== PROGRAMS ===== */
.programs {
    background: var(--white);
    padding: 80px 0;
}

.programs-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.programs-header-left {
    flex: 1;
}

.sec-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.sec-eyebrow span {
    color: var(--blue);
}


.programs-title {
    /* font-family: 'Roboto Condensed', sans-serif; */
    font-size: 44px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 12px;
}

.programs-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 420px;
}

.programs-header-right {
    flex-shrink: 0;
}

.programs-mini-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 12px; */
}

.pms-item {
    background: var(--bg-light);
    /* border: 1px solid var(--border);  */
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    min-width: 120px;
}

.pms-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.pms-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--blue);
}

.pms-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

/* Programs Slider (shown below 1024px) */
.programs-slider-wrap {
    display: none;
}

.programs-slider-dots {
    display: none;
}

.prog-card {
    display: flex;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: box-shadow 0.25s, transform 0.25s;
}

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

.prog-card-left {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px 16px;
    gap: 10px;
    min-height: 140px;
}

.prog-logo {
    width: 52px;
    height: 52px;
    /* background: rgba(255, 255, 255, 0.2); */
    /* border-radius: 12px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 8px; */
}

.prog-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.prog-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.prog-card-right {
    flex: 1;
    padding: 16px 20px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prog-popular {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    color: var(--blue);
}

.popular-star {
    width: 14px;
    height: 14px;
}

.prog-info {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.prog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.prog-tag {
    font-size: 11px;
    font-weight: 600;
    /* background: var(--blue-bg);
    color: var(--blue); */
    border-radius: 6px;
    padding: 3px 8px;
    /* border: 1px solid var(--blue-mid); */
}

.prog-tag-more {
    background: transparent;
    color: var(--text-light);
    border-color: var(--border);
}

.prog-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.prog-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
}

.prog-meta-icon {
    width: 13px;
    height: 13px;
    object-fit: contain;
    opacity: 0.6;
}

.prog-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.prog-arrow:hover {
    transform: translateX(3px);
}

/* Programs CTA */
.programs-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
}

.programs-cta-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pcta-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.pcta-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.pcta-desc {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== WHY SCIT ===== */
.why-scit {
    background: var(--bg-light);
    padding: 80px 0;
}

.why-eyebrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.why-eyebrow-line {
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--blue);
}

.why-eyebrow-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--blue-bg);
    border-radius: 999px;
    padding: 5px 16px;
    border: 1px solid var(--blue-mid);
}

.why-title {
    /* font-family: 'Roboto Condensed', sans-serif; */
    font-size: 52px;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    line-height: 1.1;
    margin-bottom: 10px;
}

.why-underline-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.why-underline {
    width: 52px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
}

.why-underline-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.why-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px 20px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 14px;
}

.why-card-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.why-card-line {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.why-line-blue {
    background: var(--blue);
}

.why-line-green {
    background: var(--green);
}

.why-line-orange {
    background: var(--orange);
}

.why-line-pink {
    background: var(--pink);
}

.why-line-purple {
    background: var(--purple);
}

.why-line-sky {
    background: #0EA5E9;
}

.why-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.why-card-num {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 28px;
    font-weight: 900;
    opacity: 0.08;
    color: var(--navy);
    /* font-family: 'Roboto Condensed', sans-serif; */
}

.why-num-green {
    color: var(--green);
}

.why-num-orange {
    color: var(--orange);
}

.why-num-pink {
    color: var(--pink);
}

.why-num-purple {
    color: var(--purple);
}

.why-num-sky {
    color: #0EA5E9;
}

/* Why Stats Row */
.why-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    gap: 20px;
    flex-wrap: wrap;
}

.why-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-stat.mob {
    display: none;
}

.wstat-icon {
    width: 64px;
    height: 64px;
    border-radius: 40%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wstat-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.wstat-blue {
    background: var(--blue-bg);
}

.wstat-green {
    background: var(--green-bg);
}

.wstat-purple {
    background: var(--purple-bg);
}

.wstat-orange {
    background: var(--orange-bg);
}

.wstat-pink {
    background: var(--pink-bg);
}

.wstat-num {
    font-size: 20px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
}

.wstat-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== LEARNING JOURNEY ===== */
.learning-journey {
    background: var(--white);
    padding: 80px 0;
}

.lj-header {
    text-align: center;
    margin-bottom: 56px;
}

.lj-eyebrow-wrap,
.lj-what-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.lj-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lj-line,
.testi-line,
.pl-eyebrow-line,
.about-imp-line,
.about-eyebrow-line,
.cn-eyebrow-line {
    flex: 1;
    max-width: 80px;
    height: 1.5px;
    background: var(--blue);
    display: block;
}

.lj-title {
    /* font-family: 'Roboto Condensed', sans-serif; */
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 10px;
}

.lj-underline-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.lj-underline {
    width: 40px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
}

.lj-underline-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.lj-desc {
    font-size: 15px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Desktop Timeline */
.lj-timeline-desktop {
    display: block;
}

.lj-steps-mobile {
    display: none;
}

.lj-timeline-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
    padding: 0 20px;
    position: relative;
}

.lj-track-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lj-track-line {
    position: absolute;
    top: 32px;
    left: 50%;
    width: 100%;
    height: 2px;
    z-index: 0;
}

/* .lj-track-col:first-child .lj-track-line {
    left: 50%;
    width: 50%;
} */

.lj-track-col:last-child .lj-track-line {
    width: 50%;
}

.lj-step-node {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 14px;
    position: relative;
    z-index: 1;
}

.lj-step-node img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.lj-node-blue {
    background: var(--blue);
}

.lj-node-sky-blue {
    background: var(--sky-blue);
}

.lj-node-green {
    background: var(--green);
}

.lj-node-orange {
    background: var(--orange);
}

.lj-node-purple {
    background: var(--purple);
}

.lj-node-navy {
    background: var(--navy);
}

.lj-tl-green {
    background: linear-gradient(to right, #2563EB, #059669);
}

.lj-tl-dkgreen {
    background: linear-gradient(to right, #059669, #16A34A);
}

.lj-tl-orange {
    background: linear-gradient(to right, #16A34A, #D97706);
}

.lj-tl-purple {
    background: linear-gradient(to right, #D97706, #7C3AED);
}

.lj-tl-navy {
    background: linear-gradient(to right, #7C3AED, #1E3A5F);
}

.lj-snum {
    font-size: 13px;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 16px;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 50%;
}

.lj-snum-blue {
    background: var(--blue);
}

.lj-snum-green {
    background: var(--green);
}

.lj-snum-orange {
    background: var(--orange);
}

.lj-snum-purple {
    background: var(--purple);
}

.lj-snum-navy {
    background: var(--navy);
}

.lj-snum-sky-blue {
    background: var(--sky-blue);
}

.lj-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    width: 100%;
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lj-card h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
    text-align: center;
}

.lj-card-line {
    width: 28px;
    height: 2.5px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.lj-cl-blue {
    background: var(--blue);
}

.lj-cl-green {
    background: var(--green);
}

.lj-cl-sky-blue {
    background: var(--sky-blue);
}

.lj-cl-orange {
    background: var(--orange);
}

.lj-cl-purple {
    background: var(--purple);
}

.lj-cl-navy {
    background: var(--navy);
}

.lj-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: center;
}

.lj-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    padding: 4px 10px;
}

.lj-card-tag img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.lj-tag-blue {
    background: var(--blue-bg);
    color: #2563EB;
}

.lj-tag-green {
    background: var(--green-bg);
    color: #059669;
}

.lj-tag-sky-blue {
    background: var(--sky-blue-bg);
    color: #34aaef;
}

.lj-tag-orange {
    background: var(--orange-bg);
    color: #D97706;
}

.lj-tag-purple {
    background: var(--purple-bg);
    color: #7C3AED;
}

.lj-tag-navy {
    background: var(--navy-bg);
    color: #1E3A5F;
}

/* Dark Banner */
.lj-dark-banner {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 36px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.lj-banner-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.lj-banner-trophy {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.lj-banner-title {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.lj-banner-subtitle {
    font-size: 22px;
    font-weight: 900;
    color: var(--orange);
}

.lj-banner-items {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.lj-banner-item {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    min-width: 160px;
}

.lj-bi-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 8px;
    flex-shrink: 0;
    object-fit: contain;
}

.lj-bi-green {
    background: rgba(16, 185, 129, 0.2);
}

.lj-bi-purple {
    background: rgba(139, 92, 246, 0.2);
}

.lj-bi-pink {
    background: rgba(236, 72, 153, 0.2);
}

.lj-bi-blue {
    background: rgba(59, 130, 246, 0.2);
}

.lj-bi-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.lj-bi-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}


/* ===== ABOUT NEW ===== */
.about-new {
    background: var(--bg-light);
    padding: 80px 0;
}

.about-eyebrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.about-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-title {
    /* font-family: 'Roboto Condensed', sans-serif; */
    font-size: 52px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    text-align: center;
    margin-bottom: 14px;
}

.about-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.about-top-row {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 60px;
}

.about-top-left {
    flex: 0 0 100%;
}

.about-top-left .about-title {
    text-align: center;
}

.about-top-left .about-desc {
    text-align: center;
    margin: 0 auto 0;
}

.about-top-right {
    flex: 1;
    display: none;
}

.about-hero-img {
    width: 100%;
    border-radius: var(--radius-xl);
}

.about-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.about-who-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.about-who-line {
    width: 40px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    margin-bottom: 16px;
}

.about-who-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
}

.af2-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.af2-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.af2-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.af2-desc {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.5;
}

.about-body-right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background-image: url('../img/about-main.png'); */
    background:
        linear-gradient(rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0.5)),
        url('../img/about-main.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}

.about-purpose-card,
.about-vision-card {
    padding: 20px;
    margin-bottom: 14px;
    width: 50%;
}

.apc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.apc-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apc-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.apc-header h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
}

.about-purpose-card p,
.about-vision-card p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.7;
}

.about-laptop-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-laptop-img {
    width: 100%;
    border-radius: var(--radius-lg);
}

/* Impact Stats */
.about-impact-title-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.about-imp-line {
    flex: 1;
    height: 1.5px;
    background: var(--border);
}

.about-imp-eyebrow {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    white-space: nowrap;
}

.about-impact-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.ais-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ais-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.ais-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ais-blue {
    background: var(--blue-bg);
}

.ais-green {
    background: var(--green-bg);
}

.ais-purple {
    background: var(--purple-bg);
}

.ais-orange {
    background: var(--orange-bg);
}

.ais-num {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

.ais-blue-text {
    color: var(--blue);
}

.ais-green-text {
    color: var(--green);
}

.ais-purple-text {
    color: var(--purple);
}

.ais-orange-text {
    color: var(--orange);
}

.ais-label {
    font-size: 12px;
    color: var(--text-light);
}

/* What Makes Different */
.about-diff-wrap {
    margin-top: 8px;
}

.about-diff-eyebrow {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.about-diff-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.adl-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.adl-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--blue-mid);
}

.adl-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-bg);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adl-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.adl-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.adl-desc {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.5;
}

.adl-arrow {
    color: var(--blue);
    font-size: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

/* ===== PLACEMENT ===== */
.placement {
    background: var(--white);
    padding: 80px 0;
}

.pl-eyebrow-wrap,
.testi-eyebrow-wrap,
.cn-eyebrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.pl-eyebrow,
.testi-eyebrow,
.cn-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pl-title {
    /* font-family: 'Roboto Condensed', sans-serif; */
    font-size: 52px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    text-align: center;
    margin-bottom: 14px;
}

.pl-desc {
    font-size: 15px;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.pl-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.pl-stat-card {
    background: var(--white);
    /* border: 1px solid var(--border);
    border-radius: var(--radius-lg); */
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pl-stat-card-first-row {
    display: flex;
    align-items: center;
}

.pl-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin-bottom: 4px;
}

.pl-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pl-si-blue {
    background: var(--blue-bg);
}

.pl-si-green {
    background: var(--green-bg);
}

.pl-si-purple {
    background: var(--purple-bg);
}

.pl-si-orange {
    background: var(--orange-bg);
}

.pl-stat-num {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
}

.pl-sn-blue {
    color: var(--blue);
}

.pl-sn-green {
    color: var(--green);
}

.pl-sn-purple {
    color: var(--purple);
}

.pl-sn-orange {
    color: var(--orange);
}

.pl-stat-underline {
    width: 28px;
    height: 2.5px;
    border-radius: 2px;
}

.pl-ul-blue {
    background: var(--blue);
}

.pl-ul-green {
    background: var(--green);
}

.pl-ul-purple {
    background: var(--purple);
}

.pl-ul-orange {
    background: var(--orange);
}

.pl-stat-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.pl-stat-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

.pl-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.pl-body-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    text-align: center;
}

.pl-body-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.pl-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.pl-ms-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.plms-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plms-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.plms-blue {
    background: var(--blue-bg);
}

.plms-green {
    background: var(--green-bg);
}

.plms-purple {
    background: var(--purple-bg);
}

.plms-orange {
    background: var(--orange-bg);
}

.plms-num {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
}

.plms-blue-text {
    color: var(--blue);
}

.plms-green-text {
    color: var(--green);
}

.plms-purple-text {
    color: var(--purple);
}

.plms-orange-text {
    color: var(--orange);
}

.plms-label {
    font-size: 11px;
    color: var(--text-light);
}

.pl-commitment {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-top: 8px;
}

.plc-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.pl-commitment p {
    font-size: 13px;
    color: var(--text);
}

.pl-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    margin-bottom: 20px;
}

.pl-step {
    text-align: center;
    position: relative;
}

/* connecting line */
.pl-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 26px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    border-top: 2px dashed #D1D5DB;
}

.pl-proc-node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin: 0 auto 12px;
    position: relative;
    z-index: 2;
}

.pl-proc-node img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.pl-pn-blue {
    background: #2563EB;
}

.pl-pn-green {
    background: #059669;
}

.pl-pn-purple {
    background: #7C3AED;
}

.pl-pn-orange {
    background: #D97706;
}

.pl-proc-num {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 6px;
}

.pl-pnum-blue {
    color: #2563EB;
}

.pl-pnum-green {
    color: #059669;
}

.pl-pnum-purple {
    color: #7C3AED;
}

.pl-pnum-orange {
    color: #D97706;
}

.pl-proc-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.pl-proc-desc {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-light);
}


.pl-quote-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pl-quote-mark {
    font-size: 32px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    flex-shrink: 0;
}

.pl-quote-card p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.7;
    flex: 1;
}

.pl-quote-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 0.4;
    flex-shrink: 0;
}

/* Partners */
.pl-partners-wrap {
    margin-bottom: 40px;
    text-align: center;
}

.pl-partners-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.pl-partners-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* .pl-partners-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
}

.pl-partner-logo {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    padding: 8px 16px;
    height: 40px;
}

.pl-partner-logo img {
   height: 100%;
   width: 100%;
   object-fit: fill;
} */

.pl-partners-logos {
    display: flex;
    flex-wrap: nowrap;
    /* Prevent wrapping */
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    /* Enable horizontal scroll */
    overflow-y: hidden;
    padding: 24px 32px;

    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    scrollbar-width: thin;
    /* Firefox */
}

.pl-partner-logo {
    flex: 0 0 auto;
    width: 125px;
    height: 40px;
    padding: 4px 16px;
}

.pl-partner-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.pl-partners-logos::-webkit-scrollbar {
    display: none;
}

.pl-partners-logos {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Placement CTA */
.pl-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}

.pl-cta-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.pl-cta-body {
    flex: 1;
}

.pl-cta-body h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.pl-cta-body p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-light);
    padding: 80px 0;
}

.testi-title {
    /* font-family: 'Roboto Condensed', sans-serif; */
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    line-height: 1.1;
    margin-bottom: 12px;
}

.testi-desc {
    font-size: 15px;
    color: var(--text-light);
    text-align: center;
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* Agg Stats */
.testi-agg-stats {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-bottom: 40px;
    gap: 0;
}

.testi-agg-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-agg-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
}

.testi-agg-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testi-agg-blue {
    background: var(--blue-bg);
}

.testi-agg-green {
    background: var(--green-bg);
}

.testi-agg-purple {
    background: var(--purple-bg);
}

.testi-agg-orange {
    background: var(--orange-bg);
}

.testi-agg-num {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
}

.testi-num-blue {
    color: var(--blue);
}

.testi-num-green {
    color: var(--green);
}

.testi-num-purple {
    color: var(--purple);
}

.testi-num-orange {
    color: var(--orange);
}

.testi-stars {
    color: var(--orange);
    font-size: 14px;
    letter-spacing: 1px;
}

.testi-agg-label {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

.testi-agg-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
    margin: 0 20px;
    flex-shrink: 0;
}

/* Cards */
.testi-cards-section {
    margin-bottom: 32px;
}

.testi-what-label {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
}

.testi-slider-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 20px;
}

.testi-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--navy);
    transition: all 0.2s;
    flex-shrink: 0;
    align-self: center;
}

.testi-nav:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.testi-cards-track {
    display: flex;
    gap: 16px;
    flex: 1;
    overflow: hidden;
}

.testi-card {
    flex: 1;
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testi-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testi-quote-icon {
    font-size: 28px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}

.testi-stars-sm {
    color: var(--orange);
    font-size: 16px;
    letter-spacing: 1px;
}

.testi-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.75;
    flex: 1;
}

.testi-cert-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    background: var(--blue-bg);
    color: var(--blue);
    border: 1px solid var(--blue-mid);
    border-radius: 6px;
    padding: 3px 10px;
}

.testi-ct-green {
    background: var(--green-bg);
    color: #065F46;
    border-color: var(--green-mid);
}

.testi-ct-purple {
    background: var(--purple-bg);
    color: var(--purple);
    border-color: #DDD6FE;
}

.testi-ct-orange {
    background: var(--orange-bg);
    color: #92400E;
    border-color: #FDE68A;
}

.testi-student-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.testi-student-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
}

.testi-student-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testi-si-blue {
    background: var(--blue-bg);
}

.testi-si-green {
    background: var(--green-bg);
}

.testi-si-purple {
    background: var(--purple-bg);
}

.testi-si-orange {
    background: var(--orange-bg);
}

.testi-role {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.testi-placed {
    font-size: 12px;
    color: var(--text-light);
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background 0.2s;
}

.testi-dot.active {
    background: var(--blue);
    width: 24px;
    border-radius: 4px;
}

/* Testi CTA */
.testi-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--blue-bg);
    border: 1px solid var(--blue-mid);
    border-radius: var(--radius-xl);
    padding: 28px 36px;
}

.testi-cta-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.testi-cta-body {
    flex: 1;
}

.testi-cta-body h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.testi-cta-body p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.testi-cta-qr {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.testi-qr-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    opacity: 0.6;
}

.testi-cta-qr span {
    font-size: 11px;
    color: var(--text-light);
    max-width: 100px;
    line-height: 1.4;
}

/* ===== CONTACT NEW ===== */
.contact-new {
    background: var(--white);
    padding: 80px 0;
}

.cn-eyebrow-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.cn-title {
    /* font-family: 'Roboto Condensed', sans-serif; */
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    line-height: 1.1;
    margin-bottom: 14px;
    position: relative;
}

.cn-paper-plane {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    opacity: 0.3;
}

.cn-desc {
    font-size: 15px;
    color: var(--text-light);
    text-align: center;
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cn-body {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
    position: relative;
}

.cn-get-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.cn-get-line {
    width: 36px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    margin-bottom: 12px;
}

.cn-get-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cn-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cn-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.cn-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--blue-mid);
}

.cn-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
}

.cn-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cn-ci-blue {
    background: var(--blue-bg);
}


.cn-card-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
}

.cn-card-help-label {
    font-size: 14px;
}

.cn-card-right-img {
    margin-left: auto;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.cn-card-right-img img{
    width: 100%;
    height: 100%;
}

.cn-card-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.cn-card-val img {
    height: 13px;
}

.cn-card-val span {
    font-size: 11px;
    color: var(--text-light);
}

.cn-val-blue {
    color: var(--blue) !important;
}

.cn-card-sub {
    font-size: 11px;
    color: var(--text-light);
}

.cn-card-sub span {
    color: var(--blue);
    margin-right: 10px;
}

.cn-card-arrow {
    color: var(--blue);
    font-size: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

/* Form */
.cn-form-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.cn-form-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.cn-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cn-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cn-input {
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text);
    background: var(--bg-light);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.cn-input:focus {
    border-color: var(--blue);
    background: var(--white);
}

.cn-select {
    cursor: pointer;
}

.cn-full {
    width: 100%;
}

.cn-textarea {
    min-height: 100px;
    resize: vertical;
}

.cn-submit-btn {
    justify-content: center;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    gap: 10px;
}

.cn-submit-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cn-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: var(--text-light);
    justify-content: center;
}

.cn-priv-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.5;
}

/* Map */
.cn-map-placeholder {
    background: #E8F0FE;
    border-radius: var(--radius-lg);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--blue-mid);
}

.cn-map-inner {
    text-align: center;
}

.cn-map-pin img {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
}

.cn-map-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
}

.cn-map-label span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    display: block;
}

.cn-find-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
}

.cn-find-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    background: var(--blue-bg);
    border-radius: 6px;
    padding: 4px;
    flex-shrink: 0;
}

.cn-find-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.cn-find-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Bottom Actions */
.cn-bottom-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.cn-ba-item {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.cn-ba-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 9px;
    object-fit: contain;
    margin-bottom: 10px;
}

.cn-ba-blue {
    background: var(--blue-bg);
}

.cn-ba-green {
    background: var(--green-bg);
}

.cn-ba-orange {
    background: var(--orange-bg);
}

.cn-ba-purple {
    background: var(--purple-bg);
}

.cn-ba-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.cn-ba-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 10px;
}

.cn-ba-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.cn-ba-link:hover {
    gap: 8px;
}

/* Social */
.cn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cn-social-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.cn-social-icons {
    display: flex;
    gap: 10px;
}

.cn-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
    transition: transform 0.2s;
}

.cn-social-icon:hover {
    transform: translateY(-2px);
}

.cn-fb {
    background: #1877F2;
}

.cn-li {
    background: #0A66C2;
}

.cn-ig {
    background: linear-gradient(135deg, #E1306C, #833AB4);
}

.cn-yt {
    background: #FF0000;
}

/* ===== FOOTER ===== */
.footer-new {
    background: var(--navy);
    color: var(--white);
    padding: 56px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 300px;
    margin-top: 14px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.fl-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fl-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.fl-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.fl-col a:hover {
    color: var(--white);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* ===== WHATSAPP ===== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: transform 0.2s;
}

.wa-float:hover {
    transform: scale(1.1);
}


@media (max-width: 1400px) {
    .hero-stats-inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .hero-stats-inner::-webkit-scrollbar {
        display: none;
    }

    .hero-stat,
    .hero-stat-divider {
        flex: 0 0 auto;
    }
}


@media(max-width: 1300px) {
    .programs-mini-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 98%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
    }

    .nav-link.active::after {
        display: none;
    }

    .enroll-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .lj-cards-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .lj-timeline-desktop .lj-step-nums {
        display: none;
    }

    .cn-body {
        grid-template-columns: 1fr 1fr;
    }

    .cn-right {
        display: none;
    }
}

@media (max-width: 1024px) {
    /* .container {
        padding: 0 24px;
    } */

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

    .programs-grid {
        display: none;
    }

    .programs-slider-wrap {
        display: block;
        margin-bottom: 8px;
    }

    .programs-carousel {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .programs-carousel-row {
        overflow: hidden;
    }

    .programs-carousel-track {
        display: flex;
        gap: 16px;
        transition: transform 0.4s ease;
    }

    .programs-carousel-item {
        /* flex: 0 0 60%; */
        flex: 0 0 49%;
        box-sizing: border-box;
    }

    .programs-carousel-item .prog-card-m {
        height: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 12px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
        padding: 16px;
    }

    .prog-card-m-header {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .prog-card-m-icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .prog-card-m-icon img {
        width: 26px;
        height: 26px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .prog-card-m-title-wrap {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding-top: 2px;
    }

    .prog-card-m-name {
        font-size: 15px;
        font-weight: 700;
        color: var(--navy);
        line-height: 1.35;
    }

    .prog-card-m-title-wrap .prog-popular {
        font-size: 10px;
        background: var(--blue-bg);
        color: var(--blue);
        border-radius: 999px;
        padding: 2px 10px;
        align-self: flex-start;
    }

    .prog-card-m-info {
        font-size: 12.5px;
        color: var(--text-light);
        line-height: 1.65;
        margin: 0;
    }

    .prog-card-m-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .prog-card-m-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-top: auto;
        padding-top: 10px;
        border-top: 1px solid var(--border);
    }

    .prog-card-m-meta {
        display: flex;
        gap: 15px;
    }

    .prog-card-m-meta .prog-meta {
        font-size: 11px;
    }

    .prog-card-m-arrow {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 13px;
        text-decoration: none;
    }

    .programs-slider-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-bottom: 16px;
    }

    .programs-slider-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--border);
        cursor: pointer;
        transition: all 0.2s;
    }

    .programs-slider-dot.active {
        background: var(--blue);
        width: 18px;
        border-radius: 4px;
    }


    /* .prog-tags.web,
    .prog-footer.web,
    .prog-name.web {
        display: none;
    }

    .prog-card-left {
        min-height: 100px;
        align-items: center;
        justify-content: center;
    } */



    .why-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-body {
        grid-template-columns: 1fr;
    }

    .about-feat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-diff-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .pl-body {
        grid-template-columns: 1fr;
    }

    .lj-timeline-desktop {
        display: none;
    }

    .lj-steps-mobile {
        display: block;
    }

    .learning-journey {
        padding: 48px 0;
    }

    .lj-title {
        font-size: 30px;
    }

    .lj-desc {
        font-size: 14px;
        padding: 0 8px;
    }

    /* Hide the underline+dot, replace with progress bar dots */
    .lj-underline-wrap {
        display: none;
    }

    .lj-progress-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-bottom: 24px;
    }

    .lj-progress-dot {
        height: 4px;
        border-radius: 4px;
        background: var(--border);
    }

    .lj-progress-dot.active {
        background: var(--blue);
        width: 32px;
    }

    .lj-progress-dot:not(.active) {
        width: 16px;
    }


    /* Step card */
    .lj-mobile-step {
        display: flex;
        align-items: center;
        gap: 14px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 16px;
        margin-bottom: 14px;
        position: relative;
    }

    .lj-ms-left {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lj-ms-line {
        display: none;
    }

    .lj-ms-icon {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
        position: relative;
    }

    .lj-ms-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .lj-ms-blue {
        background: var(--blue);
    }

    .lj-ms-sky-blue {
        background: var(--sky-blue);
    }

    .lj-ms-green {
        background: var(--green);
    }

    .lj-ms-orange {
        background: var(--orange);
    }

    .lj-ms-purple {
        background: var(--purple);
    }

    .lj-ms-navy {
        background: var(--navy);
    }

    /* Number badge floating on top-right of icon circle */
    .lj-ms-num {
        position: absolute;
        top: -6px;
        right: -6px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        color: var(--white);
        font-size: 11px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--white);
        background: var(--blue);
    }

    .lj-ms-num.lj-snum-green {
        background: var(--green);
    }

    .lj-ms-num.lj-snum-orange {
        background: var(--orange);
    }

    .lj-ms-num.lj-snum-purple {
        background: var(--purple);
    }

    .lj-ms-num.lj-snum-navy {
        background: var(--navy);
    }

    .lj-ms-num.lj-snum-sky-blue {
        background: var(--sky-blue);
    }


    .lj-ms-body {
        flex: 1;
        border: none;
        padding: 0;
        min-width: 0;
    }

    .lj-ms-body h4 {
        font-size: 15px;
        font-weight: 800;
        color: var(--navy);
        margin: 0 0 6px;
    }

    .lj-ms-body p {
        font-size: 13px;
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .lj-mobile-step .lj-card-tag {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* Arrow chevron on the right */
    .lj-ms-arrow {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        color: #C4CDD9;
    }

    /* Dark banner — stack vertically */
    .lj-dark-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 24px;
    }

    .lj-banner-items {
        flex-direction: column;
        gap: 18px;
        width: 100%;
    }

    .lj-banner-item {
        min-width: 100%;
    }

    /* .lj-dark-banner {
        flex-direction: column;
        gap: 24px;
        padding: 28px 32px;
    } */

    .testi-agg-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .testi-agg-divider {
        display: none;
    }

    .cn-bottom-actions {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nav-links {
        gap: 18px;
    }
}

@media (max-width: 960px) {
    .why-stats-row {
        gap: 2px;
        padding: 15px 10px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .why-stat,
    .why-stat.mob {
        display: flex;
        flex-direction: column;
        text-align: center;
        /* width: 33.33%; */
        border: none;
        /* flex: 0 0 33.33%; */
    }
}

@media(max-width: 900px) {
    .ais-item {
        flex-direction: column;
        text-align: center;
    }
}

/* @media (max-width: 860px) {
    
} */

@media (max-width: 768px) {
    .container {
        padding: 0 5px;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-inner {
        flex-direction: column;
        padding: 28px 0 0;
        gap: 24px;
    }

    .hero-left {
        flex: none;
        width: 100%;
    }

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

    .hero-right {
        width: 100%;
    }

    .hero-float {
        display: none;
    }

    /* .hero-stats-inner {
        gap: 0;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 16px;
    } */

    .hero-stats-inner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        overflow: visible;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        padding: 8px 16px;
        flex-shrink: 0;
        flex-direction: column;
        align-items: center;
    }

    .hero-stat-div {
        align-items: center;
        text-align: center;
    }

    .programs {
        padding: 48px 0;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .programs-header {
        flex-direction: column;
    }

    .programs-title {
        font-size: 32px;
    }

    .prog-card-left {
        flex: 0 0 120px;
    }

    .programs-header-right {
        display: none;
    }

    .programs-header-left {
        flex: 1;
        text-align: center;
        width: 100%;
    }

    .programs-desc {
        margin: 0 auto;
    }



    .why-scit {
        padding: 48px 0;
    }

    .why-title {
        font-size: 36px;
    }

    .why-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* .why-stats-row {
        overflow-x: auto;
        gap: 16px;
        padding: 16px 20px;
        justify-content: flex-start;
    } */

    .wstat-num {
        font-size: 14px;
    }

    .why-stat {
        flex-shrink: 0;
    }

    .learning-journey {
        padding: 48px 0;
    }

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

    .lj-dark-banner {
        padding: 24px 20px;
    }

    .lj-banner-items {
        gap: 16px;
    }

    .about-new {
        padding: 48px 0;
    }

    .about-top-row {
        flex-direction: column;
        gap: 24px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-diff-list {
        grid-template-columns: 1fr;
    }

    .placement {
        padding: 48px 0;
    }

    .pl-title {
        font-size: 36px;
    }

    .pl-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pl-mini-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .pl-partners-logos {
        gap: 12px;
    }

    .pl-partner-logo {
        width: 100px;
        padding: 4px 16px;
    }

    .testimonials {
        padding: 48px 0;
    }

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

    .testi-cards-track {
        overflow: hidden;
    }

    .testi-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .testi-cta-qr {
        display: none;
    }

    .contact-new {
        padding: 48px 0;
    }

    .cn-title {
        font-size: 32px;
    }

    .cn-body {
        grid-template-columns: 1fr;
    }

    .cn-form-row {
        grid-template-columns: 1fr;
    }

    .cn-bottom-actions {
        grid-template-columns: 1fr 1fr;
    }

    .programs-cta {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .programs-cta-left {
        flex-direction: column;
    }

    .pl-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-carousel-item {
        /* flex: 0 0 75%; */
        flex: 0 0 100%;
        box-sizing: border-box;
    }

    .about-impact-stats .ais-item:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width:575px) {

    .programs-title,
    .why-title,
    .lj-title,
    .about-title,
    .pl-title,
    .testi-title,
    .cn-title {
        font-size: 28px;
    }

    .prog-info,
    .programs-desc,
    .why-subtitle,
    .about-desc,
    .pl-desc,
    .testi-desc,
    .cn-desc {
        font-size: 14px;
    }

    .about-body-right {
        background: none;
        flex-direction: row;
        gap: 10px;
        padding: 0 5px;
    }

    .about-purpose-card,
    .about-vision-card {
        padding: 0;
    }

    .why-eyebrow-text,
    .about-eyebrow,
    .pl-eyebrow {
        font-size: 10px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }

    .why-cards-grid {
        grid-template-columns: 1fr;
    }

    .pl-mini-stats {
        grid-template-columns: 1fr 1fr;
    }

    .about-feat-grid {
        grid-template-columns: 1fr;
    }

    .about-impact-stats {
        grid-template-columns: 1fr 1fr;
    }

    .cn-bottom-actions {
        grid-template-columns: 1fr;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .prog-card {
        flex-direction: column;
    }

    .prog-card-left {
        flex: none;
        min-height: 100px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 16px;
    }

    .prog-card-m-name {
        font-size: 12px;
    }

    .prog-card-m-info {
        font-size: 10px;
    }

    .prog-card-m-title-wrap .prog-popular {
        font-size: 8px;
        font-weight: 600;
    }

    .prog-tag {
        font-size: 9px;
    }

    .prog-card-m-meta .prog-meta {
        font-size: 15px 10px;
    }

    .pl-proc-desc {
        display: none;
    }

    .testi-slider-wrap {
        gap: 5px;
    }

    .testi-card {
        padding: 10px;
    }

    .testi-nav {
        /* position: absolute; */
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

}




@media (max-width: 460px) {
    .pl-body-title {
        font-size: 18px;
    }

    .pl-body-desc {
        font-size: 12px;
    }
}

@media(max-width: 400px) {

    .pl-proc-title {
        font-size: 11px;
    }

    .pl-proc-node {
        width: 40px;
        height: 40px;
    }

    .pl-stats-grid {
        margin-bottom: 25px;
        gap: 2px;
    }

    .pl-stat-num {
        font-size: 24px;
    }

    .pl-stat-card {
        padding: 10px 10px;
    }

    .about-body-right {
        background: none;
        flex-direction: column;
    }

    .about-purpose-card,
    .about-vision-card {
        width: 100%;
    }
}




.programs-grid .prog-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}