/*--------------------------------------------------------------
    # BRANDING ARCHITECTURE & VARIABLES (VERTICZ THEME)
    --------------------------------------------------------------*/
    :root {
      --v-bg-dark: #0a0f0d;         /* Premium deep charcoal canvas */
      --v-bg-surface: #0f1712;      /* Structural cards and sections */
      --v-bg-card-inner: #142119;   /* Deep interactive components background */
      --v-brand-lime: #b8f04a;      /* High-contrast brand primary neon */
      --v-brand-glow: rgba(184, 240, 74, 0.15);
      --v-border-muted: #1f3326;    /* Strict crisp divider grid lines */
      --v-text-main: #e8f0eb;       /* Primary clean body typography */
      --v-text-muted: #8aaa90;      /* Secondary reading copy descriptions */
      --v-text-dim: #5a7a62;        /* Darker placeholder elements */
      --v-transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);  
    }

    /* Core Baseline Resets */
    html, body {
      background-color: var(--v-bg-dark);
      color: var(--v-text-main);
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }

    /* High Visibility Typography Safe Overrides */
    h1, h2, h3, h4, h5, h6, .text-white {
      color: #ffffff;
    }
    
    p, .text-muted {
      color: var(--v-text-muted);
    }

    /*--------------------------------------------------------------
    # NAVIGATION BAR COMPONENT (ANTI-BREAK FLEX ARCHITECTURE)
    --------------------------------------------------------------*/
    .nav-verticz {
      position: fixed;  /* Locks the header viewport position securely */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;    /* Keeps it safely on top of all timeline items and grid layouts */
  background-color: rgba(10, 15, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--v-border-muted);
  padding: 0.75rem 0;
    }

    .logo-container-block {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .logo-container-block img{
      height: 70px;
    }

    .logo-icon-box {
      width: 34px;
      height: 34px;
      background: var(--v-brand-lime);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 12px var(--v-brand-glow);
      flex-shrink: 0;
    }

    /* Keep header menus structured inline natively */
    .nav-links-group {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-links-group .nav-link {
      font-size: 0.85rem;
      color: var(--v-text-muted);
      font-weight: 500;
      padding: 0.25rem 0;
      letter-spacing: 0.3px;
      text-decoration: none;
      transition: var(--v-transition-smooth);
    }

    .nav-links-group .nav-link:hover, 
    .nav-links-group .nav-link.active {
      color: var(--v-brand-lime);
      text-decoration: none;
    }

    /*--------------------------------------------------------------
    # BUTTON STYLES MATRIX (STRICT WIDTH BOUNDS CONTROLS)
    --------------------------------------------------------------*/
    .btn-v-primary {
      background: var(--v-brand-lime);
      color: var(--v-bg-dark);
      font-weight: 700;
      font-size: 0.85rem;
      padding: 0.65rem 1.35rem;
      border-radius: 8px;
      border: 1px solid var(--v-brand-lime);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      white-space: nowrap;
      width: auto;
      max-width: fit-content;
      text-decoration: none;
      transition: var(--v-transition-smooth);
    }

    .btn-v-primary:hover {
      background: #cbf76d;
      border-color: #cbf76d;
      box-shadow: 0 0 18px var(--v-brand-glow);
      transform: translateY(-1px);
      color: var(--v-bg-dark);
      text-decoration: none;
    }

    .btn-v-secondary {
      background: transparent;
      color: #ffffff;
      font-weight: 600;
      font-size: 0.85rem;
      padding: 0.65rem 1.35rem;
      border-radius: 8px;
      border: 1px solid var(--v-border-muted);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      white-space: nowrap;
      width: auto;
      max-width: fit-content;
      text-decoration: none;
      transition: var(--v-transition-smooth);
    }

    .btn-v-secondary:hover {
      border-color: var(--v-text-muted);
      background: rgba(31, 51, 38, 0.25);
      color: #ffffff;
      text-decoration: none; /* FIXES THE HOVER UNDERLINE BUG Entirely */
    }

    /* Hero section responsive padding scale definitions */
    .hero-btn-container .btn-v-primary,
    .hero-btn-container .btn-v-secondary {
      padding: 0.75rem 1.75rem;
      font-size: 0.9rem;
    }

    /*--------------------------------------------------------------
    # METRIC SCORE CONTAINER LAYOUT
    --------------------------------------------------------------*/
    .premium-score-wrapper {
      background: var(--v-bg-surface);
      border: 1px solid var(--v-border-muted);
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .score-badge-circle {
      background: var(--v-bg-dark);
      border: 1px solid var(--v-border-muted);
      border-radius: 12px;
      padding: 1.5rem 1rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 160px;
    }

    /* Explicit breaking controls for defined posture badges */
    .defined-posture-badge {
      font-size: 0.72rem;
      font-weight: 700;
      white-space: nowrap;
      padding: 0.4rem 0.75rem;
      letter-spacing: 0.3px;
    }

    .custom-bar-track {
      height: 6px;
      background: var(--v-bg-dark);
      border-radius: 100px;
      overflow: hidden;
      width: 100%;
    }

    .custom-bar-fill {
      height: 100%;
      border-radius: 100px;
    }

    /*--------------------------------------------------------------
    # SECTION TEXT VISIBILITY AND GRID PILLARS
    --------------------------------------------------------------*/
    .section-tag-global {
      font-size: 0.75rem;
      color: var(--v-brand-lime);
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      display: inline-block;
      margin-bottom: 0.75rem;
    }

    .domain-feature-card {
      background: var(--v-bg-surface);
      border: 1px solid var(--v-border-muted);
      border-radius: 12px;
      padding: 1.75rem 1.25rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: var(--v-transition-smooth);
    }

    .domain-feature-card:hover {
      transform: translateY(-4px);
      border-color: rgba(184, 240, 74, 0.3);
    }

    .icon-wrapper-box {
      width: 42px;
      height: 42px;
      background: var(--v-bg-card-inner);
      border: 1px solid var(--v-border-muted);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      font-size: 1.2rem;
      color: var(--v-brand-lime);
    }

    .trust-container {
      border-top: 1px solid var(--v-border-muted);
      border-bottom: 1px solid var(--v-border-muted);
      background: rgba(15, 23, 18, 0.3);
      padding: 1.5rem 0;
    }

    .trust-logo-text {
      font-size: 0.9rem;
      color: var(--v-text-dim);
      font-weight: 700;
      letter-spacing: 2.5px;
    }

    /* Process Flow Timelines Connection Nodes */
    .process-step-node {
      position: relative;
      z-index: 5; /* Puts entire node element block layout over line graphics wrappers */
    }

    .step-circle-badge {
      width: 36px;
      height: 36px;
      background: var(--v-brand-lime);
      color: var(--v-bg-dark);
      font-weight: 800;
      font-size: 0.95rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      box-shadow: 0 0 12px var(--v-brand-glow);
      position: relative;
      z-index: 10;
    }

    @media (min-width: 992px) {
      .process-step-node:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 18px;
        left: calc(50% + 18px);
        width: calc(100% - 36px);
        height: 1px;
        background: var(--v-border-muted);
        z-index: 1; /* Pushes connecting horizontal track line deep background layer underneath headings text layout */
      }
    }

    .recommendation-pill-card {
      background: var(--v-bg-dark);
      border: 1px solid var(--v-border-muted);
      border-radius: 4px 12px 12px 4px;
      padding: 1.25rem;
    }

    /* Interactive Overlay Custom Modals */
    .modal-v-content {
      background-color: var(--v-bg-surface);
      border: 1px solid var(--v-border-muted);
      border-radius: 16px;
    }

    .form-v-control {
      background-color: var(--v-bg-dark);
      border: 1px solid var(--v-border-muted);
      color: #ffffff;
    }

    .form-v-control:focus {
      border-color: var(--v-brand-lime);
      box-shadow: 0 0 10px var(--v-brand-glow);
    }
    .hero-banner-section {
  position: relative;
  background-image: url('/assets/images/banner.jpg'); /* Replace with your image name (e.g., image_18f968.jpg) */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

/*--------------------------------------------------------------
# FLOATING INTERACTIVE UI ELEMENTS (WHATSAPP & SCROLL TOP)
--------------------------------------------------------------*/
.floating-action-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000; /* Taaki modals aur headers ke upar sahi se dikhe */
}

.btn-floating-ui {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

/* WhatsApp Brand Custom Color */
.btn-float-whatsapp {
  background-color: #25d366;
}
.btn-float-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-3px);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Back To Top Arrow Button */
.btn-float-scrolltop {
  background-color: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  color: var(--v-brand-lime);
  opacity: 0; /* Shuru me hidden rahega jab tak scroll na karein */
  visibility: hidden;
  transform: scale(0.8);
}

.btn-float-scrolltop.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.btn-float-scrolltop:hover {
  background-color: var(--v-brand-lime);
  color: var(--v-bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px var(--v-brand-glow);
}