.section-company .info-card {
  background-color: white;
  padding: 15px;
  border-radius: 5px;
  border: 1px dashed grey;
}
.section-company .info-card:not(:last-child) {
  margin-bottom: 10px;
}

.section-chairman {
  background-color: rgb(254.2331838565, 247.331838565, 236.7668161435);
}
.section-chairman .img-card {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: stretch;
  border: 1px double lightgrey;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
}
.section-chairman .img-card img {
  display: block;
  width: 100px;
  height: 100px;
}
.section-chairman .img-card .info {
  padding: 15px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-directors .profile-card {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.section-directors .profile-card .card-body {
  width: 100%;
  padding: 0;
}
.section-directors .profile-card .card-body img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-directors .profile-card .name {
  font-weight: bold;
}
.section-directors .profile-card .designation {
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .section-directors .profile-card {
    margin-bottom: 15px;
  }
  .section-directors .profile-card .card-body {
    height: auto;
  }
  .section-directors .profile-card .name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 1.2rem;
    height: calc(2 * 1.2rem);
  }
  .section-directors .profile-card .designation {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 1.2rem;
    height: calc(2 * 1.2rem);
  }
}

.section-vision-premium {
  background: linear-gradient(rgba(0, 123, 217, 0.85), rgba(0, 123, 217, 0.7)), url("../img/hospital-arial.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
}
.section-vision-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.4) 100%);
}
.section-vision-premium .vision-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.section-vision-premium .vision-content .quote-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.section-vision-premium .vision-content .vision-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.section-vision-premium .vision-content .vision-text {
  font-size: 1.4rem;
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
  margin: 0;
}

.section-mission-new {
  padding: 80px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}
.section-mission-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#007bd9 0.3px, transparent 0.3px);
  background-size: 20px 20px;
  opacity: 0.05;
}
.section-mission-new .mission-elegant-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px;
  background: white;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  position: relative;
  border: 1px solid rgba(0, 123, 217, 0.08);
}
.section-mission-new .mission-elegant-container::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 10%;
  right: 10%;
  height: 5px;
  background: linear-gradient(90deg, transparent, #007bd9, transparent);
  filter: blur(5px);
  opacity: 0.3;
}
.section-mission-new .mission-elegant-container .mission-content-wrapper {
  position: relative;
  z-index: 1;
}
.section-mission-new .mission-elegant-container .mission-content-wrapper p {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  line-height: 2;
  color: #4a5568;
  text-align: center;
  margin-bottom: 2rem;
}
.section-mission-new .mission-elegant-container .mission-content-wrapper p:last-child {
  margin-bottom: 0;
}
.section-mission-new .mission-elegant-container .mission-content-wrapper p strong,
.section-mission-new .mission-elegant-container .mission-content-wrapper p b {
  color: #007bd9;
  font-weight: 700;
  position: relative;
}
.section-mission-new .mission-elegant-container .mission-content-wrapper p strong::after,
.section-mission-new .mission-elegant-container .mission-content-wrapper p b::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 123, 217, 0.1);
  z-index: -1;
}
.section-mission-new .mission-elegant-container .mission-content-wrapper .mission-main-text {
  font-weight: 400;
}
.section-mission-new .mission-elegant-container .mission-content-wrapper .mission-sub-text {
  font-size: 1.15rem;
  color: #718096;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}
@media (max-width: 768px) {
  .section-mission-new .mission-elegant-container {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .section-mission-new .mission-elegant-container p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
}

.section-key-persons {
  padding: 80px 0;
  background-color: white;
}
.section-key-persons .doc-card-x {
  background: white;
  border-radius: 20px;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}
.section-key-persons .doc-card-x:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.section-key-persons .doc-card-x .card-body {
  height: 100%;
}
.section-key-persons .doc-card-x .card-body .row {
  height: 100%;
  align-items: stretch;
}
.section-key-persons .doc-card-x .doc-img-wrapper {
  background-color: #f1f5f9;
  overflow: hidden;
  height: 100%;
}
.section-key-persons .doc-card-x .doc-img-wrapper .doc-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.section-key-persons .doc-card-x:hover .doc-img {
  transform: scale(1.05);
}
.section-key-persons .doc-card-x .desc {
  padding: 1.5rem 2.5rem !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.section-key-persons .doc-card-x .desc .doc-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.25rem;
}
.section-key-persons .doc-card-x .desc .doc-spec {
  color: #007bd9;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.section-key-persons .doc-card-x .desc .qualifications {
  margin-bottom: 0.75rem;
  color: #718096;
  font-size: 0.95rem;
}
.section-key-persons .doc-card-x .desc .qualifications p {
  margin-bottom: 0.15rem;
  line-height: 1.4;
}
.section-key-persons .doc-card-x .desc .qualifications ul {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}
.section-key-persons .doc-card-x .desc .qualifications ul li {
  margin-bottom: 0.15rem;
}
.section-key-persons .doc-card-x .desc .doc-specialities {
  font-size: 0.85rem;
  color: #4a5568;
  background: #f8fafc;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0, 123, 217, 0.05);
}
.section-key-persons .doc-card-x .desc .doc-specialities i {
  color: #007bd9;
}
.section-key-persons .doc-card-x .desc .button-text {
  margin-top: auto;
  padding-bottom: 0.5rem;
}

#docModal .doc-img {
  width: 100%;
  border-radius: 10px;
}
#docModal .doc-specs ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#docModal .doc-specs ul li {
  display: inline-block;
}
#docModal .doc-specs ul li i {
  color: #f6a529;
  font-size: 0.8rem;
  margin-right: 5px;
}
#docModal .doc-specs ul li:not(:first-child) i {
  margin-left: 5px;
}
@media (max-width: 768px) {
  #docModal .doc-img {
    margin-bottom: 20px;
  }
}

#sectionServices {
  background: radial-gradient(circle at top right, #fdfdfe 0%, #f7fafc 100%);
  position: relative;
  overflow: hidden;
}
#sectionServices::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#007bd9 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  opacity: 0.03;
}
#sectionServices .animate-card {
  opacity: 0;
  animation: cardFadeInUp 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes cardFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#sectionServices .service-card {
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  margin-bottom: 1rem;
}
#sectionServices .service-card .image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
  background-color: #f1f5f9;
}
#sectionServices .service-card .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#sectionServices .service-card .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 123, 217, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(2px);
}
#sectionServices .service-card .view-details {
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid white;
  padding: 10px 24px;
  border-radius: 50px;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#sectionServices .service-card .service-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: white;
  position: relative;
  z-index: 1;
}
#sectionServices .service-card .title {
  color: #1a202c;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  transition: all 0.3s ease;
  line-height: 1.3;
}
#sectionServices .service-card .summary {
  text-align: start;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  line-height: 1.2rem;
  height: calc(3 * 1.2rem);
  height: auto;
  min-height: 4.8rem;
}
#sectionServices .service-card .btn-text {
  color: #007bd9;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0;
  background: transparent;
  border: none;
}
#sectionServices .service-card .btn-text i {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#sectionServices .service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 123, 217, 0.12);
  border-color: rgba(0, 123, 217, 0.1);
}
#sectionServices .service-card:hover .image-overlay {
  opacity: 1;
}
#sectionServices .service-card:hover .view-details {
  transform: translateY(0);
}
#sectionServices .service-card:hover .image-wrapper img {
  transform: scale(1.1);
}
#sectionServices .service-card:hover .title {
  color: #007bd9;
}
#sectionServices .service-card:hover .btn-text {
  color: #007bd9;
}
#sectionServices .service-card:hover .btn-text i {
  transform: translateX(8px);
}
#sectionServices .row > [class*=col-] {
  display: flex;
}
@media (max-width: 992px) {
  #sectionServices .service-card img {
    height: 200px;
  }
  #sectionServices .service-card .service-content {
    padding: 1.25rem;
  }
  #sectionServices .service-card .title {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  #sectionServices {
    background: white;
  }
  #sectionServices .service-card {
    margin-bottom: 1.5rem;
  }
  #sectionServices .service-card img {
    height: 180px;
  }
  #sectionServices .service-card .service-content {
    padding: 1.25rem;
  }
  #sectionServices .service-card .title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  #sectionServices .service-card .summary {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
  #sectionServices .service-card .btn-text {
    font-size: 0.875rem;
  }
}

.service-list-v2 {
  padding: 100px 0;
  background-color: #f1f5f9;
  position: relative;
}
.service-list-v2 .service-card-v2 {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 25px 45px -10px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 123, 217, 0.03);
  margin-bottom: 50px;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none !important;
  display: flex;
  position: relative;
}
.service-list-v2 .service-card-v2 .row {
  width: 100%;
  margin: 0;
}
.service-list-v2 .service-card-v2 .image-column {
  padding: 1.5rem;
  min-height: 280px;
  max-height: 350px;
}
.service-list-v2 .service-card-v2 .image-column img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: transform 0.8s ease;
}
.service-list-v2 .service-card-v2 .content-column {
  padding: 3.5rem 4rem 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-list-v2 .service-card-v2 .service-meta {
  color: #007bd9;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.7rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-list-v2 .service-card-v2 .service-meta::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #007bd9;
  border-radius: 50%;
}
.service-list-v2 .service-card-v2 .title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.service-list-v2 .service-card-v2 .summary {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.service-list-v2 .service-card-v2 .btn-premium {
  padding: 12px 35px;
  background: #f8fafc;
  color: #1a202c !important;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
.service-list-v2 .service-card-v2 .btn-premium i {
  color: #007bd9;
  transition: transform 0.3s ease;
}
.service-list-v2 .service-card-v2 .btn-premium:hover {
  background: #007bd9;
  color: white !important;
  border-color: #007bd9;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 123, 217, 0.15);
}
.service-list-v2 .service-card-v2 .btn-premium:hover i {
  color: white;
  transform: translateX(5px);
}
.service-list-v2 .service-card-v2:hover {
  transform: translateY(-10px) scale(1.005);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1), 0 15px 30px -10px rgba(0, 123, 217, 0.08);
  z-index: 2;
}
.service-list-v2 .service-card-v2:hover .image-column img {
  transform: scale(1.03);
}
.service-list-v2 .service-item-v2:nth-child(even) .row {
  flex-direction: row-reverse;
}
.service-list-v2 .service-item-v2:nth-child(even) .content-column {
  padding: 3.5rem 1.5rem 3.5rem 4rem;
}
@media (max-width: 992px) {
  .service-list-v2 .service-card-v2 .title {
    font-size: 1.75rem;
  }
}
@media (max-width: 991px) {
  .service-list-v2 .service-card-v2 .content-column {
    padding: 2rem 2.5rem 2rem 1rem;
  }
  .service-list-v2 .service-item-v2:nth-child(even) .content-column {
    padding: 2rem 1rem 2rem 2.5rem;
  }
}
@media (max-width: 768px) {
  .service-list-v2 .service-card-v2 {
    flex-direction: column;
    border-radius: 24px;
  }
  .service-list-v2 .service-card-v2 .image-column {
    min-height: 250px;
    padding: 1rem;
  }
  .service-list-v2 .service-card-v2 .content-column {
    padding: 2rem 1.5rem !important;
    text-align: center;
  }
  .service-list-v2 .service-card-v2 .service-meta {
    justify-content: center;
  }
  .service-list-v2 .service-card-v2 .btn-premium {
    margin: 0 auto;
  }
}/*# sourceMappingURL=about.css.map */