:root {
  --primary: #F97316;
  --primary-light: #FFF3E8;
  --dark: #1F2937;
  --light: #6B7280;
  --bg-light: #FAFAFA;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: var(--dark);
}

/******** HERO ********/
.hero-wrapper {
  padding: 80px 0;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
}

.hero-sub {
  font-size: 18px;
  color: var(--light);
}

.hero-card {
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
}

/******** ICON BOX ********/
.icon-box {
  padding: 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 15px rgba(0,0,0,.07);
  text-align: center;
}

.icon-box i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
}

/******** CARDS ********/
.puja-card, .pandit-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.puja-card img, .pandit-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/******** MOBILE FIX ********/
@media (max-width: 768px) {
  .hero-wrapper { text-align: center; padding: 40px 0; }
  .hero-title { font-size: 28px; }
  .hero-card { margin-top: 20px; }
  .icon-box { margin-bottom: 20px; }
  .puja-card img, .pandit-card img { height: 180px; }
}

ul.navbar-nav {
  list-style: none !important;
  padding-left: 0 !important;
}

/* Remove skip links and debug bullets */
.skip-link, ul.menu {
  display: none !important;
}

/* Navbar styling */
.navbar {
  padding: 15px 0;
  background: #fff !important;
}

.navbar-nav {
  margin-left: auto;
}

.navbar-nav .nav-link {
  color: #000 !important;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 14px !important;
}

.navbar-nav .nav-link:hover {
  color: #ff7a00 !important;
}

.hero-img {
  max-width: 400px;
}

header.navbar,
.navbar {
  background: #FF7A00 !important;
  padding: 14px 0 !important;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 600;
}

.navbar-nav .nav-link:hover {
  color: #ffe0c2 !important;
}

.navbar-brand img {
  filter: brightness(0) invert(1);
}

/* STICKY + BHAGWA HEADER */
header.navbar,
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #FF7A00 !important;
  padding: 14px 0 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* WHITE MENU TEXT */
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 14px !important;
}

.navbar-nav .nav-link:hover {
  color: #ffe8c6 !important;
}

/* WHITE LOGO LOOK */
.navbar-brand img {
  filter: brightness(0) invert(1);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
}

.puja-card img {
  height: 220px;
  object-fit: cover;
}

.testimonial-card {
  background: #fff;
  font-size: 15px;
  line-height: 1.5;
}

.btn-primary {
  background: #FF7A00 !important;
  border-color: #FF7A00 !important;
}


/* HERO BETTER LOOK */
.hero-wrapper {
  background: linear-gradient(90deg, #fff 60%, #faf7f2 100%);
  min-height: 460px;
}

/* Title Premium Look */
.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #1e1f24;
}

/* Subtitle tone */
.hero-sub {
  font-size: 1.25rem;
  color: #4b4d55;
}

/* CTA Button Matching Theme */
.hero-btn {
  background: #FF7A00 !important;
  border: none !important;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.2s;
}
.hero-btn:hover {
  background: #ff6700 !important;
}

/* Right side image glow */
.hero-img-wrap {
  padding: 15px;
  border-radius: 22px;
  background: #ffffff;
}

.hero-img {
  max-width: 360px;
  object-fit: cover;
}

/* Responsive improvement */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-wrapper {
    text-align: center;
  }
  .hero-img {
    max-width: 260px;
  }
}


/* HERO MAIN */
.hero-section { background: #ffffff; }
.hero-title { font-size: 3rem; line-height: 1.2; color: #13151A; }
.hero-desc { color: #555; font-size: 1.1rem; }

/* BUTTON STYLE */
.hero-cta-btn {
  background: #FF7A00;
  color: #fff;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 8px;
}
.hero-cta-btn:hover { background: #e66400; }

/* HERO IMAGE */
.hero-main-img {
  width: 100%;
  max-width: 430px;
}

/* FLOATING FORM CARD */
.hero-form-card {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 12px;
  width: 300px;
}

/* Form CTA */
.book-btn {
  background: #FF7A00 !important;
  color: #fff !important;
  font-weight: bold;
  border-radius: 6px;
}

/* shadow smooth */
.hero-main-img, .hero-form-card {
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-form-card {
    position: static;
    margin-top: 20px;
    width: 100%;
    transform: none;
  }
  .hero-title { font-size: 2.2rem; }
}
