
  :root {
    --green:       #1B6B2F;
    --green-mid:   #228B3B;
    --green-light: #E8F5EC;
    --green-dark:  #134D22;
    --yellow:      #F5C400;
    --yellow-light:#FFFBE6;
    --yellow-dark: #B38F00;
    --white:       #FFFFFF;
    --off-white:   #F7F8F6;
    --gray-light:  #EDEEEC;
    --gray:        #9DA89B;
    --gray-dark:   #3E4A3C;
    --text:        #1E2B1C;
    --text-muted:  #5C6B5A;
    --border:      #D8DDD6;
    --radius:      12px;
    --radius-lg:   20px;
    --shadow:      0 4px 24px rgba(27,107,47,0.10);
    --shadow-lg:   0 8px 48px rgba(27,107,47,0.15);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* ── TYPOGRAPHY ── */
  h1, h2, h3 { font-family: 'DM Serif Display', serif; line-height: 1.15; }
  h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
  h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
  h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
  p  { font-size: 1rem; color: #929592; }

  /* ── LAYOUT ── */
  .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
  section { padding: 100px 0; }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
    text-decoration: none; cursor: pointer; border: none;
    transition: all 0.25s ease; white-space: nowrap;
  }
  .btn-primary { background: var(--yellow); color: var(--green-dark); }
  .btn-primary:hover { background: #D4AB00; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,196,0,0.35); }
  .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.45); }
  .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
  .btn-green { background: var(--green); color: var(--white); }
  .btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
  .btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }


/* =========================
   MOBILE MENU BUTTON
   ========================= */

.nav-toggle {
    display: none;

    border: none;
    background: transparent;

    cursor: pointer;

    padding: 8px;

    color: var(--green-dark);
}

.nav-toggle span {
    display: block;

    width: 26px;
    height: 3px;

    margin: 5px 0;

    background: currentColor;

    border-radius: 3px;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 900px) {
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: #14821f;
}
.hero-eyebrow img {
    width: 20px;
    height: 20px;

    object-fit: contain;

    flex-shrink: 0;
}
   
}

  /* ── NAV ── */

.nav-enroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 20px;

    border-radius: 8px;

    background: #F5C400;
    color: #ffffff !important;

    font-weight: 800;

    text-decoration: none;

    transition: .2s ease;
}

.nav-enroll:hover {
    transform: translateY(-2px);
    background: #0f6618;
}

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(19,77,34,0.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-inner {
    max-width: 1160px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); }
  .nav-logo-icon {
    width: 40px; height: 40px; background: var(--yellow);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--green-dark); font-weight: 900;
  }
  .nav-logo-text { font-size: 0.95rem; font-weight: 600; line-height: 1.2; }
  .nav-logo-sub  { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-weight: 400; }
  .nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.75); text-decoration: none;
    font-size: 0.88rem; font-weight: 500; padding: 8px 14px; border-radius: 8px;
    transition: all 0.2s;
  }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; }
  .nav-toggle svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 2; }

/* ==========================================
   iTECH HEADER LOGO
   ========================================== */

.itech-logo {
    display: block;
    width: 75px;
    height: auto;
    object-fit: contain;
}

.hero-eyebrow {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 18px !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
}
.hero-eyebrow img {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  flex-shrink: 0 !important;
  display: block !important;
}
.hero-eyebrow span {
  color: #14821f !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  line-height: 1.2 !important;
  display: inline-block !important;
}
  /* =====================================================
   iTECH HERO - NEW DESIGN
   ===================================================== */

.itech-hero {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;

    min-height: 680px;
    padding: 70px 30px;

    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    gap: 40px;

    box-sizing: border-box;
}


/* =========================
   LEFT CONTENT
   ========================= */

.itech-hero-content {
    width: 100%;
    max-width: 560px;
}


/* Small label */

/*.hero-eyebrow {*/
/*    display: flex !important;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    margin-bottom: 18px;*/
/*    font-size: 13px;*/
/*    font-weight: 800;*/
/*    letter-spacing: 1.5px;*/
/*    color: #14821f;*/
/*    visibility: visible !important;*/
/*    opacity: 1 !important;*/
/*}*/
/*hero-eyebrow img {*/
/*    width: 24px;*/
/*    height: 24px;*/
    min-width: 24px;  /* Prevents image from shrinking in flexbox */
/*    min-height: 24px;*/
/*    object-fit: contain;*/
/*    flex-shrink: 0;*/
/*    display: block;*/
/*}*/
/*.hero-eyebrow span {*/
/*    display: inline-block;*/
/*    line-height: 1.2;*/
/*}*/

/* Main heading */

.itech-hero-content h1 {
    margin: 0 0 22px;

    font-size: clamp(48px, 5vw, 72px);
    line-height: 0.98;
    font-weight: 800;

    color: #151515;
}


/* Green part */

.itech-hero-content h1 span {
    color: #14821f;
}


/* Description */

.hero-lead {
    max-width: 520px;

    margin: 0 0 28px;

    font-size: 20px;
    line-height: 1.6;

    color: #555;
}


/* =========================
   100% ACHIEVEMENT
   ========================= */

.hero-achievement {
    display: flex;
    align-items: center;
    gap: 14px;

    width: fit-content;
    max-width: 100%;

    padding: 15px 20px;

    margin-top: 18px;

    background: #ffffff;

    border-left: 5px solid #14821f;
    border-radius: 10px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

    box-sizing: border-box;
}


/* Trophy */

.achievement-icon {
    flex-shrink: 0;

    font-size: 28px;
    line-height: 1;
}


/* Text container */

.hero-achievement-content {
    display: flex;
    flex-direction: column;
}


/* 100% PASSING RATE */

.hero-achievement .rate {
    margin: 0;

    font-size: 30px;
    line-height: 1.05;

    font-weight: 900;

    color: #14821f;
}


/* TRAINERS METHODOLOGY LEVEL I */

.hero-achievement .program {
    margin-top: 5px;

    font-size: 12px;
    line-height: 1.3;

    font-weight: 800;

    letter-spacing: 1px;

    color: #222;
}


/* Recent Competency Assessment */

.hero-achievement small {
    display: block;

    margin-top: 3px;

    font-size: 12px;
    line-height: 1.3;

    font-weight: 500;

    letter-spacing: 0;

    color: #777;
}


/* =========================
   MOBILE HERO ACHIEVEMENT
   ========================= */

@media (max-width: 768px) {
.hero-eyebrow {
        font-size: 11px !important;
        letter-spacing: 1px !important;
        gap: 8px !important;
        margin-bottom: 12px !important;
    }

    .hero-eyebrow img {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
    }
    .hero-eyebrow span {
    font-size: 11px !important;
    letter-spacing: 1px !important;
  }
        /* Trophy */
    .achievement-icon {
        flex-shrink: 0;

        font-size: 24px;
        line-height: 1;
    }

    /* 100% PASSING RATE */
    .hero-achievement .rate {
        font-size: clamp(22px, 7vw, 27px);

        line-height: 1.05;

        white-space: nowrap;
    }

    
}

/* =========================
   BUTTONS
   ========================= */

.itech-hero-buttons {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 38px;
}


.hero-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 155px;

    padding: 15px 25px;

    border-radius: 8px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}


/* Primary */

.hero-btn-primary {
    background: #F5C400;
    color: #fff;
}


.hero-btn-primary:hover {
    background: #0f6518;
    color: #fff;

    transform: translateY(-2px);
}


/* Secondary */

.hero-btn-secondary {
    background: #fff;

    color: #14821f;

    border: 2px solid #14821f;
}


.hero-btn-secondary:hover {
    background: #14821f;
    color: #fff;

    transform: translateY(-2px);
}


/* =========================
   RIGHT IMAGE
   ========================= */

.itech-hero-visual {
    width: 100%;

    height: 520px;

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.15);
}


.itech-hero-visual img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


   .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: #14821f;
}
.hero-eyebrow img {
    width: 20px;
    height: 20px;

    /*object-fit: contain;*/

    flex-shrink: 0;
}

@media (min-width: 701px) and (max-width: 900px) {
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: #14821f;
}
.hero-eyebrow img {
    width: 20px;
    height: 20px;

    object-fit: contain;

    flex-shrink: 0;
}
    .itech-hero {
        grid-template-columns: 1fr 1fr;

        gap: 25px;

        padding: 50px 25px;
    }

    .itech-hero-visual {
        height: 500px;
    }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: #14821f;
}
.hero-eyebrow img {
    width: 20px;
    height: 20px;

    object-fit: contain;

    flex-shrink: 0;
}
    .itech-hero {
        display: flex;
        flex-direction: column;

        min-height: auto;

        padding: 40px 20px;

        gap: 30px;
    }


    /* HERO CONTENT */

    .itech-hero-content {
        max-width: none;
        width: 100%;

        text-align: center;
    }


    /* HERO HEADLINE */

    .itech-hero-content h1 {
        font-size: clamp(38px, 11vw, 48px);
        line-height: 1.05;
    }


    .achievement-icon {
        flex-shrink: 0;

        font-size: 24px;
        line-height: 1;
    }


    /* =========================
       HERO BUTTONS
       ========================= */

    .itech-hero-buttons {
        justify-content: center;

        flex-direction: column;

        width: 100%;

        gap: 12px;
    }


    /* =========================
       HERO IMAGE
       ========================= */

    .itech-hero-visual {
        width: 100%;

        height: 380px;

        border-radius: 20px;
    }

}

/* =====================================================
   iTECH - OUR ACHIEVEMENTS
   ===================================================== */

.itech-achievements {
    padding: 50px 20px;
    background: #f7f8f7;
}

.itech-achievements-container {
    max-width: 1180px;
    margin: 0 auto;
}


/* HEADER */

.itech-achievements-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.itech-achievements-heading > span {
    display: block;
    margin-bottom: 12px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;

    color: #14821f;
}

.itech-achievements-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(38px, 5vw, 54px);
    line-height: 1.05;

    color: #181818;
}

.itech-achievements-heading h2 strong {
    display: block;
    color: #14821f;
}

.itech-achievements-heading p {
    margin: 0;

    font-size: 17px;
    line-height: 1.7;

    color: #666;
}


/* =====================================================
   MAIN GRID
   ===================================================== */

.itech-achievement-grid {
    display: grid;

    grid-template-columns: 1fr 1.35fr;

    gap: 25px;
}


/* =====================================================
   24+ CARD
   ===================================================== */

.itech-achievement-years {

    min-height: 390px;

    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-radius: 22px;

    background: #14821f;

    color: white;

    box-sizing: border-box;
}

.years-number {

    font-size: 100px;

    line-height: .9;

    font-weight: 900;

    letter-spacing: -5px;
}

.years-title {

    margin-top: 18px;

    font-size: 20px;

    line-height: 1.25;

    font-weight: 800;

    letter-spacing: 1px;
}

.itech-achievement-years p {

    max-width: 280px;

    margin: 18px 0 0;

    font-size: 15px;

    line-height: 1.6;

    opacity: .9;
}


/* =====================================================
   RIGHT SIDE
   ===================================================== */

.itech-achievement-right {

    display: flex;

    flex-direction: column;

    gap: 25px;
}


/* INDIVIDUAL ITEM */

.itech-achievement-item {

    flex: 1;

    min-height: 182px;

    padding: 30px;

    display: flex;

    align-items: center;

    gap: 25px;

    background: white;

    border-radius: 22px;

    border: 1px solid #e8e8e8;

    box-sizing: border-box;

    transition: .25s ease;
}

.itech-achievement-item:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.09);
}


/* PERCENT */

.achievement-percent {

    flex-shrink: 0;

    font-size: 55px;

    line-height: 1;

    font-weight: 900;

    color: #14821f;
}


/* INFORMATION */

.achievement-info h3 {

    margin: 0 0 8px;

    font-size: 20px;

    line-height: 1.25;

    color: #222;
}

.achievement-info p {

    margin: 0;

    font-size: 14px;

    line-height: 1.5;

    color: #777;
}


/* TM I */

.tm-achievement {

    background: #fffdf2;

    border: 2px solid #f0cf00;
}

.achievement-trophy {

    font-size: 30px;

    margin-right: -15px;
}

.tm-achievement .achievement-info strong {

    display: inline-block;

    margin-top: 12px;

    padding: 7px 12px;

    border-radius: 20px;

    background: #14821f;

    color: white;

    font-size: 11px;

    letter-spacing: .5px;
}



  
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
  .course-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.1); border-radius: 8px;
    padding: 6px 12px; font-size: 0.82rem; margin: 4px 4px 4px 0;
  }
  /*.hero-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.1em; }*/

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0;
  }
  .trust-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
  .trust-icon {
    width: 36px; height: 36px; background: var(--green-light);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
  }
  .trust-icon svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; }

  /* ── SECTION SHARED ── */
  .section-tag {
    display: inline-block; background: var(--green-light); color: var(--green);
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
  }
  .section-header { max-width: 560px; }
  .section-header h2 { margin-bottom: 16px; }
  .section-header p { font-size: 1.05rem; }

  /* ── WHY ── */
  .why { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 60px; }
  .why-card {
    background: var(--off-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 28px;
    transition: all 0.3s ease; position: relative; overflow: hidden;
  }
  .why-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
  }
  .why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); background: white; }
  .why-card:hover::before { transform: scaleX(1); }
  .why-icon {
    width: 52px; height: 52px; background: var(--green);
    border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  }
  .why-icon svg { width: 24px; height: 24px; stroke: var(--yellow); fill: none; stroke-width: 1.8; }
  .why-card h3 { color: var(--text); margin-bottom: 10px; }

  /* ── COURSES ── */
  .courses { background: var(--green-dark); position: relative; overflow: hidden; }
  .courses::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 90% 100%, rgba(245,196,0,0.07) 0%, transparent 60%);
  }
  .courses .section-tag { background: rgba(245,196,0,0.15); color: var(--yellow); }
  .courses .section-header h2 { color: var(--white); }
  .courses .section-header p { color: rgba(255,255,255,0.55); }
  .courses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; position: relative; z-index: 1; }
  .course-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 32px 26px;
    transition: all 0.3s ease; display: flex; flex-direction: column;
  }
  .course-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(245,196,0,0.45); transform: translateY(-4px); }
  .course-card.featured { border-color: rgba(245,196,0,0.55); background: rgba(245,196,0,0.06); }
  .course-badge { display: inline-flex; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 16px; }
  .course-badge.free       { background: rgba(76,175,80,0.2);  color: #81C784; }
  .course-badge.paid       { background: rgba(245,196,0,0.2);  color: var(--yellow); }
  .course-badge.scholarship{ background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
  .course-icon {
    width: 48px; height: 48px; background: rgba(255,255,255,0.08);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  }
  .course-icon svg { width: 22px; height: 22px; stroke: var(--yellow); fill: none; stroke-width: 1.8; }
  .course-card h3 { color: white; margin-bottom: 10px; flex: 1; }
  .course-card p  { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 20px; }
  .course-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
  .course-price { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--yellow); }
  .course-price .original { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.3); text-decoration: line-through; margin-right: 6px; }
  .course-link { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.45); font-size: 0.82rem; text-decoration: none; transition: color 0.2s; }
  .course-link:hover { color: var(--yellow); }
  .course-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

  /* ── STATS BANNER ── */
  .stats-section { background: var(--green); padding: 80px 0; }
  .stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
  .stat-num   { font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--white); line-height: 1; }
  .stat-label { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 6px; }

  /* ── STORIES ── */
  .stories { background: var(--off-white); }
  .stories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 56px; }
  .story-card {
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column;
  }
  .story-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
  .story-header { background: var(--green); padding: 28px; display: flex; align-items: center; gap: 16px; }
  .story-avatar-placeholder {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--yellow); display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--green-dark); flex-shrink: 0;
  }
  .story-name  { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: white; }
  .story-title { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
  .story-body  { padding: 28px; flex: 1; }
  .story-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
  .story-achievement {
    display: flex; align-items: center; gap: 8px;
    background: var(--green-light); border-radius: 8px; padding: 8px 14px;
    font-size: 0.82rem; font-weight: 600; color: var(--green-dark); margin: 10px 0 0;
  }
  .story-achievement svg { width: 15px; height: 15px; stroke: var(--green); fill: none; stroke-width: 2.5; flex-shrink: 0; }
  .story-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--green); font-size: 0.88rem; font-weight: 600; text-decoration: none; margin-top: 18px;
  }
  .story-link svg { width: 14px; height: 14px; stroke: var(--green); fill: none; stroke-width: 2.5; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: white; }
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
  .testi-card {
    background: var(--off-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px 28px; transition: all 0.3s;
  }
  .testi-card:hover { box-shadow: var(--shadow); background: white; }
  .testi-quote { font-size: 2.5rem; color: var(--yellow); line-height: 1; margin-bottom: 16px; font-family: 'DM Serif Display', serif; }
  .testi-text  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
  .testi-person { display: flex; align-items: center; gap: 12px; }
  .testi-avatar-init {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--green); display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif; font-size: 1rem; color: white;
  }
  .testi-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
  .testi-role { font-size: 0.78rem; color: var(--text-muted); }

  /* ── PARTNERS ── */
  .partners { background: var(--gray-light); padding: 72px 0; }
  .partners-label { text-align: center; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); font-weight: 600; margin-bottom: 40px; }
  .partners-row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
  .partner-item {
    display: flex; align-items: center; gap: 10px;
    background: white; border: 1px solid var(--border); border-radius: 12px;
    padding: 14px 24px; font-weight: 600; font-size: 0.88rem; color: var(--text-muted);
    transition: all 0.2s; text-decoration: none;
  }
  .partner-item:hover { border-color: var(--green); color: var(--green); box-shadow: var(--shadow); }

  /* ── CTA SECTION ── */
  .cta-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 100px 0; text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(245,196,0,0.08) 0%, transparent 70%);
  }
  .cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
  .cta-section h2 { color: white; margin-bottom: 20px; }
  .cta-section p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 40px; }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .cta-info { margin-top: 28px; font-size: 0.83rem; color: rgba(255,255,255,0.35); }

  /* ── FOOTER ── */
  footer { background: var(--green-dark); color: rgba(255,255,255,0.6); }
  .footer-top {
    padding: 72px 0 48px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  }
  .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; text-decoration: none; color: white; }
  .footer-logo-icon {
    width: 38px; height: 38px; background: var(--yellow);
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--green-dark);
  }
  .footer-logo-name { font-size: 0.9rem; font-weight: 600; color: white; }
  .footer-brand > p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
  .footer-contact a {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; margin-bottom: 8px; transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--yellow); }
  .footer-contact svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
  .footer-col h4 { color: white; font-size: 0.85rem; font-weight: 600; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--yellow); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    font-size: 0.82rem;
  }
  .footer-bottom-left { color: rgba(255,255,255,0.3); }
  .footer-bottom-right a { color: rgba(255,255,255,0.3); text-decoration: none; margin-left: 20px; transition: color 0.2s; }
  .footer-bottom-right a:hover { color: rgba(255,255,255,0.7); }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }

  
  @media (max-width: 640px) {
    .hero-eyebrow {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        margin-bottom: 12px !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
.hero-eyebrow img {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;  /* Prevents collapsing to 0px */
        min-height: 20px !important;
        object-fit: contain !important;
        flex-shrink: 0 !important;
        display: block !important;
    }
    .hero-eyebrow span {
        display: inline-block !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        letter-spacing: 1px !important;
        color: #14821f !important;
        line-height: 1.2 !important;
    }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
      display: flex; flex-direction: column;
      position: fixed; top: 72px; left: 0; right: 0;
      background: var(--green-dark); padding: 20px; gap: 4px;
    }
    .why-grid, .courses-grid, .testi-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    /*.hero-actions .btn { justify-content: center; }*/
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-right a { margin: 0 8px; }
  }


/* =========================================================
   RESPONSIVE OVERRIDES — iTech Computer Academy Inc.
   ========================================================= */
img, svg, video { max-width: 100%; }
body { width: 100%; overflow-x: hidden; }
.container, .nav-inner { width: 100%; }

@media (max-width: 900px) {
  .container { padding-left: 20px; padding-right: 20px; }
  section { padding: 76px 0; }
  .nav-inner { height: 64px; padding: 0 18px; }
  .nav-toggle { display: block; }
  nav .nav-links { display: none !important; }
  nav .nav-links.mobile-open { display: flex !important; }
  .nav-links.mobile-open {
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px 18px 18px; background: rgba(19,77,34,.99);
    border-top: 1px solid rgba(255,255,255,.1); box-shadow: 0 12px 30px rgba(0,0,0,.18);
  }
  .nav-links.mobile-open a { display: block; padding: 13px 14px; border-radius: 8px; }
  .nav-links.mobile-open .nav-enroll { text-align: center; margin-top: 6px; }
  .itech-hero { min-height: auto !important; padding-top: 112px !important; padding-bottom: 70px !important; }
  .itech-hero .container { display: grid !important; grid-template-columns: 1fr !important; gap: 42px !important; }
  .hero-content { max-width: none !important; }
  .hero-content h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .btn { min-height: 48px; }
  .itech-hero .hero-image, .hero-visual { width: 100% !important; max-width: 560px; margin: 0 auto; }
  .itech-achievements .container { grid-template-columns: 1fr 1fr !important; gap: 18px !important; }
  .itech-achievements .achievement { min-width: 0; }
  #about .container, #courses .container, #stories .container { max-width: 100%; }
}

@media (max-width: 680px) {
  .container { padding-left: 16px; padding-right: 16px; }
  section { padding: 60px 0; }
  h1 { font-size: clamp(2rem, 11vw, 3rem); }
  h2 { font-size: clamp(1.8rem, 9vw, 2.45rem); }
  p { font-size: .96rem; }
  .nav-logo-text { max-width: 190px; line-height: 1.15; }
  .nav-logo { gap: 8px; }
  .nav-logo-icon { width: 36px; height: 36px; border-radius: 8px; }
  .itech-hero { padding-top: 100px !important; padding-bottom: 56px !important; }
  .hero-eyebrow { font-size: 11px !important; letter-spacing: 1px !important; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .itech-achievements .container { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .itech-achievements .achievement { padding: 16px 10px !important; }
  .itech-achievements .achievement strong { font-size: 1.6rem !important; }
  .course-grid, .courses-grid, .program-grid, .cards-grid, .testimonial-grid, .story-grid { grid-template-columns: 1fr !important; }
  .course-card, .story-card, .testimonial-card { width: 100% !important; }
  .cta-section .container { text-align: center; }
  .cta-section .btn { width: 100%; justify-content: center; }
  footer .footer-grid, .footer-grid { grid-template-columns: 1fr !important; text-align: center; }
  footer { padding-bottom: 28px; }
}

@media (max-width: 420px) {
  .nav-logo-text { font-size: .78rem; max-width: 155px; }
  .itech-hero { padding-top: 92px !important; }
  .itech-achievements .container { grid-template-columns: 1fr !important; }
  .itech-achievements .achievement { display: flex; align-items: center; justify-content: center; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}


/* =========================================================
   MOBILE REFINEMENT — ACHIEVEMENTS & GRADUATE SPOTLIGHT
   ========================================================= */

/* Keep the achievement section visually balanced on phones */
@media (max-width: 680px) {
  .itech-achievements {
    padding: 64px 0 58px !important;
  }

  .itech-achievements-container {
    width: min(100% - 28px, 720px) !important;
    margin: 0 auto !important;
  }

  .itech-achievements-heading {
    text-align: center !important;
    margin-bottom: 30px !important;
  }

  .itech-achievements-heading > span {
    font-size: .72rem !important;
    letter-spacing: 1.6px !important;
  }

  .itech-achievements-heading h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.45rem) !important;
    line-height: 1.12 !important;
    margin: 10px 0 12px !important;
  }

  .itech-achievements-heading p {
    font-size: .91rem !important;
    line-height: 1.65 !important;
    max-width: 520px !important;
    margin: 0 auto !important;
  }

  /* Main achievement layout: always stack cleanly */
  .itech-achievement-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  /* 24+ card */
  .itech-achievement-years {
    width: 100% !important;
    min-height: 0 !important;
    padding: 25px 20px !important;
    box-sizing: border-box !important;
    border-radius: 18px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .years-number {
    font-size: clamp(3.2rem, 16vw, 4.5rem) !important;
    line-height: .9 !important;
    margin-bottom: 9px !important;
  }

  .years-title {
    font-size: .82rem !important;
    line-height: 1.35 !important;
    letter-spacing: .7px !important;
  }

  .itech-achievement-years p {
    font-size: .82rem !important;
    line-height: 1.45 !important;
    margin: 9px 0 0 !important;
    max-width: 260px !important;
  }

  /* Right side becomes two independent cards */
  .itech-achievement-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .itech-achievement-item {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 20px 18px !important;
    border-radius: 18px !important;
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    align-items: center !important;
    column-gap: 15px !important;
    row-gap: 3px !important;
  }

  .achievement-percent {
    font-size: clamp(2.2rem, 12vw, 3.1rem) !important;
    line-height: 1 !important;
    min-width: 72px !important;
    text-align: center !important;
    grid-row: span 2 !important;
  }

  .achievement-info {
    min-width: 0 !important;
  }

  .achievement-info h3 {
    font-size: 1rem !important;
    line-height: 1.25 !important;
    margin: 0 0 5px !important;
  }

  .achievement-info p {
    font-size: .79rem !important;
    line-height: 1.45 !important;
    margin: 0 !important;
  }

  .tm-achievement {
    grid-template-columns: auto 1fr !important;
  }

  .achievement-trophy {
    font-size: 1.65rem !important;
    min-width: 42px !important;
    text-align: center !important;
  }

  .tm-achievement .achievement-percent {
    min-width: 72px !important;
  }

  .tm-achievement .achievement-info strong {
    display: inline-block !important;
    font-size: .72rem !important;
    margin-top: 7px !important;
    letter-spacing: .4px !important;
  }

  /* Stats: four easy-to-scan tiles */
  .stats-section {
    padding: 48px 0 !important;
  }

  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .stats-inner > div {
    padding: 18px 8px !important;
    border-radius: 14px !important;
  }

  .stat-num {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
  }

  .stat-label {
    font-size: .72rem !important;
    line-height: 1.35 !important;
    margin-top: 7px !important;
  }

  /* Graduate Spotlight — each graduate is clearly an individual card */
  .stories {
    padding: 64px 0 !important;
  }

  .stories .container {
    width: min(100% - 28px, 720px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .stories .section-header {
    text-align: center !important;
    margin-bottom: 0 !important;
  }

  .stories .section-header p {
    font-size: .9rem !important;
    line-height: 1.6 !important;
    max-width: 540px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .stories-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-top: 32px !important;
  }

  .story-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .story-card:hover {
    transform: none !important;
  }

  .story-header {
    padding: 20px 18px !important;
    gap: 13px !important;
    align-items: center !important;
  }

  .story-header img,
  .story-header > div:first-child {
    width: 58px !important;
    height: 58px !important;
    flex: 0 0 58px !important;
  }

  .story-name {
    font-size: 1.05rem !important;
    line-height: 1.25 !important;
  }

  .story-title {
    font-size: .7rem !important;
    line-height: 1.4 !important;
  }

  .story-body {
    padding: 21px 18px 22px !important;
  }

  .story-body p {
    font-size: .88rem !important;
    line-height: 1.65 !important;
  }

  .story-achievement {
    font-size: .78rem !important;
    line-height: 1.45 !important;
    margin-top: 12px !important;
  }
}

/* Extra-small phones: prevent cramped achievement cards */
@media (max-width: 420px) {
  .itech-achievement-item {
    grid-template-columns: 64px minmax(0, 1fr) !important;
    padding: 18px 13px !important;
    column-gap: 10px !important;
  }

  .achievement-percent,
  .tm-achievement .achievement-percent {
    min-width: 64px !important;
    font-size: 2.15rem !important;
  }

  .achievement-info h3 {
    font-size: .91rem !important;
  }

  .achievement-info p {
    font-size: .74rem !important;
  }

  .story-header {
    align-items: flex-start !important;
  }

  .story-header img,
  .story-header > div:first-child {
    width: 52px !important;
    height: 52px !important;
    flex-basis: 52px !important;
  }

  .story-name {
    font-size: .98rem !important;
  }

  .story-title {
    font-size: .66rem !important;
  }
}
