@import "./variables.css";

/* Top Nav */
.top-nav {
  padding: 10px 0;
  background: var(--primary);
}
.top-nav p {
  font-size: 14px;
  font-weight: 400;
}
.top-nav p span {
  color: #ffcbd8;
  margin-right: 30px;
}
.top-nav p span a {
  font-weight: 500;
  color: var(--light);
  display: inline-block;
  margin-left: 5px;
}
.top-nav .social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.top-nav .social a {
  font-size: 16px;
  color: var(--light-alt);
}

.diabetic-testimonials-section .testimonial-carousel .owl-nav {
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 50px;
}

/*  */
.footer-address {
  margin-top: 100px;
}
.footer-address span {
  line-height: 25px;
}
/* Navbar */
.header {
  background: var(--light);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 9;
  transition: 0.5s ease all;
}
.header.sticky {
  position: sticky;
  top: 0;
}
.header.sticky .navbar {
  padding: 5px 0;
}
.header .navbar-brand img {
  width: 220px;
  transition: 0.5s ease all;
}
.header.sticky .navbar-brand img {
  width: 170px;
}
.header .navbar-nav {
  gap: 10px;
  transition: 0.5s ease all;
}
.header.sticky .navbar-nav {
  gap: 5px;
}
.header .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--dark-alt);
  transition: 0.5s ease all;
}
.header .nav-item .nav-link:hover {
  color: var(--secondary);
}
.header .dropdown .dropdown-menu {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  border-top: 3px solid var(--primary);
  background: var(--light-alt);
  box-shadow: var(--shadow);
  outline: 0;
}
.header .dropdown .dropdown-menu .dropdown-item {
  transition: 0.5s ease all;
  padding: 15px 20px;
  border-bottom: 1px solid #62476c3d;
}
.header .dropdown .dropdown-menu .dropdown-item.active,
.header .dropdown .dropdown-menu .dropdown-item:active,
.header .dropdown .dropdown-menu .dropdown-item:hover,
.header .dropdown .dropdown-menu .dropdown-item:focus {
  background: var(--light-alt);
}

/* Hero Section */
.hero .carousel-caption {
  inset: auto;
  padding: 50px;
  background: var(--light);
  display: block;
  box-shadow: var(--shadow);
}
.hero .carousel-caption.cap-start {
  top: 40%;
  right: 9%;
  text-align: right;
  border-right: 5px solid var(--primary);
}
.hero .carousel-caption.cap-end {
  top: 40%;
  left: 9%;
  text-align: left;
  border-left: 5px solid var(--primary);
}
.hero .carousel-caption h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-alt);
  line-height: 100%;
  text-transform: capitalize;
}
.hero .carousel-caption h5 span {
  font-size: 40px;
  font-family: var(--cursive);
  color: var(--secondary);
  display: block;
}
.hero .carousel-indicators button {
  width: 15px;
  height: 15px;
  background: var(--dark);
  border: 0;
}
.hero .carousel-indicators button.active {
  background: var(--secondary);
}

/* About Section */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/about-bg.png);
  background-position: top;
  background-size: contain;
  z-index: 1;
}
.about-section .container {
  position: relative;
  z-index: 2;
}
.about-section h6 {
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  color: var(--dark-alt);
  line-height: 150%;
}
.about-section h6 span {
  display: block;
}
.about-section h6 b {
  font-weight: 700;
  color: var(--primary);
}
.about-section ul li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 150%;
  display: block;
  padding: 10px 10px 10px 20px;
  background: var(--light-alt);
  border-left: 5px solid var(--primary);
}
.about-section .image {
  width: 100%;
  position: relative;
  border-left: 10px solid var(--primary);
  padding: 10px 0 10px 15px;
}
.about-section .image::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0.2;
  filter: blur(5px);
  box-shadow: var(--shadow);
}
.about-section .image img {
  width: 100%;
  position: relative;
  z-index: 2;
}
.about-section .image span {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: var(--light-alt);
  display: inline-block;
  text-align: center;
  padding: 20px;
  box-shadow: var(--shadow);
  border-right: 3px solid var(--secondary);
  border-bottom: 5px solid var(--secondary);
}
.about-section .image span b {
  display: block;
  font-size: 50px;
  font-family: var(--cursive);
  font-style: normal;
  color: var(--secondary);
}
.about-section .image span i {
  display: block;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  color: var(--dark);
  margin-top: 10px;
}
.about-section-alt .image {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-right: 5px solid var(--primary);
  padding-right: 15px;
}
.about-section-alt .image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.about-section-alt .text ol li {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 150%;
  display: block;
  padding: 10px 10px 10px 20px;
  background: var(--light);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--primary);
}

/* Facilities Section */
.facilities-section .icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr); */
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid #0002;
  border-right: 0;
  border-bottom: 0;
}
.facilities-section .icons::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  height: 100px;
  width: 100px;
  background: transparent;
  border-radius: 50%;
  border: 10px solid var(--primary);
  opacity: 0.5;
  z-index: 1;
  animation: rotateBox 2s linear infinite;
}
.facilities-section .icons::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  height: 100px;
  width: 100px;
  background: transparent;
  border-radius: 50%;
  border: 10px solid var(--primary);
  opacity: 0.5;
  z-index: 1;
  animation: rotateBox 2s linear infinite;
}
@keyframes rotateBox {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.facilities-section .icons .item {
  /* background: #faf0ff; */
  background: var(--light);
  padding: 30px;
  text-align: center;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 3;
  border-right: 2px solid #0002;
  border-bottom: 2px solid #0002;
}
.facilities-section .icons .item .icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  /* background: #3c1a49; */
}
.facilities-section .icons .item:nth-child(odd) .icon {
  background: var(--primary);
}
.facilities-section .icons .item img {
  position: relative;
  z-index: 2;
  width: 70px;
}
.facilities-section .icons .item h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}

/* Equipments Section */
.equipments-section .d-flex {
  gap: 30px;
}
.equipments-section .nav {
  gap: 10px;
  width: 280px;
}
.equipments-section .nav-link {
  background: var(--light);
  color: var(--dark);
  border: 2px solid #0003;
  padding: 10px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
}
.equipments-section .nav-link.active {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--light);
}
.equipments-section .tab-content {
  width: calc(100% - 310px);
}

/* Diabethos care Section */
.diabethos-care img {
  position: sticky;
  top: 120px;
}
.diabethos-care-alt .text ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.diabethos-care-alt .text ol li {
  padding: 15px;
  background: var(--light);
  box-shadow: var(--shadow);
  text-align: center;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid var(--secondary);
  border-radius: 5px;
  line-height: 150%;
}

.diabetic-testimonials-section .container {
  position: relative;
  z-index: 2;
}
.diabetic-testimonials-section .testimonial-carousel .card {
  margin: 15px 0;
  background: var(--light);
  border: 2px solid #f7e2ff;
  box-shadow: var(--shadow);
  width: 97%;
  margin: 15px auto;
}
.diabetic-testimonials-section .testimonial-carousel .card .icon {
  position: absolute;
  bottom: 25px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--light);
  border-radius: 50px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
}
.diabetic-testimonials-section .testimonial-carousel .card h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
}
.diabetic-testimonials-section .testimonial-carousel .card .card-body {
  height: 145px;
  overflow-y: initial;
}
.diabetic-testimonial .card {
  background: var(--light);
  border: 2px solid #f7e2ff;
  box-shadow: var(--shadow);

  width: 100%;
}

.diabetic-testimonials-section .testimonial-carousel .card p {
  font-size: 15px !important;
  text-align: center;
}
.diabetic-testimonial .card .card-body {
  height: 220px;
  overflow-y: scroll;
}
.col-md-8 .diabethos-icon {
  width: 70px;
  height: 50px;
  background: var(--primary);
  color: var(--light);
  border-radius: 5px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  margin-right: 15px;
}
.col-md-4 .diabethos-icon span {
  font-size: 18px;
  font-weight: 500;
  line-height: 50px;

  width: calc(100%-85px);
}

.col-md-4 .diabethos-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--light);
  border-radius: 5px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  margin-right: 15px;
}
.col-md-8 .diabethos-icon span {
  font-size: 18px;
  font-weight: 500;

  width: calc(100%-65px);
}
.diabetic-testimonials-section .testimonial-carousel .owl-nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.diabetic-testimonials-section .testimonial-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 5px !important;
  background: var(--dark) !important;
  color: var(--light) !important;
  font-size: 25px !important;
}

/* .vertical-slide .slick-slide {
  opacity: 0;
  transition: 0.5s ease all;
}
.vertical-slide .slick-active {
  opacity: 1;
} */

.details-card {
  margin-top: 50px;
  padding: 20px;
  height: 180px;
}

.details-card .diabethos-icon i {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--light-alt);
  line-height: 40px;
  text-align: center;
  margin-right: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.details-card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.map {
  height: 400px;
  /* height: 100%; */
}
.map iframe {
  width: 100%;
  min-height: 400px;
  height: 100%;
  border: 0;
  padding: 0;
  outline: 0;
  margin: 0;
}

/* Testimonials Section */
.testimonials-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: var(--secondary);
}
.testimonials-section .container {
  position: relative;
  z-index: 2;
}
.testimonials-section .testimonial-carousel .card {
  background: var(--light);
  border: 2px solid #f7e2ff;
  box-shadow: var(--shadow);
  width: 97%;
  margin: 15px auto;
}
.testimonials-section .testimonial-carousel .card .icon {
  position: absolute;
  bottom: 40px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--light);
  border-radius: 50px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
}
.testimonials-section .testimonial-carousel .card h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
}
.testimonials-section .testimonial-carousel .card .card-body {
  height: 220px;
  overflow-y: scroll;
}
.testimonial .card {
  margin: 15px 0;
  background: var(--light);
  border: 2px solid #f7e2ff;
  box-shadow: var(--shadow);
  width: 97%;
  margin: 15px auto;
}
.testimonial .card .card-body {
  height: 220px;
  overflow-y: scroll;
}
.testimonial .card .icon {
  position: absolute;
  bottom: 40px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--light);
  border-radius: 50px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
}
.testimonial .card h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
}
.testimonials-section .testimonial-carousel .owl-nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.testimonials-section .testimonial-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 5px !important;
  background: var(--dark) !important;
  color: var(--light) !important;
  font-size: 25px !important;
}

/* Gallery Section */
.gallery-section .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gallery-section .items .item {
  height: 400px;
  overflow: hidden;
  background: var(--dark);
  position: relative;
}
.gallery-section .items .item .text {
  padding: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallery-section .items .item .text p {
  color: var(--light);
  margin-bottom: 15px;
}
.gallery-section .items .item .text a {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}
.gallery-section .items .item .image {
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.gallery-section .items .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.5s ease all;
}
.gallery-section .items .item .link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #380b4975;
  backdrop-filter: blur(2px);
  text-align: center;
  line-height: 360px;
  font-size: 25px;
  font-weight: 600;
  color: var(--light);
  z-index: 2;
}
.gallery-section .items .item:nth-child(3) .link {
  background: #00000085;
}
.gallery-section .items .item:hover .image img {
  transform: scale(1.1);
}

/* Footer */
footer .logo {
  display: block;
  width: 250px;
  background: var(--light);
  border-radius: 10px;
  padding: 10px;
}
footer p {
  font-size: 16px;
  font-weight: 300;
  color: var(--light-alt);
  margin-bottom: 10px;
}
footer .social a {
  font-size: 18px;
  color: var(--light);
  background: var(--primary);
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  margin-right: 10px;
  border-radius: 10px;
}
footer h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 30px;
}
footer ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 50px;
}
footer ul li {
  margin-bottom: 20px;
}
footer ul li a {
  transition: 0.5s ease all;
  font-size: 16px;
  font-weight: 300;
  color: var(--light);
}
footer ul li a:hover {
  opacity: 1;
  color: var(--light);
}
footer .icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}
footer .icon i {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: var(--light-alt);
  line-height: 40px;
  text-align: center;
  margin-right: 15px;
  border-radius: 5px;
}
footer .icon a {
  width: calc(100% - 55px);
  color: var(--light) !important;
  opacity: 0.8;
  transition: 0.5s ease all;
}
footer .icon a:hover {
  opacity: 1;
}
footer .badge {
  padding: 7px;
  font-size: 14px;
  font-weight: 400;
  margin: 0 7px 7px 0 !important;
}
.footer-bottom {
  width: 100%;
  background: var(--dark);
  border-top: 1px solid #fff2;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 16px;
  color: var(--light);
  font-weight: 300;
}
.footer-bottom p a {
  color: var(--light);
}
.footer-bottom ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.footer-bottom ul li {
  margin-left: 15px;
  font-size: 18px;
  font-weight: 300;
}
.footer-bottom ul li a {
  color: var(--light);
  opacity: 0.7;
}

/* Contact Section */
.contact-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: url(../images/appointment.jpg);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.contact-section .container {
  position: relative;
  z-index: 2;
}
#appointmentForm .modal-header button {
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: var(--light);
  border-radius: 5px;
  border: 0;
  outline: 0;
}
#appointmentForm form {
  width: 100%;
}
#appointmentForm form input {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px 15px;
  border: 1px solid #0003;
  transition: 0.5s ease all;
}
#appointmentForm form input:focus {
  border-color: var(--secondary);
}
#appointmentForm form textarea {
  width: 100%;
  height: 150px;
  margin-bottom: 15px;
  padding: 10px 15px;
  border: 1px solid #0003;
  transition: 0.5s ease all;
}
#appointmentForm form textarea:focus {
  border-color: var(--secondary);
}

/* Banner Section */
.banner {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-end img {
  object-position: center right;
}
.banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}
.banner .breadcrumb {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  background: var(--light);
  box-shadow: var(--shadow);
  border: 3px solid #62476c99;
}
.banner .breadcrumb .breadcrumb-item:first-child a {
  color: var(--light);
  background: var(--primary);
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  display: inline-block;
  border-radius: 10px;
}
.banner .breadcrumb .breadcrumb-item a {
  color: var(--primary);
}
.banner .breadcrumb .breadcrumb-item::before {
  opacity: 0.3;
}
.banner .breadcrumb .breadcrumb-item.active {
  color: var(--dark-alt);
  font-weight: 600;
}

/* Directors Section */
.directors-section .image {
  width: 93%;
  margin: 0 0 0 auto;
  background: var(--light);
  box-shadow: var(--shadow);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.directors-section .image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.directors-section .image .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 15px;
  background: var(--secondary);
}
.directors-section .image .text h5 {
  text-transform: capitalize;
  color: var(--light);
  font-size: 20px;
  font-weight: 600;
}
.directors-section .image .text button {
  background: transparent;
  padding: 0;
  outline: 0;
  font-size: 16px;
  font-weight: 500;
  border: 0;
  margin-top: 15px;
  color: var(--light);
  opacity: 0.5;
}
.directors-section .modal .modal-body p {
  text-align: justify;
}
.directors-section .modal .modal-header button {
  width: 30px;
  height: 30px;
  background: var(--secondary);
  color: var(--light);
  border: 0;
  outline: 0;
  text-align: center;
  line-height: 30px;
  border-radius: 50px;
}

/* Mission Vision */
.mission-vision-section .icon {
  width: 100px;
  margin: 0 auto 20px;
}
.mission-vision-section .text {
  text-align: center;
  background: var(--light);
  padding: 30px;
  border: 2px solid var(--primary);
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 0 7px #62476c2e;
}
.mission-vision-section .text h4 {
  font-size: 30px;
  font-family: var(--cursive);
  color: var(--dark);
  margin-bottom: 10px;
}
.mission-vision-section .text p {
  text-align: center;
}

/* Accreditations Section */
.accreditations-section .image {
  width: 200px;
  margin: auto;
}

/* Contact Section */
.contact iframe {
  width: 100%;
  height: 500px;
  margin: 0;
  border: 0;
  padding: 0;
}
.contact form {
  width: 100%;
}
.contact form input {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px 15px;
  border: 1px solid #0003;
  transition: 0.5s ease all;
}
.contact form input:focus {
  border-color: var(--secondary);
}
.contact form textarea {
  width: 100%;
  height: 150px;
  margin-bottom: 15px;
  padding: 10px 15px;
  border: 1px solid #0003;
  transition: 0.5s ease all;
}
.contact form textarea:focus {
  border-color: var(--secondary);
}
.contact .box {
  width: 100%;
  background: var(--light-alt);
  border: 2px solid #b62c4f3b;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.contact .box .icon i {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  background: var(--primary);
  color: var(--light);
  line-height: 50px;
  border-radius: 10px;
}
.contact .box .text {
  margin-left: 20px;
  font-size: 18px;
  color: var(--dark-alt);
  line-height: 30px;
}
.contact .box .text a {
  color: var(--dark-alt);
}
.contact .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.contact .social a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--dark);
  color: var(--light);
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  border-radius: 5px;
}

/* Gallery */
.gallery .nav {
  gap: 10px;
}
.gallery .nav-link {
  padding: 13px 20px;
  background: var(--primary);
  color: var(--light);
  border-radius: 5px;
}
.gallery .nav-link.active {
  background: var(--secondary);
}
.gallery .image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: block;
  border-radius: 5px;
}
.gallery .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.gallery .card {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  height: 300px;
  position: relative;
}
.gallery .card h5 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  background: var(--primary);
  text-align: center;
  padding: 15px;
  color: var(--light);
}
.gallery .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Patient Information */
.pat-info .nav-pills {
  gap: 10px;
}
.pat-info .nav-pills .nav-link {
  background: var(--primary);
  color: var(--light);
  padding: 13px 20px;
  font-size: 16px;
}
.pat-info .nav-pills .nav-link.active {
  background: var(--secondary);
}
.pat-info .tab-pane ul li,
.pat-info .tab-pane ol li {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  line-height: 170%;
}
.pat-info .tab-pane ul li::before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  font-size: 10px;
  margin-top: 2px;
  color: var(--secondary);
}
.pat-info .tab-pane ol li {
  list-style: decimal;
  display: list-item;
  list-style-position: inside;
  background: var(--light-alt);
  padding: 10px;
}
.pat-info .tab-pane ol li ul li {
  list-style: none;
  display: flex;
}

/* Infrastructure Section */
.infrastructure .card {
  border: 3px solid var(--primary);
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.infrastructure .card .icon {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.infrastructure .card .icon img {
  width: 60px;
}
.infrastructure .card h5 {
  font-size: 23px;
  font-weight: 700;
  color: var(--dark-alt);
  margin: 20px auto;
  line-height: 100%;
}
.infrastructure .card p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-alt);
}
.infrastructure .list-group .list-group-item {
  display: flex;
  justify-content: flex-start;
}
.infrastructure .list-group .list-group-item span {
  display: inline-block;
  line-height: 140%;
}
.infrastructure-alt .card {
  background: var(--light-alt);
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: 3px !important;
}
.infrastructure-alt .card .icon {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.infrastructure-alt .card .icon img {
  width: 60px;
}
.infrastructure-alt .card h5 {
  font-size: 23px;
  font-weight: 700;
  color: var(--secondary);
  margin: 20px auto;
  line-height: 100%;
}
.infrastructure-alt .card p {
  font-size: 16px;
  font-weight: 300;
  color: var(--dark-alt);
}

/* Facilities Section */
.facilities .card {
  height: 100%;
  background: var(--primary);
}
.facilities .card button {
  background: var(--primary);
  border: 0;
  outline: 0;
  color: var(--light);
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s ease all;
}
.facilities .card button:hover {
  background: var(--secondary);
}
.facilities-modal button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  outline: 0;
  border: 0;
  background: var(--primary);
  color: var(--light);
}
.facilities-modal h4 {
  font-size: 25px;
  font-weight: 600;
  color: var(--primary);
}
.facilities-modal h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}
.facilities-modal ol li {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--dark-alt);
}
.facilities-modal ol li::before {
  content: "-";
  font-weight: 600;
  color: var(--primary);
}

/* Whatsapp Button */
.whatsapp-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 80px;
  right: 10px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  transition: 0.5s ease all;
  z-index: 100;
}
.whatsapp-btn:hover {
  color: var(--light);
}

/* Team List */
.team-list .list-group .list-group-item {
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
}
.team-list .list-group .list-group-item span {
  cursor: pointer;
}

.badgein h6 {
  display: inline;
}

/* Daibet */
/* Responsive */
@media (max-width: 1200px) {
}
@media (max-width: 992px) {
  .hero .carousel-caption {
    padding: 30px;
  }
  .hero .carousel-caption h5 {
    font-size: 18px;
  }
  .about-section h6 {
    font-size: 18px;
  }
  .contact-section::after {
    display: none;
  }
  .footer-bottom p {
    font-size: 14px;
  }
  .sub-heading {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .g-5,
  .gy-5 {
    --bs-gutter-y: 0;
  }
  .g-5,
  .gx-5 {
    --bs-gutter-x: 0;
  }
  .top-nav p span {
    display: block;
    text-align: center;
    margin: 0 0 5px;
  }
  .top-nav .social {
    justify-content: center;
  }
  .header .navbar-brand img {
    width: 180px;
  }
  .hero .carousel-caption {
    padding: 5px;
  }
  .hero .carousel-caption h5 span {
    font-size: 18px;
  }
  .hero .carousel-indicators button {
    width: 5px;
    height: 5px;
  }
  .section {
    padding: 50px 0;
  }
  .about-section h6 {
    font-size: 14px;
  }
  .about-section .image {
    border-left: 5px solid var(--primary);
    margin-bottom: 10px;
  }
  .sub-heading {
    font-size: 16px;
  }
  .heading {
    font-size: 22px;
  }
  p {
    font-size: 14px;
  }
  .facilities-section .icons {
    display: block;
  }
  .testimonials-section::after {
    width: 100%;
  }
  footer .social {
    margin-bottom: 20px;
  }
  .facilities .col-lg-4 {
    margin-bottom: 15px;
  }
  .diabethos-care-alt .text ol {
    display: block;
  }
  .diabethos-care-alt .text ol li {
    margin-bottom: 15px;
  }
  .equipments-section .d-flex {
    flex-direction: column;
  }
  .equipments-section .nav {
    width: 100%;
  }
  .equipments-section .tab-content {
    width: 100%;
  }
  .contact .box .text {
    font-size: 16px;
  }
  footer ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .facilities-section .icons::after {
    display: none;
  }
}
@media (max-width: 540px) {
  footer ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
