/* =========================================================
   OM WELLNESS — Design Tokens
   Palette sampled from the brand mark:
   rose lotus #C41E5A · saffron Om #E85305
   leaf green #3F7A2E · gold crescent #B8862F
   deep forest text #16332A · warm cream ground #FAF5EA
========================================================= */
:root {
  --om-cream: #FAF5EA;
  --om-cream-dark: #F1E6D3;
  --om-forest: #16332A;
  --om-forest-soft: #2A4F41;
  --om-rose: #C41E5A;
  --om-rose-dark: #9E1748;
  --om-saffron: #E85305;
  --om-leaf: #3F7A2E;
  --om-gold: #B8862F;
  --om-white: #FFFEFB;

  --font-display: 'Marcellus', 'Georgia', serif;
  --font-body: 'Mulish', 'Segoe UI', sans-serif;

  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow-soft: 0 20px 45px -20px rgba(22, 51, 42, 0.25);
  --shadow-card: 0 12px 30px -14px rgba(22, 51, 42, 0.22);
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--om-forest);
  background: var(--om-cream);
  overflow-x: hidden;
  font-size: 16.5px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
.font-display {
  font-family: var(--font-display);
  color: var(--om-forest);
  letter-spacing: 0.01em;
}

.text-rose {
  color: var(--om-rose) !important;
}

.text-saffron {
  color: var(--om-saffron) !important;
}

.text-leaf {
  color: var(--om-leaf) !important;
}

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

.bg-cream {
  background: var(--om-cream);
}

.bg-cream-dark {
  background: var(--om-cream-dark);
}

.bg-forest {
  background: var(--om-forest);
}

a {
  text-decoration: none;
}

::selection {
  background: var(--om-rose);
  color: #fff;
}

/* Eyebrow label used above section headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--om-rose);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--om-gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  margin-bottom: 18px;
}

.section-sub {
  color: var(--om-forest-soft);
  max-width: 640px;
  font-size: 1.05rem;
}

.section-pad {
  padding: 110px 0;
}

@media (max-width: 767px) {
  .section-pad {
    padding: 72px 0;
  }
}

/* =========================================================
   Breathing Om mark — the signature motif
========================================================= */
.om-mark {
  display: inline-block;
  animation: breathe 4.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes breathe {

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

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

.om-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-size: 42vw;
  line-height: 1;
  color: var(--om-forest);
  opacity: 0.035;
  top: -12%;
  right: -8%;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* =========================================================
   Petal / scallop divider — echoes the lotus in the mark
========================================================= */
.petal-divider {
  width: 100%;
  height: 46px;
  display: block;
  margin-top: -1px;
}

.petal-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* =========================================================
   Navbar
========================================================= */
.navbar-om {
  padding: 14px 0;
  background: rgba(250, 245, 234, 0.92);
  backdrop-filter: blur(10px);
  transition: box-shadow .3s ease, padding .3s ease;
}

.navbar-om.scrolled {
  box-shadow: 0 8px 24px -12px rgba(22, 51, 42, 0.18);
  padding: 8px 0;
}

.navbar-brand-om {
  display: flex;
  align-items: center;
  gap: 18px;
}

.navbar-brand-om img {
  height: 58px;
  width: 58px;
  object-fit: contain;
}

.navbar-brand-om .brand-text {
  font-family: var(--font-display);
  font-size: 1.58rem;
  color: var(--om-forest);
  line-height: 1.1;
}

.navbar-brand-om .brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--om-rose);
  font-weight: 700;
  margin-top: 2px;
}

.navbar-om .nav-link {
  font-weight: 600;
  color: var(--om-forest) !important;
  margin: 0 6px;
  position: relative;
  padding: 8px 4px !important;
}

.service-nav-item {
  display: flex;
  align-items: center;
}

.service-nav-item .dropdown-toggle-split {
  border: 0;
  background: transparent;
  margin-left: -4px;
  padding-left: 0 !important;
}

@media (min-width: 992px) {
  .service-nav-item:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar-om .nav-link::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  background: var(--om-rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

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

.btn-om-primary {
  background: var(--om-rose);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: all .3s ease;
  box-shadow: 0 10px 24px -10px rgba(196, 30, 90, 0.55);
}

.btn-om-primary:hover {
  background: var(--om-rose-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-om-outline {
  background: transparent;
  border: 1.5px solid var(--om-forest);
  color: var(--om-forest);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 999px;
  transition: all .3s ease;
}

.btn-om-outline:hover {
  background: var(--om-forest);
  color: #fff;
}

.btn-om-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 999px;
  transition: all .3s ease;
}

.btn-om-outline-light:hover {
  background: #fff;
  color: var(--om-forest);
}

/* =========================================================
   Hero / Slider
========================================================= */
.hero-carousel {
  height: 100vh;
  min-height: 620px;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100vh;
  min-height: 620px;
}

.hero-carousel .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 51, 42, 0.55) 0%, rgba(22, 51, 42, 0.35) 40%, rgba(22, 51, 42, 0.75) 100%);
}

.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 3;
  padding: 0 20px;
}

.hero-caption .om-mark {
  font-size: 3.2rem;
  color: var(--om-gold);
  margin-bottom: 6px;
}

.hero-caption .eyebrow {
  color: var(--om-gold);
  justify-content: center;
}

.hero-caption .eyebrow::before {
  display: none;
}

.hero-caption h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.5vw, 4.4rem);
  max-width: 900px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.hero-caption p {
  max-width: 620px;
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 30px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-carousel .carousel-indicators .active {
  background: var(--om-gold);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 3;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-scroll-cue .chev {
  animation: bob 1.8s ease-in-out infinite;
  font-size: 1.1rem;
  display: block;
  margin-top: 4px;
}

@keyframes bob {

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

  50% {
    transform: translateY(6px);
  }
}

/* Home quick-access strip: About / Services / Testimonial / Blog / Enquiry */
@media (min-width: 768px) {
  .col-md-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

.quick-links {
  margin-top: -64px;
  position: relative;
  z-index: 5;
}

.quick-link-card {
  background: var(--om-white);
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
  border-bottom: 3px solid transparent;
}

.quick-link-card:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--om-rose);
  box-shadow: var(--shadow-soft);
}

.quick-link-card i {
  font-size: 1.7rem;
  color: var(--om-rose);
  margin-bottom: 10px;
  display: block;
}

.quick-link-card span {
  font-family: var(--font-display);
  font-size: 1.02rem;
}

/* =========================================================
   About
========================================================= */
.about-photo-wrap {
  position: relative;
}

.about-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}

.about-photo-frame img {
  width: 100%;
  display: block;
}

.about-ring {
  position: absolute;
  width: 92%;
  height: 92%;
  border: 2px solid var(--om-gold);
  border-radius: var(--radius-lg);
  top: -22px;
  left: -22px;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -26px;
  right: -18px;
  background: var(--om-forest);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  z-index: 3;
  text-align: center;
  min-width: 140px;
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--om-gold);
}

.about-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.value-card {
  background: var(--om-white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease;
  border-top: 3px solid var(--om-leaf);
}

.value-card:nth-child(2) {
  border-top-color: var(--om-rose);
}

.value-card:nth-child(3) {
  border-top-color: var(--om-gold);
}

.value-card:hover {
  transform: translateY(-6px);
}

.value-card i {
  font-size: 1.6rem;
  color: var(--om-forest);
  margin-bottom: 14px;
}

.director-panel {
  background: var(--om-forest);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 46px;
  position: relative;
  overflow: hidden;
}

.director-panel .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--om-gold);
  opacity: 0.5;
  line-height: 1;
}

.director-panel p.msg {
  font-size: 1.12rem;
  font-style: italic;
  color: #EFE9DB;
}

.director-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--om-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--om-forest);
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--om-rose), var(--om-saffron));
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.4rem;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--om-white);
}

.team-card:nth-child(2) .team-avatar {
  background: linear-gradient(145deg, var(--om-leaf), var(--om-gold));
}

.team-card:nth-child(3) .team-avatar {
  background: linear-gradient(145deg, var(--om-gold), var(--om-rose));
}

.team-card:nth-child(4) .team-avatar {
  background: linear-gradient(145deg, var(--om-forest), var(--om-leaf));
}

.team-card h5 {
  margin-bottom: 2px;
}

.team-card .role {
  color: var(--om-rose);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================================================
   Services
========================================================= */
.service-tabs .nav-pills {
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}

.service-tabs .nav-link {
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  color: var(--om-forest);
  background: var(--om-white);
  border: 1px solid rgba(22, 51, 42, 0.12);
  font-size: 0.92rem;
  transition: all .25s ease;
}

.service-tabs .nav-link i {
  margin-right: 7px;
}

.service-tabs .nav-link.active,
.service-tabs .nav-link:hover {
  background: var(--om-rose);
  color: #fff;
  border-color: var(--om-rose);
}

.service-card {
  background: var(--om-white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.service-card .icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--om-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--om-rose);
  font-size: 1.25rem;
}

.service-card h6 {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--om-forest-soft);
  margin-bottom: 0;
}

.condition-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.condition-chip {
  background: var(--om-white);
  border: 1px solid rgba(22, 51, 42, 0.1);
  color: var(--om-forest);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 600;
  transition: all .25s ease;
}

.condition-chip:hover {
  background: var(--om-leaf);
  color: #fff;
  border-color: var(--om-leaf);
}

.service-panel-intro {
  background: var(--om-cream-dark);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  margin-bottom: 34px;
}

/* =========================================================
   Gallery
========================================================= */
.gallery-tabs {
  justify-content: center;
  margin-bottom: 36px;
  gap: 8px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gcap {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(0deg, rgba(22, 51, 42, 0.85), transparent);
  color: #fff;
  padding: 18px 16px 12px;
  font-weight: 700;
  font-size: 0.92rem;
}

.gallery-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  aspect-ratio: 16/9;
}

.gallery-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   Blog
========================================================= */
.blog-card {
  background: var(--om-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform .3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-cover {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--om-forest), var(--om-leaf));
}

.blog-card:nth-child(2) .blog-cover {
  background: linear-gradient(135deg, var(--om-rose), var(--om-saffron));
}

.blog-card:nth-child(3) .blog-cover {
  background: linear-gradient(135deg, var(--om-gold), var(--om-rose-dark));
}

.blog-body {
  padding: 24px 22px;
}

.blog-meta {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--om-rose);
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-body h5 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.blog-body p {
  font-size: 0.9rem;
  color: var(--om-forest-soft);
}

.blog-readmore {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--om-forest);
  border-bottom: 1.5px solid var(--om-gold);
  padding-bottom: 2px;
}

/* =========================================================
   Testimonials
========================================================= */
.testimonial-card {
  background: var(--om-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

.testimonial-card .stars {
  color: var(--om-gold);
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-card p.quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--om-forest);
  line-height: 1.6;
}

.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--om-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 22px auto 10px;
  font-family: var(--font-display);
  color: var(--om-rose);
  font-size: 1.3rem;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 46px;
  height: 46px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--om-forest);
  border-radius: 50%;
  opacity: 1;
}

#testimonialCarousel .carousel-control-prev {
  left: -10px;
}

#testimonialCarousel .carousel-control-next {
  right: -10px;
}

@media (max-width: 767px) {

  #testimonialCarousel .carousel-control-prev,
  #testimonialCarousel .carousel-control-next {
    display: none;
  }
}

/* =========================================================
   Contact
========================================================= */
.contact-info-card {
  background: var(--om-forest);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
}

.contact-info-card .item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.contact-info-card .item i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--om-gold);
  flex-shrink: 0;
}

.contact-info-card h6 {
  color: #fff;
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  color: #D9E4DE;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.contact-info-card a:hover {
  color: var(--om-gold);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .25s ease;
}

.social-row a:hover {
  background: var(--om-rose);
  transform: translateY(-3px);
}

.contact-form-card {
  background: var(--om-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.form-control-om {
  background: var(--om-cream);
  border: 1px solid rgba(22, 51, 42, 0.12);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.95rem;
}

.form-control-om:focus {
  background: #fff;
  border-color: var(--om-rose);
  box-shadow: 0 0 0 3px rgba(196, 30, 90, 0.12);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 340px;
  filter: sepia(8%) saturate(1.05);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   Footer
========================================================= */
footer.site-footer {
  background: var(--om-forest);
  color: #CFE0D8;
  padding-top: 70px;
}

footer.site-footer h6 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

footer.site-footer a.flink {
  color: #CFE0D8;
  font-size: 0.92rem;
  display: block;
  margin-bottom: 10px;
  transition: color .2s ease;
}

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

footer.site-footer .foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 22px 0;
  font-size: 0.82rem;
  color: #9DB5AB;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 44px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
}

/* Back to top */
.sticky-contact {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 1000;
  display: grid;
  gap: 12px;
}

.sticky-contact a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sticky-contact a:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.sticky-contact .whatsapp-float {
  background: #25D366;
}

.sticky-contact .phone-float {
  background: var(--om-rose);
}

.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--om-rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Enquiry banner (Home) */
.enquiry-banner {
  background: linear-gradient(120deg, var(--om-rose), var(--om-rose-dark));
  border-radius: var(--radius-lg);
  padding: 54px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.enquiry-banner .om-watermark {
  color: #fff;
  opacity: 0.08;
  font-size: 22vw;
}

.enquiry-banner input,
.enquiry-banner select {
  border-radius: 12px;
  border: none;
  padding: 13px 16px;
  font-size: 0.92rem;
  width: 100%;
}

.enquiry-banner .btn-om-primary {
  background: var(--om-forest);
  box-shadow: none;
}

.enquiry-banner .btn-om-primary:hover {
  background: #0e241d;
}

/* AOS-independent simple reveal fallback */
[data-aos] {
  will-change: transform, opacity;
}

.dropdown-menu {

  border-radius: 8px;

  padding: 10px;

  min-width: 280px;

}

.translator-wrap {
  min-width: 132px;
}

.translator-wrap .goog-te-gadget {
  font-family: var(--font-body) !important;
  color: transparent;
  line-height: 1;
}

.translator-wrap .goog-te-gadget span,
.translator-wrap .goog-logo-link {
  display: none !important;
}

.translator-wrap .goog-te-combo {
  max-width: 132px;
  border: 1px solid rgba(22, 51, 42, 0.16);
  border-radius: 999px;
  background: var(--om-white);
  color: var(--om-forest);
  padding: 8px 12px;
  font: 700 0.78rem var(--font-body);
}

body>.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.inner-hero {
  min-height: 430px;
  padding: 160px 0 90px;
  position: relative;
  isolation: isolate;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  color: #fff;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(22, 51, 42, .86), rgba(22, 51, 42, .46)),
    linear-gradient(0deg, rgba(22, 51, 42, .36), rgba(22, 51, 42, .18));
}

.inner-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 5rem);
  max-width: 880px;
  font-family: 'Playfair Display', var(--font-display);
}

.inner-hero p {
  max-width: 720px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 0;
  color: rgba(255,255,255,.9);
}

.tall-card {
  min-height: 230px;
}

.director-om {
  font-size: 5.2rem;
  color: var(--om-gold);
}

.service-feature-card {
  display: block;
  height: 100%;
  background: var(--om-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  color: var(--om-forest);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  color: var(--om-forest);
}

.service-feature-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-feature-body {
  padding: 26px;
}

.service-feature-body>i {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--om-cream-dark);
  color: var(--om-rose);
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.service-feature-body h3 {
  font-size: 1.38rem;
}

.service-feature-body p {
  color: var(--om-forest-soft);
  min-height: 84px;
}

.service-feature-body span {
  font-weight: 800;
  color: var(--om-rose);
}

.service-sidebar {
  position: sticky;
  top: 110px;
  background: var(--om-forest);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.service-sidebar h5 {
  color: #fff;
}

.service-sidebar .flink {
  color: #dce9e3;
  padding: 8px 0;
}

.service-sidebar .flink:hover {
  color: var(--om-gold);
}

.service-sidebar .btn-om-outline {
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

.service-sidebar .btn-om-outline:hover {
  background: #fff;
  color: var(--om-forest);
}

.service-detail {
  background: var(--om-white);
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.service-detail img {
  width: 100%;
  height: min(420px, 52vw);
  min-height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.service-detail h2 {
  color: var(--om-forest);
  font-family: 'Cormorant Garamond', var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.service-detail h4 {
  font-family: var(--font-display);
}

.service-detail p {
  color: var(--om-forest-soft);
  text-align: left;
  line-height: 1.85;
}

@media (max-width: 1199px) {
  .navbar-brand-om img {
    height: 50px;
    width: 50px;
  }

  .navbar-brand-om .brand-text {
    font-size: 1.32rem;
  }

  .navbar-brand-om .brand-text small {
    font-size: .52rem;
    letter-spacing: .12em;
  }
}

@media (max-width: 991px) {
  .navbar-om {
    padding: 9px 0;
  }

  .navbar-collapse {
    background: var(--om-cream);
    border-radius: 8px;
    margin-top: 12px;
    padding: 14px;
    box-shadow: var(--shadow-card);
  }

  .service-nav-item {
    flex-wrap: wrap;
  }

  .service-nav-item>a {
    flex: 1;
  }

  .service-nav-item .dropdown-menu {
    width: 100%;
  }

  .translator-wrap {
    margin-top: 10px;
  }

  .inner-hero {
    min-height: 360px;
    padding-top: 130px;
  }
}

@media (max-width: 575px) {
  .navbar-brand-om {
    gap: 10px;
    max-width: 78%;
  }

  .navbar-brand-om img {
    height: 44px;
    width: 44px;
  }

  .navbar-brand-om .brand-text {
    font-size: 1.08rem;
  }

  .navbar-brand-om .brand-text small {
    font-size: .45rem;
    letter-spacing: .08em;
  }

  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item {
    min-height: 680px;
  }

  .hero-caption {
    padding: 90px 18px 120px;
  }

  .hero-caption p {
    font-size: 1rem;
  }

  .quick-links {
    margin-top: -42px;
  }

  .contact-info-card,
  .contact-form-card,
  .director-panel,
  .enquiry-banner {
    padding: 26px 20px;
    border-radius: var(--radius-md);
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .testimonial-card p.quote {
    font-size: 1.08rem;
  }
}

.dropdown-item {

  padding: 12px 18px;

  font-weight: 500;

  transition: .3s;

}

.dropdown-item:hover {

  background: #0E5B44;

  color: #fff;

  padding-left: 28px;

}

.service-hero {

  background: url("images/panchakarma.jpg");

  background-size: cover;

  background-position: center;

  padding: 130px 0;

  position: relative;

  color: #fff;

  text-align: center;

}

.service-hero::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, .55);

}

.service-hero .container {

  position: relative;

  z-index: 5;

}

.service-hero h1 {

  font-size: 55px;

  font-weight: bold;

}

.service-hero p {

  font-size: 22px;

}.service-detail{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

margin-bottom:50px;

}

.service-detail img{

width:100%;

height:420px;

object-fit:cover;

border-radius:20px;

}

.service-detail h2{

color:#0E5B44;

font-weight:bold;

}

.service-detail p{

font-size:17px;

line-height:30px;

text-align:justify;

}

/* Final inner-page overrides kept last so old service CSS cannot override them. */
.service-detail {
  background: var(--om-white);
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.service-detail img {
  width: 100%;
  height: min(420px, 52vw);
  min-height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.service-detail h2 {
  color: var(--om-forest);
  font-family: 'Cormorant Garamond', var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.service-detail p {
  color: var(--om-forest-soft);
  text-align: left;
  line-height: 1.85;
}

@media (max-width: 575px) {
  .section-title {
    font-size: 2rem;
  }

  .service-card {
    display: block;
  }

  .service-card .icon-box {
    margin-bottom: 14px;
  }

  .condition-chip {
    border-radius: 8px;
  }

  .sticky-contact {
    right: 14px;
    bottom: 82px;
    gap: 10px;
  }

  .sticky-contact a {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
}
/* Brand */
.navbar-brand-om{
    display:flex;
    align-items:center;
    gap:15px;
    flex-shrink:0;
}

.navbar-brand-om img{
    width:60px;
    height:60px;
}

/* Navbar */

.navbar-nav{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:nowrap;
}

.nav-link{
    white-space:nowrap;
    font-size:18px;
    font-weight:500;
    padding:8px 10px !important;
}

.nav-item{
    white-space:nowrap;
}

/* About Us wrap nahi hoga */

.nav-link{
    white-space:nowrap;
}

/* Desktop */

@media(min-width:1200px){

.container{
    max-width:1320px;
}

.navbar-brand{
    margin-right:40px;
}

}

/* Tablet */

@media(max-width:1199px){

.nav-link{
    font-size:16px;
    padding:8px 8px !important;
}

.navbar-brand img{
    width:52px;
}

.brand-text{
    font-size:15px;
}

}

/* Mobile */

@media(max-width:991px){

.navbar-nav{

    flex-wrap:wrap;
    gap:6px;

}

.nav-item{

    width:100%;

}

.nav-link{

    white-space:normal;

}

}
/* dropdown hover effect */
/* Desktop Hover Dropdown */
@media (min-width:992px){

.navbar .dropdown{
    position:relative;
}

.navbar .dropdown-menu{
    display:block;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.25s ease;
    margin-top:0;
    pointer-events:none;
}

.navbar .dropdown:hover>.dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
}

}

/* Mobile */
@media (max-width:991px){

.navbar .dropdown-menu{
    display:none;
}

.navbar .dropdown.show .dropdown-menu{
    display:block;
}

}
@media (min-width:992px){

.nav-item.dropdown:hover > .dropdown-menu{
    display:block;
    margin-top:0;
}

}

/* Phone-first responsive polish */
img,
iframe {
  max-width: 100%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar-om > .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
}

.collapse:not(.show) {
  display: none;
}

.d-flex {
  display: flex !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-center {
  justify-content: center !important;
}

.gap-3 {
  gap: 1rem !important;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .navbar-brand-om {
    gap: 10px;
    margin-right: 18px;
  }

  .navbar-brand-om img {
    width: 48px;
    height: 48px;
  }

  .navbar-brand-om .brand-text {
    font-size: 1.05rem;
  }

  .navbar-brand-om .brand-text small {
    font-size: .42rem;
    letter-spacing: .08em;
  }

  .navbar-nav {
    gap: 4px;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px 5px !important;
  }

  .btn-om-primary {
    padding: 10px 16px;
    font-size: .9rem;
  }
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
}

@media (max-width: 991px) {
  body {
    font-size: 16px;
  }

  main {
    overflow-x: hidden;
  }

  .navbar-om > .container {
    align-items: center;
  }

  .navbar-brand-om {
    min-width: 0;
    margin-right: 0;
  }

  .navbar-brand-om .brand-text {
    min-width: 0;
  }

  .navbar-toggler {
    display: block;
    padding: 4px 0 4px 8px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .navbar-nav {
    align-items: stretch !important;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 4px;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .navbar-om .nav-link {
    width: 100%;
    margin: 0;
    padding: 10px 12px !important;
    border-radius: 8px;
    white-space: normal;
  }

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

  .navbar-om .nav-link:hover,
  .navbar-om .nav-link.active {
    background: rgba(196, 30, 90, .08);
  }

  .navbar .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 4px 0 8px;
    border: 0;
    box-shadow: none !important;
    background: rgba(255, 254, 251, .72);
  }

  .dropdown-item {
    white-space: normal;
    border-radius: 8px;
    padding: 10px 12px;
  }

  .navbar .dropdown.show .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item {
    height: auto;
    min-height: 620px;
  }

  .hero-caption {
    justify-content: center;
    padding: 104px 18px 88px;
  }

  .hero-caption h1 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .hero-caption p {
    max-width: 92%;
  }

  .quick-link-card {
    padding: 20px 12px;
  }

  .quick-links {
    margin-top: 18px;
  }

  .service-tabs .nav-pills,
  .gallery-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .service-tabs .nav-link,
  .gallery-tabs .nav-link {
    white-space: nowrap;
  }

  .service-tabs .nav-item,
  .gallery-tabs .nav-item {
    flex: 0 0 auto;
  }

  [data-aos] {
    transform: none !important;
  }

  .service-sidebar {
    position: static;
  }

  footer.site-footer {
    padding-top: 52px;
  }
}

@media (max-width: 575px) {
  :root {
    --radius-lg: 20px;
    --radius-md: 12px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .navbar-brand-om {
    gap: 8px;
    max-width: calc(100% - 54px);
  }

  .navbar-brand-om img {
    width: 40px;
    height: 40px;
  }

  .navbar-brand-om .brand-text {
    font-size: .98rem;
    line-height: 1.05;
  }

  .navbar-brand-om .brand-text small {
    font-size: .38rem;
    letter-spacing: .06em;
  }

  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item {
    min-height: 560px;
  }

  .hero-caption .om-mark {
    font-size: 2.45rem;
  }

  .hero-caption .eyebrow {
    font-size: .68rem;
    letter-spacing: .14em;
  }

  .hero-caption p {
    font-size: .96rem;
    margin-bottom: 22px;
  }

  .hero-caption .d-flex {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-caption .btn-om-primary,
  .hero-caption .btn-om-outline-light {
    width: 100%;
    text-align: center;
  }

  .hero-scroll-cue {
    display: none;
  }

  .section-pad {
    padding: 58px 0;
  }

  .section-title {
    font-size: clamp(1.75rem, 9vw, 2.15rem);
  }

  .section-sub {
    font-size: 1rem;
  }

  .eyebrow {
    gap: 8px;
    letter-spacing: .14em;
  }

  .eyebrow::before {
    width: 20px;
  }

  .quick-links {
    margin-top: 16px;
  }

  .quick-link-card span {
    font-size: .95rem;
  }

  .enquiry-banner {
    padding: 28px 18px;
  }

  .about-badge {
    right: 12px;
    bottom: 12px;
    min-width: 118px;
    padding: 12px 14px;
  }

  .value-card,
  .service-card,
  .service-panel-intro,
  .service-feature-body,
  .service-sidebar,
  .contact-info-card,
  .contact-form-card,
  .director-panel,
  .testimonial-card {
    padding: 22px 18px;
  }

  .team-avatar {
    width: 92px;
    height: 92px;
    font-size: 1.8rem;
  }

  .service-feature-card img {
    height: 190px;
  }

  .service-feature-body p {
    min-height: 0;
  }

  .condition-chip-wrap {
    gap: 8px;
  }

  .condition-chip {
    padding: 8px 12px;
    font-size: .82rem;
  }

  .gallery-item {
    margin-bottom: 14px;
  }

  .gallery-item .gcap {
    font-size: .78rem;
    padding: 26px 10px 8px;
  }

  .inner-hero {
    min-height: 315px;
    padding: 112px 0 54px;
  }

  .inner-hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .inner-hero p {
    font-size: .98rem;
  }

  .service-detail {
    padding: 20px 16px;
  }

  .service-detail img {
    height: 220px;
    min-height: 0;
    margin-bottom: 22px;
  }

  .service-detail p {
    text-align: left;
    line-height: 1.75;
  }

  .contact-info-card .item {
    gap: 12px;
  }

  .map-wrap {
    height: 280px;
  }

  .sticky-contact {
    right: 12px;
    bottom: 74px;
  }

  .sticky-contact a,
  .back-to-top {
    width: 42px;
    height: 42px;
  }

  .back-to-top {
    right: 12px;
    bottom: 22px;
  }
}
/* ===== RIGHT SIDE BLANK SPACE / HORIZONTAL SCROLL FIX ===== */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  position: relative;
}

/* hero aur carousel ko viewport se bahar jane mat do */
#home,
#home.hero-section,
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* image extra width na banaye */
.hero-carousel .carousel-item img {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

/* bootstrap row/container ki wajah se extra side scroll na aaye */
#home .container,
#home .row,
.quick-links-wrap .container,
.quick-links-wrap .row {
  max-width: 100% !important;
}

/* bahut baar AOS elements ya cards side me push kar dete hain */
[data-aos] {
  max-width: 100%;
}

/* agar kisi element ne 100vw liya hua hai to usko kill kar do */
#home *,
.quick-links-wrap * {
  box-sizing: border-box;
}

/* ==========================================
   DESKTOP HOVER DROPDOWN
========================================== */
@media (min-width: 992px) {
  .navbar .dropdown {
    position: relative;
  }

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.28s ease;
    margin-top: 0;
    pointer-events: none;
    min-width: 260px;
    border-radius: 14px;
    padding: 10px 0;
  }

  .navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown.show > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navbar .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 6px;
  }
}

/* ==========================================
   DROPDOWN STYLING
========================================== */
.navbar .dropdown-menu {
  border: 0 !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
}

.navbar .dropdown-item {
  padding: 11px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.navbar .dropdown-item i {
  width: 18px;
  text-align: center;
}

.navbar .dropdown-item:hover {
  background: rgba(212, 168, 67, 0.08);
  color: var(--om-forest);
  padding-left: 22px;
}

/* mobile me normal bootstrap dropdown rahe */
@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none !important;
    border-radius: 10px;
    margin-top: 8px;
  }

  .navbar .dropdown.show > .dropdown-menu {
    display: block;
  }
}