/* ==========================
   GO/* ==========================
   GOOGLE FONT
========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.shivnav88-header {
  width: 100%;
  background: #f7f4ed;
  position: relative;
  z-index: 999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.shivnav88-container {
  width: 1350px;
  max-width: 1350px;
  margin: auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
}

/* ==========================
   LOGO
========================== */

.shivnav88-logo-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.shivnav88-logo-box img {
  width: 100px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ==========================
   MENU
========================== */

.shivnav88-nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.shivnav88-nav-menu ul {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.shivnav88-nav-menu ul li a {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #173b67;
  transition: 0.3s ease;
  position: relative;
}

.shivnav88-nav-menu ul li a:hover {
  color: #0f6a3d;
}

.shivnav88-nav-menu ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #0f6a3d;
  transition: 0.3s;
}

.shivnav88-nav-menu ul li a:hover::after {
  width: 100%;
}

/* ==========================
   CALL SECTION
========================== */

.shivnav88-call-box {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.shivnav88-call-icon {
  width: 52px;
  height: 52px;
  border: 2px solid #d5a73d;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #173b67;
  font-size: 24px;
}

.shivnav88-call-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shivnav88-call-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shivnav88-call-text span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
}

.shivnav88-call-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-top: 3px;
}

/* ==========================
   MOBILE TOGGLE
========================== */

.shivnav88-toggle {
  display: none;
  font-size: 32px;
  color: #173b67;
  cursor: pointer;
}
/* ==========================
MOBILE HEADER ONLY
========================== */

.mobnav2026-header {
  display: none;
}

.mobnav2026-overlay {
  display: none;
}

.mobnav2026-sidebar {
  display: none;
}

.mobnav2026-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobnav2026-side-logo img {
  width: 95px;
  display: block;
}

.mobnav2026-close {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
  color: #173b67;
  transition: 0.3s;
}

.mobnav2026-close:hover {
  background: #0f6a3d;
  color: #fff;
}

.mobnav2026-menu {
  margin-top: 10px;
}

/* MOBILE */

@media (max-width: 768px) {
  .mobnav2026-header {
    display: block;
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .mobnav2026-container {
    height: 75px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobnav2026-logo img {
    width: 65px;
    display: block;
  }

  .mobnav2026-menu-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 12px;
    background: #f8f8f8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }

  /* Overlay */

  .mobnav2026-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 9998;
  }

  .mobnav2026-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Sidebar */

  .mobnav2026-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: -100%;

    width: 70%;
    height: 100vh;

    background: #ffffff;

    padding: 30px 20px;

    z-index: 9999;

    transition: 0.45s ease;

    box-shadow: 10px 0px 40px rgba(0, 0, 0, 0.15);

    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }

  .mobnav2026-sidebar.active {
    left: 0;
  }

  /* Close */

  .mobnav2026-close {
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 30px;
    color: #173b67;
  }

  /* Menu */

  .mobnav2026-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobnav2026-menu li {
    margin-bottom: 12px;
  }

  .mobnav2026-menu li a {
    display: flex;
    align-items: center;
    height: 55px;
    padding: 0 18px;
    background: #f8f8f8;
    border-radius: 15px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #173b67;
    transition: 0.3s;
    gap: 15px;
  }

  .mobnav2026-menu li a:hover {
    background: #0f6a3d;
    color: #ffffff;
    transform: translateX(5px);
  }

  /* Contact */

  .mobnav2026-contact {
    margin-top: 30px;
  }

  .mobnav2026-contact h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #173b67;
  }

  .mobnav2026-contact a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: #111;
  }

  /* Social */

  .mobnav2026-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
  }

  .mobnav2026-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    color: #173b67;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
  }

  .mobnav2026-social a:hover {
    background: #0f6a3d;
    color: #fff;
  }
}
/* ==========================
   TABLET
========================== */
/* Normal Mobile Only */
/* ==========================
   PREMIUM MOBILE MENU
========================== */

@media (max-width: 991px) and (max-width: 480px) {
  .shivnav88-header {
    display: none !important;
  }
}

.rehabhero2026 {
  width: 100%;
  height: 700px;
  background: url('./assets/background-hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.rehabhero2026-content {
  max-width: 1350px;
  margin: auto;
  padding-top: 70px;
  padding-left: 0px;
}

.rehabhero2026-content h5 {
  font-size: 22px;
  color: #1d5d3b;
  margin-bottom: 20px;
  font-weight: 700;
}

.rehabhero2026-content h1 {
  font-size: 70px;
  line-height: 1.05;
  color: #0d4273;
  font-weight: 700;
  margin-bottom: 15px;
}

.rehabhero2026-content h1 br + text {
  color: #1b5e36;
}

.rehabhero2026-content p {
  max-width: 650px;
  font-size: 20px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 10px;
}

.rehabfeature89-wrapper {
  width: 100%;
  max-width: 650px;
  /* margin-top:10px; */
  margin-bottom: 20px;
}

.rehabfeature89-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.rehabfeature89-lotus img {
  width: 70%;
}
.rehabfeature89-line {
  flex: 1;
  height: 1px;
  background: #c99b38;
}

.rehabfeature89-lotus {
  margin: 0 12px;
  color: #c99b38;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rehabfeature89-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.rehabfeature89-item {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.rehabfeature89-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 1px;
  height: 90px;
  background: #b9b9b9;
}

.rehabfeature89-icon {
  width: 60px;
  height: 60px;
  border: 2px solid #c99b38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.rehabfeature89-icon i {
  font-size: 24px;
  color: #0f4574;
}

.rehabfeature89-item h4 {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: #222;
  font-family: 'Noto Sans Devanagari', sans-serif;
  margin-bottom: 5px;
}

.rehabhero2026-btns {
  display: flex;
  gap: 20px;
}
.rehabhero2026-btns a {
  display: flex;
  gap: 10px;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-weight: 500;
}

.rehabhero2026-call {
  background: #146236;
  color: #fff;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 600;
}

.rehabhero2026-location {
  background: #fff;
  border: 2px solid #0d4273;
  color: #0d4273;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 600;
}

.rehabbottom88-strip {
  width: 100%;
  max-width: 1350px;
  margin-top: 35px;
  background: linear-gradient(90deg, #0a4e28, #0f6b36, #0a4e28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 25px;
  position: relative;
  overflow: hidden;
}

.rehabbottom88-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  position: relative;
}

.rehabbottom88-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.35);
}

.rehabbottom88-item i {
  font-size: 24px;
  color: #fff;
}

.rehabbottom88-item span {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.rehabbottom88-wrapper {
  width: 100%;
  background-color: #1f5c3a;
}

.rehabbottom88-strip {
  max-width: 1350px;
  width: 100%;
  margin: auto;

  height: 78px;

  background: linear-gradient(90deg, #0b4d28 0%, #0f6a35 50%, #0b4d28 100%);

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
}

.rehabbottom88-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at left,
      rgba(255, 255, 255, 0.08),
      transparent 40%
    ),
    radial-gradient(circle at right, rgba(255, 255, 255, 0.08), transparent 40%);
}

.rehabbottom88-item {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  color: #fff;
  position: relative;
  z-index: 2;
}

.rehabbottom88-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.25);
}

.rehabbottom88-item i {
  font-size: 26px;
  color: #fff;
}

.rehabbottom88-item span {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.header-call-btn {
  display: none;
}

/* =====================================
   PREMIUM MOBILE HERO RESPONSIVE
===================================== */

@media (max-width: 768px) {
  .rehabhero2026 {
    height: auto;
    min-height: auto;
    background-position: center center;
    background-size: cover;
    padding: 40px 0 0;
  }

  .rehabhero2026-content {
    max-width: 100%;
    padding: 20px 18px 30px;
  }

  .rehabhero2026-content h5 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .rehabhero2026-content h1 {
    font-size: 42px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 18px;
  }

  .rehabhero2026-content p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 25px;
  }

  /* FEATURES */

  .rehabfeature89-wrapper {
    max-width: 100%;
    margin-bottom: 25px;
  }

  .rehabfeature89-divider {
    margin-bottom: 18px;
  }

  .rehabfeature89-line {
    height: 1px;
  }

  .rehabfeature89-lotus img {
    width: 40px;
  }

  .rehabfeature89-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .rehabfeature89-item {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 16px 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  .rehabfeature89-item:not(:last-child)::after {
    display: none;
  }

  .rehabfeature89-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
  }

  .rehabfeature89-icon i {
    font-size: 20px;
  }

  .rehabfeature89-item h4 {
    font-size: 13px;
    line-height: 1.5;
  }

  /* BUTTONS */

  .rehabhero2026-btns {
    flex-direction: column;
    gap: 14px;
  }

  .rehabhero2026-call,
  .rehabhero2026-location {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 17px;
    border-radius: 14px;
  }

  /* BOTTOM STRIP */

  .rehabbottom88-wrapper {
    background: #0f5d33;
  }

  .rehabbottom88-strip {
    height: auto;
    flex-direction: column;
    padding: 18px;
    gap: 14px;
  }

  .rehabbottom88-item {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 0;
  }

  .rehabbottom88-item:not(:last-child)::after {
    display: none;
  }

  .rehabbottom88-item i {
    font-size: 22px;
    min-width: 28px;
  }

  .rehabbottom88-item span {
    font-size: 15px;
    white-space: normal;
    line-height: 1.5;
  }
}

/* EXTRA SMALL MOBILE */

@media (max-width: 480px) {
  .rehabhero2026-content h1 {
    font-size: 34px;
  }

  .rehabhero2026-content h5 {
    font-size: 15px;
  }

  .rehabhero2026-content p {
    font-size: 15px;
  }

  .rehabfeature89-grid {
    gap: 12px;
  }

  .rehabfeature89-item {
    padding: 14px 8px;
  }

  .rehabfeature89-item h4 {
    font-size: 12px;
  }

  .rehabbottom88-item span {
    font-size: 14px;
  }
}

.smk-footer-wrap {
  width: 100%;
  background: #f7f5ef;
  padding: 60px 0 0;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;

  overflow: hidden;
}

.smk-footer-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 60px;
}

/* ===== BRAND ===== */

.smk-footer-logo {
  width: 240px;
  display: block;
  margin-bottom: 18px;
}
.smk-footer-brand img {
  width: 100px;
}
.smk-footer-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  max-width: 420px;
}

.smk-footer-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.smk-feature-box {
  width: 85px;
  height: 85px;
  background: white;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.smk-feature-box:hover {
  transform: translateY(-5px);
}

.smk-feature-box i {
  font-size: 22px;
  color: #1e4d3d;
  margin-bottom: 8px;
}

.smk-feature-box span {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  color: #333;
}

/* ===== TITLES ===== */
.smk-footer-links {
  padding-top: 20px;
}
.smk-footer-contact {
  padding-top: 20px;
}

.smk-footer-links h3,
.smk-footer-contact h3 {
  font-size: 22px;
  color: #1e4d3d;
  margin-bottom: 24px;
  position: relative;
}

.smk-footer-links h3::after,
.smk-footer-contact h3::after {
  content: '';
  width: 45px;
  height: 3px;
  background: #c9a55c;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 10px;
}

/* ===== LINKS ===== */

.smk-footer-links ul {
  list-style: none;
}

.smk-footer-links ul li {
  margin-bottom: 14px;
}

.smk-footer-links ul li a {
  text-decoration: none;
  color: #444;
  font-size: 15px;
  transition: 0.3s;
}

.smk-footer-links ul li a:hover {
  color: #1e4d3d;
  padding-left: 8px;
}

/* ===== CONTACT ===== */

.smk-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.smk-contact-item i {
  width: 45px;
  height: 45px;
  background: #1e4d3d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.smk-contact-item strong {
  display: block;
  font-size: 15px;
  color: #222;
  margin-bottom: 4px;
}

.smk-contact-item span {
  font-size: 13px;
  color: #666;
}

/* ===== BOTTOM ===== */

.smk-footer-bottom {
  margin-top: 45px;
  background: linear-gradient(135deg, #163f33, #1e4d3d, #295b49);
  padding: 18px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.smk-footer-bottom p {
  color: white;
  font-size: 14px;
}

.smk-social-icons {
  display: flex;
  gap: 12px;
}

.smk-social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

/* ===========================
 SHIVALIK PREMIUM BOTTOM BAR
=========================== */

.snmk-help-strip {
  width: 100%;

  background: linear-gradient(rgba(8, 45, 30, 0.8), rgba(8, 45, 30, 0.8)),
    url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1600');

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 28px 60px;

  gap: 30px;
}

.snmk-help-box {
  display: flex;
  align-items: center;
  gap: 18px;
}

.snmk-help-icon,
.snmk-prayer-icon {
  width: 60px;
  height: 60px;

  border: 2px solid #d6b56a;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.snmk-help-icon i,
.snmk-prayer-icon i {
  color: #d6b56a;
  font-size: 24px;
}

.snmk-help-content span {
  display: block;
  color: #d8d8d8;
  font-size: 13px;
  margin-bottom: 4px;
}

.snmk-help-content h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}

.snmk-help-content p {
  color: #d0d0d0;
  font-size: 13px;
}

.snmk-divider {
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.18);
}

.snmk-social-area h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}

.snmk-social-icons {
  display: flex;
  gap: 10px;
}

.snmk-social-icons a {
  width: 40px;
  height: 40px;

  border: 1px solid rgba(255, 255, 255, 0.45);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  transition: 0.3s;
}

.snmk-social-icons a:hover {
  background: #d6b56a;
  border-color: #d6b56a;
}

.snmk-social-icons i {
  color: #fff;
  font-size: 14px;
}

/* ===== MOBILE ===== */

@media (max-width: 991px) {
  .snmk-help-strip {
    flex-direction: column;
    text-align: center;
    padding: 35px 20px;
  }

  .snmk-divider {
    width: 100%;
    height: 1px;
  }

  .snmk-help-box {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .snmk-help-content h3 {
    font-size: 22px;
  }
}

.smk-social-icons a:hover {
  background: #c9a55c;
  transform: translateY(-4px);
}

.smk-social-icons i {
  color: white;
  font-size: 15px;
}

/* ===== TABLET ===== */

@media (max-width: 991px) {
  .smk-footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .smk-footer-logo {
    margin: auto auto 20px;
  }

  .smk-footer-brand,
  .smk-footer-links,
  .smk-footer-contact {
    text-align: center;
  }

  .smk-footer-desc {
    margin: auto auto 25px;
  }

  .smk-footer-features {
    justify-content: center;
  }

  .smk-contact-item {
    justify-content: center;
    text-align: left;
  }

  .smk-footer-links h3::after,
  .smk-footer-contact h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .smk-footer-wrap {
    padding-top: 45px;
  }

  .smk-footer-logo {
    width: 200px;
  }

  .smk-footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .smk-feature-box {
    width: 75px;
    height: 75px;
  }

  .header-call-btn {
    display: flex;
    margin-bottom: 10px;
  }

  .rehabhero2026-btns {
    .rehabhero2026-call {
      display: none;
    }
  }
}

/* ===========================
   WELLNESS SECTION
=========================== */

.wellness-section {
  position: relative;
  padding: 100px 0;
  background: #f7f3e8;
  overflow: hidden;
}

/* Background watercolor effect */
.wellness-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top right,
      rgba(160, 189, 117, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(120, 160, 90, 0.15),
      transparent 30%
    );
  pointer-events: none;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* ===========================
   HEADING
=========================== */

.section-heading {
  text-align: center;
  max-width: 950px;
  margin: auto auto 60px;
}

.sub-title {
  display: inline-block;
  color: #205b3f;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

.section-heading h2 {
  font-size: 72px;
  line-height: 1.1;
  color: #0d4d84;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: Georgia, serif;
}

.section-heading p {
  font-size: 28px;
  line-height: 1.8;
  color: #333;
}

/* ===========================
   GRID
=========================== */

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===========================
   CARD
=========================== */

.wellness-card {
  background: #fbfaf5;
  border: 1px solid #e8dfc7;
  border-radius: 22px;
  padding: 38px 28px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.wellness-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.icon-wrap {
  width: 110px;
  height: 110px;
  margin: auto 0 25px;
  border: 3px solid #c8a74a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f7a43;
  font-size: 42px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.icon-wrap::before,
.icon-wrap::after {
  content: '❋';
  position: absolute;
  color: #88a96d;
  font-size: 16px;
  bottom: 5px;
}

.icon-wrap::before {
  left: -15px;
}

.icon-wrap::after {
  right: -15px;
}

.wellness-card h3 {
  color: #1f6d3f;
  font-size: 30px;
  margin-bottom: 18px;
  font-weight: 700;
}

.wellness-card p {
  color: #444;
  line-height: 1.8;
  font-size: 20px;
}

/* Decorative divider */
.wellness-card p::after {
  content: '';
  display: block;
  width: 110px;
  height: 1px;
  background: #9ab383;
  margin: 25px auto 0;
}

/* ===========================
   CTA
=========================== */

.wellness-cta {
  text-align: center;
  margin-top: 70px;
}

.wellness-cta p {
  font-size: 32px;
  color: #2b2b2b;
  margin-bottom: 25px;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #0d7a41, #0b5f34);
  color: #fff;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 14px;
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(12, 95, 52, 0.25);
  transition: 0.3s;
}

.call-btn:hover {
  transform: translateY(-3px);
}

.call-btn i {
  font-size: 22px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1200px) {
  .wellness-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading h2 {
    font-size: 58px;
  }

  .section-heading p {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .wellness-section {
    padding: 70px 0;
  }

  .wellness-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .section-heading p {
    font-size: 18px;
  }

  .wellness-card h3 {
    font-size: 24px;
  }

  .wellness-card p {
    font-size: 17px;
  }

  .wellness-cta p {
    font-size: 22px;
  }

  .call-btn {
    font-size: 18px;
    padding: 16px 28px;
  }
}



/* ==================================
   CONTACT SECTION
================================== */

.contact-section {
    position: relative;
    padding: 120px 0;
    background: #f7f3e8;
    overflow: hidden;
}

/* Watercolor background effect */

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
    radial-gradient(circle at top left,
    rgba(160,190,120,.15),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(120,160,90,.12),
    transparent 35%);

    pointer-events: none;
}

.contact-heading {
    text-align: center;
    max-width: 850px;
    margin: auto auto 70px;
}

.contact-subtitle {
    display: inline-block;
    color: #1f6d3f;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-heading h2 {
    font-size: 68px;
    color: #0d4d84;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.contact-heading p {
    font-size: 24px;
    line-height: 1.8;
    color: #444;
}

/* ==========================
   GRID
========================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: stretch;
}

/* ==========================
   CONTACT INFO
========================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fbfaf5;
    border: 1px solid #e8dfc7;
    border-radius: 24px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: .3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #c6a74c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f6d3f;
    font-size: 24px;
    flex-shrink: 0;
}

.info-card h4 {
    color: #1f6d3f;
    font-size: 22px;
    margin-bottom: 6px;
}

.info-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* ==========================
   FORM BOX
========================== */

.contact-form-box {
    background: #fbfaf5;
    border: 1px solid #e8dfc7;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #e4dbc5;
    border-radius: 14px;
    padding: 18px 20px;
    font-size: 16px;
    outline: none;
    transition: .3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1f6d3f;
    box-shadow: 0 0 0 4px rgba(31,109,63,.08);
}

.form-group textarea {
    resize: none;
}

.contact-btn {
    background: linear-gradient(
        135deg,
        #0d7a41,
        #0a6033
    );

    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

.contact-btn i {
    margin-right: 10px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-heading h2{
        font-size:52px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .contact-section{
        padding:80px 0;
    }

    .contact-heading h2{
        font-size:40px;
    }

    .contact-heading p{
        font-size:18px;
    }

    .contact-form-box{
        padding:30px;
    }
}




/* ====================================
   PRIVACY POLICY PAGE
==================================== */

.privacy-policy-section {
    position: relative;
    padding: 120px 0;
    background: #f7f3e8;
    overflow: hidden;
}

/* Background Decorative Effect */

.privacy-policy-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
    radial-gradient(circle at top right,
    rgba(134, 168, 94, .12),
    transparent 30%),

    radial-gradient(circle at bottom left,
    rgba(134, 168, 94, .12),
    transparent 35%);

    pointer-events: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ==========================
   HEADER
========================== */

.policy-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.policy-subtitle {
    display: inline-block;
    color: #1d6b3c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.policy-header h1 {
    font-size: 70px;
    color: #0d4d84;
    font-family: Georgia, serif;
    margin-bottom: 20px;
}

.policy-header p {
    color: #444;
    font-size: 20px;
    line-height: 1.8;
}

.updated-date {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(31,109,63,.08);
    color: #1d6b3c;
    font-weight: 600;
}

/* ==========================
   POLICY CONTENT
========================== */

.policy-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.policy-card {
    background: #fbfaf5;
    border: 1px solid #e6dec8;
    border-radius: 22px;
    padding: 35px;
    transition: .3s ease;
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
}

.policy-card h2 {
    color: #1d6b3c;
    font-size: 28px;
    margin-bottom: 15px;
}

.policy-card p {
    color: #555;
    line-height: 1.9;
    font-size: 17px;
}

/* ==========================
   CONTACT BOX
========================== */

.contact-box {
    margin-top: 60px;
    background: linear-gradient(
        135deg,
        #1d6b3c,
        #15562f
    );

    color: white;
    padding: 50px;
    border-radius: 24px;
    text-align: center;
}

.contact-box h3 {
    font-size: 34px;
    margin-bottom: 15px;
}

.contact-box p {
    margin-bottom: 25px;
    opacity: .9;
}

.contact-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-box li {
    margin-bottom: 10px;
    font-size: 17px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {

    .privacy-policy-section {
        padding: 80px 0;
    }

    .policy-header h1 {
        font-size: 42px;
    }

    .policy-header p {
        font-size: 17px;
    }

    .policy-card {
        padding: 25px;
    }

    .policy-card h2 {
        font-size: 22px;
    }

    .contact-box {
        padding: 35px 25px;
    }

    .contact-box h3 {
        font-size: 28px;
    }
}