/* Healthcare Page Styling */
/* Updated Color Scheme */
:root {
  --blue-main: #e6ed7f;          /* deep teal-blue */
  --blue-accent: #017d39df;        /* bright teal */
  --blue-light: #94d2bd;         /* light teal */
  --green-main: #8aff5f;         /* original green main */
  --green-accent: #4a7c3b;       /* original green accent */
  --green-light: #fdf8bcf3;        /* original green light */
  --blue-shadow: rgba(10, 147, 150, 0.12);
  --blue-card:  #9df5af53;
  --blue-dark: #023047;
  --white: #ffffff;
  --partner-bg: linear-gradient(135deg, var(--green-accent), var(--green-main));
  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: white;
  color: var(--text-dark);
  line-height: 1.6;
}


.banner-slider {
  position: relative;
  width: 100%;
  height: 550px;
  margin-top: 0px;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 0 20px;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content h1 {
  font-size: 2.8em;
  margin-bottom: 12px;
}

.slide-content p {
  font-size: 1.3em;
}

.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator.active {
  background: #177f46;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  background: #ffffffdd;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

section h2 {
  font-size: 1.8em;
  color: #0db30b;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

ul {
  margin-left: 20px;
  margin-top: 10px;
}

ul li {
  line-height: 1.8em;
  color: #0c0c0c;
}

.testimonial-section {
  background: #fdfeff;
  border-left: 6px solid #27764a;
}

.testimonial {
  margin-top: 20px;
  padding: 15px 20px;
  background: #f3f1f1;
  border-radius: 8px;
  font-style: italic;
  color: #201a1a;
  font-size: large;
}

.testimonial span {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  color: #236d32;
}

.cta {
  text-align: center;
  font-size: large;
  background: #f7ff9c81;
  padding: 60px 20px;
  border-radius: 14px;
  margin: 60px auto;
  max-width: 900px;
  color: #1b1b1b;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.cta .btn {
  margin-top: 20px;
  padding: 12px 28px;
  background: #10532a;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.cta .btn:hover {
  background: #065c25;
}


@media screen and (max-width: 768px) {
  .slide-content h1 {
    font-size: 2em;
  }

  .slide-content p {
    font-size: 1em;
  }

  .cta h2 {
    font-size: 1.6em;
  }

  section {
    padding: 40px 15px;
  }
}
