







/* About Us page styling */
.about-section {
  background-color: #ffffff;
  padding: 3rem 2rem;
  color: #2f5061;
  max-width: 900px;
  margin: 0 auto 4rem auto;
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-height: none !important;
  overflow: visible !important;
}


.about-section h1 {
  font-weight: 600;
  color: #367d84;
  margin-bottom: 0.3rem;
  word-break: break-word; /* better wrapping */
}

.about-section .subheading {
  font-weight: 300;
  font-size: 1.25rem;
  color: #e57f84;
  word-break: break-word;
}

.about-section h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #4297a0;
  font-weight: 600;
  border-bottom: 2px solid #e57f84;
  padding-bottom: 0.25rem;
  word-break: break-word;
}

.about-section p {
  margin-bottom: 1rem;
  word-break: break-word;
}

.team-list {
  list-style: inside disc;
  margin-top: 1rem;
  padding-left: 0;
  color: #385e72;
  font-weight: 500;
  word-break: break-word;
}

.team-list li {
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    padding: 2rem 1rem;
    max-width: 100%;
  }
  .about-section h1 {
    font-size: 1.8rem;
  }
  .about-section .subheading {
    font-size: 1.1rem;
  }
  .about-section h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .about-section {
    padding: 1.5rem 1rem;
  }
  .about-section h1 {
    font-size: 1.5rem;
  }
  .about-section .subheading {
    font-size: 1rem;
  }
  .about-section h2 {
    font-size: 1.2rem;
  }
  .team-list {
    font-size: 0.9rem;
  }
}


.dr-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.dr-content {
  flex: 2;
  color: #2f5061;
}

.dr-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dr-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 15px;
  border: 4px solid #ffffff;
  box-shadow: 0 0 20px #367d84, 0 0 40px rgba(54, 125, 132, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #4297a0, 0 0 60px rgba(66, 151, 160, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .dr-section {
    flex-direction: column;
    text-align: center;
  }

  .dr-image {
    margin-top: 1.5rem;
  }
}


