   

    :root {
      --red: #f05c62;
      --red-dark: #f05c62;
      --red-glow: rgba(232, 92, 92, 0.25);
      --black: #333945;
      --charcoal: #333945;
      --warm-white: #f5f0eb;
      --muted: #888;
      --border: rgba(255,255,255,0.08);
    }

    html { scroll-behavior: smooth; }

    .teamhomebanner2-page-body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--black);
      color: var(--warm-white);
      overflow-x: hidden;
    }

    /* ─── HERO WRAPPER ─────────────────────────────────── */
    .teamhomebanner2-page {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
    }

    /* ─── BACKGROUND TEXTURE ─────────────────────────── */
    .teamhomebanner2-page::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      z-index: 0;
      pointer-events: none;
    }

    /* ─── LEFT: CONTENT ────────────────────────────────── */
    .teamhomebanner2-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 60px 80px 80px;
    }

    /* Eyebrow */
    .teamhomebanner2-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.7s ease 0.2s forwards;
    }

    .teamhomebanner2-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 2px;
      background: var(--red);
      flex-shrink: 0;
    }

    /* Heading */
    .teamhomebanner2-heading {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 900;
      font-size: 3rem;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--warm-white);
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.75s ease 0.35s forwards;
    }

    .teamhomebanner2-heading em {
      color: var(--red);
    }

    /* Desc */
    .teamhomebanner2-desc {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(245, 240, 235, 0.65);
      max-width: 480px;
      margin-bottom: 44px;
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.75s ease 0.5s forwards;
    }

    /* Stats Row */
    .teamhomebanner2-stats {
      display: flex;
      gap: 36px;
      margin-bottom: 48px;
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.75s ease 0.65s forwards;
    }

    .teamhomebanner2-stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding-left: 18px;
      border-left: 2px solid var(--red);
    }

    .teamhomebanner2-stat strong {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--warm-white);
      line-height: 1;
    }

    .teamhomebanner2-stat span {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* CTA Row */
    .teamhomebanner2-cta-row {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.75s ease 0.8s forwards;
    }

    .teamhomebanner2-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 32px;
      background: var(--red);
      color: #fff;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: background 0.3s ease, transform 0.2s ease;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }

    .teamhomebanner2-btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.12);
      opacity: 0;
      transition: opacity 0.2s;
    }

    .teamhomebanner2-btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
    .teamhomebanner2-btn-primary:hover::after { opacity: 1; }

    .teamhomebanner2-btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: rgba(245,240,235,0.7);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .teamhomebanner2-btn-ghost i { font-size: 0.75rem; transition: transform 0.2s; }
    .teamhomebanner2-btn-ghost:hover { color: var(--warm-white); border-color: var(--warm-white); }
    .teamhomebanner2-btn-ghost:hover i { transform: translateX(4px); }

    /* Trust badge */
    .teamhomebanner2-trust {
      margin-top: 52px;
      display: flex;
      align-items: center;
      gap: 12px;
      opacity: 0;
      animation: fadeUp 0.75s ease 1s forwards;
    }

    .teamhomebanner2-trust-icons {
      display: flex;
    }

    .teamhomebanner2-trust-icons span {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--charcoal);
      border: 2px solid var(--black);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      color: var(--red);
      margin-right: -10px;
    }

    .teamhomebanner2-trust-text {
      font-size: 0.78rem;
      color: rgba(245,240,235,0.5);
      line-height: 1.5;
      margin-left: 18px;
    }

    .teamhomebanner2-trust-text strong {
      display: block;
      color: rgba(245,240,235,0.85);
      font-weight: 500;
    }

    /* ─── RIGHT: IMAGE PANEL ────────────────────────────── */
    .teamhomebanner2-visual {
      position: relative;
      z-index: 2;
      overflow: hidden;
    }

    /* Main Image */
    .teamhomebanner2-img-wrap {
      position: absolute;
      inset: 0;
      opacity: 0;
      animation: imgReveal 1.2s ease 0.4s forwards;
    }

    .teamhomebanner2-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transform: scale(1.06);
      animation: imgZoom 8s ease 0.4s forwards;
    }

    /* Dark overlay */
    .teamhomebanner2-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(13,13,13,0.6) 0%,
        rgba(13,13,13,0.1) 60%,
        transparent 100%
      );
    }

    /* Diagonal divider line */
    .teamhomebanner2-divider {
      position: absolute;
      left: -100px;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 3;
      pointer-events: none;
      background: none;
    }

    /* .teamhomebanner2-divider svg {
      width: 100%;
      height: 100%;
      display: block;
    } */

    /* Floating Card */
    .teamhomebanner2-float-card {
      position: absolute;
      bottom: 52px;
      left: 100px;
      z-index: 5;
      background: #333945;
      border: 1px solid var(--border);
      backdrop-filter: blur(18px);
      padding: 20px 24px;
      min-width: 220px;
      opacity: 0;
      transform: translateX(-20px);
      animation: slideRight 0.8s ease 1.1s forwards;
      z-index: 99999999999999;
    }

    .teamhomebanner2-float-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 100%;
      background: var(--red);
      z-index: 99999999999999;
    }

    .teamhomebanner2-float-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .teamhomebanner2-float-value {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--warm-white);
      line-height: 1;
    }

    .teamhomebanner2-float-sub {
      font-size: 0.72rem;
      color: var(--red);
      font-weight: 500;
      margin-top: 4px;
    }

    /* Top badge on image */
    .teamhomebanner2-badge {
      position: absolute;
      top: 40px;
      right: 40px;
      z-index: 5;
      width: 88px;
      height: 88px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 1px;
      opacity: 0;
      animation: popIn 0.6s cubic-bezier(0.34,1.56,0.64,1) 1.3s forwards;
    }

    .teamhomebanner2-badge strong {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 1.55rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }

    .teamhomebanner2-badge span {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
    }

    /* Scroll indicator */
    .teamhomebanner2-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      opacity: 0;
      animation: fadeUp 0.6s ease 1.5s forwards;
    }

    .teamhomebanner2-scroll span {
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(245,240,235,0.35);
    }

    .teamhomebanner2-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(245,240,235,0.35), transparent);
      animation: scrollPulse 2s ease-in-out 1.5s infinite;
    }

    /* ─── ANIMATIONS ─────────────────────────────────────── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes imgReveal {
      to { opacity: 1; }
    }

    @keyframes imgZoom {
      to { transform: scale(1); }
    }

    @keyframes slideRight {
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes popIn {
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; height: 40px; }
      50% { opacity: 1; height: 56px; }
    }

    /* Counter animation */
    .teamhomebanner2-count { display: inline;font-size: 2rem; }

    /* ─── CONTACT WRAP — centered over the image ──────────── */
.teamhomebanner2-contact-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(20px);
  z-index: 6;
  width: 90%;
  max-width: 400px;
  opacity: 0;
  animation: formReveal 0.85s ease 0.6s forwards;
}

@keyframes formReveal {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(0);
  }
}

/* ─── CARD — glassmorphism over the photo ─────────────── */
.teamhomebanner2-contact-card {
  background: rgba(13, 13, 13, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(22px);
  padding: 32px 28px 24px;
  position: relative;
}

/* Red left accent bar */
.teamhomebanner2-contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
}

/* Clipped top-right corner to match btn-primary aesthetic */
.teamhomebanner2-contact-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 22px 22px 0;
  border-color: transparent rgba(13,13,13,0.4) transparent transparent;
}

/* ─── CARD HEADER ─────────────────────────────────────── */
.teamhomebanner2-contact-top {
  margin-bottom: 22px;
}

.teamhomebanner2-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(240, 92, 98, 0.12);
  border: 1px solid rgba(240, 92, 98, 0.30);
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 12px;
}

.teamhomebanner2-pill-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pillPulse 1.6s ease-in-out infinite;
}

@keyframes pillPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.7); }
}

.teamhomebanner2-contact-heading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--warm-white);
  margin: 0 0 5px;
  letter-spacing: -0.02em;
}

.teamhomebanner2-contact-heading em {
  color: var(--red);
}

.teamhomebanner2-contact-sub {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 0;
}

/* ─── FORM FIELDS ─────────────────────────────────────── */
.teamhomebanner2-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.teamhomebanner2-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.teamhomebanner2-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.teamhomebanner2-field label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.5);
}

.teamhomebanner2-field input,
.teamhomebanner2-field select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--warm-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  padding: 9px 12px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  box-sizing: border-box;
}

.teamhomebanner2-field input::placeholder {
  color: rgba(245, 240, 235, 0.18);
}

.teamhomebanner2-field input:focus,
.teamhomebanner2-field select:focus {
  border-color: var(--red);
  background: rgba(240, 92, 98, 0.08);
}

/* Select arrow */
.teamhomebanner2-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 30px;
  cursor: pointer;
}

.teamhomebanner2-field select option {
  background: #1a1a1a;
  color: var(--warm-white);
}

/* ─── SUBMIT ──────────────────────────────────────────── */
.teamhomebanner2-form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  font-size: 0.8rem;
}

/* ─── NOTE ────────────────────────────────────────────── */
.teamhomebanner2-form-note {
  text-align: center;
  font-size: 0.65rem;
  color: rgba(245, 240, 235, 0.22);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: 0.04em;
}

.teamhomebanner2-form-note i {
  font-size: 0.58rem;
  color: var(--red);
  opacity: 0.6;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .teamhomebanner2-contact-wrap {
    width: 85%;
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .teamhomebanner2-field-row { grid-template-columns: 1fr; }
  .teamhomebanner2-contact-card { padding: 22px 18px 18px; }
  .teamhomebanner2-contact-heading { font-size: 1.35rem; }
  .teamhomebanner2-contact-wrap { width: 88%; }
}

    /* ─── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 1024px) {
      .teamhomebanner2-page {
        grid-template-columns: 1fr;
        grid-template-rows: auto 55vw;
      }

      .teamhomebanner2-content {
        padding: 70px 40px 50px;
        order: 1;
      }

      .teamhomebanner2-visual { order: 2; }
      .teamhomebanner2-divider { display: none; }
      .teamhomebanner2-float-card { left: 20px; bottom: 30px; }
      .teamhomebanner2-scroll { display: none; }
    }

    @media (max-width: 640px) {
      .teamhomebanner2-content { padding: 50px 24px 40px; }
      .teamhomebanner2-heading { font-size: 2.4rem; }
      .teamhomebanner2-stats { gap: 20px; }
      .teamhomebanner2-stat strong { font-size: 1.5rem; }
      .teamhomebanner2-page { grid-template-rows: auto 200vw; }
      .teamhomebanner2-badge { width: 68px; height: 68px; top: 16px; right: 16px; }
      .teamhomebanner2-badge strong { font-size: 1.2rem; }
    }





    /* hero popup */
    /* ===== THANK YOU POPUP ===== */
.teamhome-hero-contactthankyou {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.teamhome-hero-contactthankyou.active {
  display: flex;
}

.teamhome-popup-box {
  background: #fff;
  border-radius: 24px;
  padding: 52px 40px 40px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  position: relative;
  box-shadow: 0 32px 80px rgba(240, 92, 98, 0.18), 0 8px 24px rgba(0,0,0,0.10);
  animation: teamhome-popup-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes teamhome-popup-in {
  from { opacity: 0; transform: scale(0.65) translateY(40px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Close Button */
.teamhome-popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.teamhome-popup-close:hover {
  color: #f05c62;
}

/* Tick Icon Circle */
.teamhome-popup-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(240, 92, 98, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: teamhome-tick-pop 0.5s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes teamhome-tick-pop {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

.teamhome-popup-icon-wrap i {
  font-size: 38px;
  color: #f05c62;
}

/* Text */
.teamhome-popup-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
  line-height: 1.35;
}
.teamhome-popup-box p {
  font-size: 14px;
  color: #777;
  margin: 0 0 28px;
  line-height: 1.65;
}

/* Done Button */
.teamhome-popup-done-btn {
  background: #f05c62;
  color: #fff;
  border: none;
  padding: 13px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.teamhome-popup-done-btn:hover {
  background: #d94a50;
  transform: translateY(-1px);
}