:root {
  --dark-bg: #0A0E17;
  --dark-2: #111827;
  --dark-3: #0D1420;
  --gold: #D4A017;
  --gold-light: #F5C842;
  --gold-dim: rgba(212, 160, 23, 0.15);
  --text-primary: #F0EDE6;
  --text-muted: #8A94A6;
  --border: rgba(255, 255, 255, 0.07);
  --card-bg: #131C2E;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.7;
}

.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ── NAVBAR ── */
#mainNav {
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 1rem 0;
  border-bottom: 1px solid transparent;
}

#mainNav.scrolled {
  background: rgba(10, 14, 23, 0.97) !important;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--border);
}

.navbar-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.brand-rapid {
  color: var(--gold);
}

.brand-source {
  color: #fff;
}

.brand-india {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 3px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  padding: 0.5rem 0.75rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: #0A0E17;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: #0A0E17;
  transform: translateY(-1px);
}

.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #0A0E17;
}

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

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #060A14 0%, #0D1825 50%, #0A1520 100%);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("../images/banner2.jpg") no-repeat;
  background-position: right;
  opacity: 0.35;
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.hero-stats {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

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

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 0.6rem 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #0A0E17;
}

.ticker-track span {
  flex-shrink: 0;
}

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

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

/* ── SECTIONS ── */
.section-dark {
  background: var(--dark-bg);
}

.section-darker {
  background: var(--dark-3);
}

.section-eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.1;
}

/* ── CATEGORY CARDS ── */
.cat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: #1A2540;
}

.cat-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.cat-card h5 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cat-card p {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin: 0;
}

/* ── WHY US CARDS ── */
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.why-card h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  height: 100%;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.product-img-wrap {
  position: relative;
  background: #1A2540;
  padding: 2.5rem;
  text-align: center;
}

.product-img-placeholder {
  font-size: 4rem;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: #0A0E17;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.product-body {
  padding: 1.25rem;
}

.product-cat {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.product-body h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.product-price {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.product-price small {
  color: var(--text-muted);
  font-size: 0.75rem;
  display: block;
  font-weight: 400;
}

/* ── TESTIMONIALS ── */
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testi-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testi-author strong {
  color: #fff;
  display: block;
  font-size: 0.9rem;
}

.testi-author span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, #0D1825 0%, #111827 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
}

.cta-sub {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ── FOOTER ── */
.footer-dark {
  background: #060A12;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.footer-about {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-heading {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

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

.footer-contact li {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.social-icons a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-divider {
  border-color: var(--border);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-legal {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-legal:hover {
  color: var(--gold);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #060A14 0%, #0D1825 100%);
  padding: 8rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 560px;
}

/* ── ABOUT ── */
.about-badge {
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.milestone {
  text-align: center;
}

.milestone .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.milestone .lbl {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── SERVICES ── */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.service-card h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.service-card ul {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
}

.service-card ul li {
  margin-bottom: 0.3rem;
}

/* ── BLOG ── */
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.blog-img {
  background: #1A2540;
  padding: 3rem;
  text-align: center;
  font-size: 3rem;
}

.blog-body {
  padding: 1.5rem;
}

.blog-meta {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.blog-body h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-body p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.blog-tag {
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.form-control,
.form-select {
  background: #0D1420;
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
}

.form-control:focus,
.form-select:focus {
  background: #0D1420;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
  color: var(--text-primary);
}

.form-control::placeholder {
  color: #4A5568;
}

.form-select option {
  background: #111827;
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ci-value {
  color: #fff;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* ── BREADCRUMB ── */
.breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--text-muted);
}

/* ── PRODUCT FILTER ── */
.filter-btn {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 6px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ── INQUIRY TABLE ── */
.inq-table {
  width: 100%;
}

.inq-table th {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.inq-table td {
  color: var(--text-primary);
  font-size: 0.88rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 80px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }
}