@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--primary-font);
}
html,body{
  overflow-x: hidden;
}
h1{
  font-size: 100px;
}
h2{
  font-size: 80px;
}
h3{
  font-size: 60px;
  font-weight: 700 !important;
}
h4{
  font-size: 50px;
}
h5{
  font-size: 40px;
}
h6{
  font-size: 20px;
}
p{
  font-size: 16px;
  font-family: var(--secondary-font);
}

:root{
  --primary-font:"DM Sans", sans-serif;
  --primary-color:#451E5D;
  --secondary-color:#fff;
  --secondary-font: "Inter", sans-serif;
  --poppins-font:"Poppins", sans-serif;
}

body.modal-open{
  padding-right: 0 !important;
}
.navbar-toggler{
  border: none;
}
.navbar-toggler:focus{
  border: none !important;
}

 .navbar-toggler-icon{
  color: var(--secondary-color);
  /* border: 1px solid #fff; */
}
/* header-css start */

.header_wrapper{
  background: var(--primary-color);
  padding: 9px 0px;
  
}
.navbar{
  transition: transform 500ms ease, background 500ms ease !important;
}

.header-scrolled {
  position: fixed;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
  background-color: var(--primary-color);
  top: -80px !important;
  left: 0;
  width: 100% !important;
  transform: translateY(80px);
  transition: transform 500ms ease, background 500ms ease !important;
  z-index: 999;
  /* padding: 0px 90px; */
}
/* .header_wrapper .offcanvas.show .header-scrolled{
  transform: none !important;
} */

.header_wrapper .navbar-expand-lg .navbar-nav .nav-link{
  color: var(--secondary-color);
  font-family: var(--primary-font);
  font-weight: 600;
 position: relative;
}
.header_wrapper .navbar-expand-lg .navbar-nav .nav-link::before{
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  transition: 0.5s transform ease;
  transform: scale3d(0,1,1);
  transform-origin: 0 50%;
}
.header_wrapper .navbar-expand-lg .navbar-nav .nav-link:hover::before{
  transform: scale3d(1,1,1);
}
.navbar-expand-lg .navbar-nav{
  gap: 17px;
}
.navbar-toggler:focus{
  box-shadow: none !important;
 border: 1px solid #fff; 
}
.header_wrapper .navbar-toggler{
padding: 5px 10px!important;
}
.header_wrapper .navbar-toggler i{
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-form{
  position: absolute;
top: 110%;
right: 2rem;
max-width: 50rem;
height: 3rem;
background: #fff;
border-radius: .5rem;
overflow: hidden;
display: flex;
align-items: center;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
z-index: 9;
}
.search-form input{
  height: 100%;
  width: 100%;
  background: none;
  text-transform: none;
  font-size: 16px;
  color: #000;
  border: none;
  outline: none;
  padding: 0px 10px;
}

#search_icon{
  cursor: pointer;
}

.offcanvas.header_canvas{
  background: var(--primary-color);

}
.offcanvas.header_canvas .offcanvas-header{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.header_wrapper #mob_search{
  display: none !important;
}
.header_wrapper #mob_search button{
  background-color: #fff;
  color: var(--primary-color);
}
.header_wrapper #mob_search .form-control:focus{
  box-shadow: none;

}
.offcanvas.show .nav-link{
  border-bottom: 1px solid #fff;
}

.header_wrapper .btn-close{
  background: none;
  width: 3em;
  height: 2em;
}

/* header-css end */


/* banner-start */

.banner_wrapper .slide-box img{
  width: 100%;
}
.banner_wrapper .carousel-item .banner_img{

  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.slide-box::after {
  content: ""; /* Required for pseudo-elements */
  position: absolute; /* Position the gradient overlay */
  top: 0;
  left: 0;
  width: 100%; /* Cover the entire image */
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%); /* Radial gradient colors */
  pointer-events: none; /* Ensure the overlay doesn't interfere with clicks */
  background: radial-gradient(39.37% 39.37% at 50% 47.88%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);

}

.banner_contents{
  position: absolute;
  top: 50%;
  z-index: 100;
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner_contents .btn_top a{
  text-decoration: none;
  color: #000;
  background-color: #fff;
  font-family:var(--secondary-font);
  font-weight: 700;
  font-size: 16px;
  padding: 5px 15px;
  border-radius: 100px;
}
.banner_contents .content-bx h1{
  font-family: var(--primary-font);
font-size: 70px;
font-weight: 700;
letter-spacing: 3px;
color: #fff;
text-transform: uppercase;
}
.banner_contents .content-bx p{
  color: #fff;
font-family: var(--secondary-font);
font-size: 16px;
font-weight: 500;
line-height: 24px;
text-align: center;
padding: 0px 120px;
}
.banner_contents .bottom_btn{
  display: flex;
  gap: 10px;
  justify-content: center;
}
.banner_contents .bottom_btn a{
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  padding: 5px 20px;
  border-radius: 100px;
  /* border: 2.5px solid #fff; */
  border: 2.5px solid #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--poppins-font);
  transition: all .3s;
}
.banner_contents .bottom_btn a:hover{
  background-color: var(--primary-color);
  border: 2.5px solid var(--primary-color);
}
.banner_contents .bottom_btn a:first-child{
  background-color: var(--primary-color);
  border: 2.5px solid var(--primary-color);
}


.banner_wrapper .carousel-indicators button {
  width: 15px !important;
  height: 15px !important;
  border-radius: 50%;
  /* background-color: var(--primary-color); */
}


/* Banner-end */

/* work-wrapper-section */


.work-wrapper{
  background:var(--primary-color);
  padding: 80px 0;
}

.work-wrapper .work-content h3{
  color: var(--secondary-color);
  font-size: 60px;
  font-weight: 500;
  text-transform: uppercase;
  
}

.work-content p{
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-size: 16px;
  

}
.work-wrapper .counter-section{
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 0;
}
.work-wrapper .counter-section .counter-num p{
  color: #ABB2C3;
  font-size: 14px;
}
.work-wrapper .counter-icon span{
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.work-wrapper .work-content .bottom_btn a{
  text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    border: 2.5px solid #FFFFFF;
    padding: 5px 15px;
    border-radius: 30px;
    font-family:var(--secondary-font);
    font-size: 16px;
}
.work-wrapper .work-img1 img{
  margin: 15px 0;
  border-radius: 12px;
}
.work-wrapper .top-img-1{
  position: relative;
}
.work-wrapper .top-img-1 img{
  border-radius: 12px;
}
.work-wrapper  .top-img-1::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 68.94%, #000000 100%);
border-radius: 12px;
}

.work-wrapper .work-image img{
  border-radius: 12px;
}
.work-wrapper .work-image{
  position: relative;
}
.work-wrapper .work-image::after{
  content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 68.94%, #000000 100%);
border-radius: 12px;
}



/* work-wrapper-section-end */


/* Services-sectiom-start */
.service-wrapper{
  padding: 80px 0;
}
.service-wrapper .service-cont h3{
  color: #000;
  font-size: 60px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 73.6px;
  max-width: 312px
}
.service-wrapper .service-cont p{
  color: #000;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
}
.service-wrapper .service-cont .bottom_btn a{
  text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    /* border: 2.5px solid #FFFFFF; */
    padding: 8px 18px;
    border-radius: 30px;
    font-family: var(--secondary-font);
    font-size: 16px;
    background-color: var(--primary-color);
}
.service-wrapper .service-img-bx::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 68.94%, #000000 100%);
border-radius: 12px;
}
.service-wrapper .service-img-bx img{
  border-radius: 12px;

}
.service-wrapper.home .service-img-bx .imageHome{

height: 380px !important;
width: 100% !important;
object-fit: cover;
}
.service-wrapper .service-img-bx .overlay_content{
  position: absolute;
  bottom: 0;
  z-index: 99;
  padding: 0px 20px;
}
.service-wrapper .service-img-bx .link-icon{
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 10px;
  padding-right: 10px;
  z-index: 99;
}
.service-wrapper .service-img-bx .link-icon a{
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.service-wrapper .service-img-bx .overlay_content h6{
font-size: 20px;
font-weight: 700;
line-height: 40px;
text-align: left;
color: #fff;
text-transform: capitalize;
}
.service-wrapper .service-img-bx .overlay_content p{
  font-family: var(--secondary-font);
font-size: 16px;
font-weight: 400;
line-height: 24px;
letter-spacing: -0.01em;
text-align: left;
color: #fff;

}
/* Services-sectiom-End */

/* Floating-btn-start */


.floatingcontact_btn {
    -webkit-transform: rotate(-91deg);
    -ms-transform: rotate(-91deg);
    transform: rotate(-91deg);
    position: fixed;
    right: -60px;
    top: 50%;
    z-index: 999;
}
.floatingcontact_btn a {
  background-color: var(--secondary-color);
  padding: 14px 25px;
  color: var(--primary-color);
  font-size: 19px;
  border-radius: 30px 30px 0px 0px;
  text-decoration: none;
  font-family: var(--secondary-font);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


 /* our-Expertise start */

.expertise-wrapper{
  background-color:var(--primary-color);
  padding: 80px 0px;

}
.expertise-wrapper .exper-img img{
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
}
.expertise-wrapper .expertise-cont h3{
  color: #fff;
  font-size: 60px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 73.6px;
  max-width: 312px;
}
.expertise-wrapper .expertise-cont p{
  color: #fff;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  max-width: 500px;
  margin-bottom: 22px;
}
.expertise-wrapper .expertise-icon{
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 0;
}

.expertise-wrapper .expertise-icon .heart-icon span{
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.expertise-wrapper .expertise-icon .heart-cont h6{
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  color: #fff;
  text-transform: capitalize;
}

  .expertise-wrapper .heart-cont p {
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #fff;
}

.expertise-wrapper .expertise-icon{
  padding-top: 50px;
}

  /* our-Expertise end */



  /* gallery section start */

  .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #ffffff;
    border-radius: 12px;
}
.card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.Gallery-main .card{
  border-radius: 12px;
}
.Gallery-main{
  padding: 50px 0;
}
.Gallery-main .title{
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Gallery-main .title h3{
    font-size: 60px;
    font-weight: 500;
    text-transform: uppercase;
}
.Gallery-main .title .more-btn a{
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--secondary-font);
  font-size: 16px;
  background-color: var(--primary-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.fancybox-active.compensate-for-scrollbar{
  margin-right: 0 !important;
}

  /* gallery section End*/


  /* testimonial-start */
.testimonial_wrapper{
  background: var(--primary-color);
  padding: 80px 0;
}
.testimonial_wrapper .title{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonial_wrapper .title h3{
  font-size: 60px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  max-width: 403px;
}
.testimonial_wrapper .title p{
  color: #fff;
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    max-width: 400px;
}
.testimonial_wrapper .testimonial .icon img{
  width: 32px;
}
.testimonial_wrapper .testimonial .icon h6{
  font-size: 20px;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
    color: #fff;
    text-transform: capitalize;
}
.testimonial_wrapper .testimonial .testi-para p{
  font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #fff;
    max-width: 400px;
}
.testimonial_wrapper .testimonial .testi_details{
  display: flex;
  gap: 20px;
  align-items: center;
}
.testimonial_wrapper .testimonial .testi_details .details_cont h6{
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}
.testimonial_wrapper .testimonial .testi_details .details_cont span{
  color: #fff;
  font-size: 17px;
}
.testimonial_wrapper .testimonial .testi_details .img-bx{

  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  padding-top: 20px;
}
.testimonial_wrapper .testimonial .testi_details .img-bx img{
 width: 100%;
 height: 100%;
 object-fit: cover;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%,-50%);
 border-radius: 50%;
}

.testimonial_wrapper .testimonial .item{
  display: flex;
  justify-content: space-between;
}
.testimonial_wrapper .testimonial .item .seprator{
  border: 1px solid #757B8A
}

  /* Testimonial-end */

  /* Contact us  */

  .contact-wrapper{
   padding: 80px 0px;
  }
  .contact-wrapper .image-container {
    position: relative;
  }
  .contact-wrapper .image-container::after{
    content: ""; /* Required for pseudo-elements */
  position: absolute; /* Position the gradient overlay */
  top: 0;
  left: 0;
  width: 100%; /* Cover the entire image */
  height: 100%;
  pointer-events: none; /* Ensure the overlay doesn't interfere with clicks */
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  }
  .contact-wrapper .image-container img{
    border-radius: 16px;
    width: 100%;
  }
  .contact-wrapper .overlay-content h3{
    max-width: 701px;
    color: #fff;
  }
  .contact-wrapper .overlay-content p{
    max-width: 500px;
    margin-bottom: 30px;
    color: #fff;
  }

  .overlay-content {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 99;
  }

  .btn-cont{
    color:var(--primary-color);
    background-color: #fff;
    border-radius: 20px;
    padding: 8px 18px;
    text-decoration: none;
    transition: all .3s;
    font-weight: 600;
  }

  .btn-cont:hover {
    color: #fff;
    background-color:var(--primary-color);
  
  }

   /* Contact us  */

    /* footer-section start */
  .footer_wrapper .f-details_sec p{
    font-weight: 400;
  }
  .footer_wrapper .f-details_sec .social_ico{
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .footer_wrapper .f-details_sec .social_ico a{
    text-decoration: none;
  }
  .footer_wrapper .f-details_sec .social_ico a i{
    font-size: 25px;
    color: var(--primary-color);
  }
  .footer_wrapper .menu_title h6{
    text-transform: uppercase;
  }
  .footer_wrapper .menu_link a{
    display: block;
    text-decoration: none;
    color: var(--primary-color);
    font-family: var(--secondary-font);
font-size: 15px;
font-weight: 400;
line-height: 30px;
text-align: left;


  }

  /* .menu_link.service_link {
    display: flex;
    flex-wrap: wrap;
  }
  
  .menu_link.service_link a {
    width: calc(25% - 10px); 
    margin: 5px; 
    box-sizing: border-box; 
     
  } */

  .tp-footer-list-float{
    padding: 0;
    margin: 0;
  }
  .tp-footer-list-float li{
    width: 25%;
    float: left;
    list-style: none;
  }

  .footer_wrapper{
    padding-left: 50px;
  }
 /* footer bottom  */
 .bottom_foot {
  margin-right: 50px;
  border-top: 2px solid var(--primary-color);
  padding: 20px 0;
  margin-top: 20px;
 }
 .bottom_foot .privacy_meu{
  display: flex;
  align-items: center;
  gap: 8px;
 }
 .bottom_foot .privacy_meu a{
  text-decoration: none;
  color: #000;
  font-family: var(--primary-font);
 }
 .bottom_foot .copy_text p{
  font-family: var(--primary-font);
  text-align: right;
 }


  /* footer bottom  */


  /* footer-section end */

  /* Modal-start */

  #exampleModal .btn{
    background-color: var(--primary-color);
  }
  #exampleModal .modal-header h5{
    font-family: var(--primary-font);
  }
  #exampleModal .modal-header .btn-close{
    position: absolute;
    top: 22px;
    right: 23px;
    border: 1px solid var(--primary-color);
  }
  #exampleModal .exampleModal{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #exampleModal .form-control{
    border: 1px solid var(--primary-color);
  }
  #exampleModal .form-control:focus{
    box-shadow: none;
  }
  /* Modal-end */


  /* Floating-btn-mb */
  .mob_wrapper {
    background: var(--primary-color);
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 100;
}

/* Top-bar-start */

.top_bar{
  background: var(--secondary-color);
  color: var(--primary-color) !important;
  font-family: var(--primary-font);
}
.top_bar .locat{
  color: var(--primary-color);
  display: flex;
  align-items: center;
}
.top_bar .timing{
  text-align: right;
}
.top_bar .timing .form-select{
border-radius: 24px;
box-shadow: none;
border: 1px solid var(--primary-color);
width: auto;
display: inline-block;
}
.top_bar .number{
 text-decoration: none;
 color: var(--primary-color);
}

/* Top-bar-end */

/* About-page-start */

.about-banner .about-img img{
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.about-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  pointer-events: none; 
  background: rgba(0, 0, 0, 0.43);

}
.about_content_wrapper{
  padding: 80px 0;
}

.about_content_wrapper .right-content .about_img img{
  width: 100%;
  object-fit: cover;
  height: 300px;
  border-radius: 16px;
}
.about_content_wrapper .right-content .about_img{
  position: relative;
}
.about_content_wrapper .left-cont h3{
  padding-bottom: 20px;
}
.about_content_wrapper .right-content .about_img::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  pointer-events: none; 
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 59.68%, #000000 100%);
  border-radius: 16px;
}


/* Vedio-bx-start */

.vedio_wrapper .vedio_bx a img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

.vedio_wrapper .vedio_bx .shadow-sec::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  pointer-events: none; 
  background: radial-gradient(25.62% 50% at 48.62% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 16px;
}
.vedio_wrapper .vedio_bx .play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vedio_wrapper .vedio_bx .play-btn i{
  font-size: 25px;
  color: var(--primary-color);
}
.vedio_wrapper{
  padding-bottom: 80px;
}

/* Vedio-bx-end */


/* Our-team-sec-start */

.our_team_wrapper{
  background: var(--primary-color);
  padding: 80px 0;
}
.our_team_wrapper h3{
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
.our_team_wrapper p{
  text-align: center;
  color: #fff;
  max-width: 800px;
}
.our_team_wrapper .team-img img{
  width: 100%;
  border-radius: 16px;
  height: 280px;
  object-fit: cover;
}
.our_team_wrapper .team-img::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  pointer-events: none; 
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 59.68%, #000000 100%);
  border-radius: 16px;
}
.our_team_wrapper .team_info{
  position: absolute;
  bottom: 11px;
  left: 20px;
}
.our_team_wrapper .team_info h6{
  color: #fff;
}

.our_team_wrapper .team_info span{
  color: rgba(204, 204, 204, 1);
  font-family: var(--secondary-font);
}

/* our-team-sec-end */

/* About-page-end */


/* Service-page-start */
.service-wrapper .service-img-bx img.service-in{
  height: 420px;
  object-fit: cover;
  width: 100%;
}

/* Service-page-end */


/* Project-section-start */

.project_wrapper{
  padding: 80px 0;
}
.project_wrapper .project-bx{
  background: var(--primary-color);
  padding: 20px;
  border-radius: 20px;
}
.project_wrapper .project-bx .project-content-bx{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.project_wrapper .project-img-bx img{
  width: 100%;
  border-radius: 20px;
}
.project_wrapper .project-content-bx{
  padding-top: 15px;
}
.project_wrapper .project-content-bx h5{
  color: #fff;
}
.project_wrapper .project-content-bx p{
  color: #fff;
}
.project_wrapper .project-content-bx .project-link a{
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 1px solid #fff;
}

.project_wrapper .project-content-bx .project-link a i{
  transform: rotate(35deg);
  color: #fff;
  font-size: 20px;
}

/* project-section-end */

/* contact-us-page start */
.contact-wrappers{
  padding: 80px 0px;
  padding-bottom: 0px;
}

.contact-wrappers .contact-head h3{
  text-align: center;
  text-transform: capitalize;
}

.contact-wrappers .icon-wrap{
  border: 1.5px dashed var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px ;
}
.contact-wrappers .icon-wrap .icon{
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 3px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.contact-wrappers .icon-wrap span a{
  text-decoration: none;
  color: #000;
}
.contact-wrappers .icon-wrap .icon i{
  color: #fff;
  font-size: 20px;
}

.contact-wrappers .form-bg{
 background: rgba(31, 8, 45, 1);
  padding: 20px;
  border-radius: 10px;
}
.contact-wrappers .form-floating .form-control{
background: rgba(255, 255, 255, 0.22);
box-shadow: none;
color: #fff;
}
.contact-wrappers .form-floating{
  color: #fff;
}

.contact-wrappers .form-bg .Up h6{
color: #FFFFFF;
text-transform: capitalize;
}
.contact-wrappers .form-bg .btn-bg{
  background-color: #FFFFFF;
  border-radius: 10px;
}

/* contact-us-page end */

/* service-details-page-start */

.service_details_wrapper{
  padding: 80px 0;
}

.service_details_wrapper .details-cont h4{
  text-transform: capitalize;

}

.service_details_wrapper .details-cont .achor-link a{
  background-color: #efddef;
  color:rgba(192, 122, 192, 1);
  border-radius: 20px;
  padding: 5px 20px;
  text-decoration: none;
  gap: 20px;
}
.service_details_wrapper .details-cont .achor-link{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px
}

.service_details_wrapper .serdetail_img img{
width: 100%;
object-fit: cover;
border-radius: 16px;
}

.service_details_wrapper .dt-button{
  padding-top: 30px;
}

.service_details_wrapper .dt-button a{
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--primary-color);
}

/* partner-section-start */
.partner-wrapper{
  background: var(--primary-color);
  padding:80px 0;
}
.partner-wrapper .partner-cont{
  padding-bottom: 60px;
}
.partner-wrapper .partner-cont h4{
  color: #fff;
  text-align: center;
  text-transform: capitalize;
}
.partner-wrapper .partner-cont p{
color: #fff;
text-align: center;
max-width: 500px;
margin: 0px auto;
}
.partner-wrapper .partner-icon{
  display: flex;
  align-items: center;
  gap: 30px;
  
}
.partner-wrapper .part-cont h6{
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  color: #fff;
  text-transform: capitalize;
}
.partner-wrapper .part-cont p{
  font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #fff;
}
.partner-wrapper .part-icon span{
  width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

/* partner-section-end */

/* details-video-sec-star */
.vedio_wrapper.details-vid{
  padding: 80px 0px;
  padding-bottom: 0px;
}

.vedio_wrapper.details-vid .partner-cont h4{
text-transform: capitalize;
font-size: 50px;
}

.vedio_wrapper.details-vid .partner-cont p{
  margin: 0px 124px;
  
}
.vedio_wrapper.details-vid .row p{
  line-height: 28px;
}
/* .vedio_wrapper.details-vid .details-content{
  padding: 40px 0px;
} */
.vedio_wrapper.details-vid .details-content h4{
  text-transform: capitalize;
}
.vedio_wrapper.details-vid .details-img img{
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  height: 280px;
}
/* .vedio_wrapper.details-vid .details-leftcont p{
  max-width: 500px;
} */

/* details-video-sec-end */

/* service-details-page-end */


/* Project-details-strat */

.vedio_wrapper.details-vid .control_bx{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.vedio_wrapper.details-vid .control_bx .icon_bx{
  display: flex;
  align-items: center;
  gap: 10px;
}
.vedio_wrapper.details-vid .feature-bx{
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 40px;
}
.project_wrapper.details_page{
  background: var(--primary-color);
}
.vedio_wrapper.details-vid.project_details{
  padding-bottom: 70px;
}
.vedio_wrapper.details-vid.project_details .details-title h4{
  text-transform: capitalize;
}
.vedio_wrapper.details-vid.project_details .para_details{
  line-height: 30px;
}
.project_wrapper.details_page .partner-cont h4{
  color: #fff;
}
.project_wrapper.details_page .partner-cont p{
  color: #fff;
  margin: 0 100px;
  margin-bottom: 20px;
}
.project_wrapper.details_page{
  margin-bottom: 80px;
}
.project_wrapper.details_page .project-bx{
  background: rgba(31, 8, 45, 1);
}
.project_wrapper.details_page .partner-cont{
  margin-bottom: 20px;
}

/* Project-details-end */
.card.calculators{

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.calculator-title{

color: var(--primary-color);
font-weight: 700;
font-size: 40px;
}
.calculator-form label {
font-weight: 700;
font-size: 14px;
color: var(--primary-color);
padding-bottom: 4px;
}

.calculator-form input[type="number"] {
  padding: 5px; /* Smaller padding */
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.85rem;
}
.calculator-form input[type="submit"] {
  padding: 8px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s;
  width: 100%;
}

  
