.about-banner {
  background: url("../images/page.png") center/cover no-repeat;
  height: 260px;
  display: flex;
  align-items: center;
  position: relative;
}

/* Dark gradient overlay */
.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 30, 50, 0.85),
    rgba(120, 90, 60, 0.75)
  );
}



.about-banner h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;

  /* start hidden left */
  opacity: 0;
  transform: translateX(-80px);
  animation: slideLeft 1s ease forwards;
}

.banner-underline {
  width: 80px;
  height: 3px;
  background: red;
  margin: 0 auto;

  /* start hidden right */
  opacity: 0;
  transform: translateX(80px);
  animation: slideRight 1s ease forwards;
  animation-delay: 0.3s;
}

/* Left animation */
@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Right animation */
@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Mobile */
@media (max-width: 767px) {
  .about-banner {
    height: 180px;
  }

  .about-banner h1 {
    font-size: 28px;
  }
}
.stomach-info {
  background: #f5f5f5;
  padding: 70px 0;
}

/* Image */
.stomach-img {
  max-width: 360px;
}

/* Text */
.stomach-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #111;
  margin-bottom: 18px;
}

/* Bold headings inside paragraph */
.stomach-info strong {
  font-weight: 700;
}

/* Mobile */
@media (max-width: 767px) {
  .stomach-img {
            width: 300px;
    margin-bottom: 25px;
  }

  .stomach-info p {
    font-size: 15px;
  }
}
.pancreas-info {
  background: #f5f5f5;

}

/* Ordered list */
.pancreas-list {
  font-size: 16px;
  line-height: 1.8;
  color: #111;
  padding-left: 20px;
}

.pancreas-list > li {
  margin-bottom: 14px;
}

/* Inner bullets */
.pancreas-list ul {
  margin-top: 6px;
  padding-left: 18px;
}

.pancreas-list li strong {
  font-weight: 700;
}

/* Bottom note paragraph */
.pancreas-note {
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.8;
  color: #111;
}

/* Mobile */
@media (max-width: 767px) {
  .pancreas-list,
  .pancreas-note {
    font-size: 15px;
  }
}
.capsule-info {
  background: #f5f5f5;
  /* padding: 70px 0; */
  padding-bottom: 30px;
}

/* Intro text */
.capsule-intro {
  font-size: 16px;
  margin-bottom: 18px;
}

/* Subtitle */
.capsule-subtitle {
  margin-top: 25px;
  font-size: 17px;
  font-weight: 600;
}

/* Ordered list */
.capsule-list {
  font-size: 16px;
  line-height: 1.8;
  color: #111;
  padding-left: 20px;
}

.capsule-list > li {
  margin-bottom: 12px;
}

.capsule-list li strong {
  font-weight: 700;
}

/* Paragraph notes */
.capsule-note {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #111;
}

/* Mobile */
@media (max-width: 767px) {
  .capsule-intro,
  .capsule-subtitle,
  .capsule-list,
  .capsule-note {
    font-size: 15px;
  }
}



.sclerotherapy-info {
  background: #f5f5f5;
  padding-bottom: 30px;
}

/* ordered list */
.sclerotherapy-list {
  font-size: 16px;
  line-height: 1.8;
  color: #111;
  padding-left: 20px;
}

.sclerotherapy-list > li {
  margin-bottom: 16px;
}

.sclerotherapy-list ul {
  margin-top: 8px;
  padding-left: 18px;
}

.sclerotherapy-list li strong {
  font-weight: 700;
}

/* subtitle */
.sclerotherapy-subtitle {
  margin-top: 25px;
  font-size: 17px;
  font-weight: 700;
}

/* bullets */
.sclerotherapy-bullets {
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.sclerotherapy-bullets li {
  margin-bottom: 8px;
}

/* note */
.sclerotherapy-note {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
}

/* mobile */
@media (max-width: 767px) {
  .sclerotherapy-list,
  .sclerotherapy-bullets,
  .sclerotherapy-note {
    font-size: 15px;
  }
}



.gi-bleeding-info {
  background: #f5f5f5;
  padding-bottom: 30px;
}

/* ordered list */
.gi-bleeding-list {
  font-size: 16px;
  line-height: 1.8;
  color: #111;
  padding-left: 20px;
}

.gi-bleeding-list > li {
  margin-bottom: 16px;
}

.gi-bleeding-list ul {
  margin-top: 8px;
  padding-left: 18px;
}

.gi-bleeding-list li strong {
  font-weight: 700;
}

/* note paragraphs */
.gi-bleeding-note {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
}

/* mobile */
@media (max-width: 767px) {
  .gi-bleeding-list,
  .gi-bleeding-note {
    font-size: 15px;
  }
}
.contact-appointment {
  background: #f2f2f2;
  padding: 70px 0;
}

/* title */
.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* red underline */
.underline {
  width: 70px;
  height: 3px;
  background: red;
  margin-bottom: 25px;
}

/* contact items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: red;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 18px;
}

/* appointment box */
.appointment-box {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* inputs */
.form-control {
  height: 48px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* submit button */
.submit-btn {
  background: red;
  color: #fff;
  border: none;
  padding: 12px 35px;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #c40000;
}

/* mobile */
@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
    text-align: center;
  }

  .underline {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: #1e73be;   /* blue color */
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.scroll-top:hover {
  background: #155a96;
}

/* show when scroll */
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
