@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap");
.inner-banner {
  margin: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: left;
  border-radius: 0;
  position: relative;
  padding: 80px 0px;
}
/*.inner-banner:before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: rgba(0, 0, 0, 0.44);*/
/*  z-index: 2;*/
/*}*/
.inner-banner__content {
  position: relative;
  z-index: 3;
}
.inner-banner__content h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}
.inner-banner .breadcrumb .breadcrumb-item {
  color: #fff;
  font-size: 18px;
}
.inner-banner .breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}
.inner-banner .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.inner-main-content h5 {
  font-size: 30px;
  color: #343a40;
  font-weight: 700;
}
.inner-main-content p {
  text-align: justify;
  font-size: 18px;
  color: #6e6e6e;
}

.inner-details h5 {
  font-size: 22px;
  font-weight: 600;
  position: relative;
}
.inner-details h5::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 4px;
  background-color: #4db748;
  margin-top: 10px;
}

.related-links {
  background-color: #ffffff;
}
.related-links h5 {
  font-size: 22px;
  font-weight: 700;
  color: #343a40;
}
.related-links .related-link {
  display: block;
  background-color: #4db748;
  color: #ffffff;
  padding: 10px 15px;
  margin-bottom: 5px;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}
.related-links .related-link:hover {
  background-color: #33b750;
  text-decoration: none;
}

.custom-accordion .accordion-button {
  background-color: #4db748;
  color: #ffffff;
  font-weight: 500;
}
.custom-accordion .accordion-button:not(.collapsed) {
  background-color: #33b750;
  color: #ffffff;
  box-shadow: none;
}
.custom-accordion .accordion-button:focus {
  box-shadow: none;
}
.custom-accordion .accordion-item {
  background-color: #ffffff;
  border: none;
  margin-bottom: 3px;
  border-radius: 4px;
  overflow: hidden;
}
.custom-accordion .accordion-item .accordion-body {
  background-color: #e8f5e9;
  color: #000 !important;
}
.custom-accordion .accordion-item .accordion-body p {
  color: #000;
}

.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-button .accordion-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  color: #fff;
}
.accordion-button.collapsed .accordion-icon {
  transform: rotate(0deg);
}
.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}

.accordion-button::after {
  display: none !important;
}

body {
  font-family: "Inter", sans-serif;
}

.bg-footer-color {
  background-color: #29534f;
}

.bg-primary-color {
  background-color: #4db748;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #4db748;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #f27b3c;
}

.header {
  background-color: #4db748;
}
.header__top ul {
  margin-bottom: 0px;
  padding-left: 0px;
}
.header__top ul li {
  list-style-type: none;
  color: #fff;
}
.header__top ul li a {
  color: #fff;
}

.contact-img img {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar {
  box-shadow: 4px 0px 12px 2px rgba(175, 175, 175, 0.75);
}
.navbar .appointment {
  background-color: #f27b3c;
  padding: 14px 45px 14px 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
@media (min-width: 992px) {
  .navbar {
    /* Custom style for nested dropdowns */
    /* Center dropdown menu below toggle */
    /* Optional: improve aesthetics */
  }
  .navbar .dropdown-submenu {
    position: relative;
  }
  .navbar .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
    display: none;
  }
  .navbar .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
  .navbar a.nav-link {
    padding: 34px 20px;
  }
  .navbar .dropdown-toggle:focus,
  .navbar .dropdown-item:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  .navbar .center-dropdown .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    /* directly below */
    margin-top: 0.5rem;
  }
  .navbar .dropdown-menu {
    min-width: 200px;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }
  .navbar .dropdown-menu a {
    font-size: 16px;
  }
  .navbar .dropdown-menu a {
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 10px 16px;
    line-height: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  }
  .navbar .dropdown-submenu .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 0.1rem;
    z-index: 1000;
  }
  .navbar ul.dropdown-menu {
    margin-left: -80px;
    width: 230px;
    background: #4eb749;
    background: #29534f;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .navbar .dropdown-menu {
    animation: fadeInUp 0.3s ease-in-out;
    margin-top: -10px;
  }
  .navbar .navbar-brand h3 {
    margin-bottom: 0px;
    font-size: 30px;
    font-family: "PT Serif", serif;
    color: #4db748;
    line-height: 20px;
    letter-spacing: 1px;
    margin-top: 20px;
    font-family: "Varela Round", sans-serif;
    font-family: "Playwrite RO", cursive;
    font-weight: 600;
    font-style: normal;
  }
  .navbar .navbar-brand p {
    margin-bottom: 0px;
    color: #f27b3c;
    font-family: "Playwrite RO", cursive;
  }
  .navbar .navbar-nav .nav-link.active,
  .navbar .navbar-nav .nav-link.show {
    color: #4db748;
  }
  .navbar img {
    height: 84px;
  }
  .navbar ul li a {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 27px;
    color: #000000;
  }
  .navbar .dropdown-menu a {
    transition: background-color 0.3s, color 0.3s;
  }
  .navbar .dropdown-menu a:hover,
  .navbar .dropdown-menu .dropdown-item:hover {
    background-color: #f27b3c;
    background-color: #4db748;
    color: #ffffff;
  }
}
@media (max-width: 992px) {
  .navbar img {
    height: 84px;
  }
}

.banner {
  position: relative;
  z-index: 99;
}
.banner img {
  width: 100%;
}
.banner__content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}
.banner__content--text {
  border: 15px solid white;
  padding: 40px;
  border-right: 0px;
  display: inline-block;
}
.banner__content--text h1 {
  font-size: 70px;
  font-weight: 700;
  font-family: "PT Serif", serif;
  text-transform: uppercase;
  color: white;
}
.banner__content--text h4 {
  font-family: "PT Serif", serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
}

@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
.about-us__img img {
  width: 100%;
  animation: top 5s linear infinite;
  border-radius: 25px;
}
.about-us__text .heading span {
  font-weight: 600;
  color: #000;
  letter-spacing: 0px;
  text-transform: capitalize;
  font-size: 45px;
}
.about-us__text .heading h2 {
  font-size: 45px;
  color: #4db748;
  margin-left: 0px;
  margin-top: 0px;
}
.about-us__text p {
  text-align: justify;
  width: 100%;
  font-size: 18px;
}

.section-title span {
  font-weight: 700;
  color: #000000;
  letter-spacing: 0px;
  text-transform: capitalize;
  font-size: 24px;
}
.section-title span i {
  color: #4db748;
}

.services {
  background-color: #f3f3f3;
}
.services__content {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.services__content img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.services__content h2 {
  margin: 25px 0 15px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  color: black;
}
.services__content p {
  margin: 10px 0 20px;
  line-height: 1.3;
}
.services__content .btn-learn-more {
  background-color: #e8f5e9;
  border: 2px solid #e8f5e9;
  padding: 0.35em 1.5em;
  border-radius: 10px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.services__content .btn-learn-more i {
  width: 50px;
  height: 50px;
  background-color: #25d366;
  margin-right: 10px;
  display: flex;
  align-items: center;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 23px;
}
.services__content:hover {
  transform: translateY(-5px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}

.footer {
  background-color: #4db748;
}
.footer__heading strong {
  font-size: 32px;
  line-height: 39px;
  color: #fff;
  font-weight: 600;
}
.footer__heading ul {
  margin-bottom: 0px;
  padding-left: 0px;
}
.footer__heading ul li {
  list-style-type: none;
  color: #fff;
}
.footer__heading ul li a {
  color: #ccc;
  font-size: 26px;
  font-weight: 500;
}
.footer .f-link-list__items strong {
  color: #b0aff1;
  padding-bottom: 20px;
  display: block;
  text-transform: uppercase;
}
.footer .f-link-list__items li {
  list-style-type: none;
}
.footer .f-link-list__items li a {
  color: #fff;
  text-decoration: none;
  line-height: 36px;
}
.footer .border-top-blue {
  border-top: 1px solid #f27b3c;
}

.explore-city {
  background-color: #f3f3f3;
}
.explore-city__content {
  border-radius: 12px;
  padding: 40px;
}
.explore-city .explore-city__content h2 {
  font-size: 30px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}
.explore-city .explore-city__content p {
  font-size: 18px;
  line-height: 1.5;
  color: white;
}
.explore-city h3 {
  font-size: 34px;
  margin: 0 0 20px;
  font-weight: 600;
  color: white;
}
.explore-city a {
  color: #fff;
  text-decoration: none;
}
.explore-city .text h4 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
}

.universities {
  background-color: #f3f3f3;
}
.universities a {
  text-decoration: none;
  color: #000000;
}
.universities__content {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 15px;
  transition: transform 0.3s ease;
}
.universities__content:hover {
  transform: translateY(-5px);
}
.universities img {
  height: 52px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.universities h3 {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.testimonials .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.testimonials .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.testimonials .owl-nav button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
}
.testimonials .video-play-icon {
  font-size: 2.5rem;
  color: white;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}
.testimonials .card {
  border: 0px;
  overflow: hidden;
  transition: transform 0.3s ease;
  color: white;
}
.testimonials .card.bg-secondary-color {
  background-color: #f27b3c;
}
.testimonials .card.bg-primary-color {
  background-color: #4db748;
}
.testimonials .card:hover {
  transform: translateY(-5px);
}
.testimonials .card .person img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials .card .video-play-icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 6px 10px;
  z-index: 10;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: pulse-grow 2s infinite;
  background: transparent;
}

/* Optional grow on hover */
.testimonials .card .video-play-icon:hover {
  transform: scale(1.15);
}

/* Wave Effect using pseudo-elements */
.testimonials .card .video-play-icon::before,
.testimonials .card .video-play-icon::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0;
  animation: wave 2s infinite;
  z-index: -1;
}

.testimonials .card .video-play-icon::after {
  animation-delay: 1s;
}

@keyframes wave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes pulse-grow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.member-partners__content {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 8px;
}
.member-partners__content img {
  height: 60px;
  transition: transform 0.3s ease;
  width: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
.member-partners__content img:hover {
  transform: scale(1.1);
  /* Scales the image up by 10% */
}

.footer-section {
  background: #29534f;
  color: #fff;
}
.footer-section img {
  height: 80px;
}
.footer-section .footer-contact a {
  display: block;
}
.footer-section a {
  text-decoration: none;
  color: #fff;
  line-height: 38px;
}
.footer-section ul {
  padding: 0px;
  margin: 0px;
}
.footer-section ul li {
  list-style-type: none;
}
.footer-section ul li a {
  text-decoration: none;
  color: #fff;
}
.footer-section .footer-menu h4 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 25px;
}
.footer-section .f-social a {
  font-size: 30px;
}

.bg-secondary-color {
  background-color: #f27b3c;
}

.footer-bottom {
  background-color: #4db748;
  padding: 20px 0px;
}
.footer-bottom p {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.footer-bottom ul li {
  list-style-type: none;
}
.footer-bottom ul li a {
  text-decoration: none;
  color: #fff;
}

.contact-section {
  padding: 50px 0;
}
.contact-section .bg-primary-color {
  background-color: #4db748;
}

.contact-info i {
  font-size: 20px;
  color: #f27b3c;
  margin-right: 10px;
}

.form-control,
.form-select {
  background-color: #f1f1f1;
  border: none;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
}

.form-control:focus,
.form-select:focus {
  background-color: #e2e6ea;
  box-shadow: none;
}

.text-whatsapp {
  color: #4db748 !important;
}/*# sourceMappingURL=style.css.map */