﻿:root {
  --bg: #0b0b0b;
  --bg-secondary: #111827;
  --navy: #141459;
  --white: #ffffff;
  --text-soft: #d1d5db;
  --border: rgba(255, 255, 255, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(17, 24, 39, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.navbar.scrolled {
  background: rgba(11, 11, 11, 0.98);
}

.top-running-line {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(6, 10, 26, 0.96) 0%, rgba(14, 24, 54, 0.9) 50%, rgba(6, 10, 26, 0.96) 100%);
  overflow: hidden;
}

.top-running-line::before,
.top-running-line::after {
  content: "";
  position: absolute;
  top: 0;
  width: 86px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.top-running-line::before {
  left: 0;
  background: linear-gradient(90deg, rgba(6, 10, 26, 1) 0%, rgba(6, 10, 26, 0) 100%);
}

.top-running-line::after {
  right: 0;
  background: linear-gradient(270deg, rgba(6, 10, 26, 1) 0%, rgba(6, 10, 26, 0) 100%);
}

.top-running-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 0;
  white-space: nowrap;
  animation: topTicker 26s linear infinite;
}

.top-running-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
}

.top-running-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.94rem;
  color: #eff3ff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 14px;
  background: linear-gradient(180deg, rgba(24, 33, 66, 0.86) 0%, rgba(14, 22, 47, 0.74) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 10px 24px rgba(3, 6, 20, 0.45);
}

.top-running-track span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9fb4ff;
  box-shadow: 0 0 0 3px rgba(117, 148, 255, 0.16);
}

@keyframes topTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-running-track {
    animation: none;
  }
}

.nav-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-logo {
  width: clamp(150px, 15vw, 220px);
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-soft);
  font-size: 0.95rem;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--white);
  border-color: var(--border);
}

.btn-primary {
  border: 1px solid var(--border);
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}

.line-section {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.line-section:last-of-type {
  border-bottom: 1px solid var(--border);
}

.left-title,
.center-title {
  font-family: "Sora", sans-serif;
  margin-bottom: 14px;
}

.left-title {
  text-align: left;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.center-title {
  text-align: center;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
}

.left-text,
.section-subtitle,
.segment-text {
  color: var(--text-soft);
}

.section-subtitle {
  text-align: center;
  margin-top: -4px;
  margin-bottom: 18px;
}

.running-booking-line {
  margin-top: -4px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(20, 20, 89, 0.22);
  overflow: hidden;
}

.running-booking-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 10px 0;
  white-space: nowrap;
  animation: bookingTicker 16s linear infinite;
}

.running-booking-track span {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #f1f5ff;
}

@keyframes bookingTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.33%);
  }
}

.box-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crm-grid .info-box:last-child {
  grid-column: span 2;
}

.info-box {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(20, 20, 89, 0.16);
  padding: 13px 14px;
  font-family: "Poppins", sans-serif;
  color: #f2f4ff;
}

.usp-box {
  background: rgba(20, 20, 89, 0.28);
  border-color: rgba(255, 255, 255, 0.2);
}

.single-box-wrap {
  max-width: 760px;
  margin: 12px auto 0;
}

.ps-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ps-box {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.ps-grid .ps-box:first-child {
  background: rgba(69, 10, 10, 0.55);
  border-color: rgba(185, 28, 28, 0.5);
}

.ps-grid .ps-box:first-child h3 {
  color: #fecaca;
}

.ps-grid .ps-box:last-child {
  background: rgba(1, 37, 16, 0.55);
  border-color: rgba(5, 115, 46, 0.5);
}

.ps-grid .ps-box:last-child h3 {
  color: #bbf7d0;
}

.ps-box h3 {
  font-family: "Sora", sans-serif;
  margin-bottom: 8px;
  font-size: 1rem;
}

.ps-box li {
  color: var(--text-soft);
  margin-bottom: 5px;
  padding-left: 12px;
  position: relative;
}

.ps-box li::before {
  content: "-";
  position: absolute;
  left: 0;
}

.status-list li {
  padding-left: 0;
}

.status-list li::before {
  content: none;
}

.hr-growth-note,
.crm-control-note {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(20, 20, 89, 0.24);
  padding: 14px;
  text-align: center;
}

.hr-growth-note h3,
.crm-control-note h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.hr-growth-note p,
.crm-control-note p {
  margin-top: 4px;
  color: #e3e8ff;
  font-family: "Poppins", sans-serif;
}

.segment-title {
  font-family: "Sora", sans-serif;
  margin-top: 16px;
  margin-bottom: 6px;
}

.ui-card-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ui-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(20, 20, 89, 0.2);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-family: "Sora", sans-serif;
  padding: 14px 12px 16px;
}

.ui-card h3 {
  font-size: 1.06rem;
}

.team-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(20, 20, 89, 0.26) 0%, rgba(10, 14, 33, 0.62) 100%);
  padding: 12px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.team-photo {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.team-card h3 {
  margin-top: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
}

.team-card p {
  margin-top: 4px;
  color: var(--text-soft);
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
}

.ui-preview {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  border: 0;
  background: transparent;
}

.ui-placeholder {
  width: 100%;
  max-width: 240px;
  height: 420px;
  border-radius: 14px;
  border: 1px dashed var(--border);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  color: var(--text-soft);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}

.video-frame-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.video-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 12px;
  background: rgba(20, 20, 89, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.video-card-number {
  min-width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  background: rgba(11, 11, 11, 0.6);
}

.mobile-video-frame {
  width: min(100%, 245px);
  aspect-ratio: 9 / 19;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #000;
  padding: 8px;
}

.mobile-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 22px;
  object-fit: cover;
  background: #000;
}

.made-in-bharat {
  border-top: 1px solid var(--border);
  padding: 24px 0 30px;
  background: linear-gradient(180deg, rgba(20, 20, 89, 0.22) 0%, rgba(11, 11, 11, 0.9) 100%);
}

.bharat-badge {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  background: rgba(17, 24, 39, 0.78);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bharat-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e3e8ff;
}

.bharat-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(20, 20, 89, 0.45);
}

.bharat-badge h3 {
  margin-top: 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.bharat-text {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.plans-note {
  margin-top: 2px;
  text-align: center;
  color: #e8edff;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
}

.plan-category {
  margin-top: 18px;
}

.plan-category-head h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.plan-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(20, 20, 89, 0.2) 0%, rgba(10, 14, 33, 0.62) 100%);
  padding: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.plan-card h4 {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  margin-bottom: 10px;
}

.plan-duration-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-duration-list li {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  padding: 9px 10px;
  background: rgba(8, 11, 25, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plan-duration-list span {
  color: #f4f7ff;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
}

.plan-duration-list strong {
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
}

.plan-meta {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.rich-list li {
  align-items: flex-start;
}

.rich-list li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rich-list small {
  color: #cdd4ec;
  font-size: 0.76rem;
}

.rich-list em {
  color: #b8c8ff;
  font-style: normal;
  font-size: 0.78rem;
}

.support-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.support-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(20, 20, 89, 0.26) 0%, rgba(10, 14, 33, 0.62) 100%);
  padding: 16px 14px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.support-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.support-card a {
  display: inline-block;
  margin-top: 8px;
  color: #e7ecff;
  font-family: "Poppins", sans-serif;
  border-bottom: 1px dashed rgba(231, 236, 255, 0.45);
  padding-bottom: 2px;
}

.support-card a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.footer-row p {
  color: var(--text-soft);
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .nav-row {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 4%;
    right: 4%;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #111827;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

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

  .brand-logo {
    width: 140px;
  }

  .btn-primary {
    display: none;
  }

  .three-col,
  .two-col,
  .ps-grid,
  .ui-card-grid,
  .support-grid,
  .team-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .crm-grid .info-box:last-child {
    grid-column: auto;
  }

  .ui-preview,
  .ui-placeholder {
    max-width: 320px;
    height: auto;
  }

  .video-frame-grid {
    grid-template-columns: 1fr;
  }

  .bharat-badge {
    padding: 16px 14px;
  }

  .top-running-line::before,
  .top-running-line::after {
    width: 36px;
  }

  .top-running-group {
    gap: 8px;
    padding: 0 8px;
  }

  .top-running-track span {
    font-size: 0.84rem;
    padding: 6px 10px;
  }

  .team-photo {
    height: 320px;
  }
}
