/* ============================================
   BREACHPROOFSME — style.css
   Exact UI match with design reference
   ============================================ */

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


html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  color: var(--text-dark);
  background: var(--white);
}

.navbar {
    width: 100%;
    background: #111827;
    padding: 16px 20px;
    position: relative;
    z-index: 1000;
  }

  .nav-inner {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  /* LOGO */

  .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .logo svg {
    width: 180px;
    height: auto;
  }

  /* NAV LINKS */

  .nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    white-space: nowrap;
  }

  .nav-links a:hover {
    color: #ef4444;
  }

  /* DIVIDER */

  .divider {
    display: flex;
    align-items: center;
  }

  /* BUTTONS */

  .nav-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
  }

  .btn {
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
  }

  .btn-ghost {
    border: 1px solid white;
    color: white;
    background: transparent;
  }

  .btn-ghost:hover {
    background: white;
    color: black;
  }

  .btn-danger {
    background: #ef4444;
    color: white;
  }

  .btn-danger:hover {
    background: #dc2626;
  }

  /* HAMBURGER */

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

  .hamburger span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 20px;
  }

  /* =========================
          RESPONSIVE
  ========================= */

  @media (max-width: 991px) {

    .hamburger {
      display: flex;
    }

    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #111827;
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 18px;
      display: none;
    }

    .nav-links.active {
      display: flex;
    }

    .divider {
      display: none;
    }

    .nav-ctas {
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      margin-left: 0;
    }

    .btn {
      width: 100%;
      text-align: center;
    }
  }


a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 80px 0;
}

.section.white-section {
  background: var(--white);
  height: 300px;
}

/* ── SECTION LABELS ───────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  text-transform: capitalize;
  color: #535353;
  background-color: #D7CBB2;
  border-radius: 50px;
  padding: 20px 65px;
  margin-bottom: 16px;
}

.label-center {
  display: flex;
  justify-content: center;
}

.section-label.light {
  color: #535353;
  background: #D7CBB2;
}

.section-label.beige-label {
  color: #8b7355;
  background: var(--beige);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title.light {
  color: #4682B4;
}

.section-title.blue-title {
  color: var(--blue);
}

.section-title.blue-accent {
  color: var(--blue-dark);
}

.section-sub {
  max-width: 700px;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.section-sub p {
  width: calc(100% - 80px);
}

.section-sub.dark {
  color: var(--text-dark);
}

.container.banner {
  margin: 0;
}

.carousel-controls {
  position: relative;
  bottom: 40px;
  left: 0;
  transform: none;
}

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
  border: none;
  font-family: var(--font-body);
  text-transform: uppercase;
}

.btn-ghost {
  background: var(--white);
  color: var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-danger {
  background: var(--red);
  color: #fff;
}

.btn-danger:hover {
  background: #c53030;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--text-dark);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

.btn-white {
  background: var(--white);
  color: var(--text-dark);
}

.btn-white:hover {
  background: #f0f0f0;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.99);
  backdrop-filter: blur(10px);

  @media (max-width: 1365px) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.nav-inner {
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.logo strong {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}

.nav-links span {
  display: flex;
}

.nav-links li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  padding: 8px 12px;
  border-radius: 5px;
  transition: all .2s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-ctas {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);

}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  background-image: url(./images/ellise.png);
  width: 100%;
  height: 420px;
  background-position: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Banner Carousel */
.banner-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: scale(1.04);
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide.exit {
  opacity: 0;
  transform: scale(0.97);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 20, 0.85) 0%, rgba(20, 20, 40, 0.75) 50%, rgba(10, 10, 20, 0.85) 100%);
  z-index: 1;
}

/* Carousel progress bar */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  z-index: 4;
  width: 0%;
  transition: width linear;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 33px;
}

.carousel-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--white);
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.subtitle-box-home {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.subtitle-box-home svg {
  position: relative;
  top: 5px;
}

.shield-icon {
  position: absolute;
  top: -25px;

  svg {
    width: 40px;
  }
}

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

.hero-tagline {
  font-size: 30px;
  color: var(--white);
  font-weight: 700;
  line-height: 34px;
  width: calc(100% - 80px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-direction: column;
  width: 37%;
}

.hero-stats p {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--white);
}

.tagline {
  display: flex;
  gap: 50px;
}

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

.stat-num {
  font-family: var(--font-body);
  font-size: 62px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -9%;
}

.stat-label {
  font-size: 20px;
  color: #FAFAFACC;
  line-height: 1.3;
}

/* Hero CTA bar */
.hero-cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.cta-pill {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 22px 40px;
  font-size: 25px;
  font-weight: 700;
  color: var(--white);
  transition: all .3s;
  cursor: pointer;
  flex: 1;
  justify-content: center;
}

.cta-pill:last-child {
  border-right: none;
}

.cta-pill:hover {
  color: #fff;
  background: rgba(249, 115, 22, 0.08);
}

.cta-icon-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}



/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
.why-choose {
  background: var(--white);
  padding-bottom: 280px;
}

.why-choose .section-title,
.why-choose .section-label,
.why-choose .section-sub {
  text-align: center;
}

.why-choose .section-sub {
  margin: 0 auto 56px;
  max-width: 750px;
}

.why-grid {
  display: flex;
  justify-content: center;

}

.why-visual {
  position: relative;
  width: 50%;
}

.orange-wave-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.moving-wave-img {
  width: 100%;
  height: auto;
  display: block;
}

.why-points-overlay {
  position: absolute;
  left: auto;
  top: 50%;
  transform: translate(69%, -11%);
  display: flex;
  flex-direction: column;
  z-index: 10;
  max-width: 600px;
  right: 0;
  background-color: #1C1C1C;
  padding: 50px;
  border-radius: 30px;
}

.why-point-item {
  color: #fff;
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--text-gray);
}

.why-point-item:last-child {
  border-bottom: none;
}

.check-mark {
  width: 20px;
  height: 20px;
  background: #A30D1D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-point-item p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* ══════════════════════════════════════════
   STAND OUT
══════════════════════════════════════════ */
.stand-out {
  background: var(--white);
}

.stand-out-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: start;
}

.stand-out-left {
  position: sticky;
  top: 100px;
}

.stand-ctas {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.stand-out-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.white-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all .3s;
}

.white-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.white-card.highlight {
  border-color: var(--orange);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.03) 0%, #fff 100%);
}

.feature-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}



.white-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.white-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   FOUNDER
══════════════════════════════════════════ */
.founder {
  position: relative;
  overflow: hidden;
  background: #0a1428;
  padding: 80px 0 240px;
}

.founder-backdrop {
  position: absolute;
  inset: 0;
  background: url('images/Clartiyback.png') center/cover;
  opacity: 0.2;
  z-index: 0;
}

.founder-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.founder-bottom-section {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.col-section {
  position: absolute;
  top: 50px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.founder-bio {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.8;
  width: calc(100% - 80px)
}

.founder-white-tagline {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.6;
}

.founder-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-white-solid {
  background: #fff;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.btn-white-solid:hover {
  background: #f0f0f0;
}

.btn-outline-white-border {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

.founder-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-image-container {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.founder-clarity-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.founder-info-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(15px);
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  max-width: 100%;
}

.info-line {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.info-line:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.subtitle-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: 50%;
  justify-content: center;
  margin: 0 auto 40px;
}

/* ══════════════════════════════════════════
   SOLUTIONS
══════════════════════════════════════════ */
.solutions {
  background: var(--white);
}

.solutions .section-title,
.solutions .section-label {
  text-align: center;
}

.solutions .section-sub {
  text-align: left;
  margin: 0 auto 0 auto;
}

.solution-tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: #CDC7C9;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.tab-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 0;
}

.tab-btn span {
  position: relative;
  z-index: 1;
}

.tab-btn:hover {
  background: #e8e8e8;
  border-color: var(--text-gray);
}

.tab-btn.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-2px);
}

.solution-content {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 50px;
  align-items: start;
  background: var(--white);
  padding: 0;
}

/* fade handled via inline JS */

.solution-visual {
  position: relative;
}

.solution-img-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.solution-img-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.solution-main-img {
  width: 100%;
  height: auto;
  display: block;
}

.solution-caption {
  background: rgba(0, 0, 0, 0.99);
  color: #fff;
  padding: 16px 20px;
}

.small-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
}

.solution-carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}

.solution-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.solution-dot:hover {
  background: #bbb;
  transform: scale(1.2);
}

.solution-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

.solution-badge-top {
  display: inline-block;
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-sub);
}

.solution-subtitle {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.solution-subtitle.red {
  color: var(--red);
}

.solution-intro-text {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.solution-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-dark);
  font-family: var(--font-body);
}

.check-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  flex-shrink: 0;
}

.check-icon.red {
  background-image: url("./images/Iconcheck.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent;
  width: 24px;
  height: 24px;
}

.solution-desc {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  font-family: var(--font-body);
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: #fff;
}

.cta-dark-bg {
  position: absolute;
  inset: 0;
  background: url('./images/readyToTranform.png') center/cover;
  z-index: 0;
  height: 600px;
}

.cta-dark-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.9);
}

.cta-white-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 50% 45%;
  gap: 50px;
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  top: 200px;
}

.cta-sub {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-sub.dark {
  color: var(--text-dark);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.caption-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  svg {
    position: relative;
    top: 10px;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--black);
}

.contact-icon-img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-card-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-card-item:hover {
  transform: translateY(-4px);
}

.cta-card-item:first-child {
  grid-column: 1 / -1;
}

.cta-card-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



.cta-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-card-icon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}


.cta-icon-white-circle {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-icon-white-circle img {
  width: 28px;
  height: 28px;
}

.cta-icon-white-circle.calendar {
  background: rgba(255, 255, 255, 0.95);
}

.calendar-icon {
  font-size: 28px;
}

.cta-icon-white-circle.whatsapp {
  background: var(--whatsapp-bg);
}

.cta-card-label {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-sub);
  text-align: center;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: url(./images/footeBackground.png);
  background-position: top;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.footer-pattern-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 58.42%);
  background-size: 32px 32px;
  opacity: 0.4;
  z-index: 0;
}

.footer-content-wrapper {
  position: relative;
  z-index: 1;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.footer-desc {
  font-size: 13px;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 90%;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.social-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.social-icon:hover {
  background: rgba(249, 115, 22, 0.2);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--white);
  transition: all .2s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--orange);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all .3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cta-sub.dark {
    text-align: left;
    padding-left: 0;
  }

  .contact-details {
    padding-left: 85px;
  }

  .cta-white-card {
    text-align: center;
  }

  .founder-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section-title.light {
    text-align: center;
    width: 100%;
  }

  .cta-card-label {
    font-size: 18px;
  }

  .section-label {
    font-size: 18px;
    padding: 20px 40px;
  }

  .why-choose {
    padding-bottom: 0;
  }

  .why-visual {
    width: 100%;
  }

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

  .why-points-overlay {
    position: relative;
    right: 0;
    top: 0;
    transform: translate(15%, -31%);
    margin-top: 20px;
    max-width: 79%;
  }

  .stand-out-grid {
    grid-template-columns: 1fr;
  }

  .stand-out-left {
    position: relative;
    top: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .stand-out-right {
    grid-template-columns: 1fr 1fr;
  }

  .founder-inner {
    grid-template-columns: 1fr;
  }

  .founder-info-card {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 20px;
    max-width: 100%;
  }

  .solution-content {
    grid-template-columns: 1fr;
  }

  .cta-white-card {
    grid-template-columns: 1fr;
  }

  .cta-right {
    grid-template-columns: 1fr;
  }

  .cta-card-item:first-child {
    grid-column: 1;
  }

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

@media (max-width: 1564px) {
  .hero-tagline {
    font-size: 20px;
  }

  .logo {
    max-width: 20%;
  }

  .nav-links li a {
    font-size: 12px;
  }

  .cta-pill {
    font-size: 18px;
  }

  .why-points-overlay {
    transform: translate(56%, -11%);
  }



  .footer {
    padding: 0 60px;
  }

  .footer-logo {
    max-width: 100%;
  }
}

@media (max-width: 1700px) {
  .hero-content {
    padding: 0 40px;
  }

  .solutions .section-sub {
    margin: 0;
  }
}

@media (max-width: 1365px) {
  .hero-stats {
    width: 100%;
    margin-bottom: 50px;
  }

  .shield-icon {
    position: absolute;
    top: -50px;
    height: 0;
  }

  .logo {
    max-width: 50%;
  }

  .stand-out-grid {
    width: 100%;
  }

  .footer {
    padding: 0 10px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(10, 12, 16, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    padding: 16px 28px 8px;
    gap: 4px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    animation: slideDown 0.25s ease;
  }

  .nav-ctas {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    background: rgba(10, 12, 16, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 12px 28px 20px;
    gap: 10px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }

  /* Stack nav-ctas directly below nav-links when both active */
  .nav-links.active {
    display: flex;
  }

  .nav-ctas.active {
    display: flex;
    top: calc(65px + var(--mobile-nav-height, 0px));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li a {
    display: block;
    padding: 12px 4px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .nav-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 22px;
    font-size: 14px;
  }

  .hamburger {
    display: flex;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

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

  .hero-content {
    padding: 60px 24px 40px;
    flex-wrap: wrap;
  }

  .hero-cta-bar {
    flex-direction: row;
  }

  .cta-pill {
    border: none;
    width: 100%;
    font-size: 16px;
  }

  .cta-icon-circle {
    width: 50px;
    height: 50px;
  }

  .cta-icon-circle svg {
    width: 30px;
    height: 30px;
  }

  .cta-pill:last-child {
    border-bottom: none;
  }

  .solution-tabs {
    overflow-x: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 8px;
    gap: 10px;
  }

  .tab-btn {
    flex-shrink: 0;
  }

  .cta-white-card {
    padding: 32px 24px;
  }

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

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

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .footer-content-wrapper {
    padding: 60px;
  }



  .subtitle-box {
    width: 100%;
  }

  .nav-links span {
    display: none;
  }


}

@media (max-width: 1024px) {
  .cta-pill {
    padding: 15px 20px;
  }

  .section-sub svg {
    display: none;
  }

  .section-sub p {
    width: 100%;
  }

  .stand-out-grid {
    width: 100%;
  }

  .hero-cta-bar {
    flex-direction: column;
  }

  .cta-pill {
    align-items: center;
    justify-content: flex-start;
  }

  .why-points-overlay {
    max-width: 80%;
    transform: translate(29%, -36%);
  }

  .solution-features-grid {
    grid-template-columns: 1fr;
  }
}




@media (max-width: 767px) {
  .stand-out-right {
    grid-template-columns: 1fr;
  }

  .contact-details {
    padding-left: 0;
  }

  .contact-item {
    font-size: 18px;
  }

  .cta-icon-circle {
    width: 40px;
    height: 40px;
  }

  .cta-icon-circle svg {
    width: 24px;
    height: 24px;
  }

  .section.why-choose {
    padding-bottom: 0;
  }

  section.section.stand-out {
    padding-top: 0;
  }

  .why-points-overlay {
    max-width: 80%;
    transform: translate(11%, -23%);
    padding: 20px;
  }

  .moving-wave-img {
    height: 400px;
  }

  .caption-box,
  .stand-ctas {
    justify-content: center;
    align-items: center;
  }

  .solution-features-grid {
    padding-left: 20px;
  }

  .solution-subtitle {
    font-size: 30px;
    line-height: 1.2;
  }

  .section-title,
  .cta-sub.dark,
  .cta-white-card,
  .solutions .section-sub,
  .solution-info,
  .founder-bio,
  .stand-out-left,
  .founder-text {
    text-align: center;
  }

  .caption-box svg,
  .subtitle-box svg {
    display: none;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-inner {
    text-align: center;
  }

  .hero-title {
    font-size: 40px;
  }

  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  .cta-white-card {
    padding: 24px 20px;
  }

  .hero-stats {
    gap: 32px;
  }

  .stat-num {
    font-size: 28px;
  }

  .cta-right {
    grid-template-columns: 1fr;
  }
}

.label-center {
  display: flex;
  justify-content: center;
}