/* ============================================================
   mobile.css — CareerPluz Charitable Trust
   Responsive stylesheet — mirrors every component in style.css
   Breakpoints:
     XL  : max-width 1199px  (large laptops)
     LG  : max-width 991px   (tablets / small laptops)
     MD  : max-width 767px   (large mobile / landscape)
     SM  : max-width 575px   (standard mobile portrait)
     XS  : max-width 380px   (small phones: SE, Galaxy A)
============================================================ */


/* ============================================================
   XL — 1199px  (large laptops, gentle size reduction)
============================================================ */
@media (max-width: 1199px) {

    /* ── Container ── */
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    /* ── Typography ── */
    h2.title {
        font-size: 42px;
    }

    h1.breadcrumb-title {
        font-size: 48px;
    }

    /* ── Top Header ── */
    .top-left,
    .top-right {
        gap: 16px;
    }

    .top-left a,
    .top-right a {
        font-size: 13px;
    }

    /* ── Navbar ── */
    .navbar-brand img {
        width: 130px;
        height: 70px;
    }

    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 8px 6px !important;
    }

    .navbar-nav {
        gap: 4px;
    }

    /* ── Mega Menu ── */
    .mega-menu {
        width: 720px;
        padding: 24px;
    }

    /* ── Hero ── */
    .banner-title {
        font-size: 54px;
    }

    .hero-section .banner-description {
        font-size: 17px;
    }

    /* ── Section ── */
    section {
        padding: 55px 0;
    }

    /* ── Footer ── */
    .footer-top {
        padding: 70px 0 50px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-cta-wrap h3 {
        font-size: 24px;
    }

    /* ── Theme Button ── */
    .theme-btn {
        font-size: 14px;
    }

    /* ── Stats / Counter numbers ── */
    .big-title {
        font-size: 100px;
    }

    /* ── Program Grid ── */
    .prog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ── Volunteer CTA ── */
    .volunteer-cta-wrap {
        padding: 70px 50px;
    }

    .cta-title {
        font-size: 44px;
    }

}


/* ============================================================
   LG — 991px  (tablets: collapsed nav, stacked columns)
============================================================ */
@media (max-width: 991px) {

    /* ── Global ── */
    section {
        padding: 50px 0;
    }

    h2.title {
        font-size: 34px;
        letter-spacing: 0.5px;
    }

    h5.sub-title {
        font-size: 13px;
        letter-spacing: 3px;
    }

    section p {
        font-size: 14px;
        line-height: 1.8;
    }

    /* ── Top Header (hide on tablet+) ── */
    .top-header {
        display: none;
    }

    /* ── Navbar ── */
    .main-navbar {
        padding: 6px 0;
    }

    .navbar-brand img {
        width: 120px;
        height: 64px;
    }

    .navbar-toggler {
        border: none;
        font-size: 22px;
        color: var(--primary-color);
        padding: 6px 10px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .navbar-collapse {
        background: #fff;
        padding: 10px 0 20px;
        border-top: 1px solid var(--border-color);
        margin-top: 8px;
    }

    ul.navbar-nav {
        padding: 0 16px;
        gap: 0 !important;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid #f0f3f8;
        position: static;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 12px 6px !important;
        color: var(--primary-color);
    }

    /* ── Dropdown (mobile style) ── */
    .navbar-nav .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: #f7f9fc;
        padding: 6px 10px;
        display: none;
    }

    .navbar-nav .dropdown-menu.show {
        display: block;
    }

    .navbar-nav .dropdown:hover>.dropdown-menu {
        top: auto;
        transform: none;
    }

    .dropdown-item {
        padding: 9px 12px;
        font-size: 13px;
    }

    /* ── Mega Menu (mobile) ── */
    .mega-menu {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        padding: 12px;
    }

    .navbar-nav .mega-dropdown:hover .mega-menu {
        transform: none !important;
    }

    .mega-menu h6 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .mega-menu a {
        padding: 7px 10px;
        font-size: 13px;
        border-bottom: 1px solid #eef1f6;
        margin-bottom: 0;
    }

    /* ── Nav Right ── */
    .nav-right {
        padding: 12px 16px 0;
    }

    /* ── Breadcrumb ── */
    section.breadcrumb-sec {
        padding: 80px 0 40px;
    }

    h1.breadcrumb-title {
        font-size: 36px;
        font-weight: 400;
    }

    ol.breadcrumb-list {
        flex-wrap: wrap;
        gap: 6px;
    }

    .breadcrumb-items {
        font-size: 14px;
    }

    /* ── Hero Banner ── */
    .hero-section {
        min-height: 650px;
    }

    .banner-title {
        font-size: 44px;
    }

    .hero-section .banner-description {
        font-size: 16px;
        max-width: 100%;
    }

    .banner-subtitle {
        font-size: 13px;
        padding: 10px 18px;
    }

    .banner-btn-group {
        gap: 12px;
    }

    /* ── About Section ── */
    .sec-img {
        margin-bottom: 30px;
    }

    .experience-card {
        width: 100%;
    }

    .btn-sec {
        gap: 20px;
        flex-wrap: wrap;
    }

    /* ── Program Grid (4→2 columns) ── */
    .prog-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
    }

    .prog-panel {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .prog-panel:last-child {
        border-bottom: none;
    }

    /* ── Achievements / Cards ── */
    .achievement-card,
    .capacity-card,
    .theme-card {
        padding: 24px;
    }

    /* ── Volunteer CTA ── */
    .volunteer-cta-wrap {
        padding: 60px 36px;
    }

    .cta-title {
        font-size: 38px;
    }

    .call-support-box {
        margin-top: 40px;
    }

    /* ── Contact Section ── */
    .contact-info-card {
        padding: 22px;
    }

    .contact-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 24px;
    }

    .contact-info-card .contact-text {
        font-size: 18px;
    }

    /* ── Footer ── */
    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-logo img {
        max-width: 180px;
        width: 180px;
        height: 50px;
    }

    .footer-about {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .footer-contact-list {
        gap: 14px;
    }

    .footer-cta-wrap {
        padding: 28px 24px;
        margin-top: 30px;
    }

    .footer-cta-wrap h3 {
        font-size: 22px;
    }

    .footer-bottom-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .copyright-text,
    .developed-text {
        font-size: 13px;
    }

    /* ── Big decorative title ── */
    .big-title {
        font-size: 80px;
    }

    /* ── Theme Button ── */
    .theme-btn {
        font-size: 14px;
        padding: 4px 4px 4px 18px;
    }

    .theme-btn::after {
        width: 36px;
        height: 36px;
    }

    /* ── Projects Grid ── */
    .projects-grid {
        grid-template-columns: 1fr;
        margin-top: 36px;
    }

    /* ── Core Values Grid ── */
    .cv-values-grid {
        grid-template-columns: 1fr;
    }

    .cv-value-card--wide {
        grid-column: 1;
    }

    .cv-community-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cv-closing-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* ── Impact Timeline ── */
    .impact-timeline {
        flex-direction: column;
        gap: 36px;
        margin-top: 50px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-step {
        text-align: left;
        padding-left: 56px;
    }

    .timeline-dot {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }

    /* ── Methodology ── */
    .methodology-split-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .methodology-header {
        padding: 24px 28px;
    }

    .methodology-body {
        padding: 28px;
    }

    /* ── GI / Get Involved ── */
    .gi-partner-card {
        padding: 28px 24px;
    }

    /* ── pp / Privacy-Terms ── */
    .pp-meta-strip {
        flex-direction: column;
    }

    .pp-meta-divider {
        width: 80%;
        height: 1px;
    }

    .pp-contact-strip {
        grid-template-columns: 1fr;
    }

    /* ── tc / Terms ── */
    .tc-jurisdiction-strip {
        flex-direction: column;
    }

    /* ── VD / Volunteer roles ── */
    .vd-role-num {
        font-size: 36px;
    }

    .vd-role-row {
        padding: 32px 0;
    }

    /* ── Act / Activities ── */
    .act-num {
        font-size: 46px;
    }

    .act-label {
        gap: 14px;
    }

    .text-center .theme-btn {
        margin: 0 auto;
    }
}


/* ============================================================
   MD — 767px  (large phones / landscape — major layout shifts)
============================================================ */
@media (max-width: 767px) {

    /* ── Global ── */
    section {
        padding: 44px 0;
    }

    h2.title {
        font-size: 28px;
        line-height: 1.25;
        letter-spacing: 0.3px;
        margin-bottom: 18px;
    }

    h5.sub-title {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    h3.title {
        font-size: 17px;
    }

    section p {
        font-size: 14px;
        line-height: 1.75;
    }

    /* ── Navbar ── */
    .navbar-brand img {
        width: 110px;
        height: 58px;
    }

    /* ── Breadcrumb ── */
    section.breadcrumb-sec {
        padding: 70px 0 35px;
    }

    h1.breadcrumb-title {
        font-size: 30px;
    }

    .breadcrumb-items {
        font-size: 13px;
    }

    /* ── Hero Banner ── */
    .hero-section {
        min-height: 560px;
    }

    .hero-section::before {
        background: linear-gradient(180deg, rgba(37, 43, 114, .8) 0%, rgba(37, 43, 114, .5) 60%, rgba(37, 43, 114, .2) 100%);
    }

    .banner-title {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .banner-subtitle {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 18px;
    }

    .hero-section .banner-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .banner-btn-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* ── Theme Buttons ── */
    .theme-btn {
        font-size: 13px;
        padding: 4px 4px 4px 16px;
        width: fit-content;
    }

    .theme-btn::after {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .btn-sec {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* ── About / Sec-img ── */
    .sec-img {
        border-radius: 20px;
    }

    .sec-img img {
        border-radius: 20px;
    }

    .abt-highlights {
        gap: 10px;
        margin-top: 20px;
    }

    .highlight-item {
        font-size: 13px;
        padding: 10px 14px;
    }

    .experience-card {
        width: 100%;
        flex-direction: row;
    }

    .experience-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 26px;
    }

    .experience-content h4 {
        font-size: 20px;
    }

    /* ── Program Grid (→1 column) ── */
    .prog-grid {
        grid-template-columns: 1fr;
    }

    .prog-panel {
        padding: 26px 20px 22px;
    }

    /* ── Achievements ── */
    .achievement-card,
    .capacity-card,
    .theme-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .achievement-icon,
    .theme-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .capacity-card {
        padding-left: 76px;
    }

    .capacity-number {
        font-size: 30px;
        left: 20px;
        top: 22px;
    }

    /* ── Volunteer CTA ── */
    .volunteer-cta-wrap {
        padding: 44px 24px;
    }

    .cta-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .call-wave {
        width: 90px;
        height: 90px;
        font-size: 28px;
    }

    .call-support-box a {
        font-size: 24px;
    }

    /* ── Contact ── */
    .contact-highlights {
        gap: 10px;
        margin-top: 24px;
    }

    .contact-highlight {
        font-size: 13px;
        padding: 10px 14px;
    }

    .contact-info-card {
        flex-direction: column;
        padding: 20px;
        gap: 14px;
        border-radius: 18px;
    }

    .contact-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 22px;
        border-radius: 14px;
    }

    .contact-info-card .contact-text {
        font-size: 16px;
    }

    /* ── Footer ── */
    .footer-top {
        padding: 44px 0 32px;
    }

    .footer-logo img {
        max-width: 160px;
        width: 160px;
        height: 44px;
        margin-bottom: 20px;
    }

    .footer-about {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-cta-wrap {
        border-radius: 18px;
        padding: 26px 20px;
    }

    .footer-cta-wrap h3 {
        font-size: 20px;
    }

    .footer-bottom {
        padding: 14px 0;
    }

    .footer-bottom-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-links span {
        display: none;
    }

    .footer-bottom-links {
        gap: 8px;
    }

    .footer-bottom-links a {
        font-size: 13px;
    }

    .copyright-text,
    .developed-text {
        font-size: 12px;
    }

    /* ── Big decorative title ── */
    .big-title {
        font-size: 56px;
    }

    /* ── CTA Section ── */
    section.cta-section {
        padding: 60px 0;
    }

    img.cta-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    /* ── Vision / Mission Cards ── */
    .vm-card {
        padding: 28px 22px;
        gap: 16px;
    }

    .vm-card-heading {
        font-size: 26px;
    }

    .vm-pillar {
        gap: 14px;
    }

    .vm-pillar-icon {
        display: none;
    }

    .vm-pillar-title {
        font-size: 17px;
    }

    .vm-cta-wrap {
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* ── Core Values ── */
    .cv-value-head {
        padding: 22px 20px 18px;
        gap: 14px;
    }

    .cv-value-body {
        padding: 18px 20px 22px;
    }

    .cv-value-title {
        font-size: 20px;
    }

    /* ── Methodology ── */
    .methodology-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 22px 22px;
    }

    .methodology-title {
        font-size: 20px;
    }

    .methodology-body {
        padding: 22px;
    }

    .methodology-icon-box {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    /* ── Theme Intro Cards ── */
    .theme-intro-card {
        padding: 24px 18px 20px;
    }

    .theme-intro-card-title {
        font-size: 18px;
    }

    /* ── VD / Volunteer Roles ── */
    .vd-role-icon-title {
        flex-direction: column;
        gap: 10px;
    }

    .vd-role-title {
        font-size: 17px;
    }

    .vd-role-num {
        font-size: 30px;
    }

    /* ── Activities ── */
    .act-num {
        font-size: 36px;
    }

    .act-label {
        flex-direction: column;
        gap: 8px;
    }

    .act-impact-strip {
        flex-direction: column;
        gap: 10px;
        padding: 16px 18px;
    }

    /* ── GI / Get Involved ── */
    .gi-partner-card {
        padding: 24px 20px;
    }

    .gi-way-pills {
        gap: 8px;
    }

    .gi-way-pill {
        font-size: 12px;
        padding: 8px 16px;
    }

    /* ── PP / Privacy ── */
    .pp-article-title {
        font-size: 17px;
    }

    .pp-contact-strip {
        grid-template-columns: 1fr;
    }

    /* ── TC / Terms ── */
    .tc-jurisdiction-strip {
        flex-direction: column;
    }

    /* ── Empanelment ── */
    .empanelment-card {
        padding: 32px 24px;
    }

    /* ── Projects ── */
    .project-card-head {
        padding: 22px 22px 16px;
        flex-direction: column;
        gap: 14px;
    }

    .project-title {
        font-size: 19px;
    }

    .project-card-body {
        padding: 22px;
    }

    /* ── Proj-cards (index page) ── */
    .proj-body {
        padding: 22px 18px 18px;
    }

}


/* ============================================================
   SM — 575px  (standard mobile portrait — most phones)
============================================================ */
@media (max-width: 575px) {

    /* ── Global ── */
    section {
        padding: 38px 0;
    }

    .container,
    .container-sm {
        padding-left: 16px;
        padding-right: 16px;
    }

    h2.title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    h5.sub-title {
        font-size: 11px;
        letter-spacing: 2px;
    }

    h3.title {
        font-size: 16px;
    }

    section p {
        font-size: 13px;
        line-height: 1.75;
    }

    /* ── Navbar ── */
    .navbar-brand img {
        width: 100px;
        height: 52px;
    }

    .navbar-toggler {
        font-size: 20px;
    }

    /* ── Breadcrumb ── */
    section.breadcrumb-sec {
        padding: 65px 0 30px;
    }

    h1.breadcrumb-title {
        font-size: 22px;
        font-weight: 300;
    }

    .breadcrumb-items {
        font-size: 12px;
    }

    /* ── Hero Banner ── */
    .hero-section {
        min-height: 520px;
        align-items: flex-end;
        padding-bottom: 50px;
    }

    .hero-content {
        padding-top: 0;
    }

    .banner-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .banner-subtitle {
        font-size: 11px;
        padding: 7px 14px;
        margin-bottom: 14px;
    }

    .hero-section .banner-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .banner-btn-group {
        flex-direction: column;
        gap: 10px;
    }

    .theme-btn {
        font-size: 13px;
        padding: 4px 4px 4px 14px;
        width: 100%;
        max-width: 260px;
    }

    .theme-btn::after {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .btn-sec {
        gap: 10px;
    }

    /* ── About / Sec-img ── */
    .sec-img {
        border-radius: 16px;
        margin-bottom: 24px;
    }

    .sec-img img {
        border-radius: 16px;
    }

    .abt-highlights {
        gap: 8px;
        margin-top: 16px;
    }

    .highlight-item {
        font-size: 12px;
        padding: 8px 12px;
    }

    .highlight-item i {
        font-size: 13px;
    }

    .experience-card {
        padding: 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .experience-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 22px;
        border-radius: 8px;
    }

    .experience-content h4 {
        font-size: 18px;
    }

    /* ── Programs ── */
    .prog-grid {
        grid-template-columns: 1fr;
        border-radius: 12px;
        margin-top: 24px;
    }

    .prog-panel {
        padding: 22px 16px 18px;
    }

    .prog-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
        border-radius: 10px;
    }

    .prog-ghost-letter {
        font-size: 40px;
    }

    /* ── Achievement / Theme Cards ── */
    .achievement-card,
    .capacity-card,
    .theme-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .achievement-icon,
    .theme-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        border-radius: 12px;
        margin-bottom: 14px;
    }

    .capacity-card {
        padding-left: 0;
        padding-top: 54px;
    }

    .capacity-number {
        font-size: 28px;
        left: 16px;
        top: 16px;
    }

    /* ── Volunteer CTA ── */
    .volunteer-cta-wrap {
        padding: 36px 20px;
    }

    .cta-title {
        font-size: 26px;
    }

    .volunteer-content p {
        max-width: 100%;
    }

    .call-wave,
    .call-wave .wave {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .call-wave .wave {
        top: -20px;
        left: 0px;
    }

    .call-support-box a {
        font-size: 20px;
    }

    /* ── Contact ── */
    .contact-info-card {
        padding: 18px 16px;
        gap: 12px;
    }

    .contact-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 20px;
        border-radius: 12px;
    }

    .contact-info-card .contact-text {
        font-size: 15px;
    }

    .contact-info-card span {
        font-size: 13px;
    }

    /* ── Footer ── */
    .footer-top {
        padding: 38px 0 28px;
    }

    .footer-logo img {
        max-width: 140px;
        width: 140px;
        height: 38px;
    }

    .footer-about {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-contact-item {
        gap: 12px;
    }

    .footer-contact-item span,
    .footer-contact-item a {
        font-size: 13px;
    }

    .footer-cta-wrap {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .footer-cta-wrap h3 {
        font-size: 18px;
    }

    .footer-cta-wrap p {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    .copyright-text,
    .developed-text,
    .footer-bottom-links a {
        font-size: 12px;
    }

    /* ── Big decorative title ── */
    .big-title {
        font-size: 42px;
    }

    /* ── Section Divider ── */
    .section-divider {
        width: 80%;
    }

    /* ── CTA Section ── */
    section.cta-section {
        padding: 50px 0;
    }

    img.cta-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    /* ── Vision / Mission ── */
    .vm-card {
        padding: 22px 18px;
        gap: 14px;
        border-radius: 14px;
    }

    .vm-card-heading {
        font-size: 22px;
    }

    .vm-card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
        border-radius: 12px;
    }

    .vm-pillar-num {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 12px;
    }

    .vm-pillar-title {
        font-size: 16px;
    }

    .vm-mission-point {
        padding: 10px 12px;
    }

    .vm-mission-point span {
        font-size: 13px;
    }

    /* ── Core Values ── */
    .cv-value-head {
        padding: 18px 16px 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cv-value-body {
        padding: 16px 16px 20px;
    }

    .cv-value-title {
        font-size: 18px;
    }

    .cv-value-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
        border-radius: 12px;
    }

    /* ── Projects (full-page) ── */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 28px;
    }

    .project-card-head {
        padding: 18px 18px 14px;
    }

    .project-title {
        font-size: 17px;
    }

    .project-card-body {
        padding: 18px;
    }

    .project-badge {
        font-size: 12px;
    }

    /* ── Proj-cards (index page) ── */
    .proj-img-wrap img {
        height: 200px;
    }

    .proj-body {
        padding: 18px 14px 14px;
    }

    /* ── Methodology ── */
    .methodology-header {
        padding: 18px 18px;
    }

    .methodology-body {
        padding: 18px;
    }

    .methodology-title {
        font-size: 18px;
    }

    .methodology-icon-box {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 12px;
    }

    /* ── Theme Intro Cards ── */
    .theme-intro-card {
        padding: 20px 16px 18px;
        border-radius: 12px;
    }

    .theme-intro-card-title {
        font-size: 16px;
    }

    .theme-intro-card-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 18px;
        border-radius: 12px;
    }

    /* ── VD / Volunteer Roles ── */
    .vd-role-num {
        font-size: 26px;
    }

    .vd-role-title {
        font-size: 16px;
    }

    .vd-role-row {
        padding: 24px 0;
    }

    /* ── Activities ── */
    .act-num {
        font-size: 30px;
    }

    .act-impact-strip {
        padding: 14px 16px;
    }

    /* ── GI / Get Involved ── */
    .gi-partner-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .gi-way-pill {
        font-size: 12px;
        padding: 7px 14px;
    }

    .gi-way-pills {
        margin-top: 20px;
        gap: 8px;
    }

    /* ── PP / Privacy & Terms ── */
    .pp-article-title {
        font-size: 15px;
    }

    .pp-article-head {
        gap: 12px;
    }

    .pp-article-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 16px;
        border-radius: 10px;
    }

    .pp-meta-item {
        padding: 16px 20px;
    }

    .pp-right-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .pp-security-badge {
        padding: 14px 8px;
    }

    .pp-security-badge span {
        font-size: 11px;
    }

    /* ── TC Jurisdiction ── */
    .tc-ip-item {
        font-size: 12px;
        padding: 7px 14px;
    }

    /* ── Empanelment ── */
    .empanelment-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    /* ── Prog pillar letter ── */
    span.prog-pillar-letter {
        font-size: 50px;
    }

}


/* ============================================================
   XS — 380px  (small phones: iPhone SE, Galaxy A series)
============================================================ */
@media (max-width: 380px) {

    /* ── Global ── */
    section {
        padding: 32px 0;
    }

    .container,
    .container-sm {
        padding-left: 12px;
        padding-right: 12px;
    }

    h2.title {
        font-size: 21px;
        line-height: 1.2;
    }

    h5.sub-title {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    section p {
        font-size: 13px;
    }

    /* ── Navbar ── */
    .navbar-brand img {
        width: 88px;
        height: 48px;
    }

    .navbar-toggler {
        font-size: 18px;
        padding: 5px 8px;
    }

    /* ── Breadcrumb ── */
    section.breadcrumb-sec {
        padding: 60px 0 26px;
    }

    h1.breadcrumb-title {
        font-size: 18px;
    }

    .breadcrumb-items {
        font-size: 11px;
    }

    /* ── Hero Banner ── */
    .hero-section {
        min-height: 480px;
    }

    .banner-title {
        font-size: 24px;
    }

    .hero-section .banner-description {
        font-size: 13px;
    }

    .theme-btn {
        font-size: 12px;
        max-width: 230px;
    }

    .theme-btn::after {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    /* ── About ── */
    .highlight-item {
        font-size: 11px;
        padding: 7px 10px;
    }

    .experience-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
    }

    .experience-content h4 {
        font-size: 16px;
    }

    /* ── Achievement / Theme Cards ── */
    .achievement-card,
    .capacity-card,
    .theme-card {
        padding: 16px 14px;
        border-radius: 14px;
    }

    .achievement-icon,
    .theme-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 10px;
    }

    /* ── Volunteer CTA ── */
    .cta-title {
        font-size: 22px;
    }

    .call-wave {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }

    .call-support-box a {
        font-size: 18px;
    }

    /* ── Footer ── */
    .footer-logo img {
        max-width: 120px;
        width: 120px;
        height: 34px;
    }

    .footer-title {
        font-size: 14px;
    }

    .footer-links li a,
    .footer-about {
        font-size: 12px;
    }

    .footer-contact-item span,
    .footer-contact-item a {
        font-size: 12px;
    }

    .footer-cta-wrap h3 {
        font-size: 16px;
    }

    .footer-cta-wrap p {
        font-size: 12px;
    }

    .copyright-text,
    .developed-text,
    .footer-bottom-links a {
        font-size: 11px;
    }

    /* ── Big decorative title ── */
    .big-title {
        font-size: 32px;
    }

    /* ── Vision / Mission ── */
    .vm-card-heading {
        font-size: 20px;
    }

    .vm-card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
    }

    .vm-pillar-num {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 11px;
    }

    /* ── Core Values ── */
    .cv-value-title {
        font-size: 16px;
    }

    /* ── Projects ── */
    .proj-img-wrap img {
        height: 180px;
    }

    .project-title {
        font-size: 15px;
    }

    /* ── Theme Intro Cards ── */
    .theme-intro-card-title {
        font-size: 15px;
    }

    /* ── GI / Get Involved ── */
    .gi-way-pill {
        font-size: 11px;
        padding: 6px 12px;
    }

    /* ── pp / Privacy ── */
    .pp-article-title {
        font-size: 14px;
    }

    .pp-article-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }

    /* ── Empanelment ── */
    .empanelment-card {
        padding: 20px 14px;
    }

    /* ── Methodology ── */
    .methodology-title {
        font-size: 16px;
    }

    .methodology-icon-box {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

}