@charset "UTF-8";
/* Poppins */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Inter */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
#hero .hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  inset: 0;
}
#hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  display: block;
  background: black;
  opacity: 0.5;
}
#hero .price {
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
#hero .price .price-badge {
  background: rgba(255, 215, 0, 0.9);
  color: #000;
  padding: 4px 10px;
  border-radius: 9999px;
  font-weight: 600;
  margin-left: 6px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  display: inline-block;
}
#hero .price .price-badge:hover {
  background: rgb(255, 230, 80);
  transform: scale(1.05);
  transition: all 0.2s ease;
}
#hero .hero-content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
#hero .hero-content .hero-title {
  color: white;
  font-weight: bold;
  font-size: 3rem;
}
#hero .hero-content h6 {
  color: yellow;
  font-size: 1.5rem;
}
#hero .hero-content .price {
  font-size: 1.5rem;
}
#hero .hero-content .btn-book {
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  background-color: green;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 1;
  animation: pulseGlow 2s ease-in-out infinite;
}
#hero .hero-content .btn-book:hover {
  box-shadow: 0 0 30px rgb(0, 129.53, 0);
}
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0px rgb(0, 129.53, 0);
  }
  50% {
    box-shadow: 0 0 30px rgb(0, 129.53, 0);
  }
}
#hero .form-container {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}
#hero .form-container .form-control {
  border-color: lightgrey;
}
#hero .form-container .form-control:focus {
  box-shadow: none !important;
}
#hero .form-container .btn-submit {
  display: block;
  width: 100%;
  background-color: #4374b3;
  border-radius: 10px;
  color: white;
  padding: 1rem;
  margin-top: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
}
#hero .form-container .btn-submit:hover {
  background-color: rgb(174.2317073171, 196.3414634146, 224.7682926829);
}
#hero .video-section {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
#hero .video-section .video-player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero .video-section .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  padding: 0;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}
#hero .video-section .play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 0.9;
}
@media (max-width: 768px) {
  #hero .hero-content {
    top: auto;
    bottom: 15%;
    transform: translate(-50%, 0);
  }
  #hero .hero-content .hero-title {
    font-size: 2.3rem;
    margin-bottom: 1rem;
  }
  #hero .hero-content h6 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
}

.mobile-form-section {
  background-color: rgb(192.7865853659, 209.8170731707, 231.7134146341);
}
.mobile-form-section .form-container .form-control {
  border-color: lightgrey;
  border-radius: 0;
}
.mobile-form-section .form-container .form-control:focus {
  box-shadow: none;
}
.mobile-form-section .form-container .btn-submit {
  display: block;
  width: 100%;
  background-color: #4374b3;
  border-radius: 0;
  color: white;
  padding: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.2 ease-in-out;
}
.mobile-form-section .form-container .btn-submit:hover {
  background-color: rgb(39.2195121951, 67.9024390244, 104.7804878049);
}

#opening .ambulance-section {
  position: relative;
  background-image: url("../images/ambulance.jpeg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  border-radius: 20px;
  overflow: hidden;
}
#opening .ambulance-section .overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to top, black, rgba(0, 0, 0, 0.3), transparent);
  transition: all 0.3s ease-in-out;
}
#opening .ambulance-section .title {
  position: absolute;
  display: block;
  width: 90%;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-weight: bold;
  font-size: 2.3rem;
}
#opening .ambulance-section .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  padding: 0;
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease-in-out;
}
#opening .ambulance-section:hover .overlay {
  background: linear-gradient(to top, rgb(39.2195121951, 67.9024390244, 104.7804878049), rgba(39.2195121951, 67.9024390244, 104.7804878049, 0.8), transparent);
}
#opening .form-section {
  background-color: rgb(229.8963414634, 236.7682926829, 245.6036585366);
  width: 100%;
}
#opening .form-section .form-card {
  background: rgb(39.2195121951, 67.9024390244, 104.7804878049);
}
#opening .form-section .form-card .actions .consultation-fee {
  border: 2px solid yellow;
  color: yellow;
  font-weight: bold;
}
#opening .form-section .form-card .actions .btn-submit {
  background: yellow;
  border: none;
}

#form-section {
  background-color: rgb(211.3414634146, 223.2926829268, 238.6585365854);
}
#form-section .form-container {
  background-color: black;
  padding: 1rem;
  border-radius: 10px;
}
#form-section .form-container .form-control {
  border-color: white;
  background-color: transparent;
  color: white;
}
#form-section .form-container .form-control:focus {
  box-shadow: none;
}
#form-section .form-container label {
  color: rgba(255, 255, 255, 0.5);
}
#form-section .form-container .btn-submit {
  width: 100%;
  background-color: yellow;
  padding: 1rem;
  font-weight: bold;
}

#about {
  position: relative;
  min-height: 700px;
}
#about > .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#about .bottom-ribbon {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 100%;
  background: rgb(229.8963414634, 236.7682926829, 245.6036585366);
}
#about .bottom-ribbon .icons-container {
  display: flex;
  gap: 4rem;
  padding: 1.5rem 0;
}
#about .bottom-ribbon .icons-container img {
  width: 50px;
}
@media (min-width: 992px) {
  #about .bottom-ribbon {
    bottom: 20%;
  }
}
@media (max-width: 992px) {
  #about {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  #about > .container {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 1rem;
  }
  #about .bottom-ribbon {
    position: static;
    bottom: auto;
    width: 100%;
  }
  #about .bottom-ribbon .icons-container {
    gap: 0;
    justify-content: space-between;
  }
  #about .bottom-ribbon .icons-container img {
    width: 50px;
  }
  #about > .container {
    order: 1;
  }
  #about .bottom-ribbon {
    order: 2;
  }
}

#services .service-card {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(128, 128, 128, 0.7);
  transition: all 0.2s ease-in-out;
}
#services .service-card .feature-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
#services .service-card .title-container {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.7rem 1rem;
  margin: 0;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
  transition: all 0.2s ease-in-out;
}
#services .service-card .title-container .title {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: capitalize;
}
#services .service-card .title-container .icon-more {
  font-size: 1.2rem;
}
#services .service-card .title-container:hover {
  background-color: rgb(39.2195121951, 67.9024390244, 104.7804878049);
  color: white;
}
#services .service-card .description {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  background: white;
  padding: 1rem;
  font-size: 0.9rem;
  text-align: justify;
  overflow-y: auto;
  transition: top 0.3s ease;
}
#services .service-card .description .btn-dismiss {
  display: inline-block;
  background-color: rgb(39.2195121951, 67.9024390244, 104.7804878049);
  color: white;
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  border-radius: 5px;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}
#services .service-card.expanded .description {
  top: 0;
}

#testimonial {
  background-color: rgb(211.3414634146, 223.2926829268, 238.6585365854);
}
#testimonial .testimonial-slider .slick-slide {
  margin: 0 -15px;
  transition: all 0.4s ease;
  opacity: 0.6;
  transform: scale(0.9);
}
#testimonial .testimonial-slider .slick-list {
  margin: 0 -5px;
}
#testimonial .testimonial-slider .slick-center {
  transform: scale(1.08);
  opacity: 1;
  z-index: 2;
}
#testimonial .testimonial-slider .testimonial-card {
  margin: 2rem;
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
}
#testimonial .testimonial-slider .testimonial-card .message-box {
  box-shadow: 10px 0 30px rgba(128, 128, 128, 0.5);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
#testimonial .testimonial-slider .testimonial-card .message-box .icon-quote {
  opacity: 0.3;
}
#testimonial .testimonial-slider .testimonial-card .bottom-box {
  text-align: center;
  margin-top: -35px;
  padding: 0 1rem 1rem 1rem;
}
#testimonial .testimonial-slider .testimonial-card .bottom-box .avatar {
  width: 70px;
  border-radius: 70px;
  border: 2px solid #4374b3;
  display: inline-block;
  margin-bottom: 1rem;
}
#testimonial .testimonial-slider .testimonial-card .bottom-box .name-container {
  text-align: center;
}
#testimonial .testimonial-slider .testimonial-card .bottom-box .name-container .five-star {
  display: inline-block;
  width: 30%;
  margin-bottom: 1rem;
}
#testimonial .testimonial-slider .testimonial-card .bottom-box .name-container .name {
  font-weight: bold;
}
#testimonial .testimonial-slider .slick-slide:not(.slick-center) {
  filter: blur(0.3px);
}

#faq {
  background-color: rgb(211.3414634146, 223.2926829268, 238.6585365854);
}
#faq .accordion .accordion-item {
  overflow: hidden;
  border: none;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
#faq .accordion .accordion-item .accordion-button {
  background: #fff;
  border-radius: 10px;
  box-shadow: none;
  font-weight: 600;
}
#faq .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
#faq .accordion .accordion-item .accordion-button::after {
  content: "+";
  font-size: 1.5rem;
  transform: none !important;
  background-image: none;
}
#faq .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  content: "−";
}
#faq .accordion .accordion-item .accordion-body {
  color: #333;
  font-size: 0.95rem;
  padding-top: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
#faq .accordion .accordion-item .accordion-collapse.show .accordion-body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.06s;
}
#faq .accordion .accordion-collapse {
  transition: height 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
}
#faq .accordion .collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.42s cubic-bezier(0.2, 0.7, 0.2, 1) !important;
}
@media (prefers-reduced-motion: reduce) {
  #faq .accordion .accordion-collapse,
  #faq .accordion .collapsing,
  #faq .accordion .accordion-body {
    transition: none !important;
  }
}
#faq .btn-mail {
  width: 100%;
  border: none;
  background-color: orange;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#services-2 {
  position: relative;
  height: 80vh;
}
#services-2 > .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#services-2 > .container img {
  width: 25%;
  height: auto;
  display: block;
}
#services-2 > .container .service-content {
  width: 40%;
}
#services-2 .ticker-container {
  position: absolute;
  bottom: 25%;
}
#services-2 .ticker-container .ticker {
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
  padding: 10px 0;
  border-top: 2px solid rgb(174.2317073171, 196.3414634146, 224.7682926829);
  border-bottom: 2px solid rgb(174.2317073171, 196.3414634146, 224.7682926829);
  position: relative;
}
#services-2 .ticker-container .ticker ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scrollTicker 30s linear infinite;
}
#services-2 .ticker-container .ticker ul li {
  display: flex;
  align-items: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #4374b3;
  white-space: nowrap;
  padding: 0;
  position: relative;
}
#services-2 .ticker-container .ticker ul li::after {
  content: "";
  width: 2px;
  height: 16px;
  background: #0d6efd;
  display: inline-block;
  margin: 0 15px;
  border-radius: 2px;
}
#services-2 .ticker-container .ticker ul li:last-child::after {
  display: none;
}
#services-2 .ticker-container .ticker:hover ul {
  animation-play-state: paused;
}
@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  #services-2 {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
  }
  #services-2 > .container {
    order: 1;
    position: static;
    left: 0;
    top: 0;
    transform: translate(0, 0);
    flex-direction: column;
    margin-bottom: 0.5rem;
  }
  #services-2 > .container img {
    width: 80%;
  }
  #services-2 > .container .service-content {
    position: static;
    width: 90%;
  }
  #services-2 .ticker-container {
    order: 2;
    position: static;
    bottom: 0;
  }
}

#contact {
  background-color: rgb(211.3414634146, 223.2926829268, 238.6585365854);
  color: white;
  /* --- Small screens (phones) --- */
  /* --- Medium screens (tablets) --- */
}
#contact .inner {
  background-color: #4374b3;
  margin-bottom: 2rem;
}
#contact a {
  text-decoration: none;
}
#contact .links {
  display: flex;
}
#contact .links a {
  display: inline-block;
  color: white;
  text-decoration: none;
}
#contact .links a:not(:last-child)::after {
  content: " |";
  color: white;
  margin: 0 10px;
}
#contact .links a:hover {
  text-decoration: underline;
}
#contact .map-container iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  #contact .links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.6rem;
  }
  #contact .links a {
    display: inline-block;
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
  }
  #contact .links a::after {
    content: none !important;
  }
  #contact .links a:hover {
    background: rgba(255, 255, 255, 0.14);
  }
  #contact .map-container {
    margin-top: 1.5rem;
  }
  #contact .map-container iframe {
    width: 100%;
    height: 280px;
    border-radius: 0.6rem;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  #contact .links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  #contact .links a {
    display: inline-block;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
  }
  #contact .links a::after {
    content: none !important;
  }
  #contact .links a:hover {
    background: rgba(255, 255, 255, 0.14);
  }
  #contact a[href^=mailto] {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.08);
    color: white !important;
    text-decoration: none;
  }
  #contact a[href^=mailto]:hover {
    background: rgba(255, 255, 255, 0.14);
  }
  #contact .map-container iframe {
    height: 360px;
    border-radius: 0.7rem;
  }
}/*# sourceMappingURL=home.css.map */