@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap");
html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif !important;
  overflow-x: hidden;
}

.fa-phone {
  transform: rotate(90deg);
}

header {
  background: #78027b;
  padding: 8px 0 0;
  height: 40px;
  font-weight: 500;
}
header a {
  color: #fff;
  text-decoration: none;
}
header a:hover {
  color: #eee;
}

.navbar {
  background: transparent;
  box-shadow: none;
}
.navbar .navbar-nav .nav-link {
  color: #78027b;
  margin: 0 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.navbar .navbar-nav .nav-link:hover {
  color: #dc3c8c;
}
.navbar .active {
  color: #dc3c8c !important;
}

.payment_btn {
  background: #dc3c8c !important;
  color: #fff !important;
  padding: 12px 20px !important;
  border-radius: 50px 50px 0px 50px !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  font-size: 16px !important;
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* remove the gap so it doesn't close */
}

main #intro {
  text-align: center;
}
main #intro #intro_bg1 {
  background: rgba(39, 40, 56, 0.6) url("../intro_bg1.jpg") no-repeat center;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  height: 80vh;
}
main #intro #intro_bg2 {
  background: rgba(39, 40, 56, 0.6) url("../intro_bg2.jpg") no-repeat center;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  height: 80vh;
}
main #intro h1 {
  color: #fff;
  margin-bottom: 45px;
  font-weight: 800;
  font-size: 55px;
  text-transform: capitalize;
}
main #intro h1 span {
  color: #dc3c8c;
}
main #intro .btn-1 {
  background: #dc3c8c;
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 50px 50px 0px 50px;
  text-transform: uppercase;
  z-index: 1;
}
main #home_about {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  background: url("../about.jpg") no-repeat right center;
  background-size: contain;
  position: relative;
}
main #home_about .animation-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%; /* Adjust the width of the container as needed */
  height: 100%;
  overflow: hidden;
}
main #home_about .slow-moving-image {
  width: 200px;
  height: 100px;
  animation: floatAnimation 10s infinite linear; /* Adjust the animation duration as needed */
}
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px); /* Adjust the vertical movement */
  }
  100% {
    transform: translateY(0);
  }
}
main #home_about h2 {
  color: #78027b;
  line-height: 50px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(121, 2, 123, 0.5);
  text-transform: capitalize;
  letter-spacing: -2px;
  font-size: 42px;
}
main #home_about h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #dc3c8c;
  border-radius: 5px;
  margin: 10px 0;
}
main #home_about p {
  font-size: 17px;
  font-weight: 400;
  color: #000;
}
main #home_services {
  background: rgba(105, 105, 105, 0.75) url("../services_bg.jpg") no-repeat fixed;
  background-size: cover;
  background-blend-mode: multiply;
}
main #home_services h2 {
  color: #fff;
  line-height: 50px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -2px;
  font-size: 42px;
}
main #home_services h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #dc3c8c;
  border-radius: 5px;
  margin: 10px auto;
}
main #home_services .card {
  text-align: center;
/*  border-radius: 50px 50px 0px 50px;*/
  padding: 15px 10px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(135deg, #dc3c8c -7%, #78027b 100%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
main #home_services .card img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
/*  border-radius: 50px 50px 0px 50px;*/
  height: 300px;
}
main #home_services .card .card-title {
  font-size: 20px;
  line-height: 21px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
main #cta {
  background-color: #eee;
  display: flex;
  justify-content: center;
  color: #78027b;
}
main #cta h2 {
  color: #78027b;
  line-height: 50px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -2px;
  font-size: 42px;
  margin-bottom: 20px;
}
main #cta a {
  color: #dc3c8c;
}
main #cta .card {
  background: #78027b;
  border-radius: 50px 50px 0px 50px;
  border: none;
  padding: 30px;
}
main #cta form .btn {
  background: #dc3c8c;
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 50px 50px 0px 50px;
  text-transform: uppercase;
}

main #gallery_images {
  background: url("../new_bg.jpg") center top no-repeat;
  padding: 40px 0;
  background-size: cover;
  background-blend-mode: multiply;
}

footer {
  background: #78027b;
  color: #fff;
}
footer h5 {
  color: #fff;
  font-weight: 700;
}
footer p {
  font-weight: 500;
}
footer a {
  color: #fff !important;
  font-weight: 500;
}
footer a svg {
  color: #fff;
}
footer a:hover {
  color: #dc3c8c !important;
}
footer .nav-link {
  color: #fff;
  font-weight: 500;
}
footer .nav-link svg {
  color: #fff;
}
footer .nav-link:hover {
  color: #dc3c8c !important;
}

#about_header {
  height: 50vh;
  background: linear-gradient(135deg, rgba(220, 60, 140, 0.5) -7%, rgba(121, 2, 123, 0.4) 100%), url("../about_header.jpg") no-repeat center;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  border-radius: 0 0 50px 50px;
}
#about_header h1 {
  font-weight: 700;
}

#about_us {
  display: flex;
  justify-content: center;
  align-items: center;
}
#about_us h2 {
  color: #dc3c8c;
  line-height: 50px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -2px;
  font-size: 42px;
}
#about_us p {
  font-size: 17px;
  font-weight: 400;
  color: #78027b;
}
#about_us img {
  display: flex;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 50px 50px 0px 50px;
}

#vision_mission {
  background-color: #78027b;
}
#vision_mission p {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}
#vision_mission h3 {
  color: #fff;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -2px;
  font-size: 42px;
  margin-bottom: 20px;
}
#vision_mission #vision img {
  width: 70px;
  background: #dc3c8c;
  border-radius: 10px;
  padding: 10px;
}

#values h2 {
  color: #78027b;
  line-height: 50px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(121, 2, 123, 0.5);
  text-transform: capitalize;
  letter-spacing: -2px;
  font-size: 42px;
}
#values h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #dc3c8c;
  border-radius: 5px;
  margin: 10px 0;
}
#values li {
  font-size: 17px;
  font-weight: 400;
  color: #000;
}
#values img {
  display: flex;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px 50px 0px 50px;
}

#services_header {
  height: 50vh;
  background: linear-gradient(135deg, rgba(220, 60, 140, 0.5) -7%, rgba(121, 2, 123, 0.4) 100%), url("../services_header.jpg") no-repeat center;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  border-radius: 0 0 50px 50px;
}
#services_header h1 {
  font-weight: 700;
}

#services_page h3 {
  color: #dc3c8c;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -2px;
  font-size: 28px;
}
#services_page h3::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #78027b;
  border-radius: 5px;
  margin: 10px 0;
}
#services_page .card {
/*  border: 1px solid #78027b;*/
  border: none;
  border-radius: 50px 50px 0px 50px;
  padding: 15px;
}
#services_page img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
#services_page p {
  font-size: 17px;
  font-weight: 400;
  color: #000;
  text-align: justify;
}

#gallery_header {
  height: 50vh;
  background: linear-gradient(135deg, rgba(220, 60, 140, 0.5) -7%, rgba(121, 2, 123, 0.4) 100%), url("../gallery_header.jpg") no-repeat center;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  border-radius: 0 0 50px 50px;
}
#gallery_header h1 {
  font-weight: 700;
}

#gallery_images img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contact_header {
  height: 50vh;
  background: linear-gradient(135deg, rgba(220, 60, 140, 0.5) -7%, rgba(121, 2, 123, 0.4) 100%), url("../contact_header.jpg") no-repeat center;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  border-radius: 0 0 50px 50px;
}
#contact_header h1 {
  font-weight: 700;
}

#contact_form .card {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background: #78027b;
}
#contact_form h2 {
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}
#contact_form #contact_icons {
  color: #fff;
  background: #dc3c8c;
  padding: 8px;
  width: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
}
#contact_form a {
  color: #fff;
  text-decoration: none;
}
#contact_form form input,
#contact_form form textarea {
  border: 2px solid #e9e9e9;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 16px;
  color: #333333;
  background-color: #f5f5f5;
}
#contact_form form .btn {
  background: #dc3c8c;
  color: #fff !important;
  padding: 15px 60px !important;
  font-weight: 500 !important;
  font-size: 18px;
  border: none;
  border-radius: 10px;
}

@media (max-width: 767px) {
  /* Rules for smartphones only */
  #desktop_header {
    position: static;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    margin: 0 5px;
  }
  #intro {
    height: auto !important;
  }
  #intro h1 {
    font-size: 25px !important;
  }
  #intro p {
    font-size: 18px !important;
  }
  #home_about {
    background: none !important;
  }
}
@media (max-width: 1199px) {
  .banner-text {
    display: none;
  }
}
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  left: 30px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: #dc3c8c;
  color: #eee;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
  display: none;
  transition: all 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #dc3c8c;
  color: #fff;
}

#whatsappbtn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #25d366;
  border-radius: 50px 50px 0px 50px;
  text-align: center;
  font-size: 35px;
  z-index: 100;
  animation: sonarAnimation 2s infinite;
}
#whatsappbtn a {
  color: #fff;
}

#callbtn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 110px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #dc3c8c;
  border-radius: 50px 50px 0px 50px;
  text-align: center;
  font-size: 35px;
  z-index: 100;
  animation: sonarAnimation 2s infinite;
}
#callbtn a {
  color: #fff;
}

#mapbtn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 190px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #dc3c8c;
  border-radius: 50px 50px 0px 50px;
  text-align: center;
  font-size: 35px;
  z-index: 100;
  animation: sonarAnimation 2s infinite;
}
#mapbtn a {
  color: #fff;
}

#fbbtn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 270px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4267b2;
  border-radius: 50px 50px 0px 50px;
  text-align: center;
  font-size: 35px;
  z-index: 100;
  animation: sonarAnimation 2s infinite;
}
#fbbtn a {
  color: #fff;
}

#instabtn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 350px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f56040;
  border-radius: 50px 50px 0px 50px;
  text-align: center;
  font-size: 35px;
  z-index: 100;
  animation: sonarAnimation 2s infinite;
}
#instabtn a {
  color: #fff;
}

@keyframes sonarAnimation {
  0% {
    box-shadow: 0 0 0 rgba(129, 83, 85, 0.4);
  }
  100% {
    box-shadow: 0 0 5px 50px rgba(0, 168, 232, 0);
  }
}
@media only screen and (max-width: 1399px) and (min-width: 1200px) {
  .navbar .navbar-nav .nav-link {
    margin: 0px 6px;
    font-size: 15px;
  }
  .payment_btn {
    padding: 8px 14px !important;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .navbar .navbar-nav .nav-link {
    margin: 0px 3px;
    font-size: 11px;
  }
  .payment_btn {
    padding: 8px 14px !important;
  }
}