:root {
  --bg: #0f0d09;
  --bg-soft: #17130e;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text: #f7f1e3;
  --muted: #cfc2a7;
  --gold: #d4af37;
  --gold-soft: #f1d88a;
  --border: rgba(212, 175, 55, 0.22);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 35%),
    radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.08), transparent 30%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.03em;
}

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

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

.section-padding {
  padding: 5.5rem 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 44rem;
}

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

.bg-soft {
  background: var(--bg-soft);
}

.gold-divider {
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem 0 1.5rem;
}

.navbar {
  background: rgba(10, 8, 6, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
  background: rgba(7, 6, 4, 0.96);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold) !important;
}

.navbar-toggler {
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: rgba(247, 241, 227, 0.82) !important;
  font-weight: 600;
  position: relative;
  transition: color 0.25s ease;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  bottom: 0.4rem;
  width: calc(100% - 1.5rem);
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.55rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, #a67c00, var(--gold), var(--gold-soft));
  border: none;
  color: #1a1407;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  color: #1a1407;
  box-shadow: 0 16px 38px rgba(212, 175, 55, 0.35);
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.92), rgba(8, 6, 4, 0.48)),
    linear-gradient(180deg, rgba(8, 6, 4, 0.35), rgba(8, 6, 4, 0.75));
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.92;
  margin: 1.4rem 0 1rem;
}

.hero p {
  max-width: 42rem;
  color: rgba(247, 241, 227, 0.82);
  font-size: 1.1rem;
}

.hero-stat-card {
  margin-top: 2rem;
  padding: 1.35rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-stat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hero-stat i {
  color: var(--gold);
  font-size: 1.25rem;
}

.page-hero {
  padding: 9rem 0 5rem;
  background-position: center;
  background-size: cover;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 6, 4, 0.88), rgba(8, 6, 4, 0.65));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.glass-card,
.product-card,
.service-card,
.contact-card,
.feature-card,
.info-card,
.stats-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.glass-card,
.contact-card,
.feature-card,
.info-card,
.stats-card {
  padding: 1.75rem;
  height: 100%;
}

.feature-card,
.product-card,
.service-card,
.contact-card,
.stats-card,
.timeline-item,
.map-embed,
.form-control {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover,
.product-card:hover,
.service-card:hover,
.contact-card:hover,
.stats-card:hover,
.timeline-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  border-color: rgba(212, 175, 55, 0.28);
}

.icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}

.feature-card h3,
.service-card h3,
.product-card h3 {
  font-size: 1.9rem;
}

.feature-card p,
.service-card p,
.product-card p,
.contact-card p,
.stats-card p,
.info-card p,
.timeline-item p,
.list-check li,
.footer-text,
.footer a {
  color: var(--muted);
}

.product-card {
  overflow: hidden;
  height: 100%;
}

.product-card img,
.image-cover {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.product-card .card-body,
.service-card .card-body {
  padding: 1.5rem;
}

.service-card {
  height: 100%;
}

.service-card .icon-wrap {
  margin-top: 1.5rem;
  margin-left: 1.5rem;
}

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

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.list-check i {
  color: var(--gold);
  margin-top: 0.15rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.stats-value {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.timeline {
  position: relative;
  padding-left: 1.6rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.timeline-item {
  position: relative;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.63rem;
  top: 1.7rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.cta-banner {
  padding: 2.25rem;
  border-radius: 1.75rem;
  background:
    linear-gradient(130deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: var(--shadow);
}

.contact-card i {
  color: var(--gold);
  font-size: 1.2rem;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
}

.form-control::placeholder {
  color: rgba(247, 241, 227, 0.45);
}

.form-label {
  color: var(--text);
  font-weight: 600;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 0 0.18rem rgba(212, 175, 55, 0.15);
}

.map-embed {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 1.5rem;
  filter: grayscale(1) contrast(1.1) brightness(0.75);
}

.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a0805;
}

.footer .brand-font {
  color: var(--gold);
  font-size: 2rem;
}

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

.footer li + li {
  margin-top: 0.8rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.social-links a:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-3px);
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.float-up {
  animation: floatUp 0.9s ease both;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding: 8rem 0 5rem;
  }

  .section-padding {
    padding: 4.25rem 0;
  }

  .nav-link::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p,
  .section-subtitle {
    font-size: 1rem;
  }

  .cta-banner,
  .glass-card,
  .feature-card,
  .info-card,
  .contact-card,
  .stats-card {
    padding: 1.35rem;
  }

  .product-card img,
  .image-cover {
    height: 220px;
  }
}



/*css anurag*/
.img_logo{
  width: 160px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}