* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

:root {
  --primary-color: #2F6B4F;
  --secondary-color: #2F6B4F;
  --dark: #000;
  --light: #fff;
  --white-color: #fff;
    --font-heading: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
}



html {
  scroll-behavior: smooth;
}

body {

  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.2px;
  line-height: 30px;
  font-weight: 500;
  color: #2a3234;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 0px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  color: #2a3234;
}

ul li {
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  color: #2a3234;
  font-size: 16px;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #2a3234;
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-weight: 700;
  font-family: var(--font-heading);
}


h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5,
h6 {
  font-size: 18px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}





.common-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
  z-index: 1;
  color: var(--primary-color);
  text-transform: uppercase;
  background-color: var(--bg-light);
  font-weight: 700;
  font-size: 16px;
  border-radius: 30px;
  padding: 15px 30px;
  /* border: 1px solid transparent; */
  transition: var(--transition);
}


.common-btn:hover {
  transform: translateY(-3px);
  transition: all ease-in-out 0.4s;
  color: var(--dark);
}








.about-btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 50px;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}



.common-space {
  padding: 70px 0;
}

/* ================= TOPBAR ================= */
.topbar {
  background: #25533d;
  padding: 6px 0;
  font-size: 16px;
}

.topbar-info,
.topbar-social {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topbar-info li a {
  text-decoration: none;
  color: var(--light);
}

.topbar-info li {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  color: var(--light);
}

.topbar-info i {
  margin-right: 6px;
  color: var(--light);
}

.topbar-social li {
  display: inline-block;
  margin-left: 10px;
}

.topbar-social a {
  color: var(--light);
  font-size: 16px;
  transition: 0.3s ease;
}

.topbar-social a:hover {
  color: var(--light);
}




/* ================= NAVBAR ================= */
.ayur-navbar {
  background: var(--light);
  padding: 14px 0;
}


.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  font-size: 17px;
  margin: 10px 4px;
  transition: 0.3s ease;
  font-family: var(--font-heading);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--secondary-color);
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  padding-bottom: 0px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* Dropdown */
.dropdown-menu {
  border: none;
  border-radius: 6px;
  margin-bottom: 0px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  padding: 10px 18px;
  font-size: 16px;
}

.dropdown-item:hover {
  background: var(--secondary-color);
  color: var(--light);
}

/* CTA Button */
.nav-cta {
  background: var(--secondary-color);
  color: var(--light);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary-color);
  color: var(--light);
}


.carousel-item img {
  height: 83vh;
  object-fit: cover;
  object-position: bottom;
}




/* =====================================  PROFESSIONAL FLOATING FEATURE CARDS ===================================== */

.features-pro-section {
  background: #f8f9fa;
}

/* Card */
.feature-pro-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 25px 35px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
}

.feature-pro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
}

/* Floating Icon */
.icon-wrap {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;

}

.icon-wrap i {
  font-size: 30px;
  color: #fff;
}

.feature-pro-card:hover .icon-wrap {
  border: 2px solid var(--primary-color);
  transition: all ease-in-out 0.3s;
}

/* Text */
.feature-pro-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2b1a12;
  margin-bottom: 8px;
}

.feature-pro-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #6c757d;
  margin: 0;
}

/* Accent Divider */
.feature-pro-card::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  display: block;
  margin: 18px auto 0;
  border-radius: 10px;
  opacity: 0.6;
}


/* SECTION */
.about-modern {
  background: #fff6e5;
}

/* TEXT SIDE */
.about-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(151, 76, 37, 0.1);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 15px;
}

.about-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-title span {
  color: var(--primary-color);
}

.about-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* POINTS */
.about-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.point-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.point-item i {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.point-item h6 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}

.point-item p {
  font-size: 16px;
  color: #666;
  margin: 0;
}




.about-banner .call {
  background-color: #269bd6;
}

.about-btn:hover {
  background-color: #0cab04;
  color: var(--light);
  transform: translateY(-3px);
}

/* IMAGE SIDE */
.about-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.about-image-box img {
  width: 100%;
  object-fit: cover;
}

/* EXPERIENCE BOX */
.experience-box {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.experience-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.experience-box span {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}


/* ===============================    SERVICES SECTION ================================ */

.services-modern {
  background: #fdfbf7;
}


.section-head {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  background: rgba(151, 76, 37, 0.1);
  color: #2F6B4F;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.section-title span {
  color: #2F6B4F;
}

.section-sub {
  margin: auto;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}


.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}




/* CATEGORY CHIPS */
.category-chips {
  position: absolute;
  cursor: pointer;
  right: 16px;
  top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.category-chips span {
  background: #fff6f6;
  color: #b15c2d;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}


.service-img {
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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




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

.service-body a {
  text-decoration: none;
  color: var(--primary-color);
}

.service-body h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.service-body p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-link {
  font-size: 16px;
  font-weight: 600;
  color: #2F6B4F;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.service-link i {
  font-size: 14px;
}

.service-link:hover {
  color: #B15C2D;
  gap: 10px;
}




.service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-img {
  position: relative;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

 
.service-body .date span {
  font-size: 14px;
}

.service-body .date i {
  font-size: 14px;
}

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

.service-body h4 {
  font-size: 20px;
  font-weight: 600;
  color: #38475c;
  margin-bottom: 10px;
}

.service-body p {
  font-size: 16px;
  color: #6a7e97;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-link {
  font-size: 16px;
  font-weight: 600;
  color: #2F6B4F;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.service-link i {
  font-size: 14px;
}

.service-link:hover {
  color: #b15c2d;
  gap: 10px;
}
 

/* ================================    PREMIUM SERVICES SECTION ================================ */

.services-pro {
  /* padding: 110px 0; */
  background: linear-gradient(180deg, #fdfbf7, #ffffff);
}

/* Heading */
.services-heading {
  margin: 0 auto 50px;
}

.badge-tag {
  display: inline-block;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  background: #2f6b4f29;
  color: #2F6B4F;
  margin-bottom: 14px;
}

.services-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 12px;
}

.services-heading h2 span {
  color: #2F6B4F;
}

.services-heading p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* Card */
.service-pro-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;

  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.service-pro-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Icon */
.icon-circle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2F6B4F, var(--primary-colors));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  z-index: 2;
}

/* Image */
.image-box {
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-pro-card:hover img {
  transform: scale(1.1);
}

/* Content */
.content-box {
  padding: 34px 28px 32px;
}

.content-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.content-box h4 a {
  font-size: 18px;
}

.content-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Link */
.content-box a {
  font-size: 15px;
  font-weight: 600;
  color: #2F6B4F;
  text-decoration: none;
  position: relative;
}

.content-box a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #2F6B4F;
  transition: width 0.3s ease;
}

.content-box a:hover::after {
  width: 100%;
}




/* =============================== BLOG DETAIL LAYOUT ================================ */

.blog-detail {
  background: #ffffff;
}

/* LEFT CONTENT */
.blog-content {
  padding-right: 30px;
}

.blog-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.blog-content h2 {
  font-size: 26px;
  font-weight: 600;
  color: var(--dark);
  margin: 40px 0 14px;
}

.blog-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

.lead-text {
  font-size: 18px;
  font-weight: 500;
  color: #2c2c2c;
}

/* ===============================  IMAGE + META ================================ */

.blog-hero-img {
  position: relative;
  margin-bottom: 28px;
}

.blog-hero-img img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.blog-meta {
  margin-top: 14px;
  font-size: 15px;
  color: #6A7E97;
  text-align: start;
}

.blog-meta .divider {
  margin: 0 6px;
}

.blog-meta strong {
  color: #38475C;
}

/* ===============================  MID ARTICLE CTA ================================ */

.blog-mid-cta {
  margin-top: 40px;
  background: #f8f9fa;
  padding: 26px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.blog-mid-cta img {
  width: 120px;
  border-radius: 16px;
}

.cta-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: #38475C;
  margin-bottom: 6px;
}

.cta-text p {
  font-size: 16px;
  color: #6A7E97;
  margin-bottom: 14px;
}

/* CTA BUTTON */
.btn-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--secondary-color);
}

/* ===============================  END CTA SECTION ================================ */

.blog-end-cta {
  margin-top: 90px;
}

.end-cta-inner {
  background-color: #f2ebe5;
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #000;
}

.end-cta-text h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.end-cta-text p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 18px;
}


/* LIGHT BUTTON */
.btn-light {
  background: var(--primary-color);
  color: var(--light);
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}


/* ==============================  MODERN RECENT BLOGS SIDEBAR ================================ */

.modern-sidebar {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

/* TITLE */
.sidebar-title {
  font-size: 20px;
  font-weight: 600;
  color: #38475C;
  margin-bottom: 24px;
  position: relative;
}

.sidebar-title::after {
  content: "";
  width: 42px;
  height: 3px;
  background: #269bd6;
  display: block;
  margin-top: 8px;
  border-radius: 6px;
}

/* BLOG ITEM */
.recent-blog-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed #e5e7eb;
}

.recent-blog-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* IMAGE */
.recent-blog-item img {
  width: 80px;
  height: 74px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

/* CONTENT */
.recent-blog-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: #38475C;
  line-height: 1.4;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.recent-blog-content h4 a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

/* LINK */
.view-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.view-btn:hover {
  color: var(--light);
  transform: translateX(4px);
}

/* testimonial section */


/* HERO */
.testimonials-hero {
  background: linear-gradient(180deg, #fff6f6, #fff6f6);
}

.page-title {
  font-size: 46px;
  font-weight: 700;
  color: #38475C;
}

.page-subtext {
  font-size: 18px;
  color: #6A7E97;
  max-width: 720px;
  margin: 20px auto 0;
}

/* INTRO */
.testimonial-intro {
  padding: 40px 0 20px;
}

.testimonial-intro p {
  margin: auto;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.8;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  height: 100%;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

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

.testimonial-header h5 {
  font-size: 18px;
  font-weight: 600;
  color: #38475C;
}

.testimonial-header span {
  font-size: 14px;
  color: #6A7E97;
}

.testimonial-text {
  margin: 18px 0 22px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-tags span {
  display: inline-block;
  background: #fff6f6;
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  margin-right: 8px;
}

/* FORM */
.testimonial-form-wrap {
  margin: auto;
  background: #fff;
  padding: 50px;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.form-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}

.form-subtext {
  text-align: center;
  font-size: 15px;
  color: #fff6f6;
  margin-bottom: 35px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.form-control {
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
}


.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: #f2ebe5;
  box-shadow: none;
}

.form-control:active {
  border-color: var(--primary-color);
  box-shadow: #f2ebe5;
  box-shadow: none;
}


.form-control option:hover {
  background-color: var(--primary-color);
}

.btn-submit {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 46px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-submit:hover {
  background: var(--secondary-color);
}


/* ==============================  WHY CHOOSE US SECTION   ============================== */
.why-choose-us {
  background-color: #fff6e5;
}

.why-choose-us .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-us .section-header .sub-title {
  font-size: 16px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.why-choose-us .section-header .title {
  font-size: 36px;
  font-weight: 700;
  color: #38475C;
  margin-top: 10px;
}

.why-choose-us .section-header .desc {
  font-size: 16px;
  color: #6A7E97;
  margin: 15px auto 0;
  line-height: 1.7;
}

/* ==============================  FEATURE CARDS  ============================== */
.feature-card {

  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 30px 25px;
  margin-bottom: 30px;
  position: relative;
  transition: 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-card .icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h5 {
  font-size: 20px;
  color: #000;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card .card-desc {
  font-size: 16px;
  color: #6A7E97;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-card .progress-wrapper {
  height: 6px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.feature-card .progress-bar {
  height: 6px;
  background: var(--primary-color);
  border-radius: 10px;
  transition: width 1s ease-in-out;
}

.feature-card .percent {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 14px;
}

/* ============================== CERTIFICATE SECTION  ============================== */
.certificates {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.certificates .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.certificates .section-header .sub-title {
  font-size: 16px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.certificates .section-header .title {
  font-size: 36px;
  font-weight: 700;
  color: #38475C;
  margin-top: 10px;
}

.certificates .section-header .desc {
  font-size: 16px;
  color: #6A7E97;
  margin: 15px auto 0;
  line-height: 1.7;
}

.certificates .highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.certificates .certificate-img {
  max-width: 230px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.certificates .certificate-img:hover {
  transform: scale(1.05);
}

.certificates .cert-text h5 {
  font-size: 22px;
  font-weight: 600;
  color: #38475C;
  margin-bottom: 20px;
}

.certificates .cert-list {
  list-style: none;
  padding-left: 0;
}

.certificates .cert-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #6A7E97;
}

.certificates .cert-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}





/* google review css  */
.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;

  background: #f8f9fa;
}

.google-review-section {
  background-color: var(--primary-color);
}

.google-review-section .google-subpara {
  color: var(--text-dark);
  font-size: 18px;
}

.reviews-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  margin-right: 10px;
}

.review-info {
  flex: 1;
}

.gender-age {
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.gender-age .gender {
  font-weight: 600;
}

.gender-age i {
  font-size: 6px;
  color: #888;
}

.location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #555;
}

.location i {
  color: #269bd6;
}

.review-meta {
  text-align: right;
}

.review-google {
  display: flex;
  justify-content: end;
}

.review-meta .review-google img {
  width: 30px !important;
  text-align: end;
}

.review-meta small {
  display: block;
  color: #888;
}

.review-stars {
  color: #f1c40f;
}

.review-stars i {
  margin-right: 2px;
}

.review-content p {
  font-size: 16px;
  width: 100%;
  text-overflow: ellipsis;
  color: #000;
  line-height: 1.5;
  margin-bottom: 8px;
}

.review-content a {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.review-content a:hover {
  text-decoration: none;
}





.reviews-section {
  background-color: #fff;
  border-radius: 16px;
  padding: 48px 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reviews-section h2 span {
  color: var(--primary-color);
  padding: 5px;
  border-radius: 10px;

}

.review-card {
  border: 1px solid #dce7f6;
  border-radius: 16px;
  padding: 24px;
  background-color: #fff;
  height: 100%;
}

.review-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-btn {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #000;
  transition: all ease-in-out 0.5s;

}

.book-btn:hover {
  transition: all ease-in-out 0.5s;
  background-color: #fff;
  color: #000;
}

.review-card p {
  color: #6c757d;
}

.review-stars i {
  color: #f8b825;
}

.reviews-section .carousel-control-prev,
.reviews-section .carousel-control-next {
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews-section .carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

/* google review css  */





.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  text-align: center;
}

.gallery-overlay i {
  font-size: 28px;
  margin-bottom: 10px;
}

.gallery-overlay h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-size: 14px;
  opacity: 0.85;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}








/* ===============================  PROCESS / HOW IT WORKS - TIMELINE  =============================== */
.process-section {
  background-color: #f8f9fa;
  /* padding: 80px 0; */
  position: relative;
}

.process-section .section-header .sub-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.process-section .section-header .title {
  font-size: 36px;
  font-weight: 700;
  color: #38475C;
  margin-bottom: 20px;
}

.process-section .section-header .desc {
  font-size: 16px;
  color: #6A7E97;
  margin: 0 auto;
  line-height: 1.7;
}

/* Timeline Container */
.timeline {
  position: relative;
  margin: 60px 0 0;
  padding-left: 0;
}

/* Vertical Line in Center */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2F6B4F, #000);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 27px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

/* Step Circle Number */
.timeline-item .timeline-num {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 41px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2F6B4F, #43b12d);
  border-radius: 50%;
  position: absolute;
  top: 0;
  z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-num {
  right: -25px;
}

.timeline-item:nth-child(even) .timeline-num {
  left: -25px;
}

/* Timeline Content Box */
.timeline-item .timeline-content {
  background-color: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 25px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 35px;
}

/* Title and Text */
.timeline-item .timeline-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #38475C;
  margin-bottom: 10px;
}

.timeline-item .timeline-content p {
  font-size: 16px;
  color: #6A7E97;
  line-height: 1.7;
  margin-bottom: 0;
}





/* ========================================= CTA SECTION ========================================= */

.cta-section .cta-wrapper {
  position: relative;
  padding: 25px 5px;
  z-index: 1;
  background-color: var(--primary-color);

}

.cta-section {

  background-color: var(--primary-color);

}

.cta-section .cta-wrapper .cta-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  border-radius: 30px;

}

.cta-section .cta-wrapper .cta-content h2 {
  font-size: 35px;
  margin-bottom: 20px;
}

.cta-section .cta-wrapper .cta-content p {
  font-size: 16px;
  max-width: 90%;
}


/* =============================== OUR TEAM SECTION   =============================== */

.team-section {
  background-color: #fdf8ee;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 25px;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 25px 20px;
}

.team-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

.team-info span {
  display: block;
  font-size: 15px;
  font-weight:700;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.team-info p {
  padding: 5px 5px;
  margin-bottom: 0px;
  font-size: 15px;
  color: #000;
}


.ayurveda-why {
  background: linear-gradient(120deg, #f8f9fa 50%, #ffffff 50%);
}

.about-ayurveda h2 {
  font-weight: 600;
  margin-bottom: 15px;
}

.about-ayurveda .section-heading .about-title {
  font-size: 20px;
}

.about-ayurveda p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}


.why-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.why-box h3 {
  font-weight: 600;
  margin-bottom: 25px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.why-item span {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.why-item p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}



.cta-strip {
  background: var(--primary-color);
  color: #fff;
  padding: 60px 20px;
}

.cta-strip h3 {
  font-weight: 600;
  color: var(--light);
}

.cta-strip p {
  color: var(--light);
}

.cta-strip .about-btn {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.cta-strip .whatapp {
  background-color: green;
  color: var(--light);
}


.accordion-button:not(.collapsed) {
  background-color: var(--secondary-color);
  color: var(--light);
}

.accordion-button:not(.collapsed) {

  box-shadow: none;
}

.accordion-button {
  background-color: #2f6b4f1c;
}

.accordion-item {
  margin-bottom: 3px;
}



/* treatment  */

.treatments-hero h1 {
  font-size: 50px;
  font-weight: 600;
}

.hero-lead {
  margin: 18px auto;
  font-size: 18px;
}

.hero-micro {
  font-size: 14px;
  opacity: 0.9;
}

/* INTRO */
.intro-note {
  max-width: 820px;
  margin: auto;
  font-size: 17px;
  color: #000;
  line-height: 1.8;
}

.intro-section {
  background-color: #f2ebe5;
}




/* TREATMENT BOX (NO ICONS) */
.treatment-box {
  background: #fff;
  padding: 32px;
  border-radius: 14px;
  height: 100%;
  text-align: center;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);

}

.treatment-box h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.treatment-box h5 a {
  text-decoration: none;
  color: var(--primary-color);
}

.treatment-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.treatment-box .icon {
  font-size: 30px;
  background-color: #ddd;
  margin-left: auto;
  margin-right: auto;
  width: 70px;
  margin-bottom: 10px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 43px;
}

.treatment-box .icon {
  color: #2f6b4f;
}

/* =========================    PROCESS – MODERN DESIGN ========================= */

.process-section {
  background: #fff;
}

.process-section .about-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Timeline wrapper */
.process-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 30px;
}

/* Connecting line */
.process-line::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: #e6e6e6;
  z-index: 0;
}

/* Step card */
.step {
  background: #fff;
  border-radius: 16px;
  padding: 25px 18px 22px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

/* Icon */
.step-icon {
  width: 72px;
  height: 72px;
  background: #f2ebe5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.step-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

/* Step number */
.step span {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  background: var(--primary-color);
  color: #fff;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 8px;
}

/* Step text */
.step p {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  margin-top: 6px;
  line-height: 1.4;
}


.arrow {
  display: none;
}



.precaution-text {
  background: #fff6f6;
  padding: 20px;
  border-left: 4px solid var(--primary-color);
  border-radius: 10px;
}


.treatment-detail-section {
  background: #fff;
}

.detail-block {
  margin-bottom: 35px;
}

.detail-block {
  margin-bottom: 12px;
  position: relative;
}

.detail-block ul {
  padding-left: 0px;
}

.detail-block p {
  color: #000;
  font-size: 18px;
  line-height: 1.7;
}

.treatment-detail-section p {
  color: #000;
  font-size: 18px;
  line-height: 1.7;
}

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

.detail-block li {
  list-style: none;
  padding-left: 26px;
  margin-bottom: 10px;
  position: relative;
  color: #444;
}

.treatment-detail-section .section-title {
  font-size: 28px;
}

.detail-block li::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* PRECAUTION */
.precaution-box {
  background: #fff7f7;
  padding: 25px;
  border-left: 4px solid var(--primary-color);
  border-radius: 12px;
}

/* IMAGE */


.treatment-image-box img {
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* CTA */
.detail-cta {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 18px;
  margin-top: 40px;
}

.detail-cta h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.detail-cta p {
  margin-bottom: 20px;
  color: #555;
}




.newsletter-sec {
  background: linear-gradient(135deg, #f2ebe5, #f2ebe5);
}

.newsletter-box {
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.newsletter-box h3 {
  font-size: 30px;
  font-weight: 600;
  color: #38475c;
  margin-bottom: 10px;
}

.newsletter-box p {
  font-size: 16px;
  color: #6a7e97;
  margin-bottom: 30px;
}

.tnp-subscription form {
  display: flex;
  flex-wrap: wrap;

}

.tnp-subscription label {
  text-align: start;
}

.newsletter-sec .tnp-subscription {
  display: flex;
  gap: 12px;
}

.newsletter-sec .tnp-subscription .tnp-email {
  flex: 1;
  height: 54px;
  border-radius: 50px;
  border: 1px solid #ddd;
  width: 450px;
  font-size: 15px;
  outline: none;
}

.newsletter-sec .tnp-subscription .tnp-email:focus {
  border-color: var(--primary-color);
}

.newsletter-sec .tnp-subscription .tnp-submit {
  height: 54px;
  padding: 0 28px;
  border-radius: 50px;
  margin-top: 20px;
  margin-left: 10px;
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}


div.tnp-subscription,
form.tnp-subscription,
form.tnp-profile {
  display: block;
  margin: 1em auto;
  max-width: 610px !important;
  width: 100%;
}


.newsletter-sec .tnp-subscription .tnp-submit:hover {
  background: var(--secondary-color);
  box-shadow: 0 10px 25px rgba(38, 155, 214, 0.35);
}


.therapy-listing {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.section-subtitle {
  margin: 0 auto;
  color: #6c757d;
  font-size: 15px;
}

.therapy-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  height: 100%;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.therapy-card h5 a {
  text-decoration: none;
  color: var(--dark);
}

.therapy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.therapy-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(219, 150, 71, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.therapy-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.therapy-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.therapy-card p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Highlight Panchakarma cards */
.therapy-card-highlight {
  background: linear-gradient(135deg, #B15C2D, #2F6B4F);
  color: #fff;
  border: none;
}

.therapy-card-highlight .therapy-icon {
  background: rgba(255, 255, 255, 0.2);
}

.therapy-card-highlight i,
.therapy-card-highlight h5,
.therapy-card-highlight p {
  color: #fff;
}




/* PROCESS STRIP */
.therapy-process {
  background: #f2ebe5;
}

.process-step {
  background: #fff;
  padding: 35px 25px;
  border-radius: 14px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.process-icon {
  width: 70px;
  height: 70px;
  background: rgba(218, 149, 70, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.process-step h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.process-step p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}


.view-btn {
  margin-top: 8px;
  font-size: 16px;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 50px;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-btn2 {
  margin-top: 8px;
  font-size: 16px;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 50px;
  /* background-color: var(--light); */
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}


/* therapy detail  */

.common-bg {
  background-color: #f2ebe5;
}

.line {
  border-left: 2px solid rgb(133, 129, 129);
  padding-left: 15px;

}

/* SECTION TITLE */
.therapy-section-title {
  font-size: 30px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 22px;
  position: relative;
}

.therapy-section-title::after {
  content: "";
  width: 48px;
  height: 3px;
  background: var(--primary-color);
  display: block;
  margin-top: 10px;
  border-radius: 4px;
}

/* HERO */
.therapy-hero {
  background: linear-gradient(180deg, #f3faf7, #ffffff);
}

.therapy-title {
  font-size: 44px;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.2;
}

.therapy-actions .whatapp {
  background-color: gray;
}

.therapy-actions .book {
  background-color: var(--secondary-color);
}

.therapy-subtext {
  font-size: 18px;
  line-height: 1.75;
  color: #555;
}

.therapy-badges span {
  display: inline-block;
  background: #f2ebe5;
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
  margin-bottom: 10px;
}

.therapy-actions {
  margin-top: 32px;
}

.therapy-actions .btn {
  padding: 13px 30px;
  font-weight: 500;
  border-radius: 40px;
}

.therapy-img {
  border-radius: 24px;
  max-height: 390px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}



/* BENEFITS */
.benefit-list {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.benefit-list li {
  padding-left: 36px;
  margin-bottom: 14px;
  position: relative;
  font-size: 16px;
  color: #444;
}

.benefit-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  font-weight: 700;
}

/* PROCEDURE */
.procedures-box {
  margin: 10px 2px;

}

.procedure-step {
  background: #fff;
  padding: 28px 16px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  font-weight: 500;
  color: #333;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}


.procedures-img img {
  border-radius: 10px;
}

.procedure-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.08);
}

/* RECOMMENDED */
.sub-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}

.detail-block {
  list-style: none;
  padding-left: 0;
}

.detail-block li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  font-size: 16px;
}

.detail-block li::before {
  content: "›";
  position: absolute;
  left: 0;
  font-size: 22px;
  color: var(--primary-color);
}

/* CTA */
.therapy-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary-color), #256f48);
  color: #fff;
}

.therapy-cta h3 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 14px;
}

.therapy-cta p {
  font-size: 16px;
  opacity: 0.92;
  margin-bottom: 28px;
}

.therapy-cta .btn {
  padding: 15px 36px;
  border-radius: 40px;
  font-weight: 500;
}

/* therapy detail  */


/* ===============================  PROFESSIONAL FOOTER  =============================== */

.main-footer {
  background-color: #1f4b37;
  padding: 70px 0 40px;
  color: #ffffff;
}

.footer-logo img {
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-about {
  color: var(--light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Headings */
.footer-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--light);
}

.footer-widget ul {
  padding-left: 0px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
  list-style-type: none;
}

.footer-links a {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

/* Contact */
.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 12px;
  color: var(--light);
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-list li a {
  text-decoration: none;
  color: var(--light);
}

.contact-list i {
  color: #fff;
  margin-top: 4px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ffffff;
  color: var(--primary-color);
}

/* Copyright */
.copyright-area {
  background-color: #2F6B4F;
  padding: 15px 0;
}

.copyright-area p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}

.copyright-area a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.copyright-area a:hover {
  text-decoration: none;
}

/* Responsive */


/* ================= Floating Buttons ================= */

.whatsapp-float,
.call-float {
  position: fixed;
  left: 12px;
  z-index: 999;
}

/* WhatsApp */
.whatsapp-float {
  bottom: 120px;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  background: #0cab04;
  border-radius: 30px;
  padding: 6px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
}

.whatsapp-float i {
  font-size: 34px;
  color: var(--light);
}

.whatsapp-float span {
  width: 0;
  opacity: 0;
  font-size: 18px;
  padding-left: 5px;
  white-space: nowrap;
  transition: all 0.4s ease;
}

.whatsapp-float a:hover span {
  width: 110px;
  opacity: 1;
  padding-right: 16px;
}

/* Call */
.call-float {
  bottom: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 5px;

}

.call-float a {
  display: flex;
  text-decoration: none;
  border-radius: 50%;
  padding: 6px;
}

.call-float i {
  font-size: 26px;
  color: var(--light);

}


/* video css  */
.video-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-thumbs .thumb {
  width: 200px;
  height: 300px;
  border-radius: 16px;
  object-fit: cover;
  background: #ccc;
  opacity: 0.85;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-thumbs .thumb:hover {
  transform: scale(1.05);
  opacity: 1;
}



.stories-ui {
  background: #f6f7f9;
}

.stories-ui .container {
  display: flex;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.stories-left {
  flex: 1;
}

.stories-head h2 {
  font-size: 16px;
  color: var(--theme-color2) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.google-review-section .reviews-section h2 {
  font-size: 16px;
  color: var(--theme-color2) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;

}

.stories-head span {
  color: var(--theme-color2);
}

.sub {
  color: var(--theme-color);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #e5ecff;
}

.profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: #ffd58a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.rating {
  margin-left: auto;
  color: #1e88e5;
  font-weight: 600;
}

.clamp {
  margin-top: 14px;
  max-height: 163px !important;
  overflow: hidden;
}

.read-more {
  background: none;
  border: none;
  color: #1e88e5;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
}

.dots {
  display: flex;
  gap: 6px;
  margin: 20px 0;
}

.dots span {
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
}

.dots .active {
  width: 16px;
  background: #1e88e5;
  border-radius: 10px;
}

.cta {
  width: 260px;
  height: 48px;
  border-radius: 30px;
  border: none;
  background: #f5b642;
  font-weight: 600;
  cursor: pointer;
}

/* RIGHT */
.stories-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.video-stack {
  display: flex;
  gap: 10px;
}

.video-main {
  width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.video-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb {
  width: 220px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  background: #ddd;
}

.mute-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

/* NAV */
.nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 1px solid #ddd;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}


/* video css  */
.stories-ui .stories-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stories-ui {
  background: #f6f7f9;
}

.stories-ui .story-wrap {
  display: flex;
  gap: 5px;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
}

.stories-ui .story-video {
  width: 320px;
  aspect-ratio: 11/16;
  border-radius: 20px;
  overflow: hidden;
}

.stories-ui .story-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stories-ui .story-content {
  background: #fff;
  border: 1px solid #e5ecff;
  border-radius: 16px;
  padding: 25px;
}

.stories-ui .profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stories-ui .avatar {
  width: 42px;
  height: 42px;
  background: #ffd58a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.stories-ui .rating {
  margin-left: auto;
  color: #1e88e5;
  font-weight: 600;
}

.stories-ui .story-text {
  margin-top: 15px;
  color: #444;
}

/* NAV BUTTONS */
.stories-ui .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  z-index: 10;
}

.stories-ui .nav-btn.left {
  left: -20px;
}

.stories-ui .nav-btn.right {
  right: -20px;
}

.stories-ui .nav-btn i {
  font-size: 18px;
}


/* ABOUT US SECTION */
.about-banner {
  padding: 75px 50px;
  background-color: #B15C2D;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  background-image: linear-gradient(45deg, rgba(112, 74, 38, 0.6), rgba(0, 0, 0, 0.84)), url(../image/banner/about-banner-1.png);
  background-position: center;
  position: relative;
  color: #fff;
}

.about-banner a {
  text-decoration: none;
  color: var(--white-color);

}

.about-banner h1 {
  color: var(--light);
}

.about-banner p {
  color: var(--light);
}


.about-banner .whatapp {
  background-color: green;
  margin: 15px;
}

.about-banner .whatapp:hover {
  background-color: var(--primary-color);
}


.story-section {
  background-color: #ece0d7a8;
}


.story-section .section-heading .about-title {
  font-size: 25px;

}

.story-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}


.story-box p {
  font-size: 18px;
  letter-spacing: 1.5px;
  line-height: 1.9;
}

.story-box p span {
  color: var(--primary-color);
  font-weight: 600;
}

.icon-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.icon-card i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.info-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

}


.info-card p {
  line-height: 1.9;
  font-size: 18px;
  letter-spacing: 1.2px;
}

/* ABOUT US SECTION */


/* HERO */

.contact-section .contact-form-wrap textarea {
  height: 100px;
}

.contact-section .contact-form-wrap p {
  margin-bottom: 0px;
}

.contact-section {
  background-color: #f2ebe5;
}

.contact-hero {
  background: linear-gradient(180deg, #f4faf7, #ffffff);
}

.page-title {
  font-size: 46px;
  font-weight: 700;
  color: #38475C;
}

.page-subtext {
  font-size: 18px;
  color: #6A7E97;
  max-width: 720px;
  margin: 20px auto;
}

.hero-actions {
  margin-top: 30px;
}

.hero-actions a {
  margin: 6px;
}

/* BUTTONS */
.btn-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
}

.btn-outline {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
}

/* FORM */
.contact-form-wrap {
  background: #fff;
  padding: 45px;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.form-title {
  font-size: 30px;
  font-weight: 600;
  color: #000;
}

.form-subtext {
  font-size: 15px;
  color: #6A7E97;
  margin-bottom: 30px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #38475C;
}

.form-control {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e0e0e0;
}

.form-control:focus {
  border-color: #b15c2d;
  box-shadow: none;
}

.contact-methods label {
  margin-right: 20px;
  font-size: 14px;
}

/* SUBMIT */
.btn-submit {
  color: #fff;
  padding: 14px 46px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
}

/* CLINIC INFO */
.clinic-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}

.clinic-info h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}

.info-block {
  margin-bottom: 18px;
}

.info-block strong {
  display: block;
  font-size: 18px;
  color: #38475C;
}


.info-block strong i {
  color: var(--primary-color);
}

.info-block p {
  font-size: 17px;
  color: #6A7E97;
}

/* FAQ */
.faq-wrap {
  max-width: 800px;
  margin: auto;
}



.faq-item h6 {
  font-size: 16px;
  font-weight: 600;
  color: #38475C;
}

.faq-item p {
  font-size: 14px;
  color: #6A7E97;
  margin-top: 8px;
}

.common-page h3, .common-page h3,.common-page h2,.common-page h4,.common-page h5{
            margin-left: 0;
            padding-left: 0px;
            color: #01bf63;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
    }
  .common-page ul{
        padding-left: 0;
    }
    .common-page ol{
        margin-left: 10px;
    }
    .common-page ul li{
        padding-left: 20px;
        margin-left: 13px;
        line-height: 1.9;
        position: relative;
        list-style: none;
    }
    
   .common-page ul li::before {
            position: absolute;
            left: 0;
            color: #01bf63;
            font-size: 16px;
            content: "\f00c";
            font-family: "fontawesome";
      }
.blog-detail h3, .blog-detail h3,.blog-detail h2,.blog-detail h4,.blog-detail h5{
            margin-left: 0;
            padding-left: 0px;
            color: #01bf63;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
    }
  .blog-detail ul{
        padding-left: 0;
    }
    .blog-detail ol{
        margin-left: 10px;
    }
    .blog-detail ul li{
        padding-left: 20px;
        margin-left: 13px;
        line-height: 1.9;
        position: relative;
        list-style: none;
    }
    
   .blog-detail ul li::before {
            position: absolute;
            left: 0;
            color: #01bf63;
            font-size: 16px;
            content: "\f00c";
            font-family: "fontawesome";
      }
    
/* =========================  RESPONSIVE ========================= */

/* MOBILE */
@media (max-width: 767px) {
  .page-title {
    font-size: 34px;
  }

  .contact-form-wrap,
  .clinic-info {
    padding: 30px;
  }
}

.accordion-button {
  box-shadow: none;
}

.accordion-item {
  border: none;
}

.accordion-button:focus {
  box-shadow: none;
}



@media (max-width: 991px) {
  .page-title {
    font-size: 34px;
  }

  .contact-form-wrap,
  .clinic-info {
    padding: 30px;
  }

  .carousel-item img {
    height: auto;
    object-fit: cover;
    object-position: bottom;
  }

  .topbar-info li a {
    font-size: 12px;
    text-decoration: none;
    color: var(--light);
  }

  .about-title {
    font-size: 32px;
  }

  .about-image-box img {
    height: 420px;
  }

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

  .services-heading h2 {
    font-size: 34px;
  }

  .modern-sidebar {
    margin-top: 30px;
  }

  .blog-content {
    padding-right: 0;
  }

  .blog-header h1 {
    font-size: 32px;
  }

  .end-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 27px;
    gap: 30px;

  }

  .end-cta-image img {
    width: 100%;
    max-width: 320px;
  }

  .process-line {
    flex-direction: column;
    gap: 25px;
  }

  .process-line::before {
    display: none;
  }

  .step {
    width: 100%;
    text-align: left;
    padding-left: 90px;
  }

  .step-icon {
    position: absolute;
    left: 18px;
    top: 22px;
    margin: 0;
  }

  .step span {
    font-size: 14px;
  }

  .step p {
    font-size: 14px;
  }

  .ayurveda-why {
    background: #f8f9fa;
  }


  .cta-section .cta-wrapper {
    padding: 40px 20px;

  }

  .cta-section .cta-wrapper .cta-bg-shape {
    clip-path: none;
    border-radius: 10px;
  }

  .cta-section .cta-wrapper .cta-content h2 {
    font-size: 28px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    margin-bottom: 40px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
    text-align: left;
  }

  @media (max-width: 991px) {
    .timeline-item .timeline-num {
      left: -37px !important;
    }
  }


  .feature-card {
    padding: 25px 20px;
  }

  .feature-card .icon {
    font-size: 35px;
  }

  .certificates .certificate-img {
    margin-bottom: 25px;
  }
}

.accordion-button {
  box-shadow: none;
}

.accordion-item {
  border: none;
}

.accordion-button:focus {
  box-shadow: none;
}

/* ===== Hover Dropdown (Desktop Only) ===== */
@media (min-width: 992px) {

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
  }

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

  .navbar .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }

  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}


@media (min-width:992px) and (max-width:1200px) {
  .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 13px;
    margin: 10px 4px;
    transition: 0.3s ease;
  }

  .nav-cta {
    background: var(--secondary-color);
    color: var(--light);
    padding: 9px 10px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s ease;

  }

  .nav-cta:hover {
    background-color: #B15C2D;
  }
}

.team-single .detail-block{
    list-style: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #efefef;
    margin-bottom: 10px;
    border-radius: 25px;
  
}
.team-single .det-texr{
  font-weight: 600;
}

@media (max-width: 575px) {
  .about-modern {
    padding: 70px 0;
  }

  .about-title {
    font-size: 28px;
  }

  .therapy-hero .therapy-title {
    font-size: 28px;
  }

  .about-image-box img {
    height: 340px;
  }

  .services-modern {
    padding: 70px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .service-img img {
    height: 200px;
  }

  .services-pro {
    padding: 80px 0;
  }

  .services-heading h2 {
    font-size: 28px;
  }

  .image-box img {
    height: 200px;
  }

  .blog-mid-cta {
    flex-direction: column;
    text-align: center;
  }

  .blog-mid-cta img {
    width: 100px;
  }

  .newsletter-sec .tnp-subscription {
    flex-direction: column;
  }

  .newsletter-sec .tnp-subscription .tnp-submit {
    width: 100%;
  }

  .newsletter-sec .tnp-subscription .tnp-email {
    flex: 1;
    height: 54px;
    border-radius: 50px;
    border: 1px solid #ddd;
    width: 300px;
    font-size: 15px;
    outline: none;
  }

  .reviews-card {
    width: 100%;
  }

  .why-choose-us .section-header .title,
  .certificates .section-header .title {
    font-size: 28px;
  }

  .feature-card h5 {
    font-size: 18px;
  }

  .whatsapp-float,
  .call-float {
    left: auto;
    left: 12px;
  }

  .whatsapp-float {
    bottom: 80px;
  }

  .call-float {
    bottom: 15px;
  }

  .stories-left h2 {
    font-size: 28px;
  }

  .sub {
    font-size: 14px;
  }

  .video-main {
    width: 210px;
  }

  .video-thumbs .thumb {
    width: 95px;
    height: 130px;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .page-title {
    font-size: 34px;
  }

  .testimonial-form-wrap {
    padding: 20px;
  }

  .stories-ui .nav-btn.left {
    left: 1px;
  }

  .stories-ui .nav-btn.right {
    right: 0px;
  }


  .stories-ui {
    padding: 50px 0;
  }

  .stories-ui .container {
    flex-direction: column;
    gap: 40px;
  }

  .stories-left,
  .stories-right {
    width: 100%;
  }

  .stories-left {
    text-align: center;
  }

  .testimonial-box {
    text-align: left;
  }

  .cta {
    margin: 0 auto;
  }

  /* VIDEO AREA */
  .stories-right {
    justify-content: center;
  }

  .video-stack {
    flex-direction: column;
    align-items: center;
  }

  .video-main {
    width: 240px;
  }

  .video-thumbs {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
  }

  .video-thumbs .thumb {
    width: 110px;
    height: 150px;
  }

  /* NAV BUTTONS */
  .nav {
    width: 40px;
    height: 40px;
  }

  .about-banner {
    padding: 70px 10px;
  }

  .about-banner a {
    font-size: 15px;

  }

  .about-btn {
    margin: 5px 2px;
  }
}

/* testimonial */

/* Tablet */
@media (max-width: 1024px) {
  .stories-ui .container {
    gap: 40px;
  }

  .video-main {
    width: 220px;
  }

  .video-thumbs .thumb {
    width: 100px;
    height: 140px;
  }
}