/* ===== Banner ===== */
.about-banner {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
p{
    
    font-weight: 400;
    line-height: 31px;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.about-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.about-banner-content h1 {
  font-size: 42px;
  font-weight: 600;
}

.about-breadcrumb {
  font-size: 14px;
  margin-bottom: 8px;
}

/* ===== Mission / Vision ===== */
.about-section {
  background: #f5f4f0 !important;
  padding: 50px 20px;
}

.about-cards {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 30px;
}

.about-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  flex: 1;
}

.about-card h3 {
  margin: 15px 0;
  color: #2E8B57;
}
.about-split-section {
  background: #FBF9F4;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-split-container {
  max-width: 100%;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #f5f4f0 !important;
  display: flex;
  gap: 50px;
  /* align-items: center; */

}

/* IMAGE */
.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
width: 100%;
    border-radius: 10px;
  height: auto;
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-subtitle {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #2E8B57;
  margin-bottom: 18px;
}

.about-title {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 600;
  color: #2E8B57;
  margin-bottom: 25px;
}

.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 18px;
}

/* LINK */
.about-link {
  display: inline-block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000000;
  text-decoration: none;
  border-bottom: 2px solid #2E8B57;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.about-link:hover {
  color: #2E8B57;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-split-container {
    flex-direction: column;
    text-align: center;
  }

  .about-title {
    font-size: 32px;
  }
}

.about-icon {
  font-size: 42px;
  color: #2E8B57;
}

/* ===== Expertise ===== */
.expertise-section {
      padding: 22px 20px;
      margin-bottom: 20px;
}

.expertise-section h2 {
  color: #2E8B57;
  margin-bottom: 40px;
}

.expertise-grid {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🔥 4 equal columns */
  gap: 25px;
}


.expertise-item {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
}

.expertise-item i {
  font-size: 30px;
  color: #2E8B57;
  margin-bottom: 10px;
}

.expertise-item span {
  display: block;
  font-weight: 500;
}

.features-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #5a438f, #3f2b6f);
  color: #fff;
}

.features-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #ffffff;
  color: #5a438f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.feature-card:hover .icon-circle {
  background: #38c172;
  color: #fff;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
}

/* CTA */
.features-cta {
  text-align: center;
  margin-top: 50px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #38c172;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #2fa463;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .features-container {
    grid-template-columns: 1fr;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about-cards {
    flex-direction: column;
  }

  .about-banner-content h1 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .expertise-grid {
    grid-template-columns: 1fr; /* one item per row */
    justify-items: center;      /* center horizontally */
  }

  .expertise-item {
    width: 100%;
    max-width: 300px;           /* nice card width */
    margin: 0 auto;             /* center block */
  }
}
.expertise-item i{
        font-size: 40px;
}


/* ===== Services Tab Image Fix ===== */
.tab-content .img {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* ===== Mobile View ===== */
@media (max-width: 767px) {
  .tab-content .img {

        width: 285px !important;
        height: 205px !important;   /* mobile sathi perfect */
        
 margin: 0 auto 20px auto;
  }

  .nav-pills .nav-link {
    text-align: center;
  }
}

/* ===== Mobile View Navbar ===== */
@media (max-width: 991px) {

  /* Navbar content center */
  #ftco-navbar .container {
    flex-direction: column;
  }

  /* Logo center */
  .navbar-brand {
    margin: 0 auto 10px auto;
    justify-content: center;
  }

  /* Hamburger button center & below logo */
  .navbar-toggler {
    margin: 0 auto 10px auto;
  }

  /* Menu center */
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin: 5px 0;
  }
}

.watch{

      background: #2e8b57;
    border: solid 1px;
    border-radius: 5px;
    padding: 10px;
    color: #fff !important;
}


.therapy-section {
  padding: 60px 20px;
  background: #f7faf7;
  font-family: Arial, sans-serif;
}

.therapy-container {
  max-width: 1100px;
  margin: auto;
}

.therapy-title {  
  text-align: center;
  font-size: 32px;
  color: #2f6f4e;
  margin-bottom: 40px;
}

/* Common row style */
.therapy-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

/* 3 cards in first row */
.therapy-row-three {
  grid-template-columns: repeat(3, 1fr);
}

/* 2 cards in second row */
.therapy-row-two {
  grid-template-columns: repeat(2, 1fr);
}

/* Card design */
.therapy-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.therapy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.therapy-card h3 {
  color: #2f6f4e;
  margin-bottom: 12px;
  font-size: 22px;
}

.therapy-card p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .therapy-row-three,
  .therapy-row-two {
    grid-template-columns: 1fr;
  }
}

/* Hero Section */
    .therapy-hero {
      background: url('../images/Blog_banner.jpg') center/cover no-repeat;
      color: #fff;
      padding: 90px 0;
      text-align: center;
    }

    .therapy-hero h1 {
      font-size: 42px;
      font-weight: 700;
    }

    /* Content Section */
    .therapy-content {
      padding: 60px 0;
    }

    .therapy-box {
      margin-top: 10px;
      margin-bottom: 10px;
      background: #fff;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.06);
      transition: 0.3s;
    }

    .therapy-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    }

    .therapy-box h3 {
      color: #2e8b57;
      margin-bottom: 15px;
    }

    /* CTA */
    .therapy-cta {
      background: #2e8b57;
      color: #fff;
      padding: 50px 0;
      text-align: center;
    }

    .therapy-cta a {
      background: #fff;
      color: #2e8b57;
      padding: 12px 28px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .therapy-cta a:hover {
      background: #e8f5f3;
    }