
    /* ═══════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════ */
    :root {
      --primary: #2E2745;
      --accent: #B84F19;
      --accent2: #418E48;
      --orange:#B84F19;
      --light: #ffffff;
      --white: #ffffff;
      --text: #1a1a2e;
      --muted: #6b7280;
      --border: rgba(10, 35, 66, 0.09);
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --shadow-sm: 0 4px 12px rgba(10, 35, 66, 0.08);
      --shadow-md: 0 12px 32px rgba(10, 35, 66, 0.12);
      --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.22);
      --nav-h: 100px;
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: 'Source Sans 3', sans-serif;
      background: var(--light);
      color: var(--text);
      overflow-x: hidden;
      max-width: 100vw;
    }

    .ri-whatsapp-line{
      color: var(--white);
      font-size: 1.8rem;
    }

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

    a,
    button {
      -webkit-tap-highlight-color: transparent;
    }

    ul {
      list-style: none;
    }

    /* ═══════════════════════════════════════
       NAV
    ═══════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: var(--nav-h);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--light);
      border-bottom: 1px solid rgba(10, 35, 66, 0.06);
      transition: box-shadow .3s;
    }

    nav.scrolled {
      box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
    }

    .nav-logo {
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .nav-logo img {
      height: 90px;
      width: auto;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text);
      font-size: .9rem;
      font-weight: 500;
      position: relative;
      transition: color .25s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width .3s;
    }

    .nav-links a:hover {
      color: var(--accent2);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      background: var(--orange) !important;
      color: var(--white) !important;
      padding: 9px 20px;
      border-radius: var(--radius-sm);
      font-weight: 700 !important;
      transition: background .25s, transform .25s !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    .nav-cta:hover {
      background: var(--accent) !important;
      color: var(--white) !important;
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      display: block;
      transition: all .3s;
    }

    .mobile-menu {
      height: calc(45svh - var(--nav-h));
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0;
      right: 0;
      
      background-color: var(--primary);
      padding: 1.25rem 5%;
      flex-direction: column;
     
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      z-index: 99;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.95);
      font-weight: 500;
      padding: .55rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      font-size: .95rem;
      transition: color .2s;
     
      border-radius: 6px;
      margin-bottom: 4px;
    }

    .mobile-menu a:last-child {
      border-bottom: none;
      color: rgba(255, 255, 255, 0.95);
      font-weight: 700;
    }

    .mobile-menu a:hover {
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
    }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      min-height: 100svh;
      background: var(--primary);
      display: grid;
      grid-template-columns: 1fr 460px;
      align-items: center;
      padding: calc(var(--nav-h) + 48px) 6% 60px;
      gap: 4.5rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 50% 60% at 10% 30%, rgba(246, 208, 57, .07) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 80% 80%, rgba(15, 121, 196, .08) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-stripe {
      position: absolute;
      top: 0;
      right: 468px;
      width: 2px;
      height: 100%;
      background: linear-gradient(180deg, transparent, rgba(246, 208, 57, .25), transparent);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(46, 74, 87, 0.12);
      border:1px solid rgb(255 255 255 / 35%);
      color: var(--white) !important;
      padding: 7px 16px;
      border-radius: 6px;
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      animation: fadeUp .5s ease both, badgeGlow 2.2s ease-in-out 1s infinite;
    }

    .hero-badge::before {
      content: '';
      width: 7px;
      height: 7px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulseDot 1.8s ease-in-out infinite;
    }

    @keyframes pulseDot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .4;
        transform: scale(1.55);
      }
    }

    @keyframes badgeGlow {

      0%,
      100% {
        box-shadow: 0 0 0 rgba(37, 42, 73, 0);
        transform: scale(1);
      }

      50% {
        box-shadow: 0 0 18px rgba(19, 29, 44, 0.5);
        transform: scale(1.03);
      }
    }

    .hero-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2.2rem, 4.2vw, 3.8rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.5px;
      color: var(--white);
      margin-bottom: 1.25rem;
      animation: fadeUp .55s .1s ease both;
    }

    .hero-title .hl {
      color: var(--accent);
    }

    .hero-desc {
      font-size: 1.05rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 2rem;
      max-width: 500px;
      animation: fadeUp .55s .18s ease both;
    }

    .hero-checklist {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .55rem 1.25rem;
      margin-bottom: 2.25rem;
      animation: fadeUp .55s .24s ease both;
    }

    .hero-checklist li {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.95);
      font-size: .88rem;
      font-weight: 500;
    }

    .hero-checklist li::before {
      content: '✓';
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--accent);
      color: var(--primary);
      border-radius: 50%;
      font-size: .62rem;
      font-weight: 900;
    }

    .hero-buttons {
      display: flex;
      gap: .9rem;
      flex-wrap: wrap;
      animation: fadeUp .55s .3s ease both;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, .1);
      animation: fadeUp .55s .38s ease both;
    }

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

    .stat-num {
      font-family: 'Poppins', sans-serif;
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
    }

    .stat-label {
      font-size: .68rem;
      color: rgba(255, 255, 255, .5);
      font-weight: 500;
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    /* Form Card */
    .hero-form-wrap {
      position: relative;
      z-index: 2;
      animation: fadeIn .65s .15s ease both;
      width: 100%;
    }

    .hero-form-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      width: 100%;
    }

    .hero-form-header {
      padding: 1.75rem 2rem .25rem;
      border-bottom: 3px solid var(--accent);
    }

    .hero-form-header h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 4px;
    }

    .hero-form-header p {
      font-size: .8rem;
      color: var(--muted);
      padding-bottom: 1rem;
    }

    .hero-form-body {
      padding: 1.4rem 2rem 1.85rem;
    }

    .hf-group {
      margin-bottom: .9rem;
    }

    .hf-group label {
      display: block;
      font-size: .74rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: .4px;
    }

    .hf-group input,
    .hf-group select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid #e2e8f0;
      border-radius: var(--radius-sm);
      font-family: 'Source Sans 3', sans-serif;
      font-size: .9rem;
      color: var(--text);
      background: #f8fafc;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      appearance: none;
      -webkit-appearance: none;
    }

    .hf-group input:focus,
    .hf-group select:focus {
      border-color: var(--primary);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(10, 35, 66, .07);
    }

    .btn-form-submit {
      width: 100%;
      padding: 13px;
      background: var(--orange);
      color: var(--white);
      border: none;
      border-radius: var(--radius-sm);
      font-family: 'Poppins', sans-serif;
      font-size: .97rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .25s, transform .2s, box-shadow .25s;
      letter-spacing: .3px;
    }

    .btn-form-submit:hover {
      background: var(--accent);
      color: var(--white);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(24, 28, 43, 0.4);
    }

    .form-trust {
      text-align: center;
      margin-top: .75rem;
      font-size: .73rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(16px) scale(.98);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* ═══════════════════════════════════════
       BUTTONS (shared)
    ═══════════════════════════════════════ */
    .btn-primary {
      background: var(--accent);
      color: var(--white);
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      font-weight: 700;
      font-size: .93rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: background .25s, transform .2s, box-shadow .25s;
      border: 2px solid var(--accent);
      white-space: nowrap;
    }

    .btn-primary:hover {
      background: transparent;
      color: var(--accent);
      transform: translateY(-2px);
      /* box-shadow: 0 8px 22px rgba(246, 208, 57, .3); */
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: .93rem;
      text-decoration: none;
      border: 2px solid rgba(255, 255, 255, .4);
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .25s;
      white-space: nowrap;
    }

    .btn-secondary:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, .09);
      transform: translateY(-2px);
    }

    /* ═══════════════════════════════════════
       MARQUEE
    ═══════════════════════════════════════ */
    .marquee-section {
      background: var(--primary);
      padding: 14px 0;
      overflow: hidden;
      display: flex;
      position: relative;
    }

    .marquee-track {
      display: flex;
      gap: 2.5rem;
      animation: marquee 22s linear infinite;
      white-space: nowrap;
      min-width: max-content;
    }

    .marquee-section:hover .marquee-track {
      animation-play-state: paused;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 9px;
      color: rgba(255, 255, 255, 0.95);
      font-size: .83rem;
      font-weight: 500;
      flex-shrink: 0;
    }

    .marquee-dot {
      width: 5px;
      height: 5px;
      background: var(--accent);
      border-radius: 50%;
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ═══════════════════════════════════════
       SECTION BASE
    ═══════════════════════════════════════ */
    section {
      padding: 5.5rem 5%;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent2);
      margin-bottom: 1rem;
    }

    .section-tag::before {
      content: '';
      width: 22px;
      height: 2px;
      background: var(--accent2);
    }

    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.8rem, 3.2vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -.5px;
      line-height: 1.15;
      color: var(--primary);
      margin-bottom: .9rem;
    }

    .section-desc {
      color: var(--muted);
      font-size: .98rem;
      line-height: 1.75;
      max-width: 540px;
    }

    /* ═══════════════════════════════════════
       ABOUT
    ═══════════════════════════════════════ */
    .about {
      background: var(--white);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-img-block {
      background: var(--light);
      border-radius: var(--radius-lg);
      aspect-ratio: 4 / 3.2;
      min-height: 240px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .about-img-block img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-img-block::after {
      content: 'Shaping Futures Since 2019';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.25rem;
      background: linear-gradient(0deg, rgba(10, 35, 66, .82), transparent);
      color: var(--white);
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: .95rem;
    }

    .about-accent-box {
      position: absolute;
      bottom: -18px;
      right: -18px;
      background: var(--orange);
      border-radius: var(--radius-md);
      padding: 1.1rem 1.4rem;
      box-shadow: 0 12px 28px rgba(246, 208, 57, .32);
    }

    .about-accent-box strong {
      display: block;
      font-family: 'Poppins', sans-serif;
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }

    .about-accent-box span {
      font-size: .72rem;
      color: var(--white);
      font-weight: 600;
    }

    .about-features {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: .85rem;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem;
      border-radius: var(--radius-sm);
      transition: background .25s;
    }

    .feature-item:hover {
      background: var(--light);
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(10, 35, 66, .06);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }

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

    .feature-text h4 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: .93rem;
      margin-bottom: 3px;
      color: var(--primary);
    }

    .feature-text p {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.55;
    }

    /* ═══════════════════════════════════════
       STATS
    ═══════════════════════════════════════ */
    .stats-section {
      background: var(--orange);
      padding: 4.5rem 5%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .stats-section::before {
      content: '';
      position: absolute;
      top: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(246, 208, 57, .1) 0%, transparent 70%);
      pointer-events: none;
    }

    .stat-card {
      position: relative;
      z-index: 1;
    }

    .stat-card .num {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      display: block;
    }

    .stat-card .label {
      color: rgba(255, 255, 255, .6);
      font-size: .8rem;
      font-weight: 500;
      margin-top: 7px;
      display: block;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .stat-divider {
      position: absolute;
      right: 0;
      top: 20%;
      bottom: 20%;
      width: 1px;
      background: rgba(255, 255, 255, .1);
    }

    /* ═══════════════════════════════════════
       COURSES
    ═══════════════════════════════════════ */
    .courses {
      background: var(--light);
    }

    .courses-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 2.75rem;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
      gap: 1.4rem;
    }

    .course-card {
      background: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s, border-color .3s;
    }

    .course-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow-md);
      border-color: var(--accent);
    }

    .course-img {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 0;
    }

    .course-img img {
      width: 100%;
      height: 156px;
      object-fit: contain;
    }

    .course-card:nth-child(1) .course-img {
      background: linear-gradient(135deg, #667eea1a, #764ba21a);
    }

    .course-card:nth-child(2) .course-img {
      background: linear-gradient(135deg, #f093fb1a, #f5576c1a);
    }

    .course-card:nth-child(3) .course-img {
      background: linear-gradient(135deg, #4facfe1a, #00f2fe1a);
    }

    .course-card:nth-child(4) .course-img {
      background: linear-gradient(135deg, #43e97b1a, #38f9d71a);
    }

    .course-card:nth-child(5) .course-img {
      background: linear-gradient(135deg, #fa709a1a, #fee1401a);
    }

    .course-card:nth-child(6) .course-img {
      background: linear-gradient(135deg, #a18cd11a, #fbc2eb1a);
    }

    .course-card:nth-child(7) .course-img {
      background: linear-gradient(135deg, #ffecd21a, #fcb69f1a);
    }

    .course-card:nth-child(8) .course-img {
      background: linear-gradient(135deg, #a1c4fd1a, #c2e9fb1a);
    }

    .course-body {
      padding: 1.2rem;
    }

    .course-tag {
      font-size: .68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--accent2);
      margin-bottom: .45rem;
    }

    .course-body h3 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: .97rem;
      color: var(--primary);
      margin-bottom: .45rem;
      line-height: 1.35;
    }

    .course-body p {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: .9rem;
    }

    .course-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: .8rem;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
      transition: gap .25s, color .25s;
    }

    .course-link:hover {
      gap: 9px;
      color: var(--accent2);
    }

    /* ═══════════════════════════════════════
       WHY US
    ═══════════════════════════════════════ */
    .why-us {
      background: var(--white);
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: center;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.1rem;
    }

    .why-card {
      background: var(--light);
      border-radius: var(--radius-md);
      padding: 1.4rem;
      border: 1px solid transparent;
      transition: all .28s;
    }

    .why-card:hover {
      border-color: var(--accent);
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(246, 208, 57, .15);
    }

    .why-icon {
      width: 46px;
      height: 46px;
      border-radius: 13px;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: .9rem;
      overflow: hidden;
    }

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

    .why-card h4 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: .92rem;
      color: var(--primary);
      margin-bottom: .4rem;
    }

    .why-card p {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ═══════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════ */
    .testimonials {
      background: var(--light);
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 2.75rem;
    }

    .testimonials-header .section-tag {
      justify-content: center;
    }

    .testimonials-header .section-desc {
      margin: 0 auto;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 1.75rem;
      border: 1px solid var(--border);
      transition: all .28s;
    }

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

    .stars {
      color: var(--accent);
      font-size: .85rem;
      margin-bottom: .65rem;
    }

    .quote-mark {
      font-size: 2.2rem;
      color: var(--accent);
      font-family: Georgia, serif;
      line-height: 1;
      margin-bottom: .6rem;
    }

    .testimonial-card p {
      font-size: .86rem;
      color: #444;
      line-height: 1.78;
      margin-bottom: 1.25rem;
      font-style: italic;
    }

    .t-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .t-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--primary);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      color: var(--white);
      font-size: .9rem;
    }

    .t-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .t-info strong {
      display: block;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: .88rem;
      color: var(--primary);
    }

    .t-info span {
      font-size: .73rem;
      color: var(--muted);
    }

    /* ═══════════════════════════════════════
       CTA
    ═══════════════════════════════════════ */
    .cta-section {
      background: var(--primary);
      margin: 0 5% 5.5rem;
      border-radius: 28px;
      padding: 4.5rem 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 360px;
      height: 360px;
      background: rgba(246, 208, 57, .09);
      border-radius: 50%;
      pointer-events: none;
    }

    .cta-section h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.75rem, 3.5vw, 2.8rem);
      font-weight: 800;
      color: var(--white);
      letter-spacing: -.5px;
      margin-bottom: .9rem;
      position: relative;
      z-index: 1;
    }

    .cta-section>p {
      color: rgba(255, 255, 255, 0.95);
      max-width: 490px;
      margin: 0 auto 2.25rem;
      line-height: 1.75;
      position: relative;
      z-index: 1;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .btn-accent {
      background: var(--accent);
      color: var(--white);
      padding: 13px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: .93rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .25s;
    }

    .btn-accent:hover {
      transform: translateY(-2px);
      /* box-shadow: 0 10px 28px rgba(246, 208, 57, .4); */
    }

    .btn-outline-white {
      background: transparent;
      color: var(--white);
      padding: 13px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: .93rem;
      text-decoration: none;
      border: 2px solid rgba(255, 255, 255, .3);
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .25s;
    }

    .btn-outline-white:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, .1);
    }

    /* ═══════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════ */
    .contact {
      background: var(--white);
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: center;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.1rem 1.25rem;
      background: var(--light);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      transition: all .28s;
    }

    .contact-item:hover {
      border-color: var(--accent);
      box-shadow: 0 6px 18px rgba(246, 208, 57, .1);
    }

    .ci-icon {
      width: 44px;
      height: 44px;
      border-radius: 11px;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }

    .ci-icon img {
      width: 26px;
      height: 26px;
      object-fit: contain;
    }

    .ci-text strong {
      display: block;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: .8rem;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: .4px;
    }

    .ci-text span {
      font-size: .86rem;
      color: var(--muted);
    }

    .contact-form {
      background: var(--light);
      border-radius: var(--radius-lg);
      padding: 2.25rem;
      border: 1px solid var(--border);
    }

    .contact-form h3 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--primary);
      margin-bottom: 1.4rem;
    }

    .form-group {
      margin-bottom: 1.1rem;
    }

    .form-group label {
      display: block;
      font-size: .77rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: .4px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 11px 15px;
      border: 2px solid var(--border);
      border-radius: 11px;
      font-family: 'Source Sans 3', sans-serif;
      font-size: .9rem;
      color: var(--text);
      background: var(--white);
      outline: none;
      transition: border-color .25s;
      appearance: none;
      -webkit-appearance: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--primary);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 95px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-submit {
      width: 100%;
      padding: 13px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 50px;
      font-family: 'Poppins', sans-serif;
      font-size: .97rem;
      font-weight: 700;
      cursor: pointer;
      transition: all .25s;
      margin-top: .4rem;
    }

    .form-submit:hover {
      background: var(--accent);
      color: var(--primary);
      transform: translateY(-2px);
    }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer {
      background: var(--primary);
      color: var(--white);
      padding: 3.5rem 5% 1.75rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }

    .footer-logo img {
      height: 58px;
      width: auto;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    .footer-brand p {
      font-size: .83rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.78;
      margin: 1rem 0 1.4rem;
    }

    .social-links {
      display: flex;
      gap: .65rem;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--white);
      transition: all .25s;
      overflow: hidden;
    }

    .social-link img {
      width: 20px;
      height: 20px;
      object-fit: contain;
    }

    .social-link:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .footer-col h4 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: .84rem;
      text-transform: uppercase;
      letter-spacing: .8px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 1.1rem;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: .55rem;
    }

    .footer-col ul li a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-size: .85rem;
      transition: color .2s;
    }

    .footer-col ul li a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 1.75rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: .75rem;
    }

    .footer-bottom p {
      font-size: .79rem;
      color: rgba(255, 255, 255, 0.75);
    }

    /* ═══════════════════════════════════════
       SUCCESS MSG
    ═══════════════════════════════════════ */
    .form-success-msg {
      display: none;
      background: #f0fff4;
      border: 1.5px solid #68d391;
      border-radius: 11px;
      padding: 1.5rem;
      text-align: center;
      margin-top: .9rem;
    }

    .form-success-msg .success-icon {
      font-size: 2.25rem;
      margin-bottom: .4rem;
    }

    .form-success-msg h4 {
      font-family: 'Poppins', sans-serif;
      color: #276749;
      font-size: 1.05rem;
      margin-bottom: .3rem;
    }

    .form-success-msg p {
      font-size: .8rem;
      color: #2f855a;
    }

    .form-success-msg.show {
      display: block;
    }

    /* ═══════════════════════════════════════
       SCROLL REVEAL
    ═══════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .65s cubic-bezier(.16, 1, .3, 1), transform .65s cubic-bezier(.16, 1, .3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ═══════════════════════════════════════
       RESPONSIVE — 1280px
    ═══════════════════════════════════════ */
    @media (max-width:1280px) {
      .hero {
        grid-template-columns: 1fr 440px;
        gap: 3.5rem;
      }

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

    /* ═══════════════════════════════════════
       RESPONSIVE — 1024px
    ═══════════════════════════════════════ */
    @media (max-width:1024px) {
      :root {
        --nav-h: 100px;
      }

      .hero {
        grid-template-columns: 1fr 400px;
        gap: 3rem;
      }

      .about {
        gap: 3rem;
      }

      .why-us {
        gap: 3rem;
      }

      .contact {
        gap: 3rem;
      }

      .stats-section {
        padding: 3.5rem 5%;
      }

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

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

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      .cta-section {
        margin: 0 4% 5rem;
        padding: 3.75rem 3rem;
      }
    }

    /* ═══════════════════════════════════════
       RESPONSIVE — 900px (tablet)
       FIX: .about-visual must NOT be display:none
    ═══════════════════════════════════════ */
    @media (max-width:900px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
        justify-self: center;
        margin-top: 35px;
      }

      .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: calc(var(--nav-h) + 40px) 5% 52px;
        gap: 2.75rem;
        min-height: auto;
      }

      .hero-stripe {
        display: none;
      }

      .hero-badge {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-desc {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-checklist {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
      }

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

      .hero-stats {
        justify-content: center;
      }

      .hero-form-wrap {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
      }

      /* ─── FIXED: was display:none, now shows the image ─── */
      .about {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .about-visual {
        display: block;
        max-width: 480px;
        margin: 0 auto;
        padding-bottom: 20px;
        /* room for accent box */
      }

      .about-accent-box {
        bottom: -12px;
        right: -10px;
      }

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

      .contact {
        grid-template-columns: 1fr;
        gap: 2.25rem;
      }

      .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
      }

      .stat-divider {
        display: none;
      }

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

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

      .courses-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

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

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

      .cta-section {
        margin: 0 3% 4rem;
        padding: 3.25rem 2.5rem;
        border-radius: 20px;
      }

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

    /* ═══════════════════════════════════════
       RESPONSIVE — 768px
    ═══════════════════════════════════════ */
    @media (max-width:768px) {
      :root {
        --nav-h: 64px;
      }

      nav {
        padding: 0 4%;
        align-items: start;
      }

      .nav-logo img {
        height: 50px;
      }

      .hero {
        padding: calc(var(--nav-h) + 32px) 4% 44px;
        gap: 2.25rem;
      }

      .hero-title {
        font-size: clamp(1.85rem, 6vw, 2.4rem);
      }

      .hero-checklist {
        grid-template-columns: 1fr 1fr;
        gap: .45rem .9rem;
        font-size: .84rem;
      }

      .hero-stats {
        gap: 1.1rem;
        padding-top: 1.4rem;
        margin-top: 1.75rem;
      }

      .stat-num {
        font-size: 1.5rem;
      }

      .hero-form-header {
        padding: 1.5rem 1.5rem 0;
      }

      .hero-form-body {
        padding: 1.2rem 1.5rem 1.6rem;
      }

      section {
        padding: 3.5rem 4%;
      }

      .section-title {
        font-size: clamp(1.6rem, 5vw, 2.1rem);
      }

      /* About image responsive */
      .about-visual {
        max-width: 100%;
      }

      .about-img-block {
        aspect-ratio: 16 / 9;
        min-height: 200px;
      }

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

      .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .9rem;
      }

      .course-img {
        height: 160px;
      }

      .course-img img {
        height: 140px;
      }

      .stats-section {
        padding: 3rem 4%;
        gap: 1.35rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .cta-section {
        margin: 0 3% 3.5rem;
        padding: 2.75rem 2rem;
      }

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

      .contact-form {
        padding: 1.65rem;
      }

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

    /* ═══════════════════════════════════════
       RESPONSIVE — 600px
    ═══════════════════════════════════════ */
    @media (max-width:600px) {
      :root {
        --nav-h: 60px;
      }

      .nav-logo img {
        height: 50px;
      }

      .hero {
        padding: calc(var(--nav-h) + 28px) 4% 40px;
        gap: 1.9rem;
      }

      .hero-title {
        font-size: clamp(1.7rem, 7vw, 2.1rem);
        letter-spacing: -.3px;
      }

      .hero-desc {
        font-size: .93rem;
      }

      .hero-checklist {
        grid-template-columns: 1fr 1fr;
        gap: .45rem .7rem;
        font-size: .82rem;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: .65rem;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        max-width: 270px;
        justify-content: center;
        padding: 12px 22px;
      }

      .hero-stats {
        gap: .9rem 1.4rem;
      }

      .stat-num {
        font-size: 1.35rem;
      }

      .stat-label {
        font-size: .62rem;
      }

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

      .course-img {
        height: 160px;
        width: 100%;
      }

      .course-img img {
        height: 140px;
      }

      /* About image on small screens */
      .about-visual {
        max-width: 100%;
        padding-bottom: 22px;
      }

      .about-img-block {
        aspect-ratio: 16/9;
        min-height: 180px;
      }

      .about-accent-box {
        bottom: -10px;
        right: -5px;
        padding: .8rem 1rem;
      }

      .about-accent-box strong {
        font-size: 1.4rem;
      }

      .stats-section {
        grid-template-columns: 1fr 1fr;
        padding: 2.5rem 4%;
        gap: 1.1rem;
      }

      .stat-card .num {
        font-size: clamp(1.85rem, 7vw, 2.8rem);
      }

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

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

      .cta-section {
        margin: 0 0 3rem;
        border-radius: 0;
        padding: 2.5rem 1.5rem;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: .65rem;
      }

      .btn-accent,
      .btn-outline-white {
        width: 100%;
        max-width: 270px;
        justify-content: center;
        padding: 12px 22px;
      }

      .contact {
        padding: 3rem 4%;
      }

      .contact-form {
        padding: 1.4rem;
      }

      footer {
        padding: 2.75rem 4% 1.5rem;
      }

      section {
        padding: 2.75rem 4%;
      }
    }

    /* ═══════════════════════════════════════
       RESPONSIVE — 480px (small phones)
    ═══════════════════════════════════════ */
    @media (max-width:480px) {
      :root {
        --nav-h: 58px;
      }

      nav {
        padding: 0 4%;
      }

      .mobile-menu {
        padding: 1.2rem 4%;
      }

      .nav-logo img {
        height: 50px;
      }

      .hero {
        padding: calc(var(--nav-h) + 22px) 4% 36px;
        gap: 1.6rem;
      }

      .hero-badge {
        font-size: .68rem;
        padding: 5px 11px;
      }

      .hero-title {
        font-size: clamp(1.55rem, 7.5vw, 1.95rem);
        line-height: 1.18;
      }

      .hero-desc {
        font-size: .89rem;
        line-height: 1.72;
      }

      .hero-checklist {
        grid-template-columns: 1fr;
        gap: .4rem;
        font-size: .84rem;
      }

      .hero-checklist li::before {
        width: 18px;
        height: 18px;
        font-size: .58rem;
      }

      .hero-stats {
        flex-wrap: wrap;
        gap: .65rem 1.2rem;
        padding-top: 1.1rem;
        margin-top: 1.35rem;
      }

      .stat-num {
        font-size: 1.25rem;
      }

      .hero-form-header {
        padding: 1.2rem 1.2rem 0;
      }

      .hero-form-header h3 {
        font-size: 1.1rem;
      }

      .hero-form-body {
        padding: 1rem 1.2rem 1.4rem;
      }

      .hf-group {
        margin-bottom: .8rem;
      }

      .hf-group input,
      .hf-group select {
        padding: 10px 12px;
        font-size: .84rem;
      }

      .btn-form-submit {
        padding: 12px;
        font-size: .9rem;
      }

      .stats-section {
        padding: 2.25rem 4%;
      }

      .stat-card .num {
        font-size: clamp(1.65rem, 6.5vw, 2.3rem);
      }

      .stat-card .label {
        font-size: .69rem;
      }

      .section-title {
        font-size: clamp(1.45rem, 5.5vw, 1.85rem);
        letter-spacing: -.3px;
      }

      .section-desc {
        font-size: .9rem;
      }

      /* About */
      .about-visual {
        padding-bottom: 18px;
      }

      .about-img-block {
        min-height: 160px;
      }

      .about-accent-box {
        bottom: -8px;
        right: -4px;
        padding: .7rem .9rem;
      }

      .about-accent-box strong {
        font-size: 1.2rem;
      }

      .about-accent-box span {
        font-size: .65rem;
      }

      .about-features {
        gap: .7rem;
      }

      .feature-item {
        padding: .75rem;
      }

      .why-card {
        padding: 1.2rem;
      }

      .course-body {
        padding: .95rem;
      }

      .course-body h3 {
        font-size: .93rem;
      }

      .testimonial-card {
        padding: 1.4rem;
      }

      footer {
        padding: 2.25rem 4% 1.25rem;
      }

      .footer-bottom p {
        font-size: .76rem;
      }
    }

    /* ═══════════════════════════════════════
       RESPONSIVE — 360px (very small phones)
    ═══════════════════════════════════════ */
    @media (max-width:360px) {
      :root {
        --nav-h: 56px;
      }

      nav {
        padding: 0 3.5%;
      }

      .nav-logo img {
        height: 50px;
      }

      .mobile-menu {
        padding: 1rem 3.5%;
      }

      .hero {
        padding: calc(var(--nav-h) + 18px) 3.5% 32px;
        gap: 1.4rem;
      }

      .hero-badge {
        font-size: .65rem;
        padding: 5px 10px;
        letter-spacing: 1px;
      }

      .hero-title {
        font-size: clamp(1.4rem, 8vw, 1.75rem);
        line-height: 1.2;
      }

      .hero-desc {
        font-size: .86rem;
        line-height: 1.68;
      }

      .hero-checklist {
        grid-template-columns: 1fr;
        gap: .38rem;
        font-size: .82rem;
      }

      .hero-stats {
        gap: .5rem 1rem;
        padding-top: 1rem;
        margin-top: 1.1rem;
      }

      .stat-num {
        font-size: 1.15rem;
      }

      .stat-label {
        font-size: .6rem;
      }

      .hero-form-wrap {
        max-width: 100%;
      }

      .hero-form-header {
        padding: 1rem 1rem 0;
      }

      .hero-form-header h3 {
        font-size: 1rem;
      }

      .hero-form-header p {
        font-size: .74rem;
        padding-bottom: .75rem;
      }

      .hero-form-body {
        padding: .9rem 1rem 1.25rem;
      }

      .hf-group {
        margin-bottom: .7rem;
      }

      .hf-group label {
        font-size: .7rem;
      }

      .hf-group input,
      .hf-group select {
        padding: 9px 11px;
        font-size: .85rem;
        border-radius: 7px;
      }

      .btn-form-submit {
        padding: 11px;
        font-size: .86rem;
      }

      .form-trust {
        font-size: .68rem;
      }

      section {
        padding: 2.5rem 3.5%;
      }

      .section-title {
        font-size: clamp(1.3rem, 6vw, 1.65rem);
      }

      .section-desc {
        font-size: .86rem;
      }

      .section-tag {
        font-size: .7rem;
        letter-spacing: 1.2px;
      }

      /* About */
      .about-img-block {
        min-height: 140px;
      }

      .about-accent-box {
        bottom: -6px;
        right: -3px;
        padding: .6rem .8rem;
      }

      .about-accent-box strong {
        font-size: 1.1rem;
      }

      .feature-item {
        padding: .65rem;
        gap: .75rem;
      }

      .feature-icon {
        width: 38px;
        height: 38px;
      }

      .feature-icon img {
        width: 24px;
        height: 24px;
      }

      .feature-text h4 {
        font-size: .88rem;
      }

      .feature-text p {
        font-size: .78rem;
      }

      .stats-section {
        padding: 2rem 3.5%;
        gap: 1rem;
      }

      .stat-card .num {
        font-size: clamp(1.5rem, 6vw, 2rem);
      }

      .stat-card .label {
        font-size: .65rem;
      }

      .courses-grid {
        grid-template-columns: 1fr;
        gap: .85rem;
      }

      .course-img {
        height: 155px;
        width: 100%;
      }

      .course-img img {
        height: 135px;
      }

      .course-body {
        padding: .85rem;
      }

      .course-body h3 {
        font-size: .88rem;
      }

      .course-body p {
        font-size: .77rem;
      }

      .why-grid {
        grid-template-columns: 1fr;
        gap: .85rem;
      }

      .why-card {
        padding: 1rem;
      }

      .why-card h4 {
        font-size: .88rem;
      }

      .why-card p {
        font-size: .77rem;
      }

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

      .testimonial-card {
        padding: 1.2rem;
      }

      .testimonial-card p {
        font-size: .82rem;
      }

      .cta-section {
        padding: 2.2rem 1.25rem;
        margin: 0 0 2.5rem;
        border-radius: 0;
      }

      .cta-section h2 {
        font-size: clamp(1.3rem, 6vw, 1.65rem);
      }

      .cta-section>p {
        font-size: .84rem;
      }

      .btn-accent,
      .btn-outline-white {
        max-width: 100%;
        font-size: .85rem;
        padding: 11px 18px;
      }

      .contact {
        padding: 2.5rem 3.5%;
        gap: 1.75rem;
      }

      .contact-item {
        padding: .9rem 1rem;
        gap: .75rem;
      }

      .ci-icon {
        width: 38px;
        height: 38px;
        border-radius: 9px;
      }

      .ci-icon img {
        width: 22px;
        height: 22px;
      }

      .ci-text strong {
        font-size: .74rem;
      }

      .ci-text span {
        font-size: .8rem;
      }

      .contact-form {
        padding: 1.2rem;
        border-radius: 16px;
      }

      .contact-form h3 {
        font-size: 1.1rem;
        margin-bottom: 1.1rem;
      }

      .form-group input,
      .form-group select,
      .form-group textarea {
        padding: 10px 12px;
        font-size: .85rem;
        border-radius: 9px;
      }

      .form-submit {
        font-size: .9rem;
        padding: 12px;
      }

      footer {
        padding: 2rem 3.5% 1.25rem;
      }

      .footer-grid {
        gap: 1.5rem;
      }

      .footer-logo img {
        height: 40px;
      }

      .footer-brand p {
        font-size: .78rem;
      }

      .footer-col h4 {
        font-size: .78rem;
        margin-bottom: .85rem;
      }

      .footer-col ul li a {
        font-size: .8rem;
      }

      .footer-bottom {
        padding-top: 1.35rem;
      }

      .footer-bottom p {
        font-size: .72rem;
      }

      .social-link {
        width: 32px;
        height: 32px;
      }
    }

    /* ═══════════════════════════════════════
       RESPONSIVE — 320-420px (Galaxy Fold etc.)
    ═══════════════════════════════════════ */
    @media (min-width:320px) and (max-width:420px) {
      :root {
        --nav-h: 100px;
      }

      nav {
        padding: 0 3%;
      }

      .nav-logo img {
        height: 90px;
      }

      .mobile-menu {
        padding: .9rem 3%;
        top: 100px;
      }

      .hero {
        padding: calc(var(--nav-h) + 14px) 3% 28px;
        gap: 1.2rem;
      }

      .hero-badge {
        font-size: .62rem;
        padding: 4px 9px;
        letter-spacing: .8px;
        max-width: 100%;
      }

      .hero-title {
        font-size: clamp(1.25rem, 8.5vw, 1.55rem);
        line-height: 1.22;
      }

      .hero-desc {
        font-size: .82rem;
        line-height: 1.65;
      }

      .hero-checklist li {
        font-size: .79rem;
      }

      .hero-stats {
        gap: .45rem .85rem;
      }

      .stat-num {
        font-size: 1.05rem;
      }

      .stat-label {
        font-size: .58rem;
      }

      .hero-form-header {
        padding: .85rem .9rem 0;
      }

      .hero-form-header h3 {
        font-size: .95rem;
      }

      .hero-form-body {
        padding: .8rem .9rem 1.1rem;
      }

      .hf-group input,
      .hf-group select {
        padding: 9px 10px;
        font-size: .82rem;
      }

      .btn-primary,
      .btn-secondary {
        max-width: 100%;
        font-size: .84rem;
        padding: 11px 16px;
      }

      .btn-form-submit {
        font-size: .82rem;
      }

      section {
        padding: 2.2rem 3%;
      }

      .section-title {
        font-size: clamp(1.2rem, 7vw, 1.5rem);
      }

      .section-tag {
        font-size: .65rem;
        letter-spacing: 1px;
      }

      .stats-section {
        padding: 1.75rem 3%;
        gap: .85rem;
      }

      .stat-card .num {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
      }

      /* About image on tiny screens */
      .about-img-block {
        min-height: 160px;
      }

      .about-accent-box {
        bottom: -6px;
        right: -2px;
        padding: .55rem .75rem;
      }

      .about-accent-box strong {
        font-size: 1rem;
      }

      .contact {
        padding: 2.2rem 3%;
      }

      .contact-form {
        padding: 1rem;
      }

      footer {
        padding: 1.75rem 3% 1.1rem;
      }
    }

    /* ═══════════════════════════════════════
       SAFE AREA & iOS input zoom fix
    ═══════════════════════════════════════ */
    @supports (padding: env(safe-area-inset-bottom)) {
      #mobileCta {
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
      }
    }

    @media (max-width:900px) {

      .hf-group input,
      .hf-group select,
      .form-group input,
      .form-group select,
      .form-group textarea {
        font-size: 16px !important;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }

      .marquee-track {
        animation: none;
      }
    }

    /* ═══════════════════════════════════════
       POPUP OVERLAY
    ═══════════════════════════════════════ */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 20px;
    }

    .popup-overlay.show {
      display: flex;
    }

    .popup-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: none;
      border: none;
      font-size: 28px;
      color: var(--text);
      cursor: pointer;
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s, color 0.2s;
      z-index: 10000;
    }

    .popup-close:hover {
      transform: scale(1.15);
      color: var(--primary);
    }
  

    /* ═══════════════════════════════════════
       PROFESSIONAL POPUP + FLOATING ACTIONS + VALIDATION
    ═══════════════════════════════════════ */
    .popup-overlay {
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      background: rgba(10, 35, 66, .64) !important;
      animation: popupFade .22s ease both;
    }

    .popup-overlay .hero-form-card {
      width: min(96%, 430px);
      position: relative;
      border-radius: 22px;
      box-shadow: 0 28px 85px rgba(0, 0, 0, .32);
      transform: translateY(8px) scale(.98);
      animation: popupCardIn .28s ease .04s both;
    }

    .popup-overlay .hero-form-header {
      padding-right: 3.6rem;
      background: linear-gradient(135deg, #ffffff, #f8fbff);
    }

    .popup-close {
      background: rgba(10, 35, 66, .08) !important;
      border-radius: 50%;
      color: var(--primary) !important;
    }

    .phone-error,
    .field-error {
      display: none;
      color: #dc2626;
      font-size: .74rem;
      margin-top: 5px;
      font-weight: 600;
    }

    .hf-group.has-error input,
    .hf-group.has-error select,
    .form-group.has-error input,
    .form-group.has-error select,
    .form-group.has-error textarea {
      border-color: #dc2626 !important;
      box-shadow: 0 0 0 3px rgba(220, 38, 38, .08) !important;
    }

    .hf-group.has-success input,
    .hf-group.has-success select,
    .form-group.has-success input,
    .form-group.has-success select {
      border-color: #16a34a !important;
    }

    .lead-submit-loading {
      opacity: .78;
      pointer-events: none;
    }

    .floating-actions {
      position: fixed;
      right: 20px;
      bottom: 22px;
      z-index: 220;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .float-btn {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #fff;
      border: 0;
      cursor: pointer;
      box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
      transition: transform .25s ease, box-shadow .25s ease;
      position: relative;
      isolation: isolate;
    }

    .float-btn::before {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: inherit;
      background: currentColor;
      opacity: .14;
      animation: floatPulse 1.9s ease-in-out infinite;
      z-index: -1;
    }

    .float-btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
    }

    .float-btn i {
      color: #fff;
      font-size: 1.65rem;
      line-height: 1;
    }

    .float-call { background: var(--orange); color: var(--accent2); }
    .float-whatsapp { background: #25D366; color: #25D366; }
    .float-enquiry { background: var(--accent); color: var(--accent); }
    .float-enquiry i { color: var(--primary); }

    @keyframes floatPulse {
      0%, 100% { transform: scale(.92); opacity: .14; }
      50% { transform: scale(1.14); opacity: .05; }
    }

    @keyframes popupFade {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes popupCardIn {
      to { transform: translateY(0) scale(1); }
    }

    @media (max-width: 640px) {
      .floating-actions {
        right: 14px;
        bottom: 82px;
        gap: 10px;
      }
      .float-btn {
        width: 50px;
        height: 50px;
      }
      .popup-overlay {
        padding: 14px;
        align-items: flex-end;
      }
      .popup-overlay .hero-form-card {
        width: 100%;
        border-radius: 20px 20px 12px 12px;
                margin-bottom: 200px;
      }
    }
