/* ==========================================================================
   Shree Govind — Premium Vedic Spiritual Design System
   ========================================================================== */

:root {
  --maroon: #5c1a24;
  --maroon-deep: #3d0f18;
  --saffron: #d4842a;
  --saffron-light: #e8a84b;
  --cream: #f7f0e4;
  --ivory: #faf6ef;
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.35);
  --sandstone: #c4a882;
  --brown: #2a1810;
  --brown-soft: #4a3228;
  --purple-overlay: rgba(60, 20, 50, 0.75);

  --font-display: 'Lora', serif;
  --font-heading: 'Lora', serif;
  --font-short-title: 'Lora', serif;
  --font-body: 'Montserrat', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-soft: 0 8px 32px rgba(42, 24, 16, 0.08);
  --shadow-luxury: 0 20px 60px rgba(42, 24, 16, 0.14);
  --shadow-gold: 0 0 40px rgba(201, 162, 39, 0.25);
  --glass: rgba(247, 240, 228, 0.12);
  --glass-border: rgba(255, 255, 255, 0.18);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-h: 72px;
  --topbar-h: 38px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brown);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading) !important;
  font-weight: 600;
  margin-top: 0;
  color: var(--maroon-deep);
}

.section-title {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(1.75rem, 2.5vw, 2rem);
  color: var(--maroon-deep);
  line-height: 1.3;
}

.section-title-specialize {
  font-family: 'Lora', serif !important;
  font-weight: 700 !important;
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  color: var(--maroon-deep);
  line-height: 1.3;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1280px, 92vw);
  margin-inline: auto;
}

em {
  font-style: italic;
  color: var(--saffron);
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 132, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body.cursor-ready .cursor-glow {
  opacity: 1;
}

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--maroon-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-om {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  animation: pulseOm 2s ease-in-out infinite;
}

.loader-text {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sandstone);
}

@keyframes pulseOm {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Topbar */
.topbar {
  background: var(--maroon-deep);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar__left {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.topbar__item:hover {
  opacity: 1;
}

.topbar__social {
  display: flex;
  gap: 0.85rem;
}

.topbar__social a {
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.topbar__social a:hover {
  opacity: 1;
  color: var(--saffron-light);
}

/* Header */
.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.45s var(--ease-out), box-shadow 0.45s, backdrop-filter 0.45s;
}

.header.scrolled {
  background: rgba(61, 15, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo__emblem {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.08);
}

.logo__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream);
  line-height: 1.2;
}

.logo__tag {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sandstone);
  opacity: 0.9;
}

.header:not(.scrolled) .logo__name {
  color: var(--cream);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__menu a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.88;
  position: relative;
  transition: opacity 0.25s, color 0.25s;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--saffron);
  transition: width 0.35s var(--ease-out);
}

.nav__menu a:hover {
  opacity: 1;
}

.nav__menu a:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 0.55rem 1.25rem !important;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  border-radius: var(--radius-sm);
  color: var(--maroon-deep) !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.3s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 100%);
  color: var(--maroon-deep);
  box-shadow: 0 4px 20px rgba(212, 132, 42, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 132, 42, 0.45);
}

.btn--ghost {
  background: rgba(247, 240, 228, 0.12);
  color: var(--cream);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(247, 240, 228, 0.2);
}

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

.btn--outline:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #e8c547);
  color: var(--maroon-deep);
}

.btn--sm {
  padding: 0.65rem 1.35rem;
  font-size: 0.8rem;
}

.btn__play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent currentColor;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--topbar-h) + var(--header-h));
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroKen 25s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero__fog {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(61, 15, 24, 0.92) 0%, rgba(61, 15, 24, 0.55) 45%, rgba(61, 15, 24, 0.25) 70%, transparent 100%),
    linear-gradient(to top, var(--maroon-deep) 0%, transparent 35%);
  z-index: 1;
}

.hero__rays {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(-25deg,
      transparent,
      transparent 80px,
      rgba(232, 168, 75, 0.03) 80px,
      rgba(232, 168, 75, 0.06) 82px);
  animation: raysMove 20s linear infinite;
  pointer-events: none;
}

@keyframes raysMove {
  from {
    transform: translateX(-20px);
  }

  to {
    transform: translateX(20px);
  }
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero__floats {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.float-om {
  position: absolute;
  top: 18%;
  right: 12%;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.2;
  animation: floatY 6s ease-in-out infinite;
}

.float-bell {
  position: absolute;
  top: 28%;
  right: 28%;
  font-size: 1.5rem;
  opacity: 0.4;
  animation: floatY 5s ease-in-out infinite 1s;
}

.float-petal {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--saffron);
  border-radius: 50% 0 50% 50%;
  top: 40%;
  right: 18%;
  opacity: 0.6;
  animation: petalFall 8s ease-in-out infinite;
}

.float-petal--2 {
  top: 55%;
  right: 35%;
  animation-delay: 2s;
  transform: rotate(45deg);
}

@keyframes petalFall {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    transform: translateY(30px) rotate(180deg);
    opacity: 0.3;
  }
}

.float-mandala {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 50%;
  animation: mandalaSpin 40s linear infinite;
}

.float-mandala::before,
.float-mandala::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px dashed rgba(201, 162, 39, 0.15);
  border-radius: 50%;
}

.float-mandala::after {
  inset: 35px;
}

@keyframes mandalaSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.float-diya {
  position: absolute;
  bottom: 22%;
  left: 8%;
  animation: floatY 4s ease-in-out infinite;
}

.diya-body {
  width: 28px;
  height: 14px;
  background: linear-gradient(var(--gold), #8b6914);
  border-radius: 0 0 50% 50%;
  margin: 0 auto;
}

.diya-flame {
  width: 10px;
  height: 18px;
  margin: 0 auto -2px;
  background: radial-gradient(ellipse at bottom, #fff8e0, var(--saffron) 40%, transparent 70%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: flameFlicker 0.8s ease-in-out infinite alternate;
}

@keyframes flameFlicker {
  from {
    transform: scaleY(1) scaleX(1);
  }

  to {
    transform: scaleY(1.1) scaleX(0.9);
  }
}

.hero__grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem 6rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(247, 240, 228, 0.82);
  max-width: 32rem;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(247, 240, 228, 0.75);
  font-size: 0.9rem;
}

.hero__avatars {
  display: flex;
}

.hero__avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--maroon-deep);
  margin-left: -10px;
  object-fit: cover;
}

.hero__avatars img:first-child {
  margin-left: 0;
}

.hero__trust strong {
  color: var(--cream);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero__portrait-wrap {
  position: relative;
  max-width: 420px;
}

.hero__portrait-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(212, 132, 42, 0.25) 0%, transparent 65%);
  z-index: 0;
}

.hero__portrait {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-luxury);
  transform: perspective(800px) rotateY(-4deg);
  transition: transform 0.6s var(--ease-out);
}

.hero__portrait-wrap:hover .hero__portrait {
  transform: perspective(800px) rotateY(0deg) translateY(-6px);
}

.hero__portrait-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--gold-soft);
  border-radius: calc(var(--radius-xl) + 8px);
  z-index: 2;
  pointer-events: none;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--sandstone);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounceScroll 2s ease-in-out infinite;
}

@keyframes bounceScroll {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Horoscope strip */
.horoscope-strip {
  background: var(--cream);
  border-bottom: 1px solid rgba(196, 168, 130, 0.3);
  padding: 1rem 0;
}

.horoscope-strip__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.horoscope-strip__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maroon);
  white-space: nowrap;
}

.horoscope-strip__signs {
  flex: 1;
  min-width: 200px;
  position: relative;
  min-height: 2.75rem;
}

.horoscope-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}

.horoscope-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.horoscope-item__symbol {
  font-size: 1.5rem;
}

.horoscope-item__name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--maroon);
  min-width: 5rem;
}

.horoscope-item__text {
  font-size: 0.9rem;
  color: var(--brown-soft);
}

.horoscope-strip__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--saffron);
  white-space: nowrap;
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section__texture {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='%235c1a24'/%3E%3C/svg%3E");
  pointer-events: none;
}

.section__header {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

.section__header--light .section__title,
.section__header--light .section__subtitle {
  color: var(--cream);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--maroon-deep);
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--brown-soft);
  line-height: 1.7;
}

/* Services — asymmetric grid */
.services {
  background: var(--ivory);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
  border: 1px solid transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, var(--gold-soft), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury), var(--shadow-gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--featured {
  grid-column: span 1;
  grid-row: span 1;
}

.service-card:nth-child(4) {
  transform: translateY(1.5rem);
}

.service-card:nth-child(7) {
  transform: translateY(-0.75rem);
}

.service-card__img {
  height: 200px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.service-card:hover .service-card__img img {
  transform: scale(1.08);
}

.service-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.service-card__icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--brown-soft);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-card__btn {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.25s;
}

.service-card__btn::after {
  content: "→";
  transition: transform 0.25s;
}

.service-card:hover .service-card__btn::after {
  transform: translateX(4px);
}

/* Why */
.why {
  background: var(--cream);
  overflow: hidden;
}

.why__bg {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why__text {
  font-size: 1.05rem;
  color: var(--brown-soft);
  margin: 1.25rem 0 1.75rem;
  line-height: 1.75;
}

.why__list li {
  padding: 0.65rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--brown);
}

.why__list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 0.85rem;
}

.why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: #fff;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.35s var(--ease-out);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card--accent {
  background: linear-gradient(145deg, var(--maroon), var(--maroon-deep));
  color: var(--cream);
}

.stat-card--accent .stat-card__label {
  color: var(--sandstone);
}

.stat-card--wide {
  grid-column: span 2;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}

.stat-card--accent .stat-card__num {
  color: var(--gold);
}

.stat-card__suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--saffron);
}

.stat-card__label {
  display: block;
  width: 100%;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-top: 0.35rem;
}

.stat-card__label--large {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--maroon);
}

.stat-card__icon {
  font-size: 1.5rem;
}

.stat-card__sub {
  font-size: 0.85rem;
  color: var(--brown-soft);
  width: 100%;
}

/* Festival */
.festival-banner {
  background: linear-gradient(90deg, var(--maroon-deep), var(--maroon));
  padding: 2.5rem 0;
  color: var(--cream);
}

.festival-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.festival-banner__tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron-light);
}

.festival-banner h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0.25rem 0;
}

.festival-banner p {
  opacity: 0.8;
  font-size: 0.95rem;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.countdown__unit {
  text-align: center;
  min-width: 56px;
}

.countdown__val {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

.countdown__lbl {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.countdown__sep {
  font-size: 1.5rem;
  color: var(--saffron);
  opacity: 0.5;
  padding-bottom: 1rem;
}

/* Bhajans */
.bhajans {
  position: relative;
  background: var(--maroon-deep);
  overflow: hidden;
}

.bhajans__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(120, 40, 100, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(92, 26, 36, 0.6) 0%, transparent 50%),
    linear-gradient(180deg, var(--maroon-deep) 0%, #2a0818 100%);
}

.bhajans__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.note {
  position: absolute;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.15;
  animation: noteFloat 4s ease-in-out infinite;
}

.note--1 {
  top: 15%;
  left: 10%;
}

.note--2 {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
  font-size: 2.5rem;
}

.note--3 {
  bottom: 20%;
  left: 25%;
  animation-delay: 2s;
}

@keyframes noteFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.flute-decor {
  position: absolute;
  bottom: 15%;
  right: 8%;
  font-size: 4rem;
  opacity: 0.12;
  animation: floatY 5s ease-in-out infinite;
}

.bhajans .container {
  position: relative;
  z-index: 2;
}

.bhajans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.video-card {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-card:hover .video-card__thumb img {
  transform: scale(1.05);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 132, 42, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring), background 0.3s;
}

.video-card__play span {
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left: 16px solid var(--maroon-deep);
  margin-left: 4px;
}

.video-card__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--saffron-light);
}

.video-card__duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.video-card__meta {
  padding: 1.25rem;
  color: var(--cream);
}

.video-card__cat {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron-light);
}

.video-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin: 0.4rem 0 0.5rem;
  line-height: 1.4;
}

.video-card__meta p {
  font-size: 0.82rem;
  opacity: 0.65;
}

.youtube-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.youtube-counter__icon {
  width: 36px;
  height: 36px;
  background: #ff0000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
}

/* Booking */
.booking {
  background: var(--ivory);
}

.booking__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: start;
}

.booking__intro p {
  color: var(--brown-soft);
  margin: 1rem 0 2rem;
  line-height: 1.7;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
}

.process-step.active,
.process-step:hover {
  background: #fff;
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-soft);
}

.process-step__num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--saffron);
  font-weight: 600;
  min-width: 2rem;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--maroon);
  margin-bottom: 0.2rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--brown-soft);
}

.booking-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(196, 168, 130, 0.2);
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field {
  display: block;
  margin-bottom: 1.25rem;
}

.field span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 0.45rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(196, 168, 130, 0.4);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--brown);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(212, 132, 42, 0.15);
}

.booking-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Puja flow */
.puja-flow {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, var(--ivory), var(--cream));
}

.puja-flow__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-align: center;
  color: var(--maroon);
  margin-bottom: 2.5rem;
}

.puja-flow__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.flow-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 168, 130, 0.25);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
  cursor: default;
}

.flow-card:hover,
.flow-card:focus {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--gold-soft);
  outline: none;
}

.flow-card__step {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  display: block;
  margin-bottom: 0.75rem;
}

.flow-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

.flow-card p {
  font-size: 0.88rem;
  color: var(--brown-soft);
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background: var(--cream);
}

.testimonials__carousel {
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s var(--ease-out);
}

.testimonial-card {
  flex: 0 0 min(420px, 85vw);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--maroon);
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--brown-soft);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--sandstone);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
}

.carousel-dots button.active {
  opacity: 1;
  background: var(--saffron);
  transform: scale(1.2);
}

/* Gallery masonry */
.gallery__masonry {
  columns: 3;
  column-gap: 1.25rem;
}

.gallery__item {
  display: block;
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  transition: transform 0.6s var(--ease-out);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 15, 24, 0.5), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item--tall img {
  min-height: 320px;
  object-fit: cover;
}

.gallery__item--wide {
  column-span: all;
}

/* Events */
.events-section {
  padding: var(--space-xl) 0;
}

.events-slider {
  position: relative;
  overflow: hidden;
}

.events-slider__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s var(--ease-out);
}

.event-card {
  flex: 0 0 280px;
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--saffron);
  box-shadow: var(--shadow-soft);
}

.event-card time {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
}

.event-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--maroon);
  margin: 0.5rem 0 0.35rem;
}

.event-card p {
  font-size: 0.88rem;
  color: var(--brown-soft);
}

.events-slider__prev,
.events-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--sandstone);
  background: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--maroon);
  transition: background 0.25s, color 0.25s;
  z-index: 2;
}

.events-slider__prev {
  left: -12px;
}

.events-slider__next {
  right: -12px;
}

.events-slider__prev:hover,
.events-slider__next:hover {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
}

/* Temple showcase */
.temple-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 420px;
  overflow: hidden;
}

.temple-showcase__img {
  overflow: hidden;
}

.temple-showcase__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}

.temple-showcase:hover .temple-showcase__img img {
  transform: scale(1.05);
}

.temple-showcase__content {
  background: var(--maroon);
  color: var(--cream);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.temple-showcase__content .section__eyebrow {
  color: var(--saffron-light);
}

.temple-showcase h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0.75rem 0 1rem;
}

.temple-showcase p {
  opacity: 0.85;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

/* Community */
.community__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.community__card {
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 168, 130, 0.25);
  transition: transform 0.35s, box-shadow 0.35s;
}

.community__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-luxury);
}

.community__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.community__card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

.community__card p {
  font-size: 0.92rem;
  color: var(--brown-soft);
  line-height: 1.65;
}

/* Donation */
.donation-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #e8c547 50%, var(--saffron) 100%);
  padding: 2.5rem 0;
}

.donation-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.donation-banner h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--maroon-deep);
}

.donation-banner p {
  color: var(--brown);
  opacity: 0.85;
}

/* Quotes */
.quotes-slider {
  background: var(--maroon-deep);
  padding: 3rem 0;
  text-align: center;
  overflow: hidden;
}

.quote-slide {
  display: none;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.quote-slide.active {
  display: block;
  animation: fadeQuote 0.8s var(--ease-out);
}

@keyframes fadeQuote {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-slide p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.quote-slide cite {
  font-size: 0.9rem;
  color: var(--sandstone);
  font-style: normal;
}

/* Blog */
.blog__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.blog__featured a {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s, box-shadow 0.4s;
}

.blog__featured a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
}

.blog__featured img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.blog__featured-content {
  padding: 2rem;
}

.blog__cat {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
}

.blog__featured h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--maroon);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.3;
}

.blog__featured p {
  color: var(--brown-soft);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.blog__featured time {
  font-size: 0.82rem;
  color: var(--sandstone);
}

.blog__side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.blog__item a {
  display: flex;
  gap: 1.25rem;
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}

.blog__item a:hover {
  transform: translateX(6px);
}

.blog__item img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.blog__item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--maroon);
  line-height: 1.4;
  margin: 0.25rem 0;
}

.blog__item time {
  font-size: 0.78rem;
  color: var(--sandstone);
}

/* Blessings */
.blessings-section {
  padding: var(--space-xl) 0;
  background: radial-gradient(ellipse at center, var(--cream) 0%, var(--ivory) 100%);
  text-align: center;
}

.blessings-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--maroon);
}

.blessings-section>.container>p {
  color: var(--brown-soft);
  margin: 0.75rem 0 2rem;
}

.blessings-diya {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s var(--ease-spring);
}

.blessings-diya:hover {
  transform: scale(1.08);
}

.blessings-diya__base {
  display: block;
  width: 50px;
  height: 22px;
  margin: 0 auto;
  background: linear-gradient(var(--gold), #8b6914);
  border-radius: 0 0 50% 50%;
}

.blessings-diya__flame {
  display: block;
  width: 16px;
  height: 28px;
  margin: 0 auto -4px;
  background: radial-gradient(ellipse, #fffacd, var(--saffron));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.4;
  transition: opacity 0.4s, transform 0.4s;
}

.blessings-diya.lit .blessings-diya__flame {
  opacity: 1;
  animation: flameFlicker 0.6s ease-in-out infinite alternate;
}

.blessings-message {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--maroon);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.blessings-message[hidden] {
  display: none;
}

/* FAQ */
.faq__grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 3rem;
  align-items: start;
}

.accordion__item {
  border-bottom: 1px solid rgba(196, 168, 130, 0.35);
}

.accordion__item summary {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--maroon);
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.03em;
}

.accordion__item summary::-webkit-details-marker {
  display: none;
}

.accordion__item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--saffron);
  transition: transform 0.3s;
}

.accordion__item[open] summary::after {
  transform: rotate(45deg);
}

.accordion__item p {
  padding-bottom: 1.25rem;
  color: var(--brown-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--maroon-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.footer__diya {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--saffron-light), var(--saffron));
  box-shadow: 0 0 30px var(--saffron), 0 0 60px rgba(212, 132, 42, 0.3);
  animation: diyaGlow 3s ease-in-out infinite;
}

.footer__diya--1 {
  bottom: 120px;
  left: 8%;
}

.footer__diya--2 {
  bottom: 180px;
  right: 12%;
  animation-delay: 1.5s;
}

@keyframes diyaGlow {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

.footer__brand p {
  margin: 1rem 0 1.25rem;
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.65;
  max-width: 280px;
}

.logo--footer .logo__name,
.logo--footer .logo__tag {
  color: var(--cream);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 600;
  transition: background 0.25s, border-color 0.25s;
}

.footer__social a:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--maroon-deep);
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 1.25rem;
}

.footer__col ul li {
  margin-bottom: 0.6rem;
}

.footer__col a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.footer__col a:hover {
  opacity: 1;
  color: var(--saffron-light);
}

.newsletter-form {
  display: flex;
  margin-top: 0.75rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: var(--cream);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  padding: 0 1rem;
  background: var(--saffron);
  border: none;
  color: var(--maroon-deep);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s;
}

.newsletter-form button:hover {
  background: var(--saffron-light);
}

.footer__contact-list li {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.footer__hours {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer__hours strong {
  display: block;
  color: var(--saffron-light);
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__map iframe {
  width: 100%;
  height: 220px;
  border: none;
  filter: grayscale(30%) sepia(20%);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  position: relative;
  z-index: 1;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.65;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(42, 24, 16, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.35s var(--ease-out);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-luxury);
  animation: scaleIn 0.4s var(--ease-spring);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s;
}

.lightbox__close:hover {
  background: var(--saffron);
  color: var(--maroon-deep);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.15s;
}

/* Responsive */
@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(4),
  .service-card:nth-child(7) {
    transform: none;
  }

  .puja-flow__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bhajans__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__desc {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    justify-content: center;
    margin-top: 2rem;
  }

  .why__grid,
  .booking__grid,
  .blog__layout,
  .faq__grid,
  .temple-showcase {
    grid-template-columns: 1fr;
  }

  .temple-showcase__img {
    min-height: 280px;
  }

  .community__grid {
    grid-template-columns: 1fr;
  }

  .gallery__masonry {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .topbar__item--hide-sm {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0;
    right: 0;
    background: var(--maroon-deep);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
    pointer-events: none;
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .services__grid,
  .bhajans__grid {
    grid-template-columns: 1fr;
  }

  .booking-form__row {
    grid-template-columns: 1fr;
  }

  .puja-flow__cards {
    grid-template-columns: 1fr;
  }

  .festival-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .gallery__masonry {
    columns: 1;
  }

  .donation-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* 3D and Hover Animation Enhancements */
.3d-card {
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.3d-card:hover {
  transform: translateY(-12px) rotateX(4deg) rotateY(-4deg) scale(1.02);
  box-shadow: 0 25px 50px rgba(201, 162, 39, 0.3), 0 0 30px rgba(212, 132, 42, 0.2);
  z-index: 10;
}

.3d-card .service-card__icon,
.3d-card h3,
.3d-card p {
  transform: translateZ(30px);
}

.3d-card .service-card__btn {
  transform: translateZ(40px);
}

.3d-card img {
  transform: translateZ(20px) scale(1.05);
}

.video-card.3d-card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg) scale(1.03);
}

.stat-card.3d-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(201, 162, 39, 0.25);
}

.gallery__item.3d-card:hover {
  transform: translateY(-10px) scale(1.02) translateZ(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

@keyframes floatText {
  0% {
    transform: translateY(0) translateZ(50px);
  }

  100% {
    transform: translateY(-15px) translateZ(50px);
  }
}

.nav__menu a.active {
  color: var(--saffron);
}

.nav__menu a.active::after {
  width: 100%;
}

/* Ken Burns Swiper Animation */
.heroSwiper {
  min-height: 420px;
  height: 50vw;
  max-height: 720px;
}

.heroSwiper .swiper-slide img {
  transition: transform 8s ease-out !important;
  transform: scale(1.02);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}

.heroSwiper .swiper-slide-active img {
  transform: scale(1.08) !important;
}

/* Dark overlay for readability */
.heroSwiper .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
  pointer-events: none;
  display: none !important;
}

.heroSwiper .hero-caption {
  display: none !important;
}

.heroSwiper .hero-overlay {
  display: none !important;
}

@media (max-width: 767.98px) {
  .heroSwiper { height: clamp(420px, 80vh, 600px); }
}

/* =======================================================
   HERO SECTION — Caption, Title, Buttons
   ======================================================= */
.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-caption-inner {
  max-width: 680px;
  color: #fff;
}

.hero-top-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A75D;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 167, 93, 0.4);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 5vw, 3.8rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.15 !important;
  margin: 0 0 12px !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: 'Lora', serif !important;
  font-size: clamp(1rem, 2.5vw, 1.45rem) !important;
  font-weight: 600 !important;
  color: #C9A75D !important;
  margin: 0 0 12px !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-description {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1.6vw, 15.5px);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin: 0;
  max-width: 540px;
}

.hero-buttons {
  margin-top: 24px;
}

.heroSwiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
  min-height: auto;
}

@media (max-width: 767.98px) {
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem) !important; }
  .hero-subtitle { font-size: clamp(0.85rem, 4vw, 1.1rem) !important; }
  .hero-description { font-size: 13px; }
  .hero-caption-inner { max-width: 100%; padding: 0 12px; }
  .hero-buttons { flex-direction: column; align-items: flex-start !important; }
  .hero-buttons a { font-size: 13px; padding: 10px 18px !important; }
}

/* ==========================
   PREMIUM STATS SECTION
========================== */
:root {
  --primary: #821C1C;
  --primary-light: #A52A2A;
  --primary-dark: #651515;
  --text: #222;
  --muted: #777;
}

.stats-section {
  position: relative;
  padding: 60px 0;
  background:
    linear-gradient(135deg,
      #fff,
      #faf6f6);
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(130, 28, 28, .05);
  border-radius: 50%;
  top: -150px;
  right: -100px;
  filter: blur(60px);
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(130, 28, 28, .08);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, .05);
  transition: all .4s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(130, 28, 28, .08);
  border-color: rgba(201, 162, 39, .35);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg,
      transparent,
      rgba(130, 28, 28, .08),
      transparent);
  transform: translateX(-100%);
  transition: .8s;
}

.stat-card:hover::before {
  transform: translateX(100%);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 45px rgba(130, 28, 28, .15);
  border-color: rgba(130, 28, 28, .2);
}

.icon-box {
  position: relative;
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));
  box-shadow:
    0 12px 30px rgba(130, 28, 28, .35);
}

.icon-box::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, .2);
}

.stat-content h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-content span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 500;
}

.stat-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background:
    linear-gradient(90deg,
      var(--primary),
      var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s;
}

.stat-card:hover::after {
  transform: scaleX(1);
}

/* Floating Animation */

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.stat-card:nth-child(1) {
  animation: floatCard 5s ease-in-out infinite;
}

.stat-card:nth-child(2) {
  animation: floatCard 5s ease-in-out infinite .7s;
}

.stat-card:nth-child(3) {
  animation: floatCard 5s ease-in-out infinite 1.4s;
}

.stat-card:nth-child(4) {
  animation: floatCard 5s ease-in-out infinite 2.1s;
}

/* Tablet */

@media(max-width:991px) {

  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media(max-width:576px) {

  .stats-section {
    padding: 40px 0;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 20px;
    border-radius: 18px;
  }

  .icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 24px;
  }

  .stat-content h3 {
    font-size: 1.6rem;
  }

  .stat-content span {
    font-size: .9rem;
  }
}

/* ==========================
   WHY CHOOSE US SECTION
========================== */
.why-image-box {
  position: relative;
  padding: 20px;
  z-index: 2;
}

.why-image-border {
  position: absolute;
  inset: 35px 5px 5px 35px;
  border: 3px solid var(--gold);
  border-radius: 20px;
  z-index: 1;
  transition: all 0.5s ease;
}

.why-main-image {
  width: 100%;
  border-radius: 20px;
  border: 6px solid #ffffff;
  box-shadow: 0 15px 35px rgba(130, 28, 28, 0.15);
  position: relative;
  z-index: 2;
  transform: rotate(-2deg);
  transition: all 0.5s ease;
}

.why-image-box:hover .why-main-image {
  transform: rotate(0deg) scale(1.02);
}

.why-image-box:hover .why-image-border {
  inset: 15px 25px 25px 15px;
  border-color: var(--maroon);
}

.floating-mandala {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #ffffff;
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 3;
  animation: floatOrnaments 6s ease-in-out infinite;
}

.floating-mandala.element-1 {
  top: 5%;
  right: 5%;
  animation-delay: 0s;
}

.floating-mandala.element-2 {
  bottom: 5%;
  left: 5%;
  animation-delay: 3s;
}

@keyframes floatOrnaments {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(180deg);
  }
}

.why-choose-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(130, 28, 28, 0.05);
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.why-choose-list-item:hover {
  transform: translateX(12px);
  background: #ffffff;
  border-left-color: var(--maroon);
  box-shadow: 0 12px 25px rgba(130, 28, 28, 0.08);
}

.why-choose-list-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--maroon);
  color: #ffffff;
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-choose-list-item:hover .why-choose-list-check {
  background: var(--gold);
  transform: scale(1.1) rotate(360deg);
}

.why-choose-list-text {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--maroon-deep);
  font-size: 16px;
}

/* Card Flip & Medallion Integration Styles */
.specialize-card-flip-container {
  perspective: 1000px;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 24px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.specialize-card-flip-container:hover {
  transform: translateY(-8px);
}

.specialize-card-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  cursor: pointer;
}

.specialize-card-flip-inner.is-flipped {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.specialize-card-front,
.specialize-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
  border-radius: 8px;
  overflow: visible;
}

.specialize-card-front {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  z-index: 2;
}

.specialize-card-back {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  z-index: 1;
  overflow: hidden;
}

.specialize-card-back .specialize-card {
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.specialize-card-back .specialize-card:hover {
  transform: none !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

/* Golden Royal Vedic Card Front Face - 1:1 Mirror Copy */
.royal-vedic-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px !important;
  background: radial-gradient(circle at center, #FFD54F 0%, #FFB300 70%, #FFA000 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  overflow: visible !important;
  /* Allow diyas to overlap beautifully */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 0 14px;
  border: 1px solid #DCAE75;
  transition: border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.royal-card-border-frame {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}

.royal-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="none" stroke="%23ffffff" stroke-width="1.5"/></svg>');
  pointer-events: none;
  z-index: 0;
}

.royal-card-lattice {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 12px;
  opacity: 0.75;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="12" viewBox="0 0 40 12"><path d="M 0 6 L 6 0 L 12 6 L 6 12 Z M 20 6 L 26 0 L 32 6 L 26 12 Z" fill="none" stroke="%23B77B00" stroke-width="1.5"/><circle cx="16" cy="6" r="1.8" fill="%23B77B00"/></svg>');
  background-repeat: repeat-x;
  pointer-events: none;
  z-index: 2;
}

.royal-card-lattice-bottom {
  position: absolute;
  bottom: 48px;
  left: 14px;
  right: 14px;
  height: 12px;
  opacity: 0.75;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="12" viewBox="0 0 40 12"><path d="M 0 6 L 6 0 L 12 6 L 6 12 Z M 20 6 L 26 0 L 32 6 L 26 12 Z" fill="none" stroke="%23B77B00" stroke-width="1.5"/><circle cx="16" cy="6" r="1.8" fill="%23B77B00"/></svg>');
  background-repeat: repeat-x;
  pointer-events: none;
  z-index: 2;
}

.royal-image-frame-container {
  position: relative;
  width: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin-bottom: 6px;
}

.royal-scalloped-svg {
  width: 90%;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
  transition: all 0.4s ease;
}

/* Beautiful Clay Diya Styling (Mirror Placement) */
.divine-diya {
  position: absolute;
  bottom: -6px;
  /* Overflow outside to prevent cutting off */
  width: 44px;
  height: 30px;
  z-index: 100;
}

.diya-left {
  left: 24px;
}

.diya-right {
  right: 24px;
}

/* Clay Diya Bowl */
.diya-base {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 14px;
  background: linear-gradient(180deg, #D84315 0%, #BF360C 100%);
  border-radius: 0 0 20px 20px;
  border-top: 2px solid #FFAB91;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.diya-base::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 4px;
  background: #FF5722;
  border-radius: 50% 50% 0 0;
}

/* Diya Flame flicker effect */
.diya-flame {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 18px;
  background: radial-gradient(circle at bottom, #FFEB3B 20%, #FF9800 60%, #E64A19 100%);
  border-radius: 50% 50% 20% 20%;
  box-shadow: 0 0 8px #FF9800, 0 0 16px #FF5722;
  animation: diyaFlicker 1.5s infinite alternate ease-in-out;
  transform-origin: center bottom;
}

.diya-glow {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.4) 0%, rgba(255, 87, 34, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: diyaGlowPulse 1.5s infinite alternate ease-in-out;
}

@keyframes diyaFlicker {
  0% {
    transform: translateX(-50%) scale(1) rotate(-1deg);
  }

  100% {
    transform: translateX(-50%) scale(1.05) rotate(1.5deg);
  }
}

@keyframes diyaGlowPulse {
  0% {
    opacity: 0.8;
    transform: translateX(-50%) scale(0.9);
  }

  100% {
    opacity: 1.0;
    transform: translateX(-50%) scale(1.1);
  }
}

/* Flat Red Bottom Title Bar with Slant (1:1 Mirror Copy) */
.royal-title-bar {
  width: calc(100% + 28px);
  margin-left: -14px;
  margin-right: -14px;
  background: #D32F2F;
  padding: 22px 16px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  z-index: 2;
  border-radius: 0 0 8px 8px;
  position: relative;
  clip-path: polygon(0 14px, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 14px, 100% 0, 100% 100%, 0 100%);
}

/* Perfect crisp vector slanted line */
.royal-slant-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  pointer-events: none;
  z-index: 10;
}

.royal-title-text {
  font-family: var(--font-body), 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.royal-arrow-wrap {
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

/* Hover Interactions */
.specialize-card-wrapper:hover .royal-scalloped-svg {
  transform: scale(1.03);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.3));
}

.specialize-card-wrapper:hover .royal-arrow-wrap {
  transform: translateX(5px);
}

.specialize-card-wrapper:hover .royal-title-bar {
  background: linear-gradient(180deg, #E53935 0%, #C62828 100%);
}

.specialize-card-wrapper {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 24px;
  display: block;
}

.specialize-card-wrapper:hover {
  transform: translateY(-10px) scale(1.02);
}

.specialize-card-wrapper:hover .royal-vedic-card {
  box-shadow: 0 20px 35px rgba(212, 175, 55, 0.25), 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: #ffd54f !important;
}

/* ==========================================
   DIVINE SACRED SERVICE MODAL SYSTEM
========================================== */
.divine-service-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.divine-service-modal.is-active {
  opacity: 1;
  visibility: visible;
}

/* Semi-transparent velvet glass overlay */
.divine-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 5, 7, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Modal Content Panel */
.divine-modal-content {
  position: relative;
  width: 100%;
  max-width: 920px;
  height: auto;
  max-height: 90vh;
  background: #FAF8F5;
  /* Beautiful Sacred Cream Background */
  border-radius: 12px;
  border: 2px solid #DCAE75;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 2;
  transform: scale(0.9) translateY(30px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.divine-service-modal.is-active .divine-modal-content {
  transform: scale(1) translateY(0);
}

/* Close Button */
.divine-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(74, 14, 18, 0.1);
  border: 1px solid rgba(220, 174, 117, 0.5);
  color: #4A0E12;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.divine-modal-close:hover {
  background: #4A0E12;
  color: #ffffff;
  transform: scale(1.1);
}

/* Image Side */
.divine-modal-image-col {
  position: relative;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.divine-modal-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 380px;
  position: relative;
}

.divine-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.divine-modal-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 70%, rgba(250, 248, 245, 1) 100%);
  pointer-events: none;
}

/* Details Side */
.divine-modal-details-col {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.divine-modal-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.divine-modal-badge {
  font-family: var(--font-body), sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #C62828;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.divine-modal-title {
  font-family: 'Lora', 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #4A0E12;
  line-height: 1.2;
  margin-bottom: 12px;
}

.divine-modal-divider {
  width: 80px;
  height: 3px;
  background: #DCAE75;
  margin-bottom: 20px;
}

.divine-modal-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4E4E4E;
  margin-bottom: 24px;
}

/* Inclusions List */
.divine-modal-features-section {
  margin-bottom: 30px;
}

.divine-features-heading {
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 700;
  color: #4A0E12;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.divine-modal-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.divine-modal-features-list li {
  font-size: 14px;
  color: #555555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.divine-modal-features-list li i {
  color: #C62828;
  font-size: 16px;
}

/* Booking & Pricing Bar */
.divine-modal-booking-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(220, 174, 117, 0.3);
  margin-top: auto;
}

.divine-modal-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #888888;
  letter-spacing: 0.05em;
}

.price-val {
  font-size: 22px;
  font-weight: 700;
  color: #C62828;
  font-family: 'Lora', serif;
}

.btn-divine-book {
  background: linear-gradient(135deg, #8E1B24 0%, #4A0E12 100%);
  color: #ffffff !important;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(74, 14, 18, 0.25);
  transition: all 0.3s ease;
  border: 1px solid #DCAE75;
}

.btn-divine-book:hover {
  background: linear-gradient(135deg, #C62828 0%, #8E1B24 100%);
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
  transform: translateY(-2px);
}

/* Responsive adjustments for modal */
@media (max-width: 991px) {
  .divine-modal-content {
    max-height: 95vh;
  }

  .divine-modal-img-wrap {
    min-height: 200px;
  }

  .divine-modal-img-glow {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(250, 248, 245, 1) 100%);
  }

  .divine-modal-body {
    padding: 24px;
  }

  .divine-modal-features-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   SERVICES MIRROR COPY DESIGN
========================== */

.services-specialize-section {
  background: #f5f5f5;
  position: relative;
}

/* EXACT CARD LOOK USING PROVIDED JPEG AS BACKGROUND */
.services-specialize-section .puja-card {
  background-image: url('assets/image/service-card.jpeg');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  aspect-ratio: 939 / 1024;
  /* Exact aspect ratio of the new JPEG */
  display: block;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  width: 100%;
}

.services-specialize-section .puja-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* DYNAMIC IMAGE WRAPPER - Positioned exactly over the frame hole in the JPEG */
.services-specialize-section .frame-wrapper {
  position: absolute;
  top: 3%;
  left: 1%;
  right: 1%;
  bottom: 13%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Shape Masking for Dynamic Image */
.services-specialize-section .image-container {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* Gives the image a beautiful white border */
  padding: 6px;
  /* Border thickness */
  box-sizing: border-box;
  clip-path: url(#cloud-ornate-shape);
  -webkit-clip-path: url(#cloud-ornate-shape);
}

.services-specialize-section .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: url(#cloud-ornate-shape);
  -webkit-clip-path: url(#cloud-ornate-shape);
  display: block;
}

/* SOLID RED FOOTER PANEL - Covers the static text without hiding the top slanted edge */
.services-specialize-section .puja-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13%;
  /* Covers only the text area, keeps the slanted top edge visible */
  background-color: #cb2226;
  /* Exact match for the flat red area */
  color: #ffffff;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
  box-sizing: border-box;
}

.services-specialize-section .puja-footer span {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 85%;
  color: #ffffff;
}

.services-specialize-section .puja-footer .arrow {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffffff;
  margin-right: 2px;
}

/* GRID */
.specialize-card-wrapper {
  height: 100%;
}

.row.g-4 {
  row-gap: 28px !important;
}

/* SECTION BADGE & GLOWING OM ICON */
.section-badge-specialize {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #B28822 !important; /* Elegant gold badge */
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  display: inline-block;
}

@keyframes omGlow {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(201, 167, 93, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(201, 167, 93, 0.85));
    transform: scale(1.08);
  }
}
.om-gold-pulse {
  display: inline-block;
  transform-origin: center;
  animation: omGlow 3s ease-in-out infinite;
}

/* VIEW ALL SERVICES BUTTON */
.btn-view-all-services {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #8B1C24 0%, #5E0F14 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: 1.5px solid #C9A75D; /* Elegant gold border */
  box-shadow: 0 4px 15px rgba(139, 28, 36, 0.12);
  font-family: 'Montserrat', sans-serif;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-view-all-services:hover {
  background: linear-gradient(135deg, #a3222b 0%, #7d151c 100%);
  border-color: #FAF4ED;
  color: #fff;
  box-shadow: 0 10px 25px rgba(139, 28, 36, 0.28), 0 0 0 4px rgba(201, 167, 93, 0.15) !important;
  transform: translateY(-4px) scale(1.02) !important;
}

/* RESPONSIVE DESIGN */
@media(max-width:991px) {
  .services-specialize-section .puja-card {
    aspect-ratio: auto;
    height: 320px;
  }

  .services-specialize-section .frame-wrapper {
    height: 60%;
  }
}

@media(max-width:576px) {
  .services-specialize-section .puja-card {
    height: 300px;
  }

  .services-specialize-section .frame-wrapper {
    height: 55%;
  }
}

/* ==========================
   LATEST UPDATES & BLOG CARDS
========================== */
.card-brand {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(130, 28, 28, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.card-brand:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 20px 40px rgba(130, 28, 28, 0.08);
}

.card-brand img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-brand:hover img {
  transform: scale(1.08);
}

.date-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(130, 28, 28, 0.06);
  color: var(--maroon);
  font-size: 11px;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-brand h3 {
  font-family: var(--font-display);
  color: #222;
  transition: color 0.3s ease;
}

.card-brand:hover h3 {
  color: var(--maroon);
}

.card-brand:hover span.text-maroon {
  gap: 8px !important;
  color: var(--gold) !important;
}

/* Sidebar Guidance Box */
.guidance-box {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
  padding: 40px 30px;
  border: 1px solid rgba(130, 28, 28, 0.05);
  border-top: 5px solid var(--maroon);
  transition: all 0.4s ease;
  height: 100%;
}

.guidance-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(130, 28, 28, 0.08);
  border-top-color: var(--gold);
}

.guidance-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(130, 28, 28, 0.02);
  border: 1px solid rgba(130, 28, 28, 0.03);
  transition: all 0.3s ease;
}

.guidance-list-item:hover {
  background: rgba(130, 28, 28, 0.05);
  border-color: rgba(201, 162, 39, 0.15);
  transform: translateX(6px);
}

.guidance-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--maroon-deep);
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.guidance-list-item:hover .guidance-icon {
  background: var(--maroon-deep);
  color: #ffffff;
  border-color: var(--maroon-deep);
  transform: scale(1.1);
}

/* FaQ */

:root {
  --primary: #821C1C;
  --primary-light: #A52A2A;
  --primary-dark: #651515;
  --text: #1f1f1f;
  --muted: #6b7280;
  --border: rgba(130, 28, 28, .10);
}

.faq-contact-section {
  position: relative;
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

.faq-contact-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(130, 28, 28, .04);
  filter: blur(60px);
  pointer-events: none;
}

.faq-contact-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(130, 28, 28, .03);
  filter: blur(55px);
  pointer-events: none;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(130, 28, 28, .08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(130, 28, 28, .06);
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: #111;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* CONTACT CARD */
.contact-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
  overflow: hidden;
  animation: fadeUp .7s ease both;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(130, 28, 28, .03), transparent 35%);
  pointer-events: none;
}

.contact-card-head h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.contact-card-head p {
  margin: 4px 0 16px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.input-box,
.textarea-box {
  position: relative;
}

.input-box input,
.textarea-box textarea {
  width: 100%;
  border: 1px solid rgba(130, 28, 28, .10);
  background: #fafafa;
  border-radius: 12px;
  padding: 12px 18px 12px 48px;
  outline: none;
  font-size: 14px;
  color: var(--text);
  transition: all .3s ease;
}

.textarea-box textarea {
  padding: 14px;
  min-height: 90px;
  resize: none;
}

.input-box i,
.input-box svg {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: var(--primary);
  opacity: .8;
}

.input-box input:focus,
.textarea-box textarea:focus {
  border-color: rgba(130, 28, 28, .35);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(130, 28, 28, .06);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  padding: 15px 26px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 14px 30px rgba(130, 28, 28, .22);
  transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(130, 28, 28, .28);
  color: #fff;
}

/* FAQ */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeUp .85s ease both;
}

.faq-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(130, 28, 28, .10);
  border-color: rgba(130, 28, 28, .16);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
}

.faq-question i, .faq-question svg {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(130, 28, 28, .08);
  color: var(--primary);
  font-size: 20px;
  transition: all .35s ease;
}

.faq-question svg {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  padding: 13px !important;
  box-sizing: border-box !important;
}

.faq-item.active .faq-question i, .faq-item.active .faq-question svg {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
  box-shadow: 0 10px 24px rgba(130, 28, 28, .24);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 320px;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:991px) {
  .faq-contact-section {
    padding: 80px 0;
  }

  .contact-card {
    margin-bottom: 8px;
  }
}

@media(max-width:768px) {
  .section-heading {
    margin-bottom: 40px;
  }

  .contact-card {
    padding: 22px;
    border-radius: 22px;
  }

  .contact-card-head h3 {
    font-size: 24px;
  }

  .faq-question {
    padding: 18px 18px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-question i, .faq-question svg {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 10px !important;
    font-size: 18px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 14px;
  }

  .faq-item {
    border-radius: 18px;
  }
}

/* Bhajan */
/* ==========================
   BHAJAN SECTION
========================== */

.bhajans-section {
  position: relative;
  overflow: hidden;
  background: #faf8f5;
  /* Light Beige / Cream */
}

.bhajans-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(201, 162, 39, .08);
  border-radius: 50%;
  top: -150px;
  right: -100px;
  filter: blur(70px);
}

.bhajan-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(201, 162, 39, .12);
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, .2);
  font-weight: 600;
}

.bhajan-tag i {
  animation: spinMusic 3s linear infinite;
}

@keyframes spinMusic {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.bhajan-heading {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin-top: 20px;
  color: var(--maroon-deep);
}

.bhajan-subheading {
  max-width: 700px;
  margin: auto;
  color: #555555;
  line-height: 1.8;
}

/* Card */

.bhajan-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(130, 28, 28, 0.08);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, .04);
  transition: .5s ease;
  height: 100%;
}

.bhajan-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  background: #ffffff;
  box-shadow:
    0 25px 60px rgba(130, 28, 28, 0.08), 0 0 30px rgba(201, 162, 39, 0.1);
}

.bhajan-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.bhajan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.bhajan-card:hover img {
  transform: scale(1.15) rotate(2deg);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .55),
      transparent);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      #821C1C,
      #a52a2a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 2;
  transition: .4s;
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .4);
  animation: ripple 2s infinite;
}

.bhajan-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.18);
  background: linear-gradient(135deg, var(--gold), #e5be3c);
  color: var(--maroon-deep);
  box-shadow: 0 0 25px rgba(201, 162, 39, 0.6);
}

.video-duration {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 30px;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.bhajan-content {
  padding: 20px;
}

.bhajan-content h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
  transition: .3s;
}

.bhajan-card:hover h3 {
  color: var(--gold);
}

/* Button */

.btn-bhajan {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  color: #3A070A !important;
  font-weight: 700;
  background: linear-gradient(135deg,
      var(--gold) 0%,
      #A07830 100%);
  box-shadow:
    0 12px 30px rgba(201, 162, 39, .3);
  transition: .3s;
}

.btn-bhajan:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(130, 28, 28, .45);
}

/* Animation */

@keyframes ripple {

  0% {
    transform: scale(.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Mobile */

@media(max-width:768px) {

  .bhajan-image {
    height: 220px;
  }

  .bhajan-content h3 {
    font-size: 15px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
}


/* ==========================
   TESTIMONIALS SECTION (CIRCULAR LAYOUT)
   ========================== */
:root {
  --primary: #821C1C;
  --gold: #c9a227;
}

.testimonial-section {
  position: relative;
  padding: 120px 0;
  background: var(--maroon, #6B1A22);
  overflow: hidden;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.06);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.testimonial-header h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  margin-top: 15px;
}

.review-btn {
  background: #ffffff;
  color: var(--maroon, #6B1A22);
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.review-btn:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.35);
}

.review-btn i {
  width: 32px;
  height: 32px;
  background: var(--maroon, #6B1A22);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.review-btn:hover i {
  background: var(--maroon-deep);
  color: var(--gold);
}

.testimonial-area {
  position: relative;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.testimonial-card {
  max-width: 580px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-top: 290px;
}

.stars {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 20px;
}

.client-info {
  margin-top: 15px;
}

.client-info h5 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: 700;
}

.client-info span {
  color: var(--gold-light, #FAF6F0);
  opacity: 0.85;
  font-size: 14px;
}

/* Floating Devotee Icons */
.avatars-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-avatar {
  position: absolute;
  width: 90px;
  height: 90px;
  z-index: 3;
  pointer-events: auto;
}

.avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 3px solid rgba(130, 28, 28, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.avatar-inner i {
  font-size: 32px;
  color: var(--maroon, #6B1A22);
  transition: all 0.4s ease;
}

/* Coordinates in Semicircle Arc Layout */
.avatar-1 {
  left: 2%;
  bottom: 8%;
  animation: floatY 5s ease-in-out infinite;
}

.avatar-2 {
  left: 7%;
  top: 62%;
  animation: floatY 5s ease-in-out infinite 0.5s;
}

.avatar-3 {
  left: 15%;
  top: 38%;
  animation: floatY 5s ease-in-out infinite 1s;
}

.avatar-4 {
  left: 30%;
  top: 18%;
  animation: floatY 5s ease-in-out infinite 1.5s;
}

.avatar-5 {
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  animation: floatYCenter 5s ease-in-out infinite 2s;
}

.avatar-6 {
  right: 30%;
  top: 18%;
  animation: floatY 5s ease-in-out infinite 2.5s;
}

.avatar-7 {
  right: 15%;
  top: 38%;
  animation: floatY 5s ease-in-out infinite 3s;
}

.avatar-8 {
  right: 7%;
  top: 62%;
  animation: floatY 5s ease-in-out infinite 3.5s;
}

.avatar-9 {
  right: 2%;
  bottom: 8%;
  animation: floatY 5s ease-in-out infinite 4s;
}

/* Floating Keyframes */
@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatYCenter {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-12px);
  }
}

/* Hover & Active States */
.floating-avatar:hover .avatar-inner {
  border-color: rgba(201, 162, 39, 0.6);
  background: #ffffff;
  transform: scale(1.08);
}

.floating-avatar:hover .avatar-inner i {
  color: var(--gold);
}

.floating-avatar.active .avatar-inner {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 30px rgba(201, 162, 39, 0.8);
  transform: scale(1.15);
}

.floating-avatar.active .avatar-inner i {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

/* Responsive Styling */
@media(max-width: 1199px) {
  .floating-avatar {
    width: 80px;
    height: 80px;
  }

  .avatar-inner i {
    font-size: 28px;
  }

  .avatar-3 {
    left: 13%;
    top: 38%;
  }

  .avatar-4 {
    left: 28%;
    top: 18%;
  }

  .avatar-6 {
    right: 28%;
    top: 18%;
  }

  .avatar-7 {
    right: 13%;
    top: 38%;
  }
}

@media(max-width: 991px) {
  .testimonial-section {
    padding: 80px 0;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 50px;
  }

  .testimonial-area {
    min-height: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .avatars-container {
    position: relative;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    pointer-events: auto;
  }

  .floating-avatar {
    position: static !important;
    transform: none !important;
    animation: none !important;
    width: 70px;
    height: 70px;
  }

  .avatar-inner i {
    font-size: 24px;
  }

  .floating-avatar.active .avatar-inner {
    transform: scale(1.1);
  }

  .floating-avatar:hover .avatar-inner {
    transform: scale(1.05);
  }
}

@media(max-width: 575px) {
  .testimonial-section {
    padding: 60px 0;
  }

  .avatars-container {
    gap: 10px;
  }

  .floating-avatar {
    width: 60px;
    height: 60px;
  }

  .avatar-inner i {
    font-size: 20px;
  }

  .testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
  }

  .client-info h5 {
    font-size: 18px;
  }

  .client-info span {
    font-size: 14px;
  }
}

/* ==========================
   PREMIUM CTA STRIP SECTION
========================== */
.cta-strip-section {
  position: relative;
  background: linear-gradient(135deg, #FAF6F0 0%, #F5ECE0 100%);
  padding: 60px 0;
  overflow: hidden;
  border-top: 3px solid var(--maroon);
  border-bottom: 3px solid var(--maroon);
}

.cta-strip-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(107, 26, 34, 0.03) 0%, transparent 80%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="none" stroke="rgba(107,26,34,0.02)" stroke-width="1"/></svg>') repeat;
  pointer-events: none;
}

.cta-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--maroon-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.cta-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--maroon-deep);
  margin-bottom: 8px;
}

.cta-desc {
  font-size: 14.5px;
  color: var(--charcoal);
  margin-bottom: 0;
}

.cta-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(107, 26, 34, 0.05);
  border: 2px solid var(--maroon);
  color: var(--maroon);
  font-size: 24px;
  box-shadow: 0 0 15px rgba(107, 26, 34, 0.08);
  transition: all 0.3s ease;
  animation: ctaPulseIcon 2s infinite;
}

@keyframes ctaPulseIcon {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(107, 26, 34, 0.08);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(107, 26, 34, 0.2);
  }
}

.cta-phone-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-phone-number {
  font-family: 'Lora', Georgia, serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--maroon-deep);
  display: block;
  line-height: 1.2;
}

.cta-phone-sub {
  display: block;
  font-size: 12.5px;
  color: var(--charcoal);
}

.cta-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(107, 26, 34, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-book:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 30px rgba(107, 26, 34, 0.35);
  background: linear-gradient(135deg, var(--maroon-light) 0%, var(--maroon) 100%);
}

.cta-btn-book i {
  font-size: 17px;
}

/* ==========================
   STANDARD SECTION SPACING
========================== */
.stats-section {
  padding: 50px 0 !important;
}

.cta-strip-section {
  padding: 50px 0 !important;
}

.py-5.py-lg-6,
.testimonial-section,
.faq-contact-section {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

@media (max-width: 991px) {
  .stats-section {
    padding: 40px 0 !important;
  }

  .cta-strip-section {
    padding: 40px 0 !important;
  }

  .py-5.py-lg-6,
  .testimonial-section,
  .faq-contact-section {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
}

/* ==========================================================================
   PREMIUM BUTTON HOVER & MICRO-ANIMATIONS (GOLD & CRIMSON THEME)
   ========================================================================== */
.btn-cta, .btn-maroon, .btn-gold, .btn-outline-maroon, .premium-btn,
.review-btn, .btn-view-all-services, .btn-sidebar-book-now,
.btn-sidebar-call, .btn-sidebar-whatsapp, .btn-card-book, .btn-notify,
.btn-watch-highlight, .btn-maroon-deep, .cta-btn-book, .puja-card,
.btn-watch-now, .btn-view-all-services, .btn-sidebar-book-now,
.btn-card-book, .btn-notify, .btn-watch-highlight, .puja-footer {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* General Button Hover Zoom & Shadow Grow */
.btn-cta:hover, .btn-maroon:hover, .btn-outline-maroon:hover, .premium-btn:hover,
.review-btn:hover, .btn-view-all-services:hover, 
.btn-sidebar-call:hover, .btn-sidebar-whatsapp:hover, .btn-card-book:hover, .btn-notify:hover,
.btn-watch-highlight:hover, .btn-maroon-deep:hover, .cta-btn-book:hover,
.btn-watch-now:hover, .puja-card:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 15px 30px rgba(139, 28, 36, 0.22), 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

/* Gold Button Hover Glow Override */
.btn-gold:hover, .btn-sidebar-book-now:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.38), 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

/* WhatsApp Green Glow Override */
.btn-sidebar-whatsapp:hover {
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.38), 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

/* Press Active State */
.btn-cta:active, .btn-maroon:active, .btn-gold:active, .premium-btn:active,
.review-btn:active, .btn-sidebar-book-now:active, .btn-sidebar-call:active,
.btn-sidebar-whatsapp:active, .btn-card-book:active, .cta-btn-book:active,
.btn-watch-now:active {
  transform: translateY(-1px) scale(0.98) !important;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15) !important;
}

/* Micro-animation: Nudge arrow or SVG to the right on hover */
.btn-cta:hover svg, .btn-maroon:hover svg, .btn-gold:hover svg, .premium-btn:hover svg,
.btn-card-book:hover svg, .btn-watch-highlight:hover svg, .cta-btn-book:hover svg,
.btn-view-all-services:hover svg, .btn-watch-now:hover svg, .puja-footer:hover .arrow,
.btn-view-all-services:hover i, .puja-card:hover .arrow, .puja-card:hover svg {
  transform: translateX(6px) !important;
}

/* Transition setup for inner SVGs and arrow symbols */
.btn-cta svg, .btn-maroon svg, .btn-gold svg, .premium-btn svg, .review-btn svg,
.btn-card-book svg, .btn-watch-highlight svg, .cta-btn-book svg,
.btn-view-all-services svg, .btn-watch-now svg, .puja-footer .arrow, .puja-card svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Playful wiggle on hover for communication buttons */
.premium-btn:hover svg, .btn-sidebar-call:hover svg, .btn-sidebar-whatsapp:hover svg {
  animation: buttonWiggle 0.6s ease-in-out infinite alternate !important;
}

@keyframes buttonWiggle {
  0% { transform: rotate(-8deg) scale(1.1); }
  100% { transform: rotate(8deg) scale(1.1); }
}

/* ==========================================================================
   UNIVERSAL FONT OVERRIDES (CINZEL, LORA, MONTSERRAT)
   ========================================================================== */

/* 1. Main Titles (h1, h2, display classes, and page banners) -> Lora */
h1, h2, 
.section-title, 
.section-title-specialize,
.section__title, 
.hero__title, 
.grand-hero-title, 
.service-hero-title,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.puja-title {
  font-family: 'Lora', serif !important;
}

/* 2. Short Titles & Subheadings (h3, h4, h5, h6, card titles, subtitles, etc.) -> Lora */
h3, h4, h5, h6, 
.card-title, 
.service-card h3, 
.blog-card h3, 
.faq-question, 
.widget-title, 
.testimonial-name, 
.short-title, 
.subtitle, 
.section__subtitle, 
.grand-hero-subtitle,
.grand-hero-kicker,
.bhajan-tab-btn,
.process-step-title,
.puja-card h3,
.client-info h5,
.booking-widget h3,
.testimonial-card p {
  font-family: 'Lora', serif !important;
}

/* 3. Body Copy (body, paragraphs, lists, anchors, labels, inputs, buttons) -> Montserrat */
body, 
p:not(.testimonial-card p), 
li, 
a:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.section-title):not(.hero__title):not(.grand-hero-title):not(.service-card h3):not(.blog-card h3):not(.puja-card h3), 
span:not(.section-title):not(.hero__title):not(.grand-hero-title):not(.card-title), 
input, 
select, 
textarea, 
button, 
.btn, 
.premium-btn,
.grand-hero-breadcrumb,
.topbar,
.footer,
.nav-link {
  font-family: 'Montserrat', sans-serif !important;
}

/* ==========================================================================
   UNIVERSAL PREMIUM HOVER INTERACTIONS FOR ALL BUTTONS
   ========================================================================== */

/* Target all button types and classes dynamically */
button,
.btn,
[class*="btn-"],
.premium-btn,
.review-btn,
.yellow-cta-btn,
.booking-btn,
.footer-social-btn,
.play-btn,
.video-card__play,
input[type="submit"],
input[type="button"] {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Hover scales up button and gives premium shadow glow */
button:hover,
.btn:hover,
[class*="btn-"]:hover,
.premium-btn:hover,
.review-btn:hover,
.yellow-cta-btn:hover,
.booking-btn:hover,
.footer-social-btn:hover,
.play-btn:hover,
.video-card__play:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 15px 30px rgba(139, 28, 36, 0.22), 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

/* Gold Button Hover Glow Override */
.btn-gold:hover, .btn-sidebar-book-now:hover, [class*="btn-gold"]:hover {
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.38), 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

/* WhatsApp Green Glow Override */
.btn-sidebar-whatsapp:hover, [class*="btn-whatsapp"]:hover {
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.38), 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

/* Press Active State */
button:active,
.btn:active,
[class*="btn-"]:active,
.premium-btn:active,
.review-btn:active,
.yellow-cta-btn:active,
.booking-btn:active,
.footer-social-btn:active,
input[type="submit"]:active,
input[type="button"]:active {
  transform: translateY(-1px) scale(0.98) !important;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15) !important;
}

/* Micro-animation: Nudge arrow or SVG/icon to the right on hover */
button:hover svg, button:hover i,
.btn:hover svg, .btn:hover i,
[class*="btn-"]:hover svg, [class*="btn-"]:hover i,
.premium-btn:hover svg, .premium-btn:hover i,
.review-btn:hover svg, .review-btn:hover i,
.yellow-cta-btn:hover svg, .yellow-cta-btn:hover i,
.booking-btn:hover svg, .booking-btn:hover i,
input[type="submit"]:hover svg, input[type="submit"]:hover i,
.puja-footer:hover .arrow, .puja-card:hover .arrow, .puja-card:hover svg {
  transform: translateX(6px) !important;
}

/* Transition setup for inner SVGs and arrow symbols */
button svg, button i,
.btn svg, .btn i,
[class*="btn-"] svg, [class*="btn-"] i,
.premium-btn svg, .premium-btn i,
.review-btn svg, .review-btn i,
.yellow-cta-btn svg, .yellow-cta-btn i,
.booking-btn svg, .booking-btn i,
input[type="submit"] svg, input[type="submit"] i,
.puja-footer .arrow, .puja-card svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ═══════════════════════════════════════════════
   WHY FAMILIES CHOOSE US — SECTION STYLES
   ═══════════════════════════════════════════════ */

/* Outer maroon box — match screenshot exactly */
.choose-us-maroon-box {
  background: linear-gradient(145deg, #4A0E12 0%, #290508 100%) !important;
  border: 2px solid #C9A84C !important;
  border-radius: 24px !important;
  box-shadow: 0 24px 60px rgba(74, 14, 18, 0.4) !important;
  position: relative;
  overflow: hidden;
}

/* Starfield dot-pattern overlay */
.choose-us-maroon-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* ── Section header ── */
.choose-us-maroon-box .section-eyebrow-icon svg {
  filter: drop-shadow(0 2px 6px rgba(255,255,255,0.2));
}

.choose-us-maroon-box h2 {
  font-family: 'Lora', serif !important;
  font-size: clamp(26px, 3.2vw, 38px) !important;
  font-weight: 700 !important;
  color: #FAF4ED !important;
  letter-spacing: 0.5px !important;
  margin: 0 0 10px !important;
}

.choose-us-maroon-box .section-subtitle {
  font-family: 'Lora', serif !important;
  font-size: 15px !important;
  color: #C4A882 !important;
  margin: 0 !important;
}

/* ── Corner Ornaments ── */
.maroon-corner-ornament {
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 1;
}
.maroon-corner-ornament::before,
.maroon-corner-ornament::after {
  content: '';
  position: absolute;
  background: #C9A84C;
  border-radius: 2px;
}
.maroon-corner-ornament::before { width: 2px; height: 22px; }
.maroon-corner-ornament::after  { width: 22px; height: 2px; }
.ornament-tl { top: 14px; left: 14px; }
.ornament-tl::before { top: 0; left: 0; }
.ornament-tl::after  { top: 0; left: 0; }
.ornament-tr { top: 14px; right: 14px; }
.ornament-tr::before { top: 0; right: 0; left: auto; }
.ornament-tr::after  { top: 0; right: 0; left: auto; }
.ornament-bl { bottom: 14px; left: 14px; }
.ornament-bl::before { bottom: 0; top: auto; left: 0; }
.ornament-bl::after  { bottom: 0; top: auto; left: 0; }
.ornament-br { bottom: 14px; right: 14px; }
.ornament-br::before { bottom: 0; top: auto; right: 0; left: auto; }
.ornament-br::after  { bottom: 0; top: auto; right: 0; left: auto; }

/* ── Feature Cards — white, gold-bordered, centered ── */
/* ── Feature Cards — left-aligned, modern white cards ── */
.choose-us-card-new {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  position: relative;
  overflow: visible;
}

.choose-us-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(139, 28, 36, 0.06);
  border-color: rgba(139, 28, 36, 0.15);
}

/* Icon box styling (no background, directly on card background) */
.choose-us-card-new .card-icon-wrap {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
  border: none;
  padding: 0;
}

.choose-us-card-new:hover .card-icon-wrap {
  background: transparent !important;
  transform: scale(1.05);
}

/* Card title */
.choose-us-card-new .card-title-text {
  font-family: 'Lora', serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 0 0 12px !important;
  line-height: 1.4 !important;
}

/* Card description */
.choose-us-card-new .card-desc-text {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13.5px !important;
  color: #555555 !important;
  line-height: 1.65 !important;
  margin: 0 0 24px !important;
  flex-grow: 1;
}

/* Learn More button link */
.choose-us-card-new .card-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #cb2226;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.choose-us-card-new .card-learn-more:hover {
  color: #a31a1d;
}

.choose-us-card-new .learn-more-arrow-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff5722;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.choose-us-card-new .card-learn-more:hover .learn-more-arrow-btn {
  background: #cb2226;
  transform: translateX(4px);
}

/* ── Bottom Ribbon Banner ── */
.choose-us-bottom-ribbon {
  background: linear-gradient(90deg, #FDF7F0 0%, #FAF1E6 100%);
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  border-radius: 14px;
  padding: 16px 24px;
  box-shadow: inset 0 0 12px rgba(201, 168, 76, 0.06),
              0 4px 14px rgba(74, 14, 18, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.choose-us-bottom-ribbon .ribbon-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #4A0E12;
  font-weight: 500;
  margin: 0;
}

.choose-us-bottom-ribbon .ribbon-text strong {
  font-weight: 700;
  color: #8B1C24;
}

.choose-us-bottom-ribbon .ribbon-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ribbon-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4A0E12;
}

.ribbon-divider {
  width: 1px;
  height: 16px;
  background: rgba(74, 14, 18, 0.2);
}

/* Animated diya flame */
.diya-flame-new {
  width: 10px;
  height: 16px;
  background: radial-gradient(ellipse at 50% 80%, #FFEB3B 0%, #FF9800 50%, #FF5722 100%);
  border-radius: 50% 50% 40% 40%;
  margin: 0 auto 2px;
  animation: flicker 1.5s ease-in-out infinite alternate;
  box-shadow: 0 0 8px rgba(255, 152, 0, 0.6);
}

@keyframes flicker {
  0%   { transform: scaleX(1) scaleY(1) rotate(-2deg); opacity: 1; }
  33%  { transform: scaleX(0.85) scaleY(1.1) rotate(2deg); opacity: 0.9; }
  66%  { transform: scaleX(1.1) scaleY(0.95) rotate(-1deg); opacity: 1; }
  100% { transform: scaleX(0.9) scaleY(1.05) rotate(3deg); opacity: 0.95; }
}

/* Responsive */
@media (max-width: 767.98px) {
  .choose-us-bottom-ribbon {
    flex-direction: column;
    text-align: center;
  }
  .choose-us-bottom-ribbon .ribbon-badges {
    justify-content: center;
  }
  .choose-us-card-new {
    padding: 24px 18px 20px;
  }
}

@media (max-width: 575.98px) {
  .maroon-corner-ornament { width: 24px; height: 24px; }
  .maroon-corner-ornament::before { height: 16px; }
  .maroon-corner-ornament::after { width: 16px; }
}



/* =======================================================
   CONSOLIDATED EMBEDDED STYLES FROM INDEX.PHP
   ======================================================= */

/* --- Embedded Style Block 1 --- */
/* Premium Carousel Styling */
     .services-swiper {
         padding-top: 20px;
         padding-bottom: 50px !important;
     }
     .services-swiper .swiper-slide {
         transition: transform 0.4s ease;
     }
     
     /* Modern Pagination Dots Styling */
     .services-swiper .swiper-pagination-bullet {
         background: var(--maroon, #cb2226);
         opacity: 0.3;
         width: 10px;
         height: 10px;
         transition: all 0.4s ease;
     }
     .services-swiper .swiper-pagination-bullet-active {
         opacity: 1;
         width: 28px;
         border-radius: 6px;
         background: var(--maroon, #cb2226);
     }

/* --- Embedded Style Block 2 --- */
/* â”€â”€ Aesthetic Animations â”€â”€ */
@keyframes floatLotus {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@keyframes pulseDot {
    0% { transform: translateX(-50%) scale(1); box-shadow: 0 0 0 0 rgba(201, 167, 93, 0.4); }
    100% { transform: translateX(-50%) scale(1.3); box-shadow: 0 0 0 6px rgba(201, 167, 93, 0); }
}
@keyframes marchLine {
    to { stroke-dashoffset: -200; }
}
@keyframes breatheImage {
    0%, 100% { transform: scale(1); filter: sepia(1) hue-rotate(-30deg) saturate(1.5) opacity(0.65); }
    50% { transform: scale(1.02); filter: sepia(1) hue-rotate(-30deg) saturate(1.8) opacity(0.85); }
}

.anim-lotus { animation: floatLotus 4s ease-in-out infinite; }
.anim-dot { animation: pulseDot 2s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate; }
.anim-image { animation: breatheImage 8s ease-in-out infinite; transform-origin: bottom center; }

/* Enhanced Hover for Steps */
.step-circle-premium {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.step-circle-premium:hover {
    transform: translateY(-8px) scale(1.05);
}
.step-circle-premium:hover i {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

/* Enhanced Hover for Features */
.feature-card-premium {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.feature-card-premium:hover {
    transform: translateX(8px) translateY(-4px);
    box-shadow: 0 15px 35px rgba(139, 28, 36, 0.08) !important;
    border-color: rgba(201, 167, 93, 0.3) !important;
}
.feature-card-premium .feat-icon-box {
    transition: transform 0.4s ease;
}
.feature-card-premium:hover .feat-icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* --- Embedded Style Block 3 --- */
/* --- Step Card Styling --- */
        .step-card-new {
            background: #ffffff;
            border: 1px solid rgba(201, 167, 93, 0.18);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            position: relative;
            z-index: 2;
            padding: 36px 24px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            max-width: 320px;
            width: 100%;
            margin: 0 auto;
            height: 100%;
        }
        .step-card-new:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(201, 167, 93, 0.12);
            border-color: rgba(201, 167, 93, 0.35);
        }

        /* --- Step Circle Icon Micro-Animation --- */
        .step-circle-icon {
            position: relative;
            width: 72px;
            height: 72px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            flex-shrink: 0;
        }
        .step-card-new:hover .step-circle-icon {
            transform: scale(1.08);
            box-shadow: 0 0 0 8px rgba(201, 162, 39, 0.12), 0 12px 24px rgba(0,0,0,0.06) !important;
        }

        /* --- Horizontal Connector (Tablet & Desktop) --- */
        .step-connector-line {
            position: absolute;
            left: 50%;
            width: 100%;
            top: 72px; /* Centered with step-circle-icon (36px padding + 36px half-circle) */
            height: 2px;
            border-top: 2px dashed rgba(201, 167, 93, 0.5);
            z-index: 1;
            pointer-events: none;
        }
        .step-connector-arrow {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            background: #FAF4ED;
            border: 2px solid #FAF4ED;
            outline: 2px solid #c9a75d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #B28822;
            box-shadow: 0 4px 10px rgba(201, 167, 93, 0.25);
            z-index: 3;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .step-card-new:hover + .step-connector-line .step-connector-arrow {
            background: #B28822;
            color: #fff;
            outline-color: #B28822;
            transform: translate(-50%, -50%) scale(1.18) rotate(360deg);
            box-shadow: 0 6px 15px rgba(178, 136, 34, 0.4);
        }

        /* --- Vertical Connector (Mobile) --- */
        .step-connector-vertical {
            position: absolute;
            left: 50%;
            bottom: -28px; /* Positioned between columns on mobile */
            transform: translateX(-50%);
            width: 2px;
            height: 32px;
            border-left: 2px dashed rgba(201, 167, 93, 0.5);
            z-index: 1;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .step-connector-arrow-vertical {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 26px;
            height: 26px;
            background: #FAF4ED;
            border: 2px solid #FAF4ED;
            outline: 2px solid #c9a75d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #B28822;
            box-shadow: 0 4px 8px rgba(201, 167, 93, 0.2);
            z-index: 3;
        }

        /* --- Seamless Responsive Dual Buttons --- */
        .dual-buttons-wrapper {
            background: rgba(255, 255, 255, 0.75);
            border: 2px solid #FAF4ED;
            outline: 3px solid rgba(201, 167, 93, 0.25);
            border-radius: 24px;
            padding: 12px;
            max-width: 820px;
            width: 100%;
            box-shadow: 0 15px 40px rgba(201, 162, 39, 0.15);
            transition: all 0.4s ease;
            animation: borderPulse 4s ease-in-out infinite;
        }
        .dual-buttons-wrapper:hover {
            outline-color: rgba(201, 167, 93, 0.5);
            box-shadow: 0 20px 45px rgba(201, 162, 39, 0.25);
        }
        .dual-buttons-container {
            display: flex;
            flex-direction: row;
            align-items: stretch;
            justify-content: center;
            position: relative;
            width: 100%;
        }
        .btn-call-pill, .btn-whatsapp-pill {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 28px;
            min-height: 82px;
            transition: all 0.3s ease;
        }
        .btn-call-pill {
            background: linear-gradient(135deg, #a71d2a 0%, #6b1a22 100%);
            color: white;
            border: 1px solid #5a1219;
            border-right: none;
            border-radius: 50px 0 0 50px;
        }
        .btn-whatsapp-pill {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            border: 1px solid #0f7a6d;
            border-left: none;
            border-radius: 0 50px 50px 0;
        }
        .btn-call-pill:hover, .btn-whatsapp-pill:hover {
            transform: translateY(-2px);
            filter: brightness(1.05);
        }
        .or-badge {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            width: 38px;
            height: 38px;
            background: #6b1a22;
            border: 2px solid #FAF4ED;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(0,0,0,0.25);
        }
        @keyframes borderPulse {
            0%, 100% { outline-color: rgba(201, 167, 93, 0.25); }
            50% { outline-color: rgba(201, 167, 93, 0.5); }
        }

        @media (max-width: 767.98px) {
            .dual-buttons-container {
                flex-direction: column;
                gap: 12px;
            }
            .btn-call-pill, .btn-whatsapp-pill {
                border-radius: 50px;
                border: 1px solid transparent;
                width: 100%;
            }
            .btn-call-pill {
                border-color: #5a1219;
            }
            .btn-whatsapp-pill {
                border-color: #0f7a6d;
            }
            .or-badge {
                display: none;
            }
        }

        /* --- Maroon Frame Corner Ornaments --- */
        .maroon-corner-ornament {
            position: absolute;
            width: 24px;
            height: 24px;
            border-color: rgba(201, 167, 93, 0.5);
            border-style: solid;
            pointer-events: none;
            z-index: 10;
        }
        .ornament-tl { top: 20px; left: 20px; border-width: 2px 0 0 2px; }
        .ornament-tr { top: 20px; right: 20px; border-width: 2px 2px 0 0; }
        .ornament-bl { bottom: 20px; left: 20px; border-width: 0 0 2px 2px; }
        .ornament-br { bottom: 20px; right: 20px; border-width: 0 2px 2px 0; }



        /* --- Diya Flame glowing animation --- */
        .diya-flame-new {
            width: 10px;
            height: 16px;
            background: radial-gradient(ellipse at bottom, #fff8e0 20%, #ff9800 50%, #d32f2f 80%, transparent);
            margin: 0 auto -2px;
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            animation: flameFlicker 0.6s ease-in-out infinite alternate;
            filter: drop-shadow(0 0 6px #ffeb3b);
        }

/* --- Embedded Style Block 4 --- */
.input-box select, .input-box input[type="date"] {
                        width: 100%;
                        border: 1px solid rgba(130, 28, 28, .10);
                        background: #fafafa;
                        border-radius: 12px;
                        padding: 12px 18px 12px 48px;
                        outline: none;
                        font-size: 14px;
                        color: var(--text);
                        transition: all .3s ease;
                        font-family: inherit;
                        appearance: none;
                    }
                    .input-box select:focus, .input-box input[type="date"]:focus {
                        border-color: rgba(130, 28, 28, .35);
                        background: #fff;
                        box-shadow: 0 0 0 4px rgba(130, 28, 28, .06);
                    }
                    .select-arrow {
                        position: absolute;
                        top: 50%;
                        right: 18px;
                        transform: translateY(-50%);
                        color: var(--primary);
                        font-size: 18px;
                        pointer-events: none;
                        opacity: .6;
                    }

/* --- Embedded Style Block 5 --- */
/* Ken Burns Swiper Animation */
.heroSwiper .swiper-slide img {
    transition: transform 8s ease-out !important;
    transform: scale(1.02);
}

.heroSwiper .swiper-slide-active img {
    transform: scale(1.08) !important;
}

  /* ==========================
   PREMIUM STATS SECTION
========================== */
:root{
    --primary:#821C1C;
    --primary-light:#A52A2A;
    --primary-dark:#651515;
    --text:#222;
    --muted:#777;
}

.stats-section{
    position:relative;
    padding:60px 0;
    background:
    linear-gradient(
        135deg,
        #fff,
        #faf6f6
    );
    overflow:hidden;
}

.stats-section::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(130,28,28,.05);
    border-radius:50%;
    top:-150px;
    right:-100px;
    filter:blur(60px);
}

.stats-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stat-card{
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    gap:18px;
    padding:28px;
    border-radius:22px;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(10px);
    border:1px solid rgba(130,28,28,.08);
    box-shadow:
        0 10px 35px rgba(0,0,0,.05);
    transition:all .4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(130,28,28,.08);
    border-color: rgba(201,162,39,.35);
}

.stat-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(130,28,28,.08),
        transparent
    );
    transform:translateX(-100%);
    transition:.8s;
}

.stat-card:hover::before{
    transform:translateX(100%);
}

.stat-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 20px 45px rgba(130,28,28,.15);
    border-color:rgba(130,28,28,.2);
}

.icon-box{
    position:relative;
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    box-shadow:
        0 12px 30px rgba(130,28,28,.35);
}

.icon-box::after{
    content:'';
    position:absolute;
    inset:3px;
    border-radius:17px;
    border:1px solid rgba(255,255,255,.2);
}

.stat-content h3{
    margin:0;
    font-size:2rem;
    font-weight:800;
    color:var(--primary);
    line-height:1;
}

.stat-content span{
    display:block;
    margin-top:8px;
    color:var(--muted);
    font-size:.95rem;
    font-weight:500;
}

.stat-card::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:4px;
    background:
    linear-gradient(
        90deg,
        var(--primary),
        var(--primary-light)
    );
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.stat-card:hover::after{
    transform:scaleX(1);
}

/* Floating Animation */

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

.stat-card:nth-child(1){
    animation:floatCard 5s ease-in-out infinite;
}
.stat-card:nth-child(2){
    animation:floatCard 5s ease-in-out infinite .7s;
}
.stat-card:nth-child(3){
    animation:floatCard 5s ease-in-out infinite 1.4s;
}
.stat-card:nth-child(4){
    animation:floatCard 5s ease-in-out infinite 2.1s;
}

/* Tablet */

@media(max-width:991px){

    .stats-wrapper{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */

@media(max-width:576px){

    .stats-section{
        padding:40px 0;
    }

    .stats-wrapper{
        grid-template-columns:1fr;
        gap:16px;
    }

    .stat-card{
        padding:20px;
        border-radius:18px;
    }

    .icon-box{
        width:60px;
        height:60px;
        min-width:60px;
        font-size:24px;
    }

    .stat-content h3{
        font-size:1.6rem;
    }

    .stat-content span{
        font-size:.9rem;
    }
}

/* ==========================
   WHY CHOOSE US SECTION
========================== */
.why-image-box {
    position: relative;
    padding: 20px;
    z-index: 2;
}

.why-image-border {
    position: absolute;
    inset: 35px 5px 5px 35px;
    border: 3px solid var(--gold);
    border-radius: 20px;
    z-index: 1;
    transition: all 0.5s ease;
}

.why-main-image {
    width: 100%;
    border-radius: 20px;
    border: 6px solid #ffffff;
    box-shadow: 0 15px 35px rgba(130, 28, 28, 0.15);
    position: relative;
    z-index: 2;
    transform: rotate(-2deg);
    transition: all 0.5s ease;
}

.why-image-box:hover .why-main-image {
    transform: rotate(0deg) scale(1.02);
}

.why-image-box:hover .why-image-border {
    inset: 15px 25px 25px 15px;
    border-color: var(--maroon);
}

.floating-mandala {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 3;
    animation: floatOrnaments 6s ease-in-out infinite;
}

.floating-mandala.element-1 {
    top: 5%;
    right: 5%;
    animation-delay: 0s;
}

.floating-mandala.element-2 {
    bottom: 5%;
    left: 5%;
    animation-delay: 3s;
}

@keyframes floatOrnaments {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(180deg); }
}

.why-choose-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(130, 28, 28, 0.05);
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.why-choose-list-item:hover {
    transform: translateX(12px);
    background: #ffffff;
    border-left-color: var(--maroon);
    box-shadow: 0 12px 25px rgba(130, 28, 28, 0.08);
}

.why-choose-list-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--maroon);
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-choose-list-item:hover .why-choose-list-check {
    background: var(--gold);
    transform: scale(1.1) rotate(360deg);
}

.why-choose-list-text {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--maroon-deep);
    font-size: 16px;
}

/* Card Flip & Medallion Integration Styles */
.specialize-card-flip-container {
    perspective: 1000px;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.specialize-card-flip-container:hover {
    transform: translateY(-8px);
}

.specialize-card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    cursor: pointer;
}

.specialize-card-flip-inner.is-flipped {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.specialize-card-front, .specialize-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    border-radius: 8px;
    overflow: visible;
}

.specialize-card-front {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    z-index: 2;
}

.specialize-card-back {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    z-index: 1;
    overflow: hidden;
}

.specialize-card-back .specialize-card {
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.specialize-card-back .specialize-card:hover {
    transform: none !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

/* Golden Royal Vedic Card Front Face - 1:1 Mirror Copy */
.royal-vedic-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px !important;
    background: radial-gradient(circle at center, #FFD54F 0%, #FFB300 70%, #FFA000 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    overflow: visible !important; /* Allow diyas to overlap beautifully */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 0 14px;
    border: 1px solid #DCAE75;
}

.royal-card-border-frame {
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
}

.royal-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="none" stroke="%23ffffff" stroke-width="1.5"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.royal-card-lattice {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    height: 12px;
    opacity: 0.75;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="12" viewBox="0 0 40 12"><path d="M 0 6 L 6 0 L 12 6 L 6 12 Z M 20 6 L 26 0 L 32 6 L 26 12 Z" fill="none" stroke="%23B77B00" stroke-width="1.5"/><circle cx="16" cy="6" r="1.8" fill="%23B77B00"/></svg>');
    background-repeat: repeat-x;
    pointer-events: none;
    z-index: 2;
}

.royal-card-lattice-bottom {
    position: absolute;
    bottom: 48px;
    left: 14px;
    right: 14px;
    height: 12px;
    opacity: 0.75;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="12" viewBox="0 0 40 12"><path d="M 0 6 L 6 0 L 12 6 L 6 12 Z M 20 6 L 26 0 L 32 6 L 26 12 Z" fill="none" stroke="%23B77B00" stroke-width="1.5"/><circle cx="16" cy="6" r="1.8" fill="%23B77B00"/></svg>');
    background-repeat: repeat-x;
    pointer-events: none;
    z-index: 2;
}

.royal-image-frame-container {
    position: relative;
    width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin-bottom: 6px;
}

.royal-scalloped-svg {
    width: 90%;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
    transition: all 0.4s ease;
}

/* Beautiful Clay Diya Styling (Mirror Placement) */
.divine-diya {
    position: absolute;
    bottom: -6px; /* Overflow outside to prevent cutting off */
    width: 44px;
    height: 30px;
    z-index: 100;
}

.diya-left {
    left: 24px;
}

.diya-right {
    right: 24px;
}

/* Clay Diya Bowl */
.diya-base {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 14px;
    background: linear-gradient(180deg, #D84315 0%, #BF360C 100%);
    border-radius: 0 0 20px 20px;
    border-top: 2px solid #FFAB91;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.diya-base::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 4px;
    background: #FF5722;
    border-radius: 50% 50% 0 0;
}

/* Diya Flame flicker effect */
.diya-flame {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 18px;
    background: radial-gradient(circle at bottom, #FFEB3B 20%, #FF9800 60%, #E64A19 100%);
    border-radius: 50% 50% 20% 20%;
    box-shadow: 0 0 8px #FF9800, 0 0 16px #FF5722;
    animation: diyaFlicker 1.5s infinite alternate ease-in-out;
    transform-origin: center bottom;
}

.diya-glow {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.4) 0%, rgba(255, 87, 34, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: diyaGlowPulse 1.5s infinite alternate ease-in-out;
}

@keyframes diyaFlicker {
    0% { transform: translateX(-50%) scale(1) rotate(-1deg); }
    100% { transform: translateX(-50%) scale(1.05) rotate(1.5deg); }
}

@keyframes diyaGlowPulse {
    0% { opacity: 0.8; transform: translateX(-50%) scale(0.9); }
    100% { opacity: 1.0; transform: translateX(-50%) scale(1.1); }
}

/* Flat Red Bottom Title Bar with Slant (1:1 Mirror Copy) */
.royal-title-bar {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
    background: #D32F2F;
    padding: 22px 16px 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    z-index: 2;
    border-radius: 0 0 8px 8px;
    position: relative;
    clip-path: polygon(0 14px, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 14px, 100% 0, 100% 100%, 0 100%);
}

/* Perfect crisp vector slanted line */
.royal-slant-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 14px;
    pointer-events: none;
    z-index: 10;
}

.royal-title-text {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.royal-arrow-wrap {
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

/* Hover Interactions */
.specialize-card-wrapper:hover .royal-scalloped-svg {
    transform: scale(1.03);
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.3));
}

.specialize-card-wrapper:hover .royal-arrow-wrap {
    transform: translateX(5px);
}

.specialize-card-wrapper:hover .royal-title-bar {
    background: linear-gradient(180deg, #E53935 0%, #C62828 100%);
}

.specialize-card-wrapper {
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 24px;
    display: block;
}

.specialize-card-wrapper:hover {
    transform: translateY(-5px);
}

/* ==========================================
   DIVINE SACRED SERVICE MODAL SYSTEM
========================================== */
.divine-service-modal {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}

.divine-service-modal.is-active {
    opacity: 1;
    visibility: visible;
}

/* Semi-transparent velvet glass overlay */
.divine-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 5, 7, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Modal Content Panel */
.divine-modal-content {
    position: relative;
    width: 100%;
    max-width: 920px;
    height: auto;
    max-height: 90vh;
    background: #FAF8F5; /* Beautiful Sacred Cream Background */
    border-radius: 12px;
    border: 2px solid #DCAE75;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 2;
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.divine-service-modal.is-active .divine-modal-content {
    transform: scale(1) translateY(0);
}

/* Close Button */
.divine-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(74, 14, 18, 0.1);
    border: 1px solid rgba(220, 174, 117, 0.5);
    color: #4A0E12;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.divine-modal-close:hover {
    background: #4A0E12;
    color: #ffffff;
    transform: scale(1.1);
}

/* Image Side */
.divine-modal-image-col {
    position: relative;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.divine-modal-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 380px;
    position: relative;
}

.divine-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.divine-modal-img-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0) 70%, rgba(250,248,245,1) 100%);
    pointer-events: none;
}

/* Details Side */
.divine-modal-details-col {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.divine-modal-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.divine-modal-badge {
    font-family: var(--font-body), sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #C62828;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.divine-modal-title {
    font-family: 'Lora', 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #4A0E12;
    line-height: 1.2;
    margin-bottom: 12px;
}

.divine-modal-divider {
    width: 80px;
    height: 3px;
    background: #DCAE75;
    margin-bottom: 20px;
}

.divine-modal-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #4E4E4E;
    margin-bottom: 24px;
}

/* Inclusions List */
.divine-modal-features-section {
    margin-bottom: 30px;
}

.divine-features-heading {
    font-family: 'Lora', serif;
    font-size: 15px;
    font-weight: 700;
    color: #4A0E12;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.divine-modal-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.divine-modal-features-list li {
    font-size: 14px;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.divine-modal-features-list li i {
    color: #C62828;
    font-size: 16px;
}

/* Booking & Pricing Bar */
.divine-modal-booking-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(220, 174, 117, 0.3);
    margin-top: auto;
}

.divine-modal-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #888888;
    letter-spacing: 0.05em;
}

.price-val {
    font-size: 22px;
    font-weight: 700;
    color: #C62828;
    font-family: 'Lora', serif;
}

.btn-divine-book {
    background: linear-gradient(135deg, #8E1B24 0%, #4A0E12 100%);
    color: #ffffff !important;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(74, 14, 18, 0.25);
    transition: all 0.3s ease;
    border: 1px solid #DCAE75;
}

.btn-divine-book:hover {
    background: linear-gradient(135deg, #C62828 0%, #8E1B24 100%);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
    transform: translateY(-2px);
}

/* Responsive adjustments for modal */
@media (max-width: 991px) {
    .divine-modal-content {
        max-height: 95vh;
    }
    .divine-modal-img-wrap {
        min-height: 200px;
    }
    .divine-modal-img-glow {
        background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(250,248,245,1) 100%);
    }
    .divine-modal-body {
        padding: 24px;
    }
    .divine-modal-features-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   SERVICES MIRROR COPY DESIGN
========================== */

.services-specialize-section{
    background:#ffffff;
    position:relative;
}

/* EXACT CARD LOOK USING PROVIDED JPEG AS BACKGROUND */
.services-specialize-section .puja-card {
    background-image: url('assets/image/service-card.jpeg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    
    position: relative;
    aspect-ratio: 939 / 1024; /* Exact aspect ratio of the new JPEG */
    display: block;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.services-specialize-section .puja-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* DYNAMIC IMAGE WRAPPER - Positioned exactly over the frame hole in the JPEG */
.services-specialize-section .frame-wrapper {
    position: absolute;
    top: 3%;
    left: 1%;
    right: 1%;
    bottom: 13%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Shape Masking for Dynamic Image */
.services-specialize-section .image-container {
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Gives the image a beautiful white border */
    padding: 6px; /* Border thickness */
    box-sizing: border-box;
    clip-path: url(#cloud-ornate-shape);
    -webkit-clip-path: url(#cloud-ornate-shape);
}

.services-specialize-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: url(#cloud-ornate-shape);
    -webkit-clip-path: url(#cloud-ornate-shape);
    display: block;
}

/* SOLID RED FOOTER PANEL - Covers the static text without hiding the top slanted edge */
.services-specialize-section .puja-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 13%; /* Covers only the text area, keeps the slanted top edge visible */
    background-color: #cb2226; /* Exact match for the flat red area */
    color: #ffffff;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4;
    box-sizing: border-box;
}

.services-specialize-section .puja-footer span {
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 85%;
    color: #ffffff;
}

.services-specialize-section .puja-footer .arrow {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    margin-right: 2px;
}

/* GRID */
.specialize-card-wrapper{
    height: 100%;
}

.row.g-4{
    row-gap: 28px !important;
}

/* VIEW ALL SERVICES BUTTON */
.btn-view-all-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #8B0000;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.btn-view-all-services:hover {
    background: #a30000;
    color: #fff;
    transform: translateY(-3px);
}

/* RESPONSIVE DESIGN */
@media(max-width:991px){
    .services-specialize-section .puja-card {
        aspect-ratio: auto;
        height: 320px;
    }
    .services-specialize-section .frame-wrapper {
        height: 60%;
    }
}

@media(max-width:576px){
    .services-specialize-section .puja-card {
        height: 300px;
    }
    .services-specialize-section .frame-wrapper {
        height: 55%;
    }
}

/* ==========================
   LATEST UPDATES & BLOG CARDS
========================== */
.card-brand {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(130, 28, 28, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.card-brand:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 20px 40px rgba(130, 28, 28, 0.08);
}

.card-brand img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-brand:hover img {
    transform: scale(1.08);
}

.date-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(130, 28, 28, 0.06);
    color: var(--maroon);
    font-size: 11px;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-brand h3 {
    font-family: var(--font-display);
    color: #222;
    transition: color 0.3s ease;
}

.card-brand:hover h3 {
    color: var(--maroon);
}

.card-brand:hover span.text-maroon {
    gap: 8px !important;
    color: var(--gold) !important;
}

/* Sidebar Guidance Box */
.guidance-box {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    padding: 40px 30px;
    border: 1px solid rgba(130, 28, 28, 0.05);
    border-top: 5px solid var(--maroon);
    transition: all 0.4s ease;
    height: 100%;
}

.guidance-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(130, 28, 28, 0.08);
    border-top-color: var(--gold);
}

.guidance-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(130, 28, 28, 0.02);
    border: 1px solid rgba(130, 28, 28, 0.03);
    transition: all 0.3s ease;
}

.guidance-list-item:hover {
    background: rgba(130, 28, 28, 0.05);
    border-color: rgba(201, 162, 39, 0.15);
    transform: translateX(6px);
}

.guidance-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--maroon-deep);
    background: rgba(201, 168, 76, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.guidance-list-item:hover .guidance-icon {
    background: var(--maroon-deep);
    color: #ffffff;
    border-color: var(--maroon-deep);
    transform: scale(1.1);
}

/* FaQ */

:root{
    --primary:#821C1C;
    --primary-light:#A52A2A;
    --primary-dark:#651515;
    --text:#1f1f1f;
    --muted:#6b7280;
    --border:rgba(130,28,28,.10);
}

.faq-contact-section{
    position:relative;
    padding:110px 0;
    background:#fff;
    overflow:hidden;
}

.faq-contact-section::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(130,28,28,.04);
    filter:blur(60px);
    pointer-events:none;
}

.faq-contact-section::after{
    content:'';
    position:absolute;
    bottom:-120px;
    left:-120px;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(130,28,28,.03);
    filter:blur(55px);
    pointer-events:none;
}

.section-heading{
    max-width:760px;
    margin:0 auto 60px;
    position:relative;
    z-index:1;
}

.faq-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(130,28,28,.08);
    color:var(--primary);
    font-size:14px;
    font-weight:700;
    letter-spacing:.3px;
    margin-bottom:18px;
    box-shadow:0 8px 24px rgba(130,28,28,.06);
}

.section-heading h2{
    font-size:clamp(30px,4vw,48px);
    font-weight:800;
    color:#111;
    line-height:1.15;
    margin-bottom:16px;
}

.section-heading p{
    color:var(--muted);
    font-size:16px;
    line-height:1.8;
    margin-bottom:0;
}

/* CONTACT CARD */
.contact-card{
    position:relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:24px;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
    overflow:hidden;
    animation:fadeUp .7s ease both;
}

.contact-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(130,28,28,.03), transparent 35%);
    pointer-events:none;
}

.contact-card-head h3{
    margin:0;
    font-size:24px;
    font-weight:800;
    color:var(--primary);
}

.contact-card-head p{
    margin:4px 0 16px;
    color:var(--muted);
    line-height:1.5;
    font-size: 14px;
}

.input-box,
.textarea-box{
    position:relative;
}

.input-box input,
.textarea-box textarea{
    width:100%;
    border:1px solid rgba(130,28,28,.10);
    background:#fafafa;
    border-radius:12px;
    padding:12px 18px 12px 48px;
    outline:none;
    font-size:14px;
    color:var(--text);
    transition:all .3s ease;
}

.textarea-box textarea{
    padding:14px;
    min-height:90px;
    resize:none;
}

.input-box i{
    position:absolute;
    top:50%;
    left:18px;
    transform:translateY(-50%);
    color:var(--primary);
    font-size:18px;
    opacity:.8;
}

.input-box input:focus,
.textarea-box textarea:focus{
    border-color:rgba(130,28,28,.35);
    background:#fff;
    box-shadow:0 0 0 4px rgba(130,28,28,.06);
}

.submit-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:180px;
    padding:15px 26px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg, var(--primary), var(--primary-light));
    color:#fff;
    font-weight:800;
    letter-spacing:.2px;
    box-shadow:0 14px 30px rgba(130,28,28,.22);
    transition:transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}

.submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 36px rgba(130,28,28,.28);
    color:#fff;
}

/* FAQ */
.faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:16px;
    animation:fadeUp .85s ease both;
}

.faq-item{
    position:relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 32px rgba(0,0,0,.05);
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.faq-item:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 42px rgba(130,28,28,.10);
    border-color:rgba(130,28,28,.16);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:24px 26px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    cursor:pointer;
    text-align:left;
}

.faq-question span{
    font-size:18px;
    font-weight:700;
    color:#111;
    line-height:1.5;
}

.faq-question i, .faq-question svg {
    width:46px;
    height:46px;
    min-width:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(130,28,28,.08);
    color:var(--primary);
    font-size:20px;
    transition:all .35s ease;
}

.faq-question svg {
    width:46px !important;
    height:46px !important;
    min-width:46px !important;
    min-height:46px !important;
    padding:13px !important;
    box-sizing:border-box !important;
}

.faq-item.active .faq-question i, .faq-item.active .faq-question svg {
    background:var(--primary);
    color:#fff;
    transform:rotate(45deg);
    box-shadow:0 10px 24px rgba(130,28,28,.24);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.faq-answer p{
    margin:0;
    padding:0 26px 24px;
    color:var(--muted);
    line-height:1.85;
    font-size:15px;
}

.faq-item.active .faq-answer{
    max-height:320px;
}

/* ANIMATION */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(16px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:991px){
    .faq-contact-section{
        padding:80px 0;
    }

    .contact-card{
        margin-bottom:8px;
    }
}

@media(max-width:768px){
    .section-heading{
        margin-bottom:40px;
    }

    .contact-card{
        padding:22px;
        border-radius:22px;
    }

    .contact-card-head h3{
        font-size:24px;
    }

    .faq-question{
        padding:18px 18px;
    }

    .faq-question span{
        font-size:16px;
    }

    .faq-question i, .faq-question svg {
        width:40px !important;
        height:40px !important;
        min-width:40px !important;
        min-height:40px !important;
        padding:10px !important;
        font-size:18px;
    }

    .faq-answer p{
        padding:0 18px 18px;
        font-size:14px;
    }

    .faq-item{
        border-radius:18px;
    }
}/* Bhajan */
/* ==========================
   BHAJAN SECTION
========================== */

.bhajans-section{
    position:relative;
    overflow:hidden;
    background: #ffffff; /* Light Beige / Cream */
}

.bhajans-section::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(201,162,39,.08);
    border-radius:50%;
    top:-150px;
    right:-100px;
    filter:blur(70px);
}

.bhajan-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(201,162,39,.12);
    color:var(--gold);
    border:1px solid rgba(201,162,39,.2);
    font-weight:600;
}

.bhajan-tag i {
    animation: spinMusic 3s linear infinite;
}

@keyframes spinMusic {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bhajan-heading{
    font-size:clamp(32px,5vw,52px);
    font-weight:800;
    margin-top:20px;
    color: var(--maroon-deep);
}

.bhajan-subheading{
    max-width:700px;
    margin:auto;
    color: #555555;
    line-height:1.8;
}

/* Card */

.bhajan-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    background: #ffffff;
    border: 1px solid rgba(130, 28, 28, 0.08);
    box-shadow:
    0 15px 40px rgba(0,0,0,.04);
    transition:.5s ease;
    height:100%;
}

.bhajan-card:hover{
    transform:translateY(-12px);
    border-color: var(--gold);
    background: #ffffff;
    box-shadow:
    0 25px 60px rgba(130, 28, 28, 0.08), 0 0 30px rgba(201, 162, 39, 0.1);
}

.bhajan-image{
    position:relative;
    height:240px;
    overflow:hidden;
}

.bhajan-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.bhajan-card:hover img{
    transform:scale(1.15) rotate(2deg);
}

.image-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent
    );
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:68px;
    height:68px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #821C1C,
        #a52a2a
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:2;
    transition:.4s;
}

.play-btn::before{
    content:'';
    position:absolute;
    inset:-10px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.4);
    animation:ripple 2s infinite;
}

.bhajan-card:hover .play-btn{
    transform:translate(-50%,-50%) scale(1.18);
    background: linear-gradient(135deg, var(--gold), #e5be3c);
    color: var(--maroon-deep);
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.6);
}

.video-duration{
    position:absolute;
    right:12px;
    bottom:12px;
    z-index:2;
    padding:6px 10px;
    border-radius:30px;
    background:rgba(0,0,0,.75);
    color:#fff;
    font-size:12px;
    font-weight:600;
}

.bhajan-content{
    padding:20px;
}

.bhajan-content h3{
    margin:0;
    font-size:17px;
    font-weight:700;
    line-height:1.6;
    color: #111111;
    transition:.3s;
}

.bhajan-card:hover h3{
    color:var(--gold);
}

/* Button */

.btn-bhajan{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    color:#3A070A !important;
    font-weight:700;
    background:linear-gradient(
        135deg,
        var(--gold) 0%,
        #A07830 100%
    );
    box-shadow:
    0 12px 30px rgba(201,162,39,.3);
    transition:.3s;
}

.btn-bhajan:hover{
    color: #fff !important;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
    transform:translateY(-3px);
    box-shadow: 0 12px 30px rgba(130,28,28,.45);
}

/* Animation */

@keyframes ripple{

    0%{
        transform:scale(.8);
        opacity:1;
    }

    100%{
        transform:scale(1.6);
        opacity:0;
    }
}

/* Mobile */

@media(max-width:768px){

    .bhajan-image{
        height:220px;
    }

    .bhajan-content h3{
        font-size:15px;
    }

    .play-btn{
        width:60px;
        height:60px;
        font-size:26px;
    }
}


/* ==========================
   TESTIMONIALS SECTION (CIRCULAR LAYOUT)
   ========================== */
:root {
    --primary: #821C1C;
    --gold: #c9a227;
}

.testimonial-section {
    position: relative;
    padding: 120px 0;
    background: var(--maroon, #6B1A22);
    overflow: hidden;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.08);
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    margin-bottom: 18px;
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.06);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testimonial-header h2 {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    margin-top: 15px;
}

.review-btn {
    background: #ffffff;
    color: var(--maroon, #6B1A22);
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.review-btn:hover {
    background: var(--gold);
    color: var(--maroon-deep);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 162, 39, 0.35);
}

.review-btn i {
    width: 32px;
    height: 32px;
    background: var(--maroon, #6B1A22);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.review-btn:hover i {
    background: var(--maroon-deep);
    color: var(--gold);
}

.testimonial-area {
    position: relative;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.testimonial-card {
    max-width: 580px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 290px;
}

.stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(18px, 2.5vw, 26px);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 20px;
}

.client-info {
    margin-top: 15px;
}

.client-info h5 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 4px;
    font-weight: 700;
}

.client-info span {
    color: var(--gold-light, #FAF6F0);
    opacity: 0.85;
    font-size: 14px;
}

/* Floating Devotee Icons */
.avatars-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-avatar {
    position: absolute;
    width: 90px;
    height: 90px;
    z-index: 3;
    pointer-events: auto;
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 3px solid rgba(130, 28, 28, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.avatar-inner i {
    font-size: 32px;
    color: var(--maroon, #6B1A22);
    transition: all 0.4s ease;
}

/* Coordinates in Semicircle Arc Layout */
.avatar-1 { left: 2%; bottom: 8%; animation: floatY 5s ease-in-out infinite; }
.avatar-2 { left: 7%; top: 62%; animation: floatY 5s ease-in-out infinite 0.5s; }
.avatar-3 { left: 15%; top: 38%; animation: floatY 5s ease-in-out infinite 1s; }
.avatar-4 { left: 30%; top: 18%; animation: floatY 5s ease-in-out infinite 1.5s; }
.avatar-5 { left: 50%; top: 8%; transform: translateX(-50%); animation: floatYCenter 5s ease-in-out infinite 2s; }
.avatar-6 { right: 30%; top: 18%; animation: floatY 5s ease-in-out infinite 2.5s; }
.avatar-7 { right: 15%; top: 38%; animation: floatY 5s ease-in-out infinite 3s; }
.avatar-8 { right: 7%; top: 62%; animation: floatY 5s ease-in-out infinite 3.5s; }
.avatar-9 { right: 2%; bottom: 8%; animation: floatY 5s ease-in-out infinite 4s; }

/* Floating Keyframes */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatYCenter {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}

/* Hover & Active States */
.floating-avatar:hover .avatar-inner {
    border-color: rgba(201, 162, 39, 0.6);
    background: #ffffff;
    transform: scale(1.08);
}

.floating-avatar:hover .avatar-inner i {
    color: var(--gold);
}

.floating-avatar.active .avatar-inner {
    border-color: var(--gold);
    background: #ffffff;
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.8);
    transform: scale(1.15);
}

.floating-avatar.active .avatar-inner i {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

/* Responsive Styling */
@media(max-width: 1199px) {
    .floating-avatar {
        width: 80px;
        height: 80px;
    }
    .avatar-inner i {
        font-size: 28px;
    }
    .avatar-3 { left: 13%; top: 38%; }
    .avatar-4 { left: 28%; top: 18%; }
    .avatar-6 { right: 28%; top: 18%; }
    .avatar-7 { right: 13%; top: 38%; }
}

@media(max-width: 991px) {
    .testimonial-section {
        padding: 80px 0;
    }
    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        margin-bottom: 50px;
    }
    .testimonial-area {
        min-height: auto;
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }
    .avatars-container {
        position: relative;
        inset: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        pointer-events: auto;
    }
    .floating-avatar {
        position: static !important;
        transform: none !important;
        animation: none !important;
        width: 70px;
        height: 70px;
    }
    .avatar-inner i {
        font-size: 24px;
    }
    .floating-avatar.active .avatar-inner {
        transform: scale(1.1);
    }
    .floating-avatar:hover .avatar-inner {
        transform: scale(1.05);
    }
}

@media(max-width: 575px) {
    .testimonial-section {
        padding: 60px 0;
    }
    .avatars-container {
        gap: 10px;
    }
    .floating-avatar {
        width: 60px;
        height: 60px;
    }
    .avatar-inner i {
        font-size: 20px;
    }
    .testimonial-card p {
        font-size: 18px;
        line-height: 1.6;
    }
    .client-info h5 {
        font-size: 18px;
    }
    .client-info span {
        font-size: 14px;
    }
}

/* ==========================
   PREMIUM CTA STRIP SECTION
========================== */
.cta-strip-section {
    position: relative;
    background:#ffffff !important;
    padding: 60px 0;
    overflow: hidden;
    border-top: 3px solid var(--maroon);
    border-bottom: 3px solid var(--maroon);
}

.cta-strip-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(107, 26, 34, 0.03) 0%, transparent 80%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="none" stroke="rgba(107,26,34,0.02)" stroke-width="1"/></svg>') repeat;
    pointer-events: none;
}

.cta-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--maroon-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.cta-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--maroon-deep);
    margin-bottom: 8px;
}

.cta-desc {
    font-size: 14.5px;
    color: var(--charcoal);
    margin-bottom: 0;
}

.cta-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(107, 26, 34, 0.05);
    border: 2px solid var(--maroon);
    color: var(--maroon);
    font-size: 24px;
    box-shadow: 0 0 15px rgba(107, 26, 34, 0.08);
    transition: all 0.3s ease;
    animation: ctaPulseIcon 2s infinite;
}

@keyframes ctaPulseIcon {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(107, 26, 34, 0.08); }
    50% { transform: scale(1.08); box-shadow: 0 0 25px rgba(107, 26, 34, 0.2); }
}

.cta-phone-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-phone-number {
    font-family: 'Lora', Georgia, serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--maroon-deep);
    display: block;
    line-height: 1.2;
}

.cta-phone-sub {
    display: block;
    font-size: 12.5px;
    color: var(--charcoal);
}

.cta-btn-book {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(107, 26, 34, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-book:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 30px rgba(107, 26, 34, 0.35);
    background: linear-gradient(135deg, var(--maroon-light) 0%, var(--maroon) 100%);
}

.cta-btn-book i {
    font-size: 17px;
}

/* ==========================
   STANDARD SECTION SPACING
========================== */
.stats-section {
    padding: 50px 0 !important;
}
.cta-strip-section {
    padding: 50px 0 !important;
}

.py-5.py-lg-6,
.testimonial-section,
.faq-contact-section {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

@media (max-width: 991px) {
    .stats-section {
        padding: 40px 0 !important;
    }
    .cta-strip-section {
        padding: 40px 0 !important;
    }
    .py-5.py-lg-6,
    .testimonial-section,
    .faq-contact-section {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }
}
