  :root {
      --bg: #0A0A0A;
      --bg-alt: #121212;
      --card: rgba(255, 255, 255, 0.03);
      --card-border: rgba(255, 255, 255, 0.08);
      --orange: #00A3B3;
      --orange-light:rgb(0, 229, 249);
      --cyan: #00e5f9;
      --text: #f5f5f7;
      --text-dim: #9a9aa8;
      --text-dimmer: #6d6d7d;
      --gray: #888888;
      --black: #0A0A0A;
      --black-light: #111111;
      --white: #ffffff;
      --gray: #8a8a8a;
      --gray-light: #b8b8b8;
      --cyan: #00c2d4;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: auto; }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }
    ::selection {
  background: var(--cyan);
  color: var(--black);
}

::-moz-selection {
  background: var(--cyan);
  color: var(--black);
}
    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      line-height: 1.6;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { font-family: inherit; cursor: pointer; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--orange-light);
      margin-bottom: 1rem;
    }

    .section-label::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--orange);
    }

    .section-title {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.5px;
    }

    .highlight {
      background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
      color: #fff;
      font-weight: 600;
      font-size: 15px;
      padding: 14px 28px;
      border-radius: 8px;
      border: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      box-shadow: 0 6px 20px rgba(0, 194, 212, 0.2);
    }

    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 194, 212, 0.5); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--text);
      font-weight: 600;
      font-size: 15px;
      padding: 14px 28px;
      border-radius: 8px;
      border: 1px solid var(--card-border);
      transition: border-color 0.25s ease, background 0.25s ease;
    }

    .btn-secondary:hover { border-color: var(--cyan); background: rgba(0, 229, 249, 0.05); }

    /* ============= NAVBAR (same as contact page) ============= */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 4%;
      background: rgba(7, 7, 13, 0.75);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--card-border);
    }

    .nav-logo-text img { width: 180px; }

    .nav-links { display: flex; align-items: center; gap: 2rem; }
    .nav-links > li > a { font-size: 15px; font-weight: 500; color: var(--text); transition: color 0.2s; position: relative; }
    .nav-links > li > a:hover { color: var(--cyan); }

    .dropdown { 
      position: relative; 
    }
    .dropdown::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      right: 0;
      height: 14px;
      z-index: 999;
      pointer-events: auto;
    }

    .dropdown-toggle { 
      display: flex; 
      align-items: center; 
      gap: 4px; 
    }

    .dropdown-arrow { 
      font-size: 10px; 
    }

    .dropdown-panel {
      position: absolute;
      top: calc(100% + 0px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      width: min(550px, calc(100vw - 3rem));
      padding: 1.25rem;
      background: rgba(10, 10, 10, 0.98);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
      z-index: 1000;
      display: grid;
      gap: 0.75rem;
      align-items: start;
    }

    .dropdown:hover .dropdown-panel {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;  
    }

    .dropdown-panel.industries-panel {
      left: 96%;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dropdown-panel.services-panel {
      left: -40%;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dropdown-column {
      display: grid;
      gap: 0.5rem;
    }

    .dropdown-column a {
      font-size: 0.9rem;
      color: var(--text-dim);
      font-weight: 700;
      white-space: nowrap;
      padding: 4px 8px;
      border-radius: 6px;
      transition: all 0.2s ease;
    }

    .dropdown-column a:hover { 
      color: var(--cyan); 
    }

    .nav-cta-btn { padding: 10px 22px !important; }

    .mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; }
    .mobile-menu-btn span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

    .mobile-menu {
      position: fixed; top: 0; right: -100%;
      width: 78%; max-width: 320px; height: 100vh;
      background: var(--bg-alt);
      z-index: 1100;
      display: flex; flex-direction: column;
      padding: 6rem 2rem 2rem;
      gap: 1.5rem;
      transition: right 0.4s ease;
      border-left: 1px solid var(--card-border);
    }
    .mobile-menu.active { right: 0; }
    .mobile-menu a { font-size: 17px; font-weight: 500; }

    /* ============= HERO ============= */
    #re-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 140px 4% 80px;
      overflow: hidden;
    }

    .re-hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.015) , transparent 45%),
        radial-gradient(circle at rgba(0, 194, 212, 0.08) 0%, transparent 60%);
      z-index: 0;
    }

    .re-hero-grid {
      position: absolute; inset: 0;
      background-size: 48px 48px;
      z-index: 0;
      mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    }

    .re-hero-content {
      position: relative; z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 3rem;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
    }

    .re-hero-title { font-size: clamp(34px, 5vw, 56px); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -1px; }
    .re-hero-desc { font-size: 17px; color: var(--text-dim); max-width: 520px; margin-bottom: 2rem; }
    .re-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

    .re-hero-visual {
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }

    .re-hero-visual img {
      width: 100%;
      max-width: 600px;
      min-height:350px;
      height: auto;
      transform: scale(1.25);
      border-radius:24px;
        box-shadow: 0 0 30px rgba(0, 194, 212, 0.45),
              0 0 130px rgba(0, 194, 212, 0.2),
              inset 0 0 30px rgba(0, 194, 212, 0.1);
      transform-origin: center;
    }
    /* ============= GENERATE LEADS ============= */
    #generate-leads {
      padding: 100px 4%;
      background: var(--bg-alt);
    }
    .gl-container {
      max-width: 1300px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }
    .gl-image {
      aspect-ratio: 4/3.8;
    }
    
    .gl-image img {
    position: relative;
    z-index: 2;
    animation: gl-float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 22px rgba(0, 194, 212, 0.35))
            drop-shadow(0 0 55px rgba(0, 194, 212, 0.15));
    will-change: transform;
    }

    .gl-image::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2%;
    width: 46%;
    height: 14px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px 4px var(--cyan),
                0 0 45px 10px rgba(0, 194, 212, 0.5);
    z-index: 1;
    transform: translateX(-50%);
    animation: gl-plate 4s ease-in-out infinite;
    }

    .gl-image::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2%;
    width: 60%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0,194,212,0.45) 0%, rgba(0,194,212,0) 75%);
    filter: blur(6px);
    z-index: 0;
    transform: translateX(-50%);
    animation: gl-plate 4s ease-in-out infinite;
    }

    @keyframes gl-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-18px); }
    }

    @keyframes gl-plate {
    0%, 100% { transform: translateX(-50%) scaleX(1);    opacity: 1;   }
    50%      { transform: translateX(-50%) scaleX(0.7);  opacity: 0.55; }
    }

    @media (prefers-reduced-motion: reduce) {
    .gl-image img,
    .gl-image::before,
    .gl-image::after { animation: none; }
    }
    .gl-image img { width: 100%; height: 100%; object-fit: cover; }
    .gl-text .section-title { margin: 0.5rem 0 1.25rem; }
    .gl-text p { color: var(--text-dim); font-size: 16px; margin-bottom: 1rem; }


    /* ============= WHAT VA CAN DO ============= */
    #va-tasks { padding: 100px 4%; background: var(--bg); }
    .vt-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
    .vt-header .section-label { justify-content: center; }
    .vt-grid {
      max-width: 1300px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    .vt-card {
      background: var(--card); border: 1px solid var(--card-border); border-radius: 16px;
      padding: 2rem; transition: transform 0.3s ease, border-color 0.3s ease;
    }
    .vt-card:hover { transform: translateY(-6px); border-color: var(--orange); }
    .vt-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: linear-gradient(135deg, rgba(0, 194, 212, 0.15), rgba(0, 194, 212, 0.05));
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }
    .vt-icon svg { width: 24px; height: 24px; stroke: var(--orange-light); fill: none; stroke-width: 1.8; }
    .vt-card h4 { font-size: 18px; margin-bottom: 0.6rem; }
    .vt-card p { font-size: 14px; color: var(--text-dim); margin-bottom: 1.25rem; }
    .vt-link { font-size: 13px; font-weight: 600; color: var(--cyan); display: inline-flex; align-items: center; gap: 6px; }
    .vt-cta-wrap { text-align: center; margin-top: 3rem; }


    /* ============= RESULTS STATS ============= */
    #results-stats { padding: 100px 4%; text-align: center; }
    #results-stats .section-label { justify-content: center; }
    .stats-big { font-size: clamp(48px, 8vw, 84px); font-weight: 900; color: var(--orange-light); margin: 1rem 0 0.25rem; }
    .stats-big-label { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dimmer); margin-bottom: 3rem; }
    .stats-row { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
    .stat-block .stat-num { font-size: 40px; font-weight: 800; color: var(--cyan); }
    .stat-block .stat-lbl { font-size: 13px; color: var(--text-dim); margin-top: 0.4rem; }


    /* ============= FAQ ============= */
    #re-faq { padding: 100px 4%; background:var(--bg); }
    .faq-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
    .faq-header .section-label { justify-content: center; }
    .faq-grid { max-width: 900px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--card-border); }
    .faq-question {
      width: 100%; background: none; border: none; text-align: left;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.5rem 0; color: var(--text);
    }
    .faq-question h4 { font-size: 16px; font-weight: 600; }
    .faq-icon svg { width: 20px; height: 20px; stroke: var(--orange-light); fill: none; stroke-width: 2; transition: transform 0.3s ease; }
    .faq-item.active .faq-icon svg { transform: rotate(180deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .faq-answer-content { padding: 0 0 1.5rem; color: var(--text-dim); font-size: 14px; max-width: 750px; }
    .faq-item.active .faq-answer { max-height: 300px; }

    /* ============= FOOTER (same as contact page) ============= */
    footer { background: #0A0A0A; border-top: 1px solid var(--card-border); padding: 70px 4% 30px; }
    .footer-container { max-width: 1300px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
    .footer-brand p { color: var(--text-dim); font-size: 14px; margin: 1rem 0 1.25rem; max-width: 320px; }
    .footer-social { display: flex; gap: 0.75rem; }
    .footer-social-link {
      width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--card-border);
      display: flex; align-items: center; justify-content: center; color: var(--text-dim);
      transition: all 0.2s ease;
    }
    .footer-social-link:hover { color: var(--orange-light); border-color: var(--orange-light); }
    .footer-title { font-size: 15px; font-weight: 700; margin-bottom: 1.2rem; }
    .footer-links li { margin-bottom: 0.8rem; }
    .footer-links a { font-size: 14px; color: var(--text-dim); transition: color 0.2s; }
    .footer-links a:hover { color: var(--cyan); }
    .footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; font-size: 14px; color: var(--text-dim); }
    .footer-contact-item svg { width: 16px; height: 16px; stroke: var(--orange-light); fill: none; stroke-width: 2; }
    .footer-bottom {
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
      padding-top: 1.75rem; border-top: 1px solid var(--card-border);
      font-size: 13px; color: var(--text-dimmer);
    }
    .footer-bottom-links { display: flex; gap: 1.5rem; }
    .footer-bottom-links a:hover { color: var(--cyan); }

    /* ============= SCROLL REVEAL ============= */
    .reveal { opacity: 0; transform: translateY(40px); }

    /* ============= RESPONSIVE ============= */
    @media (max-width: 992px) {
      .re-hero-content { grid-template-columns: 1fr; }
      .re-hero-visual { order: -1; }
      .gl-container { grid-template-columns: 1fr; gap: 2.5rem; }
      .gl-image { order: -1; }
      .cr-grid { grid-template-columns: 1fr; }
      .vt-grid, .vs-grid, .pr-grid, .res-grid { grid-template-columns: repeat(2, 1fr); }
      .sec-container { grid-template-columns: 1fr; gap: 3rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-cta-btn { display: none; }
      .mobile-menu-btn { display: flex; }
      .re-hero-title { font-size: 32px; }
      .vt-grid, .vs-grid, .pr-grid, .res-grid { grid-template-columns: 1fr; }
      .stats-row { gap: 2rem; }
      .cta-banner-inner { flex-direction: column; text-align: center; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      #re-hero { padding-top: 120px; }
    }

    @media (max-width: 480px) {
      .re-hero-badge { left: 8px; bottom: -14px; padding: 10px 14px; }
      .orbit-icon { width: 40px; height: 40px; }
      .orbit-icon svg { width: 16px; height: 16px; }
    }
    @media (max-width: 768px) {
  .re-hero-visual img {
    width: 100%;
    max-width: 450px;
    min-height:200px;
    height: auto;
    transform: scale(1);
    transform-origin: center;
  }
}

/* ============= LEAD FORM SECTION ============= */
  #lead-form {
    padding: 100px 4%;
    background: var(--black-light);
    position: relative;
    overflow: hidden;
  }
  #lead-form::before {
    content: '';
    position: absolute;
    right: -10%;
    bottom: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(0,194,212,0.15), transparent 65%);
    pointer-events: none;
  }

  .lf-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
  }

  .lf-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--orange-light);
    border-radius: 30px;
    padding: 10px 22px 10px 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2rem;
    transition: background 0.25s ease;
  }
  .lf-badge:hover { background: rgba(0,229,249,0.08); }
  .lf-badge-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex; align-items: center; justify-content: center;
  }
  .lf-badge-icon svg { width: 16px; height: 16px; }

  .lf-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
  }

  .lf-desc {
    color: var(--text-dim);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 2.5rem;
  }

  .lf-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.25rem;
  }

  .lf-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 1.25rem;
  }

  .lf-contact-icon {
    width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--orange-light);
    display: flex; align-items: center; justify-content: center;
  }
  .lf-contact-icon svg { stroke: var(--orange-light); width: 18px; height: 18px; }

  /* ---- FORM CARD ---- */
  .lf-right {
    background: linear-gradient(160deg, rgba(0,163,179,0.12), rgba(10,10,10,0.4));
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);

  }

  .lf-form { display: flex; flex-direction: column; gap: 1rem; }

  .lf-field { position: relative; width: 100%; }

  .lf-field input,
  .lf-field select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 163, 179, 0.1);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    appearance: none;
  }

  .lf-field select { cursor: pointer; }
  .lf-field select option { background: #0A0A0A; color: var(--text); }
  .lf-field select:invalid { color: var(--text-dim); }

  .lf-field input::placeholder { color: var(--text-dim); }

  .lf-field input:focus,
  .lf-field select:focus {
    border-color: var(--orange-light);
    background: rgba(0, 229, 249, 0.06);
  }

  .lf-field.lf-invalid input,
  .lf-field.lf-invalid select {
    border-color: #ff5c5c;
  }

  .lf-error {
    display: block;
    color: #ff8080;
    font-size: 12px;
    margin: 4px 4px 0;
    min-height: 14px;
  }

  .lf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 28px;
    border-radius: 14px;
    border: none;
    margin-top: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
    box-shadow: 0 10px 28px rgba(0, 194, 212, 0.25);
  }
  .lf-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 194, 212, 0.5); }
  .lf-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

  .lf-submit-icon {
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
  }
  .lf-submit-icon svg { width: 14px; height: 14px; stroke: #fff; }

  /* ---- SUCCESS MODAL ---- */
  .lf-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1.5rem;
  }
  .lf-modal-overlay.active { display: flex; }

  .lf-modal {
    background: var(--bg-alt);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: lf-pop 0.35s ease;
  }
  @keyframes lf-pop {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }

  .lf-modal-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
  }
  .lf-modal-icon svg { width: 30px; height: 30px; }

  .lf-modal h3 { font-size: 22px; font-weight: 800; margin-bottom: 0.6rem; }
  .lf-modal p { color: var(--text-dim); font-size: 14px; margin-bottom: 1.5rem; }
  .lf-modal .btn-primary { width: 100%; justify-content: center; }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 992px) {
    .lf-container { grid-template-columns: 1fr; }
    .lf-right { order: -1; }
  }
  @media (max-width: 480px) {
    .lf-right { padding: 1.75rem; border-radius: 20px; }
    .lf-contact-row { gap: 1rem; }
  }
@media (max-width: 480px) {
  .lf-right { order: 1; }
}
  .lf-form-heading {
  display: block;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
}
 
  /* =================== OVERVIEW STRIP =================== */
  #services-overview {
    background: var(--black);
    padding: clamp(60px,10vw,100px) clamp(1rem,5vw,5rem);
    position: relative; overflow: hidden;
  }
  .overview-glow {
    position: absolute; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0,194,212,0.06) 0%, transparent 60%);
    top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
  }
  .overview-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
  .overview-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
  .overview-header p { font-size: 0.90rem; color: var(--gray); margin-top: 1rem; }

  .overview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
  .ov-card {
    background: var(--black); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px; padding: 1.5rem; text-align: center;
    position: relative; overflow: hidden; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1); text-decoration: none; display: block;
  }
  .ov-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #00C2D4, #00A3B3);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
  }
  .ov-card:hover::before { transform: scaleX(1); }
  .ov-card:hover { transform: translateY(-8px); border-color: rgba(0,194,212,0.3); box-shadow: 0 20px 50px rgba(0,194,212,0.1); }

  .ov-icon {
    width: 52px; height: 52px; margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(0,194,212,0.15), rgba(0,194,212,0.05));
    border: 1px solid rgba(0,194,212,0.2); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s;
  }
  .ov-card:hover .ov-icon { background: linear-gradient(135deg, #00C2D4, #00A3B3); }
  .ov-card:hover .ov-icon svg { stroke: var(--black); }
  .ov-icon svg { width: 24px; height: 24px; stroke: var(--cyan); stroke-width: 1.5; fill: none; transition: stroke 0.4s; }
  .ov-card h4 { font-size: 0.85rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--white); }
  .ov-card p { font-size: 0.75rem; color: var(--gray); line-height: 1.5; }
  @media (max-width: 992px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .overview-header {
    max-width: 600px;
    margin: 0 auto 3rem;
  }

  .overview-header p {
    font-size: 0.95rem;
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  #services-overview {
    padding: clamp(40px, 8vw, 60px) 1rem;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .overview-header {
    max-width: 100%;
    margin: 0 auto 2.5rem;
  }

  .overview-header .section-title {
    font-size: 1.4rem;
  }

  .overview-header p {
    font-size: 0.88rem;
    padding: 0 0.5rem;
  }

  .ov-card {
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .ov-card h4 {
    font-size: 0.9rem;
  }

  .ov-card p {
    font-size: 0.8rem;
  }

  .ov-icon {
    width: 48px;
    height: 48px;
  }

  .ov-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* Extra small mobile */
@media (max-width: 380px) {
  .overview-header .section-title {
    font-size: 1.2rem;
  }

  .overview-header p {
    font-size: 0.8rem;
  }

  .ov-card {
    padding: 1rem 0.8rem;
  }

  .ov-card h4 {
    font-size: 0.8rem;
  }

  .ov-card p {
    font-size: 0.72rem;
  }

  .ov-icon {
    width: 42px;
    height: 42px;
  }

  .ov-icon svg {
    width: 18px;
    height: 18px;
  }
}

.overview-btn-wrap {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--cyan), #00A3B3);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0, 194, 212, 0.3);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-explore svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-explore:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(0, 194, 212, 0.45);
  background: linear-gradient(135deg, #00D4E6, #00A3B3);
}

.btn-explore:hover svg {
  transform: translateX(5px);
}

.btn-explore:active {
  transform: scale(0.97);
}

/* ===== RESPONSIVE BUTTON ===== */
@media (max-width: 600px) {
  .overview-btn-wrap {
    margin-top: 2rem;
  }

  .btn-explore {
    padding: 0.7rem 1.8rem;
    font-size: 0.82rem;
    gap: 0.5rem;
  }

  .btn-explore svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 380px) {
  .btn-explore {
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
  }

  .btn-explore svg {
    width: 14px;
    height: 14px;
  }
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active {
  display: block;
  opacity: 1;
}
.mobile-menu {
  z-index: 1100;
}

/* Whats Included */
#whats-included {
  padding: 100px 4% 140px;   /* extra bottom padding so labels don't clip */
  background: var(--black-light);
  text-align: center;
  overflow: hidden;
}
.wi-header { max-width: 700px; margin: 0 auto 5rem; }
.wi-header .section-label { justify-content: center; }
.wi-header .section-title { margin-top: 0.5rem; }

/* ===== Orbit container ===== */
.orbit-container {
  --orbit-size: min(680px, 92vw);
  --node-size: 92px;
  --radius: calc(var(--orbit-size) / 2);
  position: relative;
  width: var(--orbit-size);
  height: var(--orbit-size);
  margin: 0 auto;
  overflow: visible;
  position:relative;
  top:30px;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(0, 194, 212, 0.3);
  border-radius: 50%;
}

/* ===== Center circle ===== */
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44%; height: 44%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #112a2c, #050c0d);
  border: 1px solid rgba(0, 194, 212, 0.3);
  box-shadow: 0 0 60px rgba(0, 194, 212, 0.45),
              0 0 130px rgba(0, 194, 212, 0.2),
              inset 0 0 30px rgba(0, 194, 212, 0.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 3;
}
.orbit-center-icon { width: 20%; margin-bottom: 0.75rem; }
.orbit-center-icon svg {
  width: 100%; height: auto;
  stroke: var(--cyan); fill: none; stroke-width: 1.6;
  filter: drop-shadow(0 0 10px rgba(0,194,212,0.7));
}
.orbit-center-title { color: #fff; font-weight: 700; font-size: 20px; letter-spacing: 0.2px; }
.orbit-center-sub { color: var(--text-dim); font-size: 13px; margin-top: 4px; }

/* ===== Rotating layer ===== */
.orbit-rotator {
  position: absolute;
  inset: 0;
  animation: orbit-spin 30s linear infinite;
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.orbit-node {
  position: absolute;
  top: 50%; left: 50%;
  width: var(--node-size); height: var(--node-size);
  margin: calc(var(--node-size) / -2) 0 0 calc(var(--node-size) / -2);
  transform: rotate(var(--angle)) translate(var(--radius)) rotate(calc(-1 * var(--angle)));
}

.orbit-node-inner {
  position: relative;
  width: var(--node-size); height: var(--node-size);
  animation: orbit-spin-reverse 30s linear infinite;
}
@keyframes orbit-spin-reverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

.orbit-icon {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #112a2c, #050c0d);
  border: 1px solid rgba(0, 194, 212, 0.35);
  box-shadow: 0 0 26px rgba(0, 194, 212, 0.55),
              0 0 55px rgba(0, 194, 212, 0.25);
  display: flex; align-items: center; justify-content: center;
}
.orbit-icon svg {
  width: 44%; height: auto;
  stroke: var(--cyan); fill: none; stroke-width: 1.7;
}

/* label is now absolutely positioned BELOW the icon, doesn't affect rotation pivot at all */
.orbit-label {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
  letter-spacing: 0.15px;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .orbit-rotator, .orbit-node-inner { animation: none; }
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .orbit-container {
    --orbit-size: min(520px, 94vw);
    --node-size: 74px;
  }
}

@media (max-width: 640px) {
  .orbit-container {
    width: 100%;
    height: auto;
  }
  .orbit-ring { display: none; }
  .orbit-center {
    position: static;
    transform: none;
    width: 150px; height: 150px;
    margin: 0 auto 2.2rem;
  }
  .orbit-rotator {
    position: static;
    animation: none;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }
  .orbit-node {
    position: static;
    width: 100%; height: auto;
    margin: 0;
    transform: none;
  }
  .orbit-node-inner {
    position: relative;
    animation: none;
    width: 100%; height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-align: left;
    background: var(--card, #0e1e1f);
    border: 1px solid rgba(0,194,212,0.15);
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
  }
  .orbit-icon { width: 56px; height: 56px; flex-shrink: 0; }
  .orbit-label {
    position: static;
    transform: none;
    width: auto;
    text-align: left;
    font-size: 13.5px;
  }
}

/* ============= MOBILE DROPDOWN STYLES ============= */
@media (max-width: 768px) {
  
  /* Hide desktop nav */
  .nav-links, .nav-cta-btn { display: none; }
  .mobile-menu-btn { display: flex; }
  
  /* Mobile Dropdown */
  .mobile-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .mobile-dropdown-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
  }
  
  .mobile-dropdown-btn .arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: var(--text-dim);
  }
  
  .mobile-dropdown-btn.active .arrow {
    transform: rotate(180deg);
  }
  
  .mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding-left: 16px;
  }
  
  .mobile-dropdown-content.active {
    max-height: 600px;
    padding: 8px 0 16px 16px;
  }
  
  .mobile-dropdown-content a {
    display: block;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dim);
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
  }
  
  .mobile-dropdown-content a:hover {
    color: var(--cyan);
    border-left-color: var(--cyan);
    background: rgba(0, 194, 212, 0.05);
  }
  
  /* Mobile menu link style */
  .mobile-menu a:not(.btn-primary) {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 17px;
    font-weight: 500;
  }
  
  .mobile-menu a:not(.btn-primary):last-of-type {
    border-bottom: none;
  }
}

/* Navbar Fix */
#navbar {
  box-shadow: none !important;
  background: rgba(10, 10, 10, 0.92) !important;
}

.nav-links > li > a {
  text-shadow: none !important;
}

/* Hero Fix */
#re-hero {
  min-height: 90vh !important;
  padding: 120px 8% 50px !important;
}

@media (max-width: 768px) {
  #re-hero {
    padding: 100px 4% 30px !important;
  }
}