/* ====== About Section ====== */
.about-massage {
  background: #f9fafb;
}

.main-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.sub-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
}

.text-para {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
}

.location-text {
  color: #000;
  font-weight: 600;
  margin-top: 10px;
}

.about-img-placeholder {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 20px; /* rounded corners */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* soft shadow */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.6s ease;
}
/* ====== Mission Section ====== */
.mission-area {
  background: #fff;
}

.mission-list {
  list-style: none;
  padding-left: 0;
}

.mission-list li {
  color: #333;
  font-size: 1rem;
  margin-bottom: 10px;
}

.mission-img-placeholder {
  width: 100%;
  height: 350px;
  background: #e8f0ff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


/* ===== COUNTER SECTION ===== */
.counter-section {
  background: #ffe6f0; /* light pink background */
  padding: 60px 0;
  text-align: center;
}

.counter-box {
  margin-bottom: 40px;
}

.counter-box h2 {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.counter-box p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* ===== WHY CHOOSE & VALUES SECTION ===== */
.why-values {
  background: #fff;
  padding: 60px 0;
}

.why-values h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.why-values ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-values ul li {
  position: relative;
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
  padding-left: 20px;
  transition: color 0.3s ease;
}

/* Small arrow bullet */
.why-values ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #f87eac; /* soft pink accent */
  font-weight: bold;
  transition: color 0.3s ease;
}

/* Hover effect — text + bullet turns pink */
.why-values ul li:hover {
  color: #f87eac;
}

.why-values ul li:hover::before {
  color: #f87eac;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .counter-box h2 {
    font-size: 36px;
  }
  .why-values h3 {
    font-size: 20px;
  }
}


/* ====== Responsive ====== */
@media (max-width: 992px) {
  .about-massage, .mission-area {
    text-align: center;
  }

  .about-img-placeholder, .mission-img-placeholder {
    margin-top: 20px;
    height: 300px;
  }
}
