/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Variables */
.shade {
  background-color: rgba(203, 240, 204, 0.5);
  border-radius: 20px;
  padding: 10px;
}

.med-shade {
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  background: rgba(203, 240, 204, 0.5);
  padding: 0px;
  transition: box-shadow 0.3s;
}

/* About Section */
.about-hero {
  background: rgb(246.628458498, 160.8201581028, 86.871541502);
  padding: 8rem 20px 2rem;
  border-radius: 6px;
  text-align: center;
}
.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(122, 191, 14, 0.3);
}
.about-hero p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.about-section {
  background: #f9f9f9;
  padding: 3rem 20px 2rem;
}
.about-section .about-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 20px;
}
.about-section .about-container .about-text {
  flex: 1;
}
.about-section .about-container .about-text h2 {
  font-size: 2.2rem;
  color: #7abf0e;
  margin-bottom: 15px;
}
.about-section .about-container .about-text p {
  margin-bottom: 10px;
}
.about-section .about-container .quotation {
  margin: 20px 0;
  padding: 20px 15px;
  border-left: 4px solid #7abf0e;
  border-radius: 10px;
  background: rgba(122, 191, 14, 0.1);
}
.about-section .about-container .quotation p {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
}
.about-section .about-container .quotation p i {
  color: #f9f9f9;
  font-size: 1.2rem;
  background-color: #7abf0e;
  border-radius: 40%;
  padding: 5px;
}
.about-section .about-container .about-image {
  flex: 1;
}
.about-section .about-container .about-image img {
  width: 85%;
  border-radius: 6px;
  margin-left: 20px;
}

.mission-vision-values {
  background: rgba(203, 240, 204, 0.5);
  padding: 60px 20px;
  text-align: center;
}
.mission-vision-values .section-title {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 40px;
}
.mission-vision-values .mvv-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.mission-vision-values .mvv-container .mvv-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.mission-vision-values .mvv-container .mvv-card:hover {
  transform: translateY(-8px);
}
.mission-vision-values .mvv-container .mvv-card h3 {
  margin-bottom: 15px;
  color: #2e7d32;
  font-size: 1.4rem;
}
.mission-vision-values .mvv-container .mvv-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.healthcare-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fc, #eef2f7);
}
.healthcare-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.healthcare-section .healthcare-content {
  flex: 1;
  min-width: 300px;
}
.healthcare-section .healthcare-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #7abf0e;
}
.healthcare-section .healthcare-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}
.healthcare-section .healthcare-content .healthcare-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.healthcare-section .healthcare-content .healthcare-list li {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #333;
}
.healthcare-section .healthcare-content .healthcare-list li .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 50%;
  background: #6c63ff;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}
.healthcare-section .healthcare-content .healthcare-list li:hover .icon {
  background: #4b45d6;
  transform: scale(1.1);
}
.healthcare-section .healthcare-image {
  flex: 1;
  min-width: 280px;
}
.healthcare-section .healthcare-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .healthcare-section .container {
    flex-direction: column;
    text-align: center;
  }
  .healthcare-content h2 {
    font-size: 2rem;
  }
}/*# sourceMappingURL=about.css.map */