@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Merriweather+Sans:wght@400;700&display=swap");
/* Last color: #E0FBFC */
:root {
  --primary-color: #3D5A80;
  --secondary-color: #98C1D9;
  --background-color: #ebfafa;
  --text-color: black;
  --light-text: white;
  /* --primary-color: #1A1A1A;  
  --secondary-color: #FFFFFF;  
  --background-color: #4A90E2;  
  --text-color: #F5F5F5;  
  --light-text: #FFB400;   */
  
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
}

/* h1, h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

p, span, li, a {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

input, textarea, label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.custom_nav-container a {
  font-family: 'Lora', serif;
  font-weight: 500;
} */


/* .layout_padding {
  padding-top: 120px;
  padding-bottom: 120px;
} */

/* .layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 120px;
}

.layout_padding-bottom {
  padding-bottom: 120px;
} */

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-family: 'Merriweather Sans', sans-serif;
}

.heading_container p {
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

h1,
h2 {
  font-family: 'Merriweather Sans', sans-serif;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

/* Logo Section*/
.header_section .logo {
  height: 40px;
  width: auto;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* Video Section */
.video-section {
  position: relative;
  width: 100%;
  height: 500px; 
  overflow: hidden;
  }
  
  .video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  
  /* .video-section .content {
  position: relative;
  color: var(--light-text);
  text-align: center;
  z-index: 2;
  } */


/*header section*/
.header_top {
  position: relative;
  background-color: var(--text-color);
}

.contact_nav span {
  color: var(--background-color);
}

.container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_top .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          /* justify-content: space-between; */
}
.contact_nav .cn1 {
  padding-left: 50px;
  padding-right: 20px;
}
.contact_nav .cn2 {
  padding: 0px 690px 0 50px;
}

.contact_nav .cn3 {
  padding: 0px 10px 0 10px;
}

/* Navbar */
.header_section .header_bottom {
  padding: 10px 50px;
  background-color: var(--primary-color);
  position: relative;
}

.navbar-brand span {
  color: var(--light-text);
  text-transform: uppercase;
  font-size: 30px;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 10px 25px;
  color: var(--light-text);
  text-align: center;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--secondary-color);;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: var(--text-color);
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--text-color);
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}


/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: bottom;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          padding-top: 70px;
          padding-bottom: 50px;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  padding-bottom: 30px;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.slider_section .detail-box p {
  color: var(--text-color);
  font-size: 15px;
}

.slider_section .detail-box a {
  display: inline-block;
  font-family: 'Merriweather Sans', sans-serif;
  text-transform: uppercase;
  padding: 10px 45px;
  background-color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  color: var(--light-text);
  margin-top: 15px;
}

.slider_section .detail-box a:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--primary-color);
  color: var(--text-color);
}

.slider_section .img-box img {
  width: 100%;
  padding-bottom: 30px;
  border-radius: 15px;
  padding: 0; /* Remove padding */

}


/* Offer Banner */

.offer-banner {
  background: #ff5733;
  color: white;
  padding: 15px;
  margin-bottom: 135px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 5px;
  width: 100%;
  /* position: fixed; */
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: hidden; /* Keeps text inside */
  height: 50px; /* Adjust this to match your design */
  display: flex;
  align-items: center;
}

.offer-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* feature section */
.feature_section {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.feature_section .feature_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.feature_section .feature_container .box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 20px auto;
  padding: 30px 20px;
  background-color: var(--secondary-color);  
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  width: 100%; /* Adjust width as needed */
  max-width: 900px; /* Control the max size */
  border-radius: 15px; /* Optional: Rounded corners */
}

.search-container {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 900px;
  max-width: 95%;
}

.search-container input {
  flex: 1;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  outline: none;
}

.search-container button {
  background-color: var(--primary-color);
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 0 10px 10px 0;
}

.search-container button:hover {
  background-color: var(--background-color);
  color: var(--text-color);
}

.icon {
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: #555;
  cursor: pointer;
}

.icon:hover {
  color: #000;
}

.icon svg {
  width: 20px;
  height: 20px;
}

.icon.clear {
  padding-right: 15px;
}


/* Service Section */
.service_section {
  position: relative;
  background-color: var(--primary-color);
  padding-top: 65px;
  padding-bottom: 75px;
}

.service_section .heading_container {
  color: var(--background-color);
}

.service_section .box {
  margin-top: 30px;
  text-align: center;
  background-color: var(--light-text);
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
  padding: 25px 15px;
  -webkit-transition: all .3s;
  transition: all .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          border-radius: 15px;
}

.service_section .box .img-box {
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service_section .box .img-box img {
  max-height: 150%;
  max-width: 150%;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding-top: 10px;
}

.service_section .box .detail-box {
  margin-top: 35px;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
}

.service_section .box:hover {
  background-color: var(--background-color);
  color: var(--text-color);
  transform: scale(1.1, 1.1);
}

.service_section .box:hover > .service_section .box:hover:not(:hover) {
  filter: blur(10px);
  transform: scale(0.9, 0.9);
}


/* Best Section */
.best_services {
  padding-top: 50px;
  padding-bottom: 60px;
}
.section-title {
  font-weight: bold;
  text-align: center;
  padding-bottom: 35px;

  }
  
  .swiper {
  width: 100%;
  margin: auto;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  }
  
  .swiper-slide {
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .best_services .best-service-img {
    width: 200px !important;
    height: 150px !important;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
  }

  .best_services h2 {
    color: var(--primary-color);
    text-transform: uppercase;
  }
  .swiper-slide h3 {
  color: var(--light-text);
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  }
  
  /* .swiper-slide p {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  } */
  
  .swiper-button-next,
  .swiper-button-prev {
  color: var(--primary-color);
  }
  
  .swiper-pagination-bullet-active {
  background: var(--primary-color);
  }

  .swiper-pagination {
    position: relative !important;
    margin-top: 20px !important; /* Adjust value as needed */
  }
  
  
  /* Stats Section */
  .stats-section {
  display: flex;
  justify-content: center;
  gap: 50px;
  font-family: Arial, sans-serif;
  margin-bottom: 50px;
  background: var(--background-color);
  text-align: center;
  }
  
  .stat-box {
  background: white;
  border-radius: 15px;
  padding: 20px;
  width: 180px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .stat-box img {
  width: 50px;
  margin-bottom: 10px;
  }
  
  .stat-box h2 {
  font-size: 24px;
  color: var(--primary-color);
  margin: 5px 0;
  }
  
  .stat-box p {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-color);
  }
  
  /* .border-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-left: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  border-bottom-left-radius: 15px;
  } */


/* About Section */
.about_section {
  padding: 50px 0px 80px;
  background-color: var(--primary-color)
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .detail-box h2 {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--background-color);
}

.about_section .detail-box p {
  margin-top: 10px;
  color: var(--light-text);
}

.about_section .img-box img {
  margin-top: 50px;
  margin-left: 50px;
  width: 90%;
  border-radius: 15px;
  padding: 0; /* Remove padding */
}


/* Ordering Process Section */
.ordering-process {
  padding: 40px;
  font-family: Arial, sans-serif;
  /* margin: 0; */
  padding: 50px 0 80px;
  background: var(--primary-color);
  text-align: center;
  }
  
  .ordering-process h2 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 50px;
  color: var(--background-color);
  }
  
  /* .ordering-process h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--light-text);
  margin: 5px auto 20px;
  } */
  
  .process-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  color: var(--light-text);
  }
  
  .process-step {
  width: 250px;
  text-align: center;
  }
  
  .icon-circle {
  width: 80px;
  height: 80px;
  background: var(--light-text);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  border: 2px solid var(--light-text);
  }
  
  .icon-circle img {
  width: 40px;
  }
  
  .process-step h3 {
  font-size: 18px;
  margin-bottom: 5px;
  }
  
  .process-step p {
  font-size: 14px;
  /* color: #555; */
  color: var(--light-text);
  }
  
  .book-now {
  background: var(--background-color);
  color: var(--text-color);
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  }
  
  .book-now:hover {
  background: var(--secondary-color);
  color: var(--text-color);
  }


  /* Refer and earn Section */
  .refer-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 70px;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1150px;
  margin: 90px auto;
  font-family: Arial, sans-serif;
  background-color: var(--primary-color);
  }
  .refer-content {
  max-width: 50%;
  color: var(--light-text);
  }
  .refer-content h2 {
  color: var(--light-text);
  }
  .referral-box {
  display: flex;
  margin: 20px 0;
  }
  .referral-box input {
  width: 250px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  }
  .referral-box button {
  background: var(--background-color);
  color: var(--text-color);
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
  margin-left: 10px;
  width: 20%;
  }
  .referral-box button:hover {
    background: var(--secondary-color);
    color: var(--text-color);
  }
  .app-links img {
  width: 150px;
  margin: 10px;
  }
  .mockup img {
  width: 100%;
  }


  /* Professional Section */
.professional_section {
  background-color: var(--background-color);
  padding: 30px 0 50px;
  margin-bottom: 40px;
}

.professional_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.professional_section .img-box img {
  width: 100%;
  border-radius: 15px;
}

.professional_section .detail-box h2 {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--primary-color);
}

.professional_section .detail-box p {
  margin-top: 20px;
  color: var(--text-color);
}


/* Client Section */
.client_section {
  background-color: var(--primary-color);
  padding: 70px 0 40px;
}

.client_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: var(--background-color);
}

.client_section .box {
  margin: 15px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 25px;
  background-color: var(--light-text);
  border-radius: 15px;
}

.client_section .box .client_id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.client_section .box .client_id .img-box {
  width: 125px;
  min-width: 125px;
  margin-right: 15px;
}

.client_section .box .client_id .img-box img {
  width: 100%;
  border-radius: 100%;
}

.client_section .box .client_id .client_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 25px;
}

.client_section .box .client_id .client_detail .client_info h6 {
  margin-bottom: 0;
}

.client_section .box .client_id .client_detail .client_info .loc {
  margin-bottom: 0;
  font-size: 12px;
}

.client_section .box .client_id .client_detail .client_info i {
  color: #fbaf5d;
}

.client_section .box .client_text {
  margin-top: 20px;
}

/* .client_section .owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.client_section .owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  outline: none;
  margin: 0 20px;
  color: var(--text-color);
} */
/* Hide default Owl Carousel arrows */
.client_section .owl-carousel .owl-nav [class*="owl-"] {
  font-size: 0; /* Hides default text/icons */
  background: none; /* Removes background */
  border: none;
  outline: none;
  box-shadow: none;
}

/* Center the arrows */
.client_section .owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

/* Custom arrow buttons */
.client_section .owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--text-color);
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 10px;
  cursor: pointer;
}

/* Hover effect */
.client_section .owl-carousel .owl-nav button:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: scale(1.5);
}

/* Custom arrow symbols */
.client_section .owl-carousel .owl-nav button.owl-prev::before {
  content: "<";
  font-size: 30px;
}

.client_section .owl-carousel .owl-nav button.owl-next::before {
  content: ">";
  font-size: 30px;
}


/* Contact Section */
.contact_section {
  background-color: var(--primary-color);
  padding: 30px 0 70px;
}
.heading_container {
  margin-bottom: 30px;
  color: var(--background-color);
}

.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: #ffffff;
  outline: none;
  color: #000000;
  -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
}

.contact_section input::-webkit-input-placeholder {
  color: #727372;
}

.contact_section input:-ms-input-placeholder {
  color: #737272;
}

.contact_section input::-ms-input-placeholder {
  color: #737272;
}

.contact_section input::placeholder {
  color: #737272;
}

.contact_section input.message-box {
  height: 135px;
}

.contact_section button {
  border: none;
  display: inline-block;
  font-family: 'Merriweather Sans', sans-serif;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  margin-top: 15px;
  background: var(--background-color);
  color: var(--text-color);
  font-weight: bold;
  width: 25%;
}

.contact_section button:hover {
  background-color: var(--secondary-color);
  color: var(--text-color);
}

  .contact_section .map_container {
    height: 360px;
    width: 100%;
  }
  .contact_section .map_container .map2 {
    height: 100%;
    width: 100%;
  }
  .contact_section .map_container .map2 #map {
    height: 100%;
    width: 100%;
  }


/* Footer */
.footer-section {
background-color: #1c1c1c;
color: white;
padding: 40px 20px;
}
.footer-container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
max-width: 1200px;
margin: auto;
}
.footer-logo, .footer-contact, .footer-businesstime {
flex: 1;
margin: 10px;
}

.footer-logo img {
width: 200px;
margin-bottom: 20px;
}
.social-icons a {
color: white;
margin-right: 10px;
font-size: 20px;
}
/* .footer-newsletter input {
padding: 10px;
width: 70%;
border: none;
border-radius: 10px;
} */

/* .footer-newsletter button {
padding: 10px;
background-color: var(--primary-color);
border: none;
color: white;
border-radius: 10px;
cursor: pointer;
} */
.footer-bottom {
text-align: center;
margin-top: 20px;
}

.footer-cities {
padding-top: 10px;
}
.footer-cities span {
  background: #333;
  padding: 5px 40px;
  margin: 5px;
  display: inline-block;
  border-radius: 5px;
  text-align: center;
}
.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ✅ Centers the links */
  gap: 10px 40px;           /* ✅ Adds spacing between them */
  padding-top: 10px;
  padding-bottom: 20px;
}

.footer-credit {
  text-align: center;
  color: #aaa; /* Light gray, you can change */
  font-size: 10px;
  margin-top: 20px;
  padding-bottom: 10px;
}


/* Register As Professional Page */
/* Progress Bar */
.progress_bar {
  font-family: Arial, sans-serif;
  /* background-color: #f5f5f5; */
  text-align: center;
  padding: 80px 20px;
}

.progress_bar .title {
  padding: 20px;
  padding-bottom: 40px;
  font-size: 24px;
  font-weight: bold;
}

.progress_bar .stepper-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Progress Line */
.progress_bar .stepper-wrapper::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #8e44ad, #2980b9, #1abc9c, #2e7d32);
  z-index: 1;
}

/* Step Items */
.progress_bar .stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  z-index: 2;
  padding: 10px 0;
  min-height: 220px; /* Ensures all items are the same height */
}

/* Step Counter as Diamond */
.progress_bar .step-counter {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: bold;
  background-color: gray;
  /* transform: rotate(45deg); */
  margin-bottom: 15px;
  position: relative;
}

/* Colors */
.progress_bar .purple { background-color: #8e44ad; }
.progress_bar .blue { background-color: #2980b9; }
.progress_bar .teal { background-color: #1abc9c; }
.progress_bar .green { background-color: #2e7d32; }

/* Step Name & Text */
.progress_bar .step-name {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 5px;
}

.progress_bar .stepper-item p {
  font-size: 15px;
  max-width: 180px;
  min-height: 50px; /* Ensures text height consistency */
  margin-top: 5px;
}

/* 🟢 Mobile View Fixes */
@media (max-width: 768px) {
  .progress_bar .stepper-wrapper {
      flex-direction: column;
      align-items: center;
  }

  /* Remove progress bar line in mobile */
  .progress_bar .stepper-wrapper::before {
      display: none;
  }

  /* Proper Spacing */
  .progress_bar .stepper-item {
      padding: 20px 0;
  }
}


/* RP Form */
/* Container Layout */
.RP_form {
  background-color: var(--primary-color);
  padding: 50px;
}
.RP_form .container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  background-color: var(--light-text);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 150px;
  padding: 30px;
  border-radius: 15px;
}

/* Left Side (Background Image) */
.RP_form  .left-side {
  width: 50%;
  position: relative;
}

.RP_form  .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Form Section */
.RP_form  .form-container {
  width: 50%;
  padding: 40px;
  box-sizing: border-box;
}

.RP_form  .form-container h2 {
  font-size: 24px;
  font-weight: bold;
}

.RP_form  .subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

/* Form Layout */
.RP_form  .form-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.RP_form  .form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 15px;
}

.RP_form  .form-group label {
  font-weight: bold;
  margin-bottom: 5px;
}

.RP_form  input, select, textarea {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #ffffff;
  outline: none;
  color: #000000;
  -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
}

/* .RP_form  textarea {
  min-height: 80px;
} */

/* Submit Button */
.RP_form  .submit-btn {
  display: inline-block;
  font-family: 'Merriweather Sans', sans-serif;
  text-transform: uppercase;
  padding: 10px 45px;
  background-color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  color: var(--light-text);
  margin-top: 15px;
  width: 200px;
}

.RP_form  .submit-btn:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--primary-color);
  color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
  }

  .left-side {
      width: 100%;
  }

  .form-container {
      width: 100%;
  }

  .form-row {
      flex-direction: column;
  }
}


/* Card View */
.BVF_section{
  padding: 60px;
}
.BVF_section .title {
  padding-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.BVF_section .card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.BVF_section .card {
  width: 300px;
  height: 330px;
  padding: 20px;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
  text-align: center;
  background-color: var(--secondary-color);
  border-radius: 10px;
  margin-bottom: 20px;

}
.BVF_section .img_box img {
  width: 100%;           /* or set a fixed width like 300px */
  height: 170px;         /* fixed height for uniformity */
  object-fit: cover;     /* crops and fills the area */
  border-radius: 5px;   
  margin-bottom: 15px;
}

/* .BVF_section .detail_box {
  background-color: gray;
} */

.BVF_section .detail_box h3 {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--text-color);
}

.BVF_section .detail_box p {
  font-size: 15px;
  margin-top: 5px;
  padding: 0;
  color: var(--light-text);
}


/* Service Detail Section */
.service_section2 {
  position: relative;
  background-color: var(--background-color);
  padding-top: 65px;
  padding-bottom: 75px;
}

.service_section2 .heading_container {
  color: var(--primary-color);
}

.service_section2 .box {
  margin-top: 30px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--light-text);
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
  padding: 25px 15px;
  -webkit-transition: all .3s;
  transition: all .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          border-radius: 15px;
}

.service_section2 .box .img-box {
  width: 150px;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service_section2 .box .img-box img {
  max-height: 150%;
  max-width: 150%;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding-top: 10px;
}

.service_section2 .box .detail-box {
  margin-top: 35px;
  text-align: left;
}

.service_section2 .box .detail-box h5 {
  font-weight: bold;
}

.service_section2 .box:hover {
  background-color: var(--secondary-color);
  color: var(--text-color);
  /* transform: scale(1.1, 1.1); */
}

.service_section2 .box:hover > .service_section2 .box:hover:not(:hover) {
  filter: blur(50px);
  transform: scale(0.9, 0.9);
}

.service_section2 .btn-box {
  background: var(--background-color);
  color: var(--text-color);
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 20px;
}
.service_section2 .btn-box:hover {
  background: var(--primary-color);
  color: var(--light-text);
}

.service_section2 .btn {
  background: var(--background-color);
  color: var(--text-color);
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 20px;
}
.service_section2 .btn:hover {
  background: var(--primary-color);
  color: var(--light-text);
}

/* Sidebar  */
.sidebar {
  position: fixed;
  top: 0;
  right: -500px;
  width: 450px;
  height: 100%;
  background: var(--background-color);
  color: var(--text-color);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.sidebar img {
  max-height: 100%;
  max-width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding-top: 10px;
}

.sidebar h2 {
  font-size: 25px;
  font-weight: bold;
}
.sidebar p {
  font-size: 20px;
  margin-top: 5px;
  padding: 0;
}

.sidebar.open {
  right: 0;
}
.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  color: red;
}

.specifications .spec {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  margin-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  background-color: var(--secondary-color);
  border-radius: 10px;
}
.specifications .spec img {
  width: 75px;
  height: 75px;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.sidebar .specifications .spec h4 {
  font-size: 20px;
  margin-top: 5px;
  padding: 0;
  font-weight: bold;
  color: var(--text-color);
}

.sidebar .specifications .spec p {
  font-size: 15px;
  margin-top: 5px;
  padding: 0;
  color: var(--text-color);
}

.helpful_reviews .review {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  margin-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  background-color: var(--secondary-color);
  border-radius: 10px;

}
.helpful_reviews .review img {
  width: 75px;
  height: 75px;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.sidebar .helpful_reviews h3 {
  margin-top: 40px;
  padding: 0;
  font-weight: bold;
}

.sidebar .helpful_reviews .review h4 {
  font-size: 15px;
  margin-top: 5px;
  padding: 0;
  font-weight: bold;
  color: var(--text-color);
}

.sidebar .helpful_reviews .review p {
  font-size: 10px;
  margin-top: 5px;
  padding: 0;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .services-container {
      flex-direction: column;
      align-items: center;
  }
}

/* Booking Service */
/* Popup Background */
.booking_service .popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Background Blur Effect */
  backdrop-filter: blur(5px); /* Adds blur effect */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup Box */
.booking_service .popup-content {
  background: white;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}

/* Close Button */
.booking_service .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Form Fields */
.booking_service .popup-content form {
  display: flex;
  flex-direction: column;
}

.booking_service .popup-content label {
  font-weight: bold;
  margin-top: 10px;
  text-align: left;
}

.booking_service .popup-content input, .popup-content textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Submit Button */
.booking_service .popup-content button {
  margin-top: 15px;
  padding: 10px;
  background: var(--primary-color);
  color: var(--light-text);
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.booking_service .popup-content button:hover {
  background: var(--secondary-color);
  color: var(--text-color);
}

.Page_Footer {
  margin-top: 30px;
  margin-bottom: 20px;
}
.Page_Footer h2 {
  padding-top: 15px;
}


/* Loader Section */ 

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #E0FBFC; /* Change as desired */
  display: flex;
  flex-direction: column; /* stack loader and text vertically */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  width: 48px;
  height: 48px;
  position: relative;
}

.loader-text {
  margin-top: 46px; /* spacing below the loader */
  font-size: 46px;
  color: #3D5A80;
  text-align: center;
  font-family: 'Merriweather Sans', sans-serif;
}
.loader-text2 {
  margin-top: 0px;
  font-size: 26px;
  color: #3D5A80;
  font-family: 'Merriweather Sans', sans-serif;
}

.loader:before {
  content: '';
  width: 48px;
  height: 5px;
  background: #999;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow324 0.5s linear infinite;
}

.loader:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #3D5A80;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  animation: jump7456 0.5s linear infinite;
}

@keyframes jump7456 {
  15% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, .9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadow324 {
  0%, 100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1);
  }
}
