@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:  "DM Sans", sans-serif;
  
  
}
body {
  background: #f0faff;

}
h1,h2,h3,h4,h5,h6,p{
  font-weight: 400 !important;
  line-height: 1.5rem !important;
}
section{
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 200px;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;

}

nav ul {
  display: flex;
  width: 45%;
  list-style: none;
  justify-content: space-between;
}

nav ul li a {
  text-decoration: none;
  color: #2f4f4f;
}

nav ul li a:hover {
  color: #180b47 !important;
  border-bottom: 2px solid #2f4f4f;
  padding-bottom: 2px;
}
nav ul li a.active{
  color: #ff2700 !important ;
}

.nav,
.nav .nav-links {
  display: flex;
  align-items: center;
}

.nav {
  justify-content: space-between;
  padding-bottom: 10px;
}
a {
  color:black;
  text-decoration: none !important;
}
.nav .logo img {
  width: 200px;
  padding-left: 20px;
}
.nav .nav-links {
  column-gap: 10px;
  list-style: none;
}
.nav .nav-links a {
  transition: all 0.2s linear;
  font-family: "Andika", sans-serif !important;
  color: black;
}
.nav.openSearch .nav-links a {
  opacity: 0;
  pointer-events: none;
}
.nav .search-icon {
  color:black;
  font-size: 20px;
  cursor: pointer;
}

.nav .search-box {
  position: absolute;
  right: 250px;
  height: 45px;
  max-width: 555px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s linear;
}
.nav.openSearch .search-box {
  opacity: 1;
  pointer-events: auto;
}
.search-box .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  left: 15px;
  color: #4a98f7;
  transform: translateY(-50%);
}
.search-box input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #fff;
  padding: 0 15px 0 45px;
}

.nav .navOpenBtn,
.nav .navCloseBtn {
  display: none;
}

/* responsive */
@media screen and (max-width: 1160px) {
  .nav {
    padding: 15px 100px;
  }
  .nav .search-box {
    right: 150px;
  }
}
@media screen and (max-width: 950px) {
  .nav {
    padding: 15px 50px;
  }
  .nav .search-box {
    right: 100px;
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .nav .navOpenBtn,
  .nav .navCloseBtn {
    display: block;
    padding-left: 20px;
  }
  .nav {
    padding: 15px 20px;
  }
  nav ul li a:hover {
    color: #f0743b;
    border-bottom: 0;
    padding-bottom: 0;
  }
  nav ul li a.active{
    color: black;
  }
  nav ul {
   
    justify-content:flex-start;
  }
  .nav .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    max-width: 280px;
    width: 100%;
    padding-top: 60px;
    row-gap: 30px;
    flex-direction: column;
    background-color: #11101d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 1000;
  }
  .nav.openNav .nav-links{
    left: 0;
    

  }
  .nav .nav-links a {
    color: white;
    font-family: "Andika", sans-serif !important;
  }
  .nav .navOpenBtn {
    color: black;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .navCloseBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .search-box {
    top: calc(100% + 10px);
    max-width: calc(100% - 20px);
    right: 50%;
    transform: translateX(50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .nav .logo img {
    width: 150px;
}
}

/* @media screen and (max-width: 768px) {
    .nav .nav-links {
      position: fixed;
      top: 60px; 
      left: -100%;
      width: 100%;
      height: calc(100vh - 60px); 
      background-color: #11101d;
      padding-top: 60px; 
      transition: left 0.3s ease;
      z-index: 1000;
    }
  
    .nav.openNav .nav-links {
      left: 0; 
    }
  
    .nav .navOpenBtn,
    .nav .navCloseBtn {
      display: block;
    }
  
    .nav .navCloseBtn {
      position: absolute;
      top: 20px;
      right: 20px;
      color: #fff;
      font-size: 20px;
    }
    .nav .navOpenBtn {
        color: black;
        font-size: 20px;
        cursor: pointer;
      }
  } */
  

  .banner{
   position: relative;
   width: 100%;
   height: 100vh;
}
.banner img{
   
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
    z-index: -1;
    border-radius: 0 0 0 16vw;
}
.banner .banner-text img{
  height: 100vh;
}
.banner img::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; 
  opacity: 0.4;
  z-index: 2;
}

@media only screen and (max-width: 768px) {
  section{
    padding-top: 25px;
  }
  .banner {
    position: relative;
    width: 100%;
    height: 100vh;
  }
  .banner .banner-item{

    height: 100vh;
    display: flex;
    position: absolute;
    align-items: center !important;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    transform: none;
    top: 0;
    left: 0;
    
}

 /* .img-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}*/

.img-banner img {
    width: 100%;
    height: 100vh;
    object-fit: cover; 
    border-radius: 0 0 0 0; 
}

   
    .banner-text{
     position: unset !important;
   transform: none !important;
        top: 0!important;
        left: 0 !important;
        
    
    }  
    .banner-text p {
      margin-bottom: 20px; 
      font-weight: 800 !important;
      font-family: "Andika", sans-serif !important;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-size: 25px !important;
      line-height: 2rem !important;
      text-align: center;
      
      
  }
  .butn{
    position: unset !important;
    transform: none !important;
    padding-top: 25px;
    top:0 !important;
    left:0 !important;
    transform: none;
    text-align: center;
    color: white; 
    z-index: 1;
  }

  .book-now-btn {
    
    font-size: 14px !important;
    background-color:#ff5e149c !important; 
   
    
  }

  
  }

 

.banner .container .row {
    display: flex;
    align-items: center;
}

.banner-text {
    position: absolute;
    top: 55%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: white; 
    z-index: 1;
    
}



.banner-text p {
  
    margin-bottom: 20px; 
    font-weight: 800 !important;
    font-family: "Andika", sans-serif !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 50px ;
    line-height: 2rem !important;
    
    
}


.book-now-btn {
  padding: 10px 25px;
  background-color: #141313d5; /* Adjust button background color */
  color: white; /* Adjust button text color */
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  
}

.book-now-btn:hover {
  background-color: #ff5e14; /* Adjust button background color on hover */
}
.butn{
  position: absolute;
  top: 75%;
  left: 30%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white; 
  z-index: 1;
  
}

.content{
  padding:30px 0;
}
.content p{
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}
.about-banner img{
    width: 100%;
    height:auto;
    left: 0;
    top:50px;
    z-index: -1;
}



.about-us{
  padding-bottom: 30px 0;
 
}
.about-us img{
  width: 600px;
  height: auto;
}
.about-us span{
  color:#ff5e14 ;
  font-family:"Andika", sans-serif !important; ;
}
 .details{
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  padding-bottom: 30px;
  padding-top: 40px;
  padding-left: 40px !important;
 }
 .details .but{
  display: flex;
  justify-content: flex-start;
 
  
 }
 .details .but button{
  border-radius: 10px;
  padding: 5px 10px;
  background-color: black;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.596);
 }
 .details .but button:hover{
  background-color:rgb(255 94 20);
  transition: all  ease-in;
 }
 .details h5{
  font-size: 16px !important;
  line-height: 2rem !important;
  
 }
 .details h2{
  font-family:  "Andika", sans-serif !important;
  font-size:40px ;
  text-align: center;
 }
.about-banner .banner-text{
  position: relative;
  top: 230px;
  left: 245px;
}
.about-banner .banner-text h2{
  font-size: 60px;
  font-weight: 800 !important;
  color: white;
 
}
 .about-contact {
  padding: 20px;
  background-color: #f5f5f5;
}

.about-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.about-contact i {
  margin-right: 10px;
  color: #007bff; /* Icon color */
}
.about-contact .map{
  margin-left: 15px;
  margin-right: 15px;
}

.about-contact .butt{
  display: flex;
  justify-content: center;
  padding-top: 100px;
 
 }
 .about-contact .detail .img{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
 column-gap: 30px;
 }
 .about-contact .detail .img img{
  width: 100%;
  filter: saturate(0);
  transition: all .1s ease-in-out;

 }
 .about-contact .detail .img img:hover{
  filter: saturate(0.5);
 }
 .about-contact .butt a{
  color: white;
 } 
 .about-contact  .butt button{
 
  padding: 10px 20px;
  background-color: black;
  border: 1px solid rgba(255, 255, 255, 0.596);
 }
 .about-contact button:hover{
  background-color:rgb(255 94 20);
  transition: all  ease-in;
 }
/* .details{
    display: flex;
    flex-direction: column;
    justify-content: center;
} */

@media only screen and (max-width: 768px) {
  .content p{
    font-size: 14px !important;
    
  }
}

@media (max-width: 768px) {
  
  .sm-hide {
      display: none;
  }

  .about-contact .row {
    display: flex;
    flex-wrap: wrap;
  }

  .about-contact .col-md-6 {
    flex: 1;
    padding: 10px;
  }
  .about-contact .detail .img{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   column-gap: 0px;
   }

  .about-contact .img img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
 
  .about-contact .loc-det p {
    margin-bottom: 10px;
    font-size: 11px;
    color: #333;
  }

  .about-contact .loc-det i {
    margin-right: 10px;
    color: #007bff; /* Icon color */
  }

  .about-contact .butt {
    margin-top: 20px;
    padding-top: 20px;
  }

  .about-contact .butt button {
    background-color: #f07726;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }

  .about-contact .butt button a {
    text-decoration: none;
    color: inherit;
  }

  .about-contact .butt button:hover {
    background-color: #0056b3;
  }



  

  .about-us img{
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    
  }
  .about-us {
    padding: 0 15px !important;
  }
  .about-us h2 {
    font-size: 30px !important;
    text-align: center;
    font-family:  "Andika", sans-serif !important;
    width: 100%;
    font-weight: 500 !important;
  }
  .about-us h5{
    font-size: 14px !important;
    
   }
   .about-us p{
    font-size: 14px !important;
    
   }
  
   .about-us .container{
    padding: 0;
   }
   .slick-slide img {
    width: 200px !important;
    height: 200px !important;
   
  }
  .reviews .heading h2{
    text-align: center;
    font-size: 30px !important;
    font-weight: 500 !important;
    font-family: "Andika", sans-serif !important;
    /* line-height: 1.5rem; */
  }
  .ser-main .heading h2{
    text-align: center;
    font-size: 30px !important;
    font-weight: 500 !important;
    font-family: "Andika", sans-serif !important;
    /* line-height: 1.5rem; */
  }
  .contact-us iframe{
    width: 100% !important;
  }
  .contact-us form{
    margin-left: 0;
    padding-bottom: 20px;
  }
  .contact-us .container {
    height: 100vh !important;
  }
  .contact-us .map{
    margin-left: 15px;
    margin-right: 15px;
  }
  .blog .heading h2{
    text-align: center;
    font-size: 30px !important;
    font-weight: 500 !important;
    font-family: "Andika", sans-serif !important;
    /* line-height: 1.5rem; */
  }
 
  }

  
  .ser-main .heading span{
    color: #ff5e14;
    font-family:"Andika", sans-serif !important; 
  }
  .reviews .heading span{
    color: #ff5e14;
    font-family:"Andika", sans-serif !important; 
  }

@media (min-width: 768px) {
  .lg-hide {
      display: none;
  }
  
}
.service{
  background-image: url('img/spa-1.jpeg');
  background-position: center;
  background-size: cover;
  
}



/* slider */

.slick-slide {
  margin: 0px 20px;
  display: flex !important;
  align-items: center; 
  justify-content: center !important;
}

.slick-slide img {
  width: 200px;
  height: 200px;
 
}

.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 240px;
}
.slick-list:focus
{
  outline: none;
}
.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after
{
  display: table;
  content: '';
}
.slick-track:after
{
  clear: both;
}
.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
 
}

[dir='rtl'] .slick-slide
{
  float: right;
}
.slick-slide img
{
  display: block;
}

.slick-slide.slick-loading img
{
  display: none;
}
.slick-slide.dragging img
{
  pointer-events: none;
}
.slick-initialized .slick-slide
{
  display: block;
}
.slick-loading .slick-slide
{
  visibility: hidden;
}
.slick-vertical .slick-slide
{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}


.slide {
  position: relative; /* Ensure the title box is positioned relative to the slide */
}




 .footer-section {
  background: #151414;
  position: relative;
  margin-top: 30px;
}
.footer-section .col-xl-3{
  padding-bottom: 10px;
}
.footer-cta {
  border-bottom: 1px solid #373636;
  padding-bottom: 8px !important;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.single-cta{
  display: flex;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 0;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo img {
  max-width: 120px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 21px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg {
  background: #3b5998;
}
.twitter-bg {
  background: #55acee;
}
.google-bg {
  background: #dd4b39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover {
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  color: #fff;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area {
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a {
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}
.footer-cta .row .col-xl-4:nth-child(1) .single-cta i {
  position: absolute;
  color: #ff5e14;
}
.footer-cta .row .col-xl-4:nth-child(1) .single-cta .cta-text {
  padding-left: 32px;
}
.footer-cta .row .col-xl-4:nth-child(2) .single-cta i {
  color: #14ffa7;
}
.footer-cta .row .col-xl-4:nth-child(3) .single-cta i {
  color: #ffd700;
}
.footer-social-icon .social_icon {
  text-align: left;
}
.footer-social-icon .social_icon li {
  float: inherit !important;
  display: inline-block !important;
  width: inherit;
}
.footer-social-icon .social_icon li a i {
  font-size: 15px;
  line-height: 39px;
}
.footer-social-icon .social_icon li a {
  width: 40px;
  height: 40px;
}

.social_icon {
  text-align: right;
  margin: 0;
  margin-top: 3px;
}
.social_icon li {
  display: inline-block;
  margin: 0 5px;
}
.social_icon li a {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: #fff;
  color: #000;
  text-align: center;
  border-radius: 100%;
  transition: 0.2s ease-in-out;
}
.social_icon li a i {
  font-size: 15px;
  line-height: 20px;
}
.social_icon li:nth-child(1) a {
  background: #4267b2;
  color: #fff;
}
.social_icon li:nth-child(2) a {
  background: #1da1f2;
  color: #fff;
}
.social_icon li:nth-child(3) a {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  color: #fff;
}
.social_icon li:nth-child(4) a {
  background: #ff0000;
  color: #fff;
}
.social_icon li:nth-child(1):hover a {
  background: #fff;
  color: #4267b2;
}
.social_icon li:nth-child(2):hover a {
  background: #fff;
  color: #1da1f2;
}
.social_icon li:nth-child(3):hover a {
  background: #fff;
  color: #bc1888;
}
.social_icon li:nth-child(4):hover a {
  background: #fff;
  color: #ff0000;
}


.service .card {
  padding: 24px;
  border: 1px solid #ffffff1f;
  border-radius: 18px;
  background: linear-gradient(193deg, #edede5b6 53%, #d9d7e578 100%);
  box-shadow: inset 0 0 6px hsla(0,0%,100%,0.2);
  position: relative;
  max-width: 300px;
  transition: all 1.7s ease;
  margin: 28px auto;
}

.service .card:hover {
  box-shadow: inset 0 0 6px hsla(0, 17%, 6%, 0.4);
}

.service .card::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    background: linear-gradient(45deg, #ffffff00, #ffffff 50%, #ffffff00);
    top: -1px;
    right: 20px;
    transition: all 1.4s ease;
}

.service .card:hover::before {
    right: calc(50% - 20px);
}

.service .card::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    background: linear-gradient(45deg, #ffffff00, #ffffff87 50%, #ffffff00);
    bottom: -1px;
    left: 20px;
    transition: all 1.4s ease;
}

.service .card:hover::after {
    left: calc(50% - 20px);
}

.service {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-bottom: 30px;
  min-height: 100vh;
}

.ser-main .heading h2{
  font-family:  "Andika", sans-serif !important;
  font-size:40px;
  text-align: center;
  
}
.ser-main .heading p{
  text-align: center;
  color: black;
  padding: 0px 15px;
  
}
.next .row{
  display: flex;
  justify-content: center;
}
.card_img {
  margin-left: auto;
  display: block;
  width: 50px;
}

.service .sec p{
  font-size: 14px;

}
.service .card h4{
  background: linear-gradient(45deg, #3c3e3e, #2256a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reviews{
  padding-bottom: 50px;
}

.reviews .heading h2{
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  font-family: "Andika", sans-serif !important;
}

/* .demo{ background: #f8f8f8; } */
.testimonial{
    margin: 0 20px 40px;
    padding-top: 60px;
}
.testimonial .testimonial-content{
    padding: 35px 25px 35px 50px;
    margin-bottom: 25px;
    background: #ffffff62;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    position: relative;
}
.testimonial .testimonial-content:after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 22px;
    transform: rotate(45deg);
}
.testimonial-content .testimonial-icon{
    width: 50px;
    height: 45px;
    background: #ff5e14;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}
.testimonial-content .testimonial-icon:before{
    content: "";
    border-bottom: 16px solid #ff5e14;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}
.testimonial .description{
    font-size: 15px;
    font-style: italic;
    color: #2c2b2b;
    line-height: 23px;
    margin: 0;
}
.testimonial .title{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    color: #ff5e14;
    font-weight: 500;
}
/* .owl-theme .owl-controls{
    margin-top: 20px;
} */
.owl-theme .owl-controls {
  margin-top: 0 !important;
  text-align: center;
}
.owl-theme .owl-controls .owl-page span{
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: #ff5e14;
}

.reviews {
  background-image:url('img/women-spa.jpg') !important;
  background-size: cover;
  background-position: center; 
  height: 65vh;
  background-attachment: fixed;
}
  

@media (max-width: 768px) { /* Adjust the breakpoint as needed */
  .reviews {
    height: 50vh;
  }
  .testimonial{
    padding-top: 0 !important;
    margin: 0 20px !important;
  }
}
/* contact */



.contact-us .container {
	height: 70vh;
}


form {
	min-width: 20rem;
  margin-left: 50px;
 span{
  color: #ff5e14;
  font-family:"Andika", sans-serif !important; 
 }
	
	.title {
		
		color: #212529;
		font-size: 40px;
    font-family: "Andika", sans-serif !important;

	}
  
  .form-group{
    padding-left: 10px;
    padding-right: 10px;
  }
	
  .form-control {
    background-color: #f2f6f8;
		border-radius: 2rem;
    border: none;
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
		
    &.thick {
      height: 3.3rem;
      padding: .5rem 3.5rem;
    }
		
		&:focus {
			background-color: #f2f6f8;
			border: none;
			box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
		}
  }
	
	.message .form-control {
			padding: .5rem 3.5rem;
	}
	
  ::placeholder {
    
		font-weight: 600;
    font-size: 14px;
    color: #838788;
    position: relative;
    left: 0;
  }
	
  input,
  textarea {
		
    color: #212529;
    font-size: 14px;
  }
	
  .icon {
    color: #57565c;
    height: 1.3rem;
    position: absolute;
    left: 1.5rem;
    top: 1.1rem;
  }
}

.btn.btn-primary {
  
	font-weight: bold;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0 3rem;
  border: 0;
  border-radius: 3rem;
  background-image:linear-gradient(131deg, #f1822d, #ff923c, #f58027);
  background-size: 300% 100%;
  transition: all 0.3s ease-in-out;
}

.btn.btn-primary:hover:enabled {
  box-shadow: 0 0.5em 0.5em -0.4em #ff923cba;
  background-size: 100% 100%;
  transform: translateY(-0.15em);
}

/* counter section */

.sectionClass {
  padding: 0px ;
  position: relative;
  display: block;
}

.fullWidth {
  width: 100% !important;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}


.sectiontitle {
  background-position: center;
  margin: 30px 0 0px;
  text-align: center;
  min-height: 20px;
}

.sectiontitle h2 {
  font-size: 30px;
  color: #222;
  margin-bottom: 0px;
  padding-right: 10px;
  padding-left: 10px;
}


.headerLine {
  width: 160px;
  height: 2px;
  display: inline-block;
  background: #101F2E;
}


.projectFactsWrap{
    display: flex;
  margin-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
 

}


#projectFacts .fullWidth{
  padding: 0;
}

.projectFactsWrap .item{
  width: 25%;
  height: 100%;
  padding: 50px 0px;
  text-align: center;
}

.projectFactsWrap .item:nth-child(1){
  background: rgb(16, 31, 46);
}

.projectFactsWrap .item:nth-child(2){
  background: rgb(18, 34, 51);
}

.projectFactsWrap .item:nth-child(3){
  background: rgb(21, 38, 56);
}

.projectFactsWrap .item:nth-child(4){
  background: rgb(23, 44, 66);
}

.projectFactsWrap .item p.number{
  font-size: 40px;
  padding: 0;
  font-weight: bold;
}

.projectFactsWrap .item p{
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin: 0;
  padding: 10px;
  font-family: 'Open Sans';
}





.projectFactsWrap .item img{
  vertical-align: middle;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 10px;
}


.projectFactsWrap .item:hover img, .projectFactsWrap .item:hover p{
  color: white;
}

.projectFactsWrap .item:hover span{
  background: white;
}

@media (max-width: 786px){
  .projectFactsWrap .item {
     flex: 0 0 50%;
  }
  .title-box {
    position: absolute;
    bottom: -36px; /* Adjust as needed */
    left: 50% !important;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.082); /* Semi-transparent white background */
    padding: 5px 0px !important;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #333; /* Text color */
  }
  
}


.ser-img .img {
  display: flex;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  background-image: url('assets/img/img1.jpg'); /* Default background image */
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s ease;
}

.ser-img .column {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: background-image 0.3s ease;
  border-left: 1px solid #ffffff9d; /* Add left border */
}

.ser-img .column:first-child {
  border-left: none; 
}

.ser-img .column-number {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.5rem;
  color: #fff;
  z-index: 10;
}

.ser-img .column:hover .column-number {
  color: #fff; /* Ensure the number is visible on hover */
}


.title-box {
  position: absolute;
  bottom: -36px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.082); /* Semi-transparent white background */
  padding: 5px 0px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #333; /* Text color */
}


.blog .card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(25% - 20px); /* Adjust width to fit 4 cards per row with margin */
  margin: 10px;
  height: 300px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: white;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.9);
  transition: all 0.1s linear;
}

.blog .card-container {
  display: flex;
  flex-wrap: wrap;
}


.additional-cards {
  display: none;
}

@media screen and (max-width: 600px) {
  .blog .card {
    height: auto;
  }
}

.card .main-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.card .title {
  color: #000;
  margin: 0;
  padding: 10px 10px 5px 10px;
  font-size: 16px;
  font-weight: bold;
}

.card .image {
  order: -1;
  position: relative;
  height: 100px;
  padding: 2px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5);
  transition: all 0.3s ease-in-out;
}

.card .description {
  margin: 7px 10px 15px 10px;
  font-size: 14px;
  opacity: 0.8;
}

.card .date {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 1;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background-color: rgb(0, 0, 0);
}

.card:hover {
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

.card:hover .image img,
.card:focus .image img {
  filter: grayscale(0);
}

.card a:focus {
  outline: none;
}

.blog .card .arrow {
  position: absolute;
  bottom: 10px;
  left: 90%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: #000;
}

.blog .btn {
  padding: 5px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.blog .btn-primary {
  background-color: #007bff !important;
  color: white;
}

.blog .btn-secondary {
  background-color: #6c757d;
  color: white;
}

.blog .text-center {
  text-align: center;
}

.blog .mt-4 {
  margin-top: 1.5rem;
}

.blog .mb-4 {
  margin-bottom: 1.5rem;
}

.blog .heading h2 {
  text-align: center;
  font-size: 40px !important;
  font-weight: 500 !important;
  font-family: "Andika", sans-serif !important;
  padding-bottom: 20px;
}

.blog .heading span {
  color: #ff5e14;
  font-family: "Andika", sans-serif !important;
}


@media (max-width:765px){
  .blog_1 .tax-content p{
    padding: 10px 0;
    text-align: left;
  }
}
.blog_1 .tax-content p{
  
  text-align: justify;
  font-size: 16px;
  line-height: 2rem;
}

.blog_1 img{
  width: 100%;
}
.blog_1 small{
  font-weight: 600;
}

.blog_1 .tax-content{
  padding-top: 20px;
  padding-left: 20px;
}
 
@media screen and (max-width: 768px) {
  .home-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto; /* Adjust height as needed */
  }
  .home-service .col-md-1 {

    transform: none !important;
    writing-mode: horizontal-tb !important;
  }

  .home-service .col-md-4 .button1 button {
    width: 328px;
  }
  .home-service .col-md-4 .button1
  {
   position: relative;
     height: auto;
     padding-top: 17px;
     padding-bottom: 0px;
     width: 100%;
 
 
   }
   .home-service .col-md-4 {
    padding-bottom: 20px;
   }

  .home-service .col-md-1 h4{
    font-size: 30px !important;
    font-weight: 500 !important;
    font-family: "Andika", sans-serif !important;
  }

 .blog .card{
  width:calc(100% - 20px);
  height: 250px;
 }

 .about-banner img{
  width: 100%;
  height:21vh;
  left: 0;
  top:50px;
  z-index: -1;
}

 .about-banner .banner-text h2{
  position: relative;
  top: 130px;
  left: 50px;
  font-size: 30px;
}
.service{
  background: linear-gradient(to right, #35385a33, #53428146);
  
}
.ser-main .heading p{
  text-align: left;
  color: rgba(26, 24, 24, 0.87);
  font-size: 14px;
  
}



.about-banner .span{
    position: absolute;
    z-index: 1 !important;
    left: 0px !important;
    top: 195px !important;
    background-color: white;
    width: fit-content;
 
}
.about-banner .span h5{
  font-size: 14px;
  padding: 2px 7px;
  font-weight: 600;
}
.about-banner .span a{
text-decoration: none;
color: black;
}
.about-banner .span span{
  color: orangered;
}
.about-us .butn-abt{
  display: flex;
  justify-content: flex-start;
 
  
 }
 .about-us .butn-abt a{
  font-size: 12px;
 }
 .about-us .butn-abt button{
  border-radius: 20px;
  padding: 5px 10px;
  background-color:rgb(255 94 20);
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.596);
 }
 .btn-floating.phone {
  bottom: 150px !important;
  background-color:  #4681f4;
}

.btn-floating.phone:hover {
  background-color: #5783db;
}

/* WhatsApp */
.btn-floating.whatsapp {
  background-color: #34af23;
  bottom: 93px !important;
}

}



.about-banner .span{
  position: absolute;
  z-index: 2;
 right: 0;
  top: 457px;
  background-color: white;

}
.about-banner .span h5{
font-size: 16px;
padding: 2px 7px;
font-weight: 600;
}
.about-banner .span a{
text-decoration: none;
color: black;
}
.about-banner .span span{
color: orangered;
}

/* contact buttons */
.icons img{
  width: 30px;
} 
.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: .2s;
    line-height: 0px;
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    bottom: 85px;
    background-color:  #4681f4;
}

.btn-floating.phone:hover {
    background-color: #5783db;
}

/* WhatsApp */
.btn-floating.whatsapp {
    background-color: #34af23;
    bottom: 25px;
}

.btn-floating.whatsapp:hover {
    background-color: #1f7a12
}