 
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
	box-sizing: border-box;
}

a {
  color: #87c905;
  text-decoration: none;
}

a:hover {
  color: #e76668;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #87c905;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e65d5f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 12px 0;
}

#header.header-scrolled {
  padding: 8px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

 

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: #87c905;
}

#header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: #87c905;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: #111111;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #87c905;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #87c905;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #87c905;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #87c905;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url("../images/banner1.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 82px;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

#hero h1 .highlight-text {
  color: #87c905;
  font-weight: 700;
  transition: opacity 0.4s ease;
}


#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 50px;
  color: #fff;
  background: #87c905;
  border: 2px solid #87c905;
}

#hero .btn-get-started:hover {
  background: transparent;
  border-color: #fff;
}

@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 58px;
  }

  #hero h1 {
    font-size: 28px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #87c905;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #2b2b2b;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #aaaaaa;
}

.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #87c905;
  content: "/";
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

/*#clients {position: relative; background: #ddd;}*/

#clients .swiper-pagination {
margin-top: 35px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
}

#clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #87c905;
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #87c905;
}

#clients .swiper-slide {position: relative;  background: #87c905; width: 180px; min-height: 150px; height: 100%; display: flex; justify-content: space-between; align-items: center; border-radius: 15px; flex-direction: column; padding: 10px 0 0px 0;}

#clients  .swiper-slide img {
/*  opacity: 0.5;*/
  transition: 0.3s;
/*  filter: grayscale(100);*/
/*	filter: invert(1);*/
	width: 70px;
	 
}

#clients .swiper-slide p {color: #fff; font-size: 1rem; line-height: 1.2; font-weight: 500;}
 
 
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  position: relative;
  z-index: 10;
}

.about .content {
  padding: 0px 30px 30px 0;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 20px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #87c905;
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: #e35052;
  background: #87c905;
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #87c905;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 80px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.08);
/*	box-shadow: 0px 3px 0px rgb(150 219 14 / 89%);*/
  border-radius: 4px;
}

.counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #87c905;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #111111;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}


.purecounter::after {
   content: "K";
 }
 .purecounter1::after {
   content: "" !important;
 }

 
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #252525;
  transition: 1s all;
  position: relative;
	max-height: 140px;
  height: 100%;

	
}

.services .icon-box:hover {
/*  background: #2b2b2b;*/
/*	background: #f0fadc;*/
/*  border-color: #87c907;*/
/*	box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);*/
	box-shadow: #87c907 0px 20px 25px -25px;
  transform: translateY(-5px);

}

.services .icon-box i {
  float: left;
  color: #87c905;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #fff;
  transition: 0.3s;
}

.services .icon-box h4 a:hover {
  text-decoration: underline;
}

.services .icon-box .icon-box:hover h4 a {
  color: #87c905;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}
 
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

#testimonials {
    position: relative;
    overflow: hidden;
    padding: 50px 0px;
}

#testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/feedback.jpeg) center center / cover no-repeat;
    filter: grayscale(100%);
    z-index: 0;
}

 
 
 


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact {background: #f6fde96e;}
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 10px;
  border-radius: 4px;
	position: relative;
}

.contact .info-box1 {min-height: 186px; height: 100%;}
.contact .info-box .location {
  display: inline-block;
  background: #e84f13;
  border-radius: 20px;
  padding: 3px 15px;
  font-size: 1rem;
  color: #fff;
  right: 0px;
  position: absolute;
  top: -14px;
}


.contact .info-box i {
  font-size: 32px;
  color: #87c905;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #c4ee72;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

 

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

 
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111111;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1b1b1b;
}





#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #87c905;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}
 
#footer .footer-top .footer-contact p a {color: #87c905;}
#footer .footer-top .footer-contact p a:hover {color: #aaaaaa;}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

 

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
	text-align: center;
}

 
#footer .footer-top .footer-links ul li {
  padding: 10px 5px;
display: inline;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 2;
}

#footer .footer-top .footer-links ul a:hover {
/*  text-decoration: none;*/
  color: #87c905;
/*	 text-decoration: underline;*/
}

 
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #87c905;
  color: #fff;
  text-decoration: none;
}

.floatbtn {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 64px;
  right: 10px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
  box-shadow: 2px 2px 3px #999;
  z-index: 99999;
	display: flex;
  justify-content: center;
  align-items: center;
}
 
.floatbtn:hover {color: #333;}

#drawer .contact-btn {
   position: relative;
   right: 83px;
   text-transform: uppercase;
   top: 155px;
   font-weight: 600;
   padding: 5px 20px;
   background-color: #ff7510;
   color: #fff;
   font-size: 1.2rem;
   border: none;
   border-radius: 8px 8px 0 0px;
   cursor: pointer;
   z-index: 999;
   rotate: 270deg;
 }
 .drawer {
   position: fixed;
   top: 20%;
   right: -300px; /* initially off-screen */
   width: 300px;
   /*  height: 40%;*/
   /*  background-color: #fff;*/
   transition: right 0.3s ease;
   z-index: 998;
 }
 #drawer .drawer-content {
   padding: 20px;
   background: #fff2e9;
   position: relative;
   border-left: solid 3px #ff7510;
   border-top: solid 1px #f2f2f2;
   border-bottom: solid 1px #f2f2f2;
 }
 #drawer .drawer-content h2 {
   font-size: 1rem;
   text-transform: uppercase;
   line-height: 1.5;
   font-family: 'Roboto';
   font-weight: 400;
   color: #222;
   text-align: left;
   margin: 0px;
   padding: 0px 0px 0 0;
 }
 #drawer .drawer-content p {
   font-size: .9rem;
   line-height: 1.5;
   font-family: 'Roboto';
   font-weight: 400;
   color: #666;
   text-align: left;
   margin: 0px;
   padding: 5px 0px 0 0;
 }
 #drawer .whtchat {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 2;
   font-weight: normal;
   text-align: center;
   white-space: nowrap;
   vertical-align: middle;
   font-family: 'Roboto';
   padding: 10px 30px 10px 30px;
   font-size: 1rem;
   line-height: 1.1;
   outline: none;
   text-decoration: none;
   color: #fff;
   background: #25d366;
   border: 1px solid #25d366;
   transition: all 0.3s ease 0s;
   margin: 10px 0 0 0px;
   /*  border-radius: 20px;*/
   bottom: 0px;
   position: inherit;
   text-transform: inherit;
   z-index: 0;
   border-radius: 10px;
   width: auto;
 }
 #drawer .whtchat:hover {
   background: #686868;
   border: 1px solid #686868;
   color: #fff;
 }
 .drawer a.applybtnew {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 2;
   font-weight: normal;
   text-align: center;
   white-space: nowrap;
   vertical-align: middle;
   font-family: 'Roboto';
   padding: 10px 30px 10px 30px;
   font-size: 1rem;
   line-height: 1.1;
   outline: none;
   text-decoration: none;
   color: #fff;
   background: #0672cb;
   border: 1px solid #0672cb;
   transition: all 0.3s ease 0s;
   margin: 15px 0 0 0px;
   /*  border-radius: 20px;*/
   bottom: 0px;
   position: inherit;
   text-transform: inherit;
   z-index: 0;
   border-radius: 10px;
   width: auto;
 }
 .drawer a.applybtnew:hover {
   background: #686868;
   border: 1px solid #686868;
   color: #fff;
   /*  border-radius: 20px;*/
 }
 #drawer .btn-close {
   position: absolute;
   top: 0px;
   right: 0px;
 }
 @keyframes pulse {
   0% {
     transform: scale(1);
   }
   50% {
     transform: scale(1.05);
   }
   100% {
     transform: scale(1);
   }
 }
 @keyframes swing {
   0% {
     transform: rotate(0deg);
   }
   25% {
     transform: rotate(10deg);
   }
   50% {
     transform: rotate(-10deg);
   }
   75% {
     transform: rotate(5deg);
   }
   100% {
     transform: rotate(0deg);
   }
 }
 .pulse {
   animation: pulse 1s infinite ease-in-out;
 }
 .swing {
   animation: swing 1s infinite ease-in-out;
   transform-origin: top center;
 }





#contactpage {
  position: relative;
  padding: 30px 0px 30px 0;
  background: #fff url("../images/contact-us-banner.jpg") top/cover no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  min-height: 400px;
  height: 100%;
}
#contactpage .conwrap {
  padding: 0px 0px 0px 0px;
}
#contactpage .conwrap h1 {
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  font-weight: 300;
  padding: 5px 20px 10px 20px;
  display: inline-block;
  background: #83b81af7;
  margin-top: 150px;
}
#contactpage .conwrap p {
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  text-align: left;
  font-weight: 500;
  padding: 10px 20px;
  display: block;
  background: #83b81af7;
  width: fit-content;
  margin: 10px 0px;
}

#booknow {
  position: relative;
  padding: 20px 0 20px 0px;
  background: #f5f5f5;
  /*	background: rgb(219,242,170);*/
  /*background: linear-gradient(151deg, rgba(219,242,170,1) 0%, rgba(255,255,255,1) 56%, rgba(181,236,67,1) 100%);*/
  /*    background: #fff url("../images/contact_bg_new.jpg") top/cover no-repeat;*/
}
#booknow .bokwrap {
  padding: 0px 0px 0px 0px;
}
 
#booknow .bokwrap .card {
  border: solid 1px #97de09;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 14px 8px rgba(151, 222, 9, 0.1);
  /*
background: rgb(219,242,170);
background: linear-gradient(151deg, rgba(219,242,170,0.41220238095238093) 0%, rgba(255,255,255,1) 98%, rgba(181,236,67,1) 100%);
*/
  background: rgb(181, 236, 67);
  background: linear-gradient(225deg, rgba(181, 236, 67, 1) 3%, rgba(219, 242, 170, 0.41220238095238093) 3%, rgba(255, 255, 255, 1) 97%, rgba(181, 236, 67, 1) 97%);
}
#booknow .bokwrap .card h4 {
  padding: 15px;
  background: #b5ec43;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  position: relative;
  margin: 0 auto;
  top: -50px;
  font-weight: 700;
  border-radius: 5px;
}
#booknow .bokwrap .form-step h5 {
  background: #ceea9a;
  padding: 10px 15px;
  font-weight: 600;
  border-bottom: dashed 1px #7bc74d;
  text-transform: uppercase;
  font-size: 1.1rem;
}
#booknow .bokwrap .form-step .form-label {
  font-weight: 500;
  color: #333;
}
#booknow .bokwrap .form-step .form-select {
  display: block;
  width: 100%;
  padding: 0.5rem 2.25rem 0.5rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  background-color: #f3f9e7;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #98de0a;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-left: 3px solid #98de0a;
}
#booknow .bokwrap .form-step .form-select:focus {
  background-color: #fff;
  border-color: #98de0a;
  outline: 0;
  box-shadow: 0 0 0 0.125rem rgba(152, 222, 10, 0.5);
}
#booknow .bokwrap .form-step .form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  background-color: #f3f9e7;
  background-clip: padding-box;
  border: 1px solid #98de0a;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  border-left: 3px solid #98de0a;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#booknow .bokwrap .form-step .form-control:focus {
  background-color: #fff;
  border-color: #98de0a;
  outline: 0;
  box-shadow: 0 0 0 0.125rem rgba(152, 222, 10, 0.5);
}
#booknow .bokwrap .btn-custom {
  /* Initial background gradient */
  background: rgb(213, 255, 131);
  background: linear-gradient(86deg, rgba(213, 255, 131, 1) 23%, rgba(151, 222, 9, 1) 86%);
  border-color: #7bc74d;
  color: #000;
  font-weight: 500;
  padding: 10px;
  width: 125px;
  transition: all 1s ease-in-out; /* Smooth and slightly slower transition */
}
#booknow .bokwrap .customsubmit {
  background: #7bc74d;
}
#booknow .bokwrap .btn-custom:hover {
  /* Hover background gradient */
  background: rgb(213, 255, 131);
  background: linear-gradient(86deg, rgba(213, 255, 131, 1) 0%, rgba(151, 222, 9, 1) 12%);
  /*  border-color: #007acc;*/
  border-color: #68a13b;
  box-shadow: 0 5px 15px rgba(213, 255, 131, 1);
  color: #000;
}
#booknow .bokwrap .icon-container {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  padding: 0px 0px;
}
#booknow .bokwrap .icon-btn {
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 2px solid #7bc74d;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  background-color: white;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
#booknow .bokwrap .model-select {
  display: none;
}
#booknow .bokwrap .icon-btn img {
  width: 80px;
  padding: 10px;
  filter: saturate(3)
}
#booknow .bokwrap .icon-btn:hover {
  background-color: #e6f3c8;
}
#booknow .bokwrap .icon-btn.active1 {
  background-color: #b5ec43;
  color: #000;
}
#booknow .bokwrap .icon-btn:hover img {
  filter: saturate(0)
}
#booknow .bokwrap .icon-btn.active img {
  filter: saturate(0)
}
#booknow .bokwrap .time-slot-main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 1px;
}
/* Styling for each time slot */
#booknow .bokwrap .time-slot {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 10px 10px;
  border: 1px dotted #b5ec43;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  font-size: 1rem;
  transition: 0.3s;
}
/* Radio button styling */
#booknow .bokwrap .time-slot input[type="radio"] {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: green;
}
/* Default background */
#booknow .bokwrap .time-slot {
  background-color: #e6f3c8;
  color: #000;
  border: 1px solid #98de0a;
}
#booknow .bokwrap .time-slot:hover {
  background-color: #98de0a;
  /*	background-color: #e6f3c8;*/
}
/* Highlight selected time slot */
#booknow .bokwrap .time-slot.active {
  background-color: #98de0a;
  color: #333;
}
/* Custom tick mark added inside the label */
#booknow .bokwrap .time-slot.active input[type="radio"]::before {
  content: "✔";
  font-size: 10px;
  color: #fff;
  display: block;
  position: absolute;
  left: 16px;
  top: 10px;
}
/* Zoom effect and tick on hover */
#booknow .bokwrap .time-slot:hover {
  transform: scale(1.01); /* Slight zoom effect */
  /*	box-shadow: 0 14px 8px rgba(151, 222, 9, 0.1);*/
  box-shadow: 0 4px 7px rgba(151, 222, 9, 0.5);
}
#booknow .bokwrap .selectservice-main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 1px;
}
/* Styling for each slotservice service */
#booknow .bokwrap .slotservice {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 10px;
  border: 1px dotted #b5ec43;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
/* Radio button styling */
#booknow .bokwrap .slotservice input[type="radio"] {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: green;
}
/* Default background */
#booknow .bokwrap .slotservice {
  background-color: #e6f3c8;
  color: #000;
  border: 1px solid #98de0a;
}
#booknow .bokwrap .slotservice:hover {
  background-color: #98de0a;
  /*	background-color: #e6f3c8;*/
}
/* Highlight selected time slot */
#booknow .bokwrap .slotservice.active {
  background-color: #98de0a;
  color: #333;
}
/* Custom tick mark added inside the label */
#booknow .bokwrap .slotservice.active input[type="radio"]::before {
  content: "✔";
  font-size: 10px;
  color: #fff;
  display: block;
  position: absolute;
  left: 16px;
  top: 10px;
}
/* Zoom effect and tick on hover */
#booknow .bokwrap .slotservice:hover {
  transform: scale(1.01); /* Slight zoom effect */
  /*	box-shadow: 0 14px 8px rgba(151, 222, 9, 0.1);*/
  box-shadow: 0 4px 7px rgba(151, 222, 9, 0.5);
}
#booknow .bokwrap .slotservice {
  width: 120px;
}
#booknow .bokwrap .slotservice:hover {
  width: 130px;
}
#booknow .bokwrap .slotservice.active {
  background-color: #98de0a;
  color: #333;
}
#booknow .bokwrap .servicetype-main {
  display: flex;
  justify-content: flex-start;
  position: relative;
  flex-wrap: nowrap;
}
/* Styling for each service type */
#booknow .bokwrap .servicetype {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 10px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  background-color: #e6f3c8;
  color: #000;
  border: 1px solid #98de0a;
}
/* Radio button styling */
#booknow .bokwrap .servicetype input[type="radio"] {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: green;
}
/* Hover effect */
#booknow .bokwrap .servicetype:hover {
  background-color: #98de0a;
  box-shadow: 0 4px 7px rgba(151, 222, 9, 0.5);
}
/* Active state */
#booknow .bokwrap .servicetype.active {
  background-color: #98de0a;
  color: #333;
}
/* Custom tick mark added inside the label */
#booknow .bokwrap .servicetype.active input[type="radio"]::before {
  content: "✔";
  font-size: 10px;
  color: #fff;
  display: block;
  position: absolute;
  left: 16px;
  top: 10px;
}
/* Zoom effect and tick on hover */
#booknow .bokwrap .servicetype:hover {
  transform: scale(1.01); /* Slight zoom effect */
  /*	box-shadow: 0 14px 8px rgba(151, 222, 9, 0.1);*/
  box-shadow: 0 4px 7px rgba(151, 222, 9, 0.5);
}
#booknow .bokwrap .servicetype {
  width: 50%;
}
#booknow .bokwrap .servicetype.active {
  background-color: #98de0a;
  color: #333;
}
/* Service content divs */
#booknow .bokwrap .service-content {
  display: none;
  margin: 20px 0px;
  padding: 20px;
  /*    border: 1px solid #eee;*/
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 3px 8px rgba(206, 212, 218, 0.5);
}
#booknow .bokwrap .service-content.active {
  display: block;
}
#booknow .bokwrap .service-content .tablediv {
  box-shadow: 0 4px 10px rgba(151, 222, 9, 0.8);
  border-radius: 10px;
  background: #fff;
  padding: 15px;
}
#booknow .bokwrap .service-content .tablediv table tr, #booknow .bokwrap .service-content .tablediv table td, #booknow .bokwrap .service-content .tablediv table, #booknow .bokwrap .service-content .tablediv table th {
  border: solid #98de0a 1px;
}
#booknow .bokwrap .service-content .tablediv table thead {
  background: #e6f3c8 !important;
  font-size: .9rem;
}
#booknow .bokwrap .service-content .tablediv table thead th {
  border-bottom: 2px solid #98de0a;
}
#booknow .bokwrap .service-content .tablediv table tr {
  font-weight: 500;
}
#booknow .bokwrap .service-content .tablediv table .tfoot {
  /*		background: #98de0a !important; */
  background: linear-gradient(86deg, rgba(213, 255, 131, 1) 23%, rgba(151, 222, 9, 1) 86%);
  color: #304406;
}
#booknow .bokwrap .pulse {
  animation: pulseGlow 1.5s infinite;
}
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
    opacity: 1;
  }
}



#booknow .bokwrap a {text-decoration: none; color: #87c907;}
#booknow .bokwrap a:hover {text-decoration: underline;}



@media (max-width: 576px) {

	#hero {
  width: 100%;
  height: 80vh;
  background: url("../images/banner1.jpg") no-repeat;
  background-size: cover;
  position: relative;
		background-position: 75% 80%;
  
}
	
	#header .logo img {
		max-height: 45px;}
	
	.services .icon-box {  height: auto;
    max-height: inherit;}


}