    
/* ===== TREATMENTS SECTION ===== */
.section-title {
  color: #243E70;
}
.treatments-section {
  padding: 80px 20px;
  background: #ffffff;
}

.treatments-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* GRID (3 per row) */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 🔥 3 cards per row */
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.service-card {
  background: #f9fbf8;
  padding: 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* hover effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* IMAGE */
.service-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 15px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

/* zoom effect */
.service-card:hover img {
  transform: scale(1.08);
}

/* TEXT */
.service-card h3 {
  font-size: 18px;
  color: #E63946;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr); /* tablet */
  }
}

@media (max-width: 576px) {
  .treatments-grid {
    grid-template-columns: 1fr; /* mobile */
  }
}


/* center wrapper */
.btn-center {
  text-align: center;
  margin-top: 40px;
}

/* button style */
.btn-appointment {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  color: #fff;
  background:linear-gradient(135deg, #E63946, #F77F00);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* hover */
.btn-appointment:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}





/* ===== SPECIAL TREATMENT SECTION ===== */
/* ===== SECTION ===== */
.treatment-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f7faf8, #eef5f2);
}

/* TITLE CENTER */
.treatment-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #243E70;
  margin-bottom: 40px;
  position: relative;
}

.treatment-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #E63946;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* LAYOUT */
.treatment-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: stretch;   /* 🔥 equal height */
  gap: 40px;
}

/* IMAGE LEFT */
.treatment-image {
  flex: 1;
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* CONTENT RIGHT */
.treatment-content {
  flex: 1;
  background: rgba(255,255,255,0.8);
  padding: 35px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  display: flex;
  align-items: center; /* vertical center */
}

/* TEXT LEFT ALIGN */
.treatment-text {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  text-align: left;
}

/* MOBILE */
@media (max-width: 992px) {
  .treatment-container {
    flex-direction: column;
  }

  .treatment-image img {
    height: 280px;
  }
}


/* ===== FIRST AID SECTION ===== */
.firstaid-section {
  padding: 80px 20px;
  background: #ffffff;
}

.firstaid-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #243E70;
  margin-bottom: 40px;
}

.firstaid-title span {
  font-size: 18px;
  color: #777;
}

/* GRID */
.firstaid-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.firstaid-item {
  background: #f9fbf8;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  transition: 0.3s;
}

.firstaid-item:hover {
  transform: translateY(-5px);
  border-color: #E63946;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.firstaid-item h4 {
  font-size: 16px;
  color: #243E70;
  margin-bottom: 8px;
}

.firstaid-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* DOSAGE BOX */
.dosage-box {
  max-width: 800px;
  margin: 50px auto 0;
  background: linear-gradient(135deg, #eef5f2, #f7faf8);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
}

.dosage-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #243E70;
}

.dosage-box p {
  font-size: 14px;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .firstaid-container {
    grid-template-columns: 1fr;
  }
}