/* ===== HOME PAGE STYLES ===== */
  .whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
  }

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

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  }

  @media (max-width: 768px) {
    .whatsapp-float {
      width: 55px;
      height: 55px;
      bottom: 18px;
      right: 18px;
    }

    .whatsapp-float img {
      width: 30px;
      height: 30px;
    }
  }
/* ---- HERO ---- */
.hero-section {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,245,245,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,245,245,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 30%, transparent 80%);
}
.hero-line-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  opacity: 0.7;
}
.hero-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.4rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 600;
  line-height: 0.97;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
}
.hero-headline em {
  color: #c8102e;
  opacity: 1;
}
.hero-headline span {
  font-style: italic;
  color: #c8102e;
  opacity: 1;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2.4rem;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.trust-pill {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-mute);
}
.trust-sep { color: var(--red); font-size: 0.7rem; }

/* Hero Abstract Visual */
.hero-abstract {
  position: relative;
  width: 280px;
  height: 280px;
}
.abs-ring {
  position: absolute;
  border: 1px solid rgba(245,245,245,0.08);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.abs-ring.r1 { width: 100%; height: 100%; border-color: rgba(200,16,46,0.15); }
.abs-ring.r2 { width: 70%; height: 70%; border-color: rgba(245,245,245,0.1); animation: rotateRing 18s linear infinite; }
.abs-ring.r3 { width: 42%; height: 42%; border-color: rgba(200,16,46,0.25); animation: rotateRing 10s linear infinite reverse; }
.abs-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 24px var(--red-glow);
}
@keyframes rotateRing {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-mute);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--white-mute), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ---- SOLVE SECTION — WHITE BG ---- */
.solve-section {
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.solve-section .section-label { color: var(--red); }
.solve-section .section-headline { color: #0d0d0d; }
.solve-card {
  background: #f7f7f7;
  border: 1px solid #e2e2e2;
  padding: 2rem 1.6rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.solve-card h3 i{
  /* background-color: #c8102e; */
  /* padding: 8px; */
  border-radius: 50px;
  color: #c8102e;
  font-weight: 200;
}
.solve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.solve-card:hover::before { transform: scaleX(1); }
.solve-card:hover { border-color: rgba(200,16,46,0.35); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.solve-num {
  background-color: #c8102e;
}
.solve-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.solve-text { font-size: 0.88rem; color: #555555; line-height: 1.7; }

/* ---- OVERVIEW SECTION ---- */
.overview-section { background: var(--black); }
.overview-visual {
  position: relative;
  height: 360px;
}
.ov-block {
  position: absolute;
  border: 1px solid var(--black-border);
}
.ov-block.b1 {
  width: 65%;
  height: 75%;
  top: 0; left: 0;
  background: var(--black-card);
}
.ov-block.b2 {
  width: 55%;
  height: 55%;
  bottom: 0; right: 0;
  background: linear-gradient(135deg, var(--black-card), var(--red-dim));
  border-color: rgba(200,16,46,0.2);
}
.ov-text-badge {
  position: absolute;
  bottom: 52px;
  left: 24px;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  z-index: 2;
}

/* ---- SERVICES SECTION ---- */
.services-section { background: var(--black-soft); border-top: 1px solid var(--black-border); border-bottom: 1px solid var(--black-border); }
.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2rem 1.8rem 1.8rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(200,16,46,0.3);
  background: #161616;
  transform: translateY(-3px);
}
.svc-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}
.svc-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.svc-title i{
  color: #c8102e;
  font-size: 15px;
}
.svc-desc { font-size: 0.88rem; color: var(--white-mute); line-height: 1.7; flex: 1; }
.svc-arrow {
  margin-top: 1.4rem;
  font-size: 1rem;
  color: var(--red);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-6px);
}
.service-card:hover .svc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---- PROCESS SECTION — WHITE BG ---- */
.process-section { background: #ffffff; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; }
.process-section .section-label { color: var(--red); }
.process-section .section-headline { color: #0d0d0d; }
.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  padding: 2rem 1.8rem;
  background: #f7f7f7;
  border: 1px solid #e2e2e2;
  position: relative;
  min-height: 220px;
  transition: var(--transition);
}
.process-step:hover { border-color: rgba(200,16,46,0.3); box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.process-connector {
  width: 1px;
  background: #e2e2e2;
  align-self: stretch;
}
.ps-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(200,16,46,0.18);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.ps-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 0.75rem;
}
.ps-text { font-size: 0.86rem; color: #555555; line-height: 1.7; }

@media (max-width: 991px) {
  .process-track { flex-direction: column; }
  .process-connector { width: 100%; height: 1px; }
}

/* ---- WHO SECTION ---- */
.who-section { background: var(--black-soft); border-top: 1px solid var(--black-border); border-bottom: 1px solid var(--black-border); }
.who-chip {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white-dim);
  line-height: 1.4;
  transition: var(--transition);
  cursor: default;
}
.who-chip:hover {
  background: var(--red-dim);
  border-color: rgba(200,16,46,0.3);
  color: var(--white);
}

/* ---- WHY SECTION — WHITE BG ---- */
.why-section { background: #ffffff; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; }
.why-section .section-label { color: var(--red); }
.why-section .section-headline { color: #0d0d0d; }
.why-card {
  padding: 2rem 1.6rem;
  border: 1px solid #e2e2e2;
  background: #f7f7f7;
  height: 100%;
  transition: var(--transition);
}
.why-card:hover { border-color: rgba(200,16,46,0.3); transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.why-icon-line {
  width: 28px;
  height: 2px;
  background: var(--red);
  /* margin-bottom: 1.2rem; */
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 0.75rem;
}
.why-title i{
  color: #c8102e;
  font-size: 15px;
}
.why-text { 
  font-size: 0.88rem; 
  color: #555555; 
  line-height: 1.7; 
}

/* ---- TESTIMONIALS ---- */
.testimonial-section {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  overflow: hidden;
}
.testimonial-track-wrapper {
  overflow: hidden;
  position: relative;
}
.testimonial-track-wrapper::before,
.testimonial-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.testimonial-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--black-soft), transparent);
}
.testimonial-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--black-soft), transparent);
}
.testimonial-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 1.5rem 1.5rem;
  will-change: transform;
  cursor: grab;
}
.testimonial-track:active { cursor: grabbing; }
.t-card {
  flex: 0 0 340px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2rem 1.8rem;
  transition: border-color 0.3s;
  user-select: none;
}
.t-card:hover { border-color: rgba(200,16,46,0.2); }
.t-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.t-quote::before { content: '\201C'; color: var(--red); font-size: 1.3rem; margin-right: 4px; }
.t-name { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.t-role { font-size: 0.78rem; color: var(--white-mute); letter-spacing: 0.04em; }

/* ---- FINAL CTA — WHITE BG ---- */
.final-cta-section {
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: #0d0d0d;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.cta-sub {
  font-size: 0.975rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.cta-btns .btn-ghost-white {
  color: #111111;
  border-color: rgba(17,17,17,0.3);
}
.cta-btns .btn-ghost-white:hover {
  background: rgba(17,17,17,0.06);
  border-color: rgba(17,17,17,0.5);
  color: #111111;
}
.cta-trust-note { font-size: 0.78rem; color: #888888; letter-spacing: 0.04em; }



/* ------------------------------------------------------blog----------------------------------------------------------------- */

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

/* ── SECTION ── */
.hbl-section {
  background: #080808;
  padding: 100px 0 96px;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* ── HEADER ── */
.hbl-header {
  max-width: 1360px;
  margin: 0 auto 52px;
  padding: 0 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hbl-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c8102e;
  display: block;
  margin-bottom: 0.9rem;
}
.hbl-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: #f5f5f5;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.hbl-heading em {
  font-style: italic;
  color: #f5f5f5;
  opacity: 0.45;
}
.hbl-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* View all button */
.hbl-btn-all {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8102e;
  border: 1px solid #c8102e;
  background: transparent;
  padding: 0.65rem 1.4rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s ease, color 0.25s ease;
}
.hbl-btn-all:hover {
  background: #c8102e;
  color: #fff;
}

/* Pause/Play toggle */
.hbl-toggle {
  width: 38px;
  height: 38px;
  background: #141414;
  border: 1px solid #222;
  color: #a0a0a0;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.hbl-toggle:hover { border-color: #c8102e; color: #fff; }

/* ── FADE EDGES ── */
.hbl-viewport {
  position: relative;
  overflow: hidden;
}
.hbl-viewport::before,
.hbl-viewport::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.hbl-viewport::before {
  left: 0;
  background: linear-gradient(to right, #080808 0%, transparent 100%);
}
.hbl-viewport::after {
  right: 0;
  background: linear-gradient(to left, #080808 0%, transparent 100%);
}

/* ── TRACK ── */
.hbl-track {
  display: flex;
  gap: 24px;
  padding: 8px 4px 16px;
  will-change: transform;
  cursor: grab;
}
.hbl-track:active { cursor: grabbing; }

/* ── CARD ── */
.hbl-card {
  flex: 0 0 360px;
  background: #111111;
  border: 1px solid #1e1e1e;
  padding: 1.8rem 1.8rem 1.6rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
  user-select: none;
}

/* Red top line — slides in on hover */
.hbl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #c8102e;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}
.hbl-card:hover {
  border-color: rgba(200,16,46,0.28);
  transform: translateY(-5px);
}
.hbl-card:hover::before { transform: scaleX(1); }

/* Card meta row */
.hbl-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.hbl-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8102e;
  background: rgba(200,16,46,0.1);
  padding: 0.2rem 0.55rem;
}
.hbl-card-date {
  font-size: 0.72rem;
  color: #555;
  letter-spacing: 0.05em;
}

/* Ghost number */
.hbl-ghost-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(200,16,46,0.07);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 0.3rem;
  display: block;
}

/* Title */
.hbl-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f0f0f0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}

/* Excerpt */
.hbl-card-excerpt {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 1.5rem;
}

/* Read CTA */
.hbl-card-read {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8102e;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hbl-card-read-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.hbl-card:hover .hbl-card-read-arrow { transform: translateX(5px); }

/* ── PROGRESS BAR ── */
.hbl-footer {
  max-width: 1360px;
  margin: 28px auto 0;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hbl-progress {
  flex: 1;
  max-width: 260px;
  height: 1px;
  background: #1e1e1e;
  position: relative;
  overflow: hidden;
}
.hbl-progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: #c8102e;
  width: 20%;
  transition: width 0.5s ease;
}
.hbl-progress-text {
  font-size: 0.72rem;
  color: #444;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hbl-header { padding: 0 32px; }
  .hbl-footer  { padding: 0 32px; }
  .hbl-card    { flex: 0 0 300px; }
}
@media (max-width: 767px) {
  .hbl-section { padding: 72px 0; }
  .hbl-header  { padding: 0 22px; margin-bottom: 36px; }
  .hbl-footer  { padding: 0 22px; }
  .hbl-card    { flex: 0 0 280px; }
  .hbl-heading { font-size: 1.9rem; }
  .hbl-header  { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hbl-card    { flex: 0 0 260px; }
}
/* ---- MISSION / VISION ---- */
.mv-section {
  background: var(--black);
  border-bottom: 1px solid var(--black-border);
}
.mv-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 3rem 2.4rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.mv-card--right::before { background: rgba(200,16,46,0.35); }
.mv-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.4rem;
}
.mv-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.7;
}
