/* House of B Core Styles */
:root {
--gold:#c9a24d;
--gold-hover:#e6c36a;
--black:#000;
--dark:#0b0b0b;
--white:#fff;
--text-muted:#b5b5b5;
}

body{
font-family:'Inter',sans-serif;
background:radial-gradient(circle at right,#1a1405,#000 60%);
color:var(--white);
}
a{color:#999999; list-style:none; text-decoration:none;}
a:hover{color:#c9a24d;}
.header{
background:transparent;
transition:.3s;
}

.header-scrolled{
background:rgba(0,0,0,.95);
box-shadow:0 8px 30px rgba(201,162,77,.25);
}

.nav-link{color:#fff}
.nav-link:hover,.nav-link.active{color:var(--gold)}

.hero {
  min-height: 100vh;
  background: #000;
  color: #fff;
  padding-top: 120px;
}

.hero-title-main {
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 700;
  line-height: 1.1;
  font-family:'Playfair Display',serif;
  letter-spacing: -.025em;
}

.gold {
  color: #d4af37;
}

.hero-description {
  max-width: 750px;
  margin: auto;
  color: #cfcfcf;
  font-size: 18px;
}

.btn-outline-gold {
  border: 1px solid #d4af37;
  color: #d4af37;
  background: transparent;
}

.btn-outline-gold:hover {
  background: #d4af37;
  color: #000;
}

.hero-stats {
  font-size: 15px;
  color: #cfcfcf;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.scroll-down .arrow-down {
  height: 30px;
  color: #d4af37;
  margin: 10px auto 0;
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

.gold{color:var(--gold)}

.section{padding:100px 0}
.section-dark{background:#000}
.section-title{color:var(--gold)}

/* NAVBAR FIX */
.navbar-nav .nav-link {
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

/* CTA BUTTON FIX */
.btn-gold {
  background: linear-gradient(135deg, #c9a24d, #e6c36a);
  color: #000;
  font-weight: 500;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(201,162,77,0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e6c36a, #c9a24d);
  color: #000;
}

/* HEADER BACKDROP IMPROVEMENT */
.header {
  backdrop-filter: blur(6px);
}

/* MOBILE CTA FULL WIDTH */
@media (max-width: 991px) {
  .navbar .btn {
    width: 100%;
    text-align: center;
  }
}

.hero-image-float {
  animation: floatY 6s ease-in-out infinite;
}

/* FORCE OUTLINE GOLD BUTTON */
.gradient-gold {
  background: linear-gradient(
    90deg,
    #c6a54a 0%,
    #f5e6a8 40%,
    #d4af37 70%,
    #b8902e 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-gold,
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn-gold {
  box-shadow: 0 10px 28px rgba(201,162,77,0.35);
}

.btn-outline-gold {
  box-shadow: none;
}
.btn-outline-gold {
  color: var(--gold) !important;
  border: 2px solid var(--gold) !important;
  background-color: transparent !important;
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* HOVER */
.btn-outline-gold:hover,
.btn-outline-gold:focus {
  background-color: var(--gold) !important;
  color: #000 !important;
  box-shadow: 0 0 0 0.2rem rgba(201,162,77,0.25);
}

/* REMOVE BOOTSTRAP FOCUS BORDER */
.btn-outline-gold:focus-visible {
  outline: none;
}

.scroll-down-wrapper {
  margin-top: 24px;
}

.scroll-down {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.scroll-down .arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
  transform: rotate(45deg);
  animation: arrowFloat 1.8s ease-in-out infinite;
}

@keyframes arrowFloat {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(8px) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.5;
  }
}

/* STATS CARD BASE */
.stats-card {
  position: relative;
  background: linear-gradient(180deg, #0c0c0c, #000);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.45s ease;
  overflow: hidden;
}

/* GOLD GLOW LAYER */
.stats-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(212, 175, 55, 0.18),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* HOVER / FOCUS (desktop + accessibility) */
.stats-card:hover,
.stats-card:focus-within {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(212, 175, 55, 0.35);
}

.stats-card:hover::before,
.stats-card:focus-within::before {
  opacity: 1;
}

/* ICON */
.stats-card .icon {
  font-size: 38px;
  color: #d4af37;
  margin-bottom: 18px;
  transition: transform 0.45s ease;
}

/* TITLE */
.stats-card h3 {
  font-size: 40px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 8px;
}

/* TEXT */
.stats-card p {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 6px;
}

.stats-card span {
  color: #bdbdbd;
  font-size: 18px;
}

/* ICON FLOAT ON HOVER */
.stats-card:hover .icon,
.stats-card:focus-within .icon {
  transform: scale(1.15);
}

/* MOBILE TOUCH FEEDBACK */
@media (max-width: 768px) {
  .stats-card:hover {
    transform: none;
    box-shadow: none;
  }

  .stats-card:active {
    transform: scale(0.97);
    border-color: #d4af37;
  }
}

/* Divider Line */
.stats-divider {
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 32px auto 16px;
}

/* Divider Text */
.stats-divider-text {
  font-size: 18px;
  color: #d4af37;
  letter-spacing: 0.6px;
  text-transform: none;
  margin-bottom: 0;
}

/* Mobile optimization */
@media (max-width: 768px) {
  /*.stats-divider {
    width: 80px;
  }*/

  .stats-divider-text {
    font-size: 13px;
    padding: 0 15px;
  }
}

/* SECTION */
.services-section {
  background: #000;
  color: #fff;
}

/* TITLES */
.services-title {
  color: #d4af37;
  font-weight: 500;
  letter-spacing: 1px;
}

.services-title span {
  color: #fff;
}

.services-subtitle {
  font-size: 15px;
  color: #bdbdbd;
  max-width: 720px;
  margin: 12px auto 0;
}

/* CARD */
.service-card {
  height: 100%;
  padding: 28px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.15);
  transition: all 0.4s ease;
  position: relative;
}

/* FEATURED (2nd card default highlight) */
.service-card.featured {
  background: radial-gradient(circle at top, rgba(212,175,55,0.25), #000);
  border-color: #d4af37;
}

/* ICON */
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.15);
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 18px;
  transition: transform 0.6s ease;
}

/* TEXT */
.service-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 18px;
  color: #bdbdbd;
  line-height: 1.6;
}

/* LINK */
.service-card a {
  display: inline-block;
  margin-top: 12px;
  font-size: 18px;
  color: #d4af37;
  text-decoration: none;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-6px);
  background: radial-gradient(circle at top, rgba(212,175,55,0.25), #000);
  border-color: #d4af37;
  box-shadow: 0 20px 50px rgba(212,175,55,0.25);
}

/* HORIZONTAL HEADING ALIGNMENT */
.service-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

/* 01 NUMBER */
.service-count {
  font-size: 42px;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
  opacity: 0.3;
}

/* TITLE */
.service-main-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  color: #d4af37;
  font-family:'Playfair Display',serif;
}
/* LEFT CONTENT FULL HEIGHT */
.service-left-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* RIGHT CARD – EQUAL HEIGHT */
.service-visual-card.equal-height {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 1px solid rgba(218, 165, 32, 0.35);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.2)
  );
}

/* NUMBER STYLE */
.service-visual-number {
  font-size: 64px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

/* TEXT INSIDE BOX */
.service-visual-text {
  text-align: center;
  color: #d4af37;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 320px;
}

/* GOLD BORDER LOOK */
.service-detail-section {
  border-top: 1px solid rgba(218, 165, 32, 0.15);
  border-bottom: 1px solid rgba(218, 165, 32, 0.15);
}
/* MOBILE STACK FIX */
@media (max-width: 768px) {
  .service-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .service-main-title {
    font-size: 28px;
  }
}

/* ICON ROTATE */
.service-card:hover .service-icon {
  transform: rotate(360deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .services-title {
    font-size: 22px;
  }
  .service-card {
    padding: 24px 20px;
  }
}

/* TEXT VISIBILITY FIX */
.service-detail-section {
  background: #000;
  color: #fff;
}

.service-highlight {
  color: #e5e5e5;
  font-size: 18px;
  margin-bottom: 16px;
}

.service-desc {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.7;
}

.service-list li {
  color: #d8d8d8;
  font-size: 18px;
  margin-bottom: 8px;
}

/* CTA BUTTON FIX */
.btn-gold {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000 !important;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* RIGHT CARD FIX */
.service-visual-card {
  height: 420px;
  background: linear-gradient(180deg, #0e0e0e, #000);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 60px;
}

.service-visual-number {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
}

.service-visual-text {
  font-size: 18px;
  letter-spacing: 2px;
  color: #d4af37;
}

/* MOBILE FIX */
@media (max-width: 991px) {
  .service-visual-card {
    margin-top: 40px;
    height: 320px;
  }
}
@media (max-width: 991px) {
  .hero-title-main {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .hero-title-main {
    font-size: 36px;
  }
}

/* ================================
   HOUSE OF B - SERVICES SECTION
================================ */

.hob-services-section {
  background: #050505;
  padding: 100px 0;
}

.hob-section-subtitle {
  font-family: 'Inter', sans-serif;
  color: #caa74a;
  letter-spacing: 2px;
  font-size: 13px;
}

.hob-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #fff;
  margin: 15px 0;
  letter-spacing: -.025em;
}

.hob-section-description {
  font-family: 'Inter', sans-serif;
  color: #aaa;
  max-width: 650px;
  margin: auto;
}

.hob-gold {
  color: #caa74a;
}

/* GRID */
.hob-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* CARD */
.hob-service-card {
  background: #0b0b0b;
  border: 1px solid rgba(202,167,74,0.25);
  border-radius: 14px;
  padding: 30px;
  transition: 0.4s ease;
}

.hob-service-card:hover {
  border-color: #caa74a;
  box-shadow: 0 0 25px rgba(202,167,74,0.15);
  transform: translateY(-6px);
}

.hob-card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.hob-service-number {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #caa74a;
}

.hob-service-icon i {
  color: #caa74a;
  font-size: 18px;
}

.hob-service-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -.025em;
}

.hob-service-text {
  font-family: 'Inter', sans-serif;
  color: #aaa;
  font-size: 18px;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hob-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hob-services-grid {
    grid-template-columns: 1fr;
  }

  .hob-section-title {
    font-size: 30px;
  }
}

.stats-wrapper {
  width: 100%;
  overflow: hidden;
  background: #0f0f0f;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 18px 0;
}

.stats-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.stats-wrapper:hover .stats-track {
  animation-play-state: paused;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 60px;
  white-space: nowrap;
  color: #c9a227;
  font-size: 18px;
  letter-spacing: 1px;
}

.stat-item strong {
  color: #f5c542;
  font-weight: 700;
}

.star {
  color: #f5c542;
  font-size: 18px;
}

/* Smooth infinite scroll */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .stat-item {
    padding: 0 30px;
    font-size: 18px;
  }
}

/* ===============================
   HOB ORM SECTION
=================================*/

.hob-orm-section {
    background: #0b0b0c;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.hob-orm-label {
    color: #caa13d;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hob-orm-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: #ffffff;
    margin: 15px 0;
	letter-spacing: -.025em;
}

.gold-gradient {
    background: linear-gradient(90deg, #d4af37, #f5d77a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hob-orm-subtitle {
    color: #caa13d;
    font-style: italic;
    margin-bottom: 20px;
}

.hob-orm-text {
    margin-bottom: 15px;
    line-height: 1.7;
}

.gold-text {
    color: #d4af37;
}

.hob-orm-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hob-orm-stat-box {
    background: #121214;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.2);
    min-width: 150px;
    text-align: center;
}

.hob-orm-stat-number {
    font-size: 22px;
    color: #d4af37;
    font-weight: 600;
}

.hob-orm-stat-label {
    font-size: 13px;
    color: #aaa;
}

/* Buttons */
.hob-orm-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* RIGHT CARDS */

.hob-orm-card {
    background: #121214;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.25);
    margin-bottom: 20px;
}

.hob-card-small {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.hob-score-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hob-score-number {
    font-size: 36px;
    font-weight: bold;
    color: #d4af37;
}

.hob-score-change {
    color: #d4af37;
    font-size: 18px;
}

.hob-progress {
    height: 6px;
    background: #1f1f22;
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
}

.hob-progress-bar {
    width: 92%;
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #f5d77a);
}

/* Reviews */

.hob-review-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hob-review-list li {
    margin-bottom: 8px;
    color: #d4af37;
    font-size: 18px;
}

/* Status */

.hob-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-weight: 500;
}

.hob-status-dot {
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
}

.hob-status-sub {
    font-size: 13px;
    color: #aaa;
    margin-top: 5px;
}

/* ===============================
   Reputation Dominance Section
================================ */

.rdx-section {
  background-color: #0d0d0d;
  padding: 100px 0;
  color: #ffffff;
}

.rdx-header {
  margin-bottom: 60px;
}

.rdx-tagline {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 10px;
}

.rdx-title {
  font-size: 42px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: -.025em;
}

.rdx-title span {
  color: #d4af37;
}

.rdx-subtitle {
  color: #bfbfbf;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

/* Card */

.rdx-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #222;
}

.rdx-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
}

.rdx-icon {
  font-size: 24px;
  color: #d4af37;
  margin-bottom: 15px;
}

.rdx-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.rdx-card-text {
  font-size: 18px;
  color: #cfcfcf;
  margin-bottom: 15px;
}

.rdx-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rdx-list li {
  position: relative;
  padding-left: 25px;
  font-size: 13px;
  margin-bottom: 8px;
  color: #bfbfbf;
}

.rdx-list li::before {
  content: "\f26e"; /* bi-check */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 20px;
  top:-3px;
}

/* Responsive */

@media (max-width: 991px) {
  .rdx-title {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .rdx-section {
    padding: 60px 0;
  }

  .rdx-title {
    font-size: 26px;
  }

  .rdx-card {
    padding: 20px;
  }
}

/* ===== Reputation Cost Section ===== */

.hb-rc-section {
  background: #0b0b0b;
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.hb-rc-container {
  max-width: 1320px;
  margin: auto;
}

.hb-rc-heading-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.hb-rc-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -.025em;
}

.hb-rc-heading span {
  color: #d4af37;
}

.hb-rc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.hb-rc-card {
  background: #121212;
  border: 1px solid #1f1f1f;
  padding: 20px 30px;
  text-align: center;
  border-radius: 14px;
  transition: 0.4s ease;
}

.hb-rc-card:hover {
  border-color: #d4af37;
  transform: translateY(-8px);
}

.hb-rc-icon {
  font-size: 24px;
  margin-bottom: 5px;
}

.hb-rc-number {
  font-size: 48px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -.025em;
}

.hb-rc-title {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.hb-rc-desc {
  font-size: 18px;
  color: #b5b5b5;
  line-height: 1.6;
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .hb-rc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hb-rc-heading {
    font-size: 28px;
  }

  .hb-rc-grid {
    grid-template-columns: 1fr;
  }

  .hb-rc-card {
    padding: 30px 20px;
  }
}

/* ===== Process Section ===== */

.hb-pro-section {
  background: #0b0b0b;
  padding: 100px 20px;
  color: #fff;
}

.hb-pro-container {
  max-width: 1300px;
  margin: auto;
}

.hb-pro-heading-wrap {
  text-align: center;
  margin-bottom: 80px;
}

.hb-pro-tag {
  color: #d4af37;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 10px;
}

.hb-pro-heading {
  font-size: 42px;
  font-weight: 500;
}

.hb-pro-heading span {
  color: #d4af37;
}

/* Timeline Layout */

.hb-pro-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

.hb-pro-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #2a2a2a;
  z-index: 0;
}

.hb-pro-step {
  text-align: center;
  max-width: 200px;
  position: relative;
  z-index: 1;
}

.hb-pro-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #151515;
  border: 2px solid #2a2a2a;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.4s ease;
}

.hb-pro-circle:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

.hb-pro-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #d4af37;
  color: #000;
  font-size: 12px;
  padding: 4px 7px;
  border-radius: 50%;
  font-weight: bold;
}

.hb-pro-icon {
  font-size: 22px;
}

.hb-pro-week {
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.hb-pro-step h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.hb-pro-step p {
  font-size: 13px;
  color: #b5b5b5;
  line-height: 1.6;
}

/* Smooth transition */
.hb-pro-step h3 {
  font-size: 16px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* Hover entire card */
.hb-pro-step:hover .hb-pro-circle {
  border-color: #d4af37;
  transform: translateY(-5px);
}

/* Heading gold on hover */
.hb-pro-step:hover h3 {
  color: #d4af37;
}

/* ===== Responsive ===== */

@media (max-width: 1100px) {
  .hb-pro-timeline {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hb-pro-timeline::before {
    display: none;
  }

  .hb-pro-step {
    max-width: 300px;
    margin-bottom: 50px;
  }
}

@media (max-width: 600px) {
  .hb-pro-heading {
    font-size: 28px;
  }

  .hb-pro-step {
    max-width: 100%;
  }
}

/* Section */
.hb-threat-section {
  background: #0d0d0d;
  padding: 100px 20px;
  color: #fff;
  /*font-family: 'Playfair Display', serif;
  letter-spacing: -.025em;*/
}

/* Container */
.hb-threat-container {
  max-width: 1320px;
  margin: 0 auto;
}

/* Header */
.hb-threat-header {
  text-align: center;
  margin-bottom: 60px;
}

.hb-threat-sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
}

.hb-threat-header h2 {
  font-size: 40px;
  font-weight: 600;
}

.hb-threat-header h2 span {
  color: #d4af37;
}

/* Grid */
.hb-threat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.hb-threat-card {
  background: linear-gradient(145deg, #161616, #111);
  padding: 35px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s ease;
  position: relative;
}

/* Icon */
.hb-threat-icon {
  width: 45px;
  height: 45px;
  background: rgba(212,175,55,0.1);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 18px;
}

/* Title */
.hb-threat-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  font-family: 'Playfair Display', serif;
  letter-spacing: -.025em;
}

/* Text */
.hb-threat-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #ccc;
}

/* ? Hover Effect for ALL Cards */
.hb-threat-card:hover {
  border: 1px solid #d4af37;
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(212,175,55,0.2);
}

.hb-threat-card:hover h3 {
  color: #d4af37;
}

.hb-threat-card:hover .hb-threat-icon {
  background: #d4af37;
  color: #000;
}

/* Section */
.hb-case-section {
  background: #0b0b0b;
  padding: 110px 20px;
  color: #fff;
  /*font-family: 'Playfair Display', serif;
  letter-spacing: -.025em;*/
}

/* Container */
.hb-case-container {
  max-width: 1320px;
  margin: 0 auto;
}

/* Header */
.hb-case-header {
  text-align: center;
  margin-bottom: 70px;
}

.hb-case-sub {
  font-size: 12px;
  letter-spacing: 3px;
  color: #d4af37;
}

.hb-case-header h2 {
  font-size: 42px;
  font-weight: 500;
}

.hb-case-header h2 span {
  color: #d4af37;
}

/* Grid */
.hb-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card */
.hb-case-card {
  background: linear-gradient(145deg, #161616, #111);
  padding: 35px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s ease;
}

/* Hover Effect */
.hb-case-card:hover {
  border-color: #d4af37;
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(212,175,55,0.15);
}

/* Category */
.hb-case-category {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 20px;
}

/* Blocks */
.hb-case-block {
  margin-bottom: 20px;
}

.hb-case-block h4 {
  font-size: 18px;
  color: #ff4d4d;
  margin-bottom: 6px;
}

.hb-case-block p {
  font-size: 18px;
  line-height: 1.6;
  color: #ccc;
}

/* Results */
.hb-case-results {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.hb-case-results span {
  display: block;
  font-size: 12px;
  color: #aaa;
}

.hb-case-results strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  color: #d4af37;
}

/* Timeline */
.hb-case-timeline {
  margin-top: 20px;
  font-size: 13px;
  color: #888;
}

/* Tablet */
@media (max-width: 992px) {
  .hb-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
	.hb-threat-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
  .hb-case-grid {
    grid-template-columns: 1fr;
  }

  .hb-case-header h2 {
    font-size: 28px;
  }

  .hb-case-results {
    flex-direction: column;
    gap: 10px;
  }
}

/* Section */
.hb-pricing-section {
  background: #0a0a0a;
  padding: 100px 20px;
  font-family: 'Playfair Display', serif;
  color: #fff;
  letter-spacing: -.025em;
}

.hb-pricing-container {
  max-width: 1320px;
  margin: auto;
}

/* Header */
.hb-pricing-header {
  text-align: center;
  margin-bottom: 70px;
}

.hb-pricing-header h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hb-pricing-header p {
  color: #aaa;
  font-size: 16px;
}

/* Grid */
.hb-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card */
.hb-plan-card {
  background: linear-gradient(145deg, #161616, #111);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: all 0.4s ease;
}

.hb-plan-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 0 30px rgba(212,175,55,0.15);
}

/* Featured Plan */
.hb-plan-card.featured {
  border: 1px solid #d4af37;
  transform: scale(1.05);
}

.hb-plan-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

/* Badge */
.hb-popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: #000;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter',sans-serif;
}

/* Titles */
.hb-plan-card h3 {
  font-size: 22px;
}

.hb-plan-tag {
  display: block;
  color: #d4af37;
  font-size: 13px;
  margin-bottom: 15px;
}

.hb-plan-ideal {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 25px;
}

/* Price */
.hb-plan-price {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
}

.hb-plan-price small {
  font-size: 18px;
  color: #aaa;
}

/* Features */
.hb-plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.hb-plan-features li {
  font-size: 18px;
  padding: 8px 0;
  color: #ccc;
  position: relative;
  padding-left: 20px;
  font-family: 'Inter',sans-serif;
}

.hb-plan-features {
  list-style: none;
  padding-left: 0;
}

.hb-plan-features li::before {
  content: "\f26e"; /* bi-check */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: #d4af37; /* Gold */
}

/* Buttons */
.hb-plan-btn {
  display: inline-block;
  text-align: center;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.primary-btn {
  background: #d4af37;
  color: #000;
}

.primary-btn:hover {
  background: #c59c2d;
}

.outline-btn {
  border: 1px solid #d4af37;
  color: #d4af37;
}

.outline-btn:hover {
  background: #d4af37;
  color: #000;
}

/* Tablet */
@media (max-width: 992px) {
  .hb-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hb-plan-card.featured {
    transform: none;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hb-pricing-grid {
    grid-template-columns: 1fr;
  }

  .hb-pricing-header h2 {
    font-size: 28px;
  }

  .hb-plan-card {
    padding: 30px 20px;
  }
}

/* Section */
.hb-difference-section {
  background: #0c0c0f;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.hb-container {
  max-width: 1320px;
  margin: auto;
}

/* Header */
.hb-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.hb-subtitle {
  color: #d4af37;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hb-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
}

.hb-description {
  max-width: 700px;
  margin: auto;
  color: #ccc;
}

.hb-gold-gradient {
  background: linear-gradient(
    90deg,
    #d4af37 0%,
    #f6e27a 30%,
    #d4af37 60%,
    #b8860b 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid */
.hb-difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Features */
.hb-features-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -.025em;
  font-weight:600;
}

.hb-features ul {
  list-style: none;
  padding: 0;
}

.hb-features li {
  position: relative;
  padding: 14px 15px 14px 45px;
  margin-bottom: 15px;
  background: #141417;
  border-radius: 10px;
  transition: 0.3s;
}

.hb-features li::before {
  content: "\f26e";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 15px;
  top: 14px;
  color: #d4af37;
}

.hb-features li:hover {
  background: #1a1a1f;
}

/* Highlight Card */
.hb-highlight-card {
  background: #141417;
  padding: 40px;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: 0.3s;
}

.hb-highlight-card:hover {
  border-color: #d4af37;
}

.hb-highlight-icon {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 20px;
}

.hb-highlight-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.hb-highlight-card p {
  color: #ccc;
}

.hb-highlight-point {
  color: #d4af37;
  margin-top: 20px;
  font-weight: 600;
}

/* Stats */
.hb-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.hb-stat-card {
  background: #141417;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}
.hb-stat-card p{margin-bottom:5px;}

.hb-stat-card:hover {
  border: 1px solid #d4af37;
}

.hb-stat-card h4 {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -.025em;
}

.hb-stat-title {
  font-weight: 600;
}

.hb-stat-card span {
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
  .hb-difference-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 576px) {
  .hb-title {
    font-size: 28px;
  }

  .hb-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Main Heading Style */
.hb-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: -.025em;
}

/* White Text */
.hb-white {
  color: #ffffff;
}

/* Luxury Gold Gradient */
.hb-gold {
  background: linear-gradient(
    90deg,
    #caa933 0%,
    #f5e6a1 25%,
    #e0c55a 50%,
    #b8922e 75%,
    #f5e6a1 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .hb-section-heading {
    font-size: 28px;
  }
}

.hb-testimonial-section {
  background: linear-gradient(135deg, #0c0c14, #11121a);
  color: #fff;
}

.hb-subtitle {
  color: #d4af37;
  letter-spacing: 3px;
  font-size: 13px;
}

.hb-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
}

.hb-gold-text {
  background: linear-gradient(90deg, #ffffff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hb-description {
  color: #bbb;
  max-width: 600px;
  margin: 0 auto;
}

.hb-testimonial-card {
  background: #14161d;
  border: 1px solid #2a2a32;
  border-radius: 16px;
  padding: 50px 40px;
  max-width: 850px;
}

.hb-stars {
  color: #d4af37;
  font-size: 20px;
}

.hb-quote {
  font-size: 20px;
  line-height: 1.7;
  font-family: 'Playfair Display', serif;
  color: #f1f1f1;
}

.hb-avatar {
  width: 60px;
  height: 60px;
  background: #d4af37;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  font-size: 22px;
}

.hb-client h5 {
  font-weight: 600;
}

.hb-location {
  color: #d4af37;
  font-size: 13px;
}

/* Controls Styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #d4af37;
  border-radius: 50%;
  padding: 12px;
}
@media (max-width: 768px) {
  .hb-heading {
    font-size: 28px;
  }

  .hb-testimonial-card {
    padding: 30px 20px;
  }

  .hb-quote {
    font-size: 16px;
  }
}

.hobx2-pricing-section {
  background: linear-gradient(135deg, #0b0b12, #15151e);
  color: #fff;
}

.hobx2-card {
  background: #16161f;
  padding: 40px 25px;
  border-radius: 18px;
  border: 1px solid #2b2b35;
  position: relative;
  transition: 0.3s ease;
}

.hobx2-card:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
}

.hobx2-featured {
  border: 1px solid #d4af37;
}

.hobx2-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: #000;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
}

/* Colored dots */
.hobx2-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: 0 auto 8px;
}

.hobx2-dot-yellow { background: #ffd700; }
.hobx2-dot-orange { background: #ff7a00; }
.hobx2-dot-blue   { background: #1e90ff; }
.hobx2-dot-red    { background: #ff2c2c; }

/* Icon */
.hobx2-icon {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 15px;
}

/* Title */
.hobx2-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.hobx2-sub {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 20px;
}

/* Price (Playfair Display Applied) */
.hobx2-price {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #d4af37;
  margin-bottom: 20px;
}

.hobx2-price span {
  font-size: 18px;
  color: #aaa;
}

.hobx2-custom {
  font-size: 32px;
}

/* Features */
.hobx2-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 25px;
}

.hobx2-features li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  font-size: 18px;
}

.hobx2-features li::before {
  content: "\f26e";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: #d4af37;
}

/* Buttons */
.hobx2-btn-outline {
  border: 1px solid #d4af37;
  color: #d4af37;
}

.hobx2-btn-outline:hover {
  background: #d4af37;
  color: #000;
}

.hobx2-btn-solid {
  background: #d4af37;
  color: #000;
}

.hobx2-btn-solid:hover {
  background: #c39d2f;
}

/* HERO SECTION */
.hb3-hero-section {
  /*min-height: 100vh;*/
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 40%, #1a1a25 0%, #0b0b12 60%);
  color: #fff;
  padding: 60px 0;
}

/* TITLE */
.hb3-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hb3-hero-title span {
  display: block;
  background: linear-gradient(90deg, #d4af37, #f5e6a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXT */
.hb3-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #b5b5c3;
  margin-bottom: 40px;
}

/* BUTTONS */
.hb3-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hb3-btn-gold {
  background: #d4af37;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.hb3-btn-gold:hover {
  background: #c39d2f;
  color: #000;
}

.hb3-btn-outline {
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.hb3-btn-outline:hover {
  background: #d4af37;
  color: #000;
}

/* OFFER BAR */
.hb3-offer-bar {
  display: inline-block;
  border: 1px solid rgba(212,175,55,0.4);
  padding: 12px 20px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  margin-bottom: 35px;
}

.hb3-offer-bar i {
  color: #d4af37;
  margin-right: 8px;
}

.hb3-offer-bar strong {
  color: #d4af37;
}

/* CONTACT INFO */
.hb3-contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #9a9ab0;
}

.hb3-contact-info i {
  color: #d4af37;
  margin-right: 6px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hb3-hero-title {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .hb3-hero-title {
    font-size: 30px;
  }

  .hb3-hero-sub {
    font-size: 15px;
  }

  .hb3-hero-section {
    padding: 80px 15px;
  }
}

.hb4-footer {
  background: #0b0b12;
  color: #b5b5c3;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(212,175,55,0.3);
  font-family: 'Inter', sans-serif;
}

.hb4-footer-logo {
  width: 130px;
  margin-bottom: 20px;
}

.hb4-footer-about p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hb4-footer-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.hb4-footer-links,
.hb4-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hb4-footer-links li {
  margin-bottom: 10px;
}

.hb4-footer-links a {
  color: #b5b5c3;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.hb4-footer-links a:hover {
  color: #d4af37;
}

.hb4-contact-list li {
  margin-bottom: 15px;
  font-size: 18px;
}

.hb4-contact-list i {
  color: #d4af37;
  margin-right: 8px;
}

.hb4-contact-list a {
  color: #b5b5c3;
  text-decoration: none;
}

.hb4-contact-list a:hover {
  color: #d4af37;
}

/* Social Icons */
.hb4-social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212,175,55,0.3);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  color: #b5b5c3;
  transition: 0.3s;
}

.hb4-social-icons a:hover {
  background: #d4af37;
  color: #000;
}

/* Divider */
.hb4-footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 40px 0 25px;
}

/* Bottom */
.hb4-footer-bottom p,
.hb4-footer-bottom a {
  font-size: 18px;
  color: #9a9ab0;
  text-decoration: none;
}

.hb4-footer-bottom a:hover {
  color: #d4af37;
}

/* SEO Text */
.hb4-footer-seo {
  margin-top: 15px;
  font-size: 12px;
  text-align: center;
  color: #777;
}

.hb4-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hb4-contact-item i {
  color: #d4af37;
  font-size: 16px;
  margin-top: 3px;
  min-width: 18px;
}

.hb4-contact-item a {
  color: #b5b5c3;
  text-decoration: none;
}

.hb4-contact-item a:hover {
  color: #d4af37;
}

/* ============================= */
/* HB METHOD V2 SECTION */
/* ============================= */

.hb-method-v2-section {
  background: #0b0b0b;
  padding: 100px 20px;
  color: #fff;
}

.hb-method-v2-container {
  max-width: 1320px;
  margin: 0 auto;
}

/* Header */
.hb-method-v2-tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #d4af37;
  display: inline-block;
  margin-bottom: 15px;
}

.hb-method-v2-title {
  font-size: clamp(28px, 4vw, 48px);
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

.hb-method-v2-white {
  color: #ffffff;
}

.hb-method-v2-gold {
  background: linear-gradient(90deg, #d4af37, #f5e6b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hb-method-v2-subtitle {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 60px;
}

/* Steps Grid */
.hb-method-v2-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  text-align: center;
}

/* Step Item */
.hb-method-v2-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hb-method-v2-icon-wrap {
  position: relative;
  margin-bottom: 20px;
}

.hb-method-v2-icon {
  width: 70px;
  height: 70px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 22px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.hb-method-v2-number {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #d4af37;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title */
.hb-method-v2-item h3 {
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

/* Text */
.hb-method-v2-item p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

/* Hover */
.hb-method-v2-item:hover .hb-method-v2-icon {
  background: #d4af37;
  color: #000;
  transform: translateY(-6px);
}

.hb-method-v2-item:hover h3 {
  color: #d4af37;
}

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

@media (max-width: 1200px) {
  .hb-method-v2-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hb-method-v2-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hb-method-v2-section {
    padding: 70px 15px;
  }
}

@media (max-width: 480px) {
  .hb-method-v2-steps {
    grid-template-columns: 1fr;
  }
}

.floating_btn {
  position: fixed;
  bottom: 120px;
  right: 5px;
  width: 120px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}
.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
 font-family: "Open Sans", serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}