@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%;
}

/* Dynamic multilingual website content pages */
.metalcraft-dropdown {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(17, 24, 39, .16);
  max-height: 70vh;
  min-width: 270px;
  overflow-y: auto;
  padding: 8px;
}
.metalcraft-dropdown .dropdown-item {
  border-radius: 6px;
  color: #26313f;
  font-family: var(--secondary-font);
  font-size: 14px;
  line-height: 1.35;
  padding: 9px 12px;
  white-space: normal;
}
.metalcraft-dropdown .dropdown-item:hover {
  background: #eef2f6;
  color: var(--primary-color);
}
.mc-content-page {
  background: #f5f7fa;
  color: #172033;
  direction: ltr;
  text-align: left;
}
.mc-content-page h1,
.mc-content-page h2,
.mc-content-page h3,
.mc-content-page h4,
.mc-content-page h5,
.mc-content-page h6,
.mc-content-page p {
  letter-spacing: 0;
}
.mc-page-hero {
  background-position: center;
  background-size: cover;
  color: #fff;
  min-height: 560px;
  padding: 130px 0 80px;
  position: relative;
}
.mc-page-hero::after {
  background: linear-gradient(180deg, rgba(9, 14, 24, 0) 72%, #f5f7fa 100%);
  bottom: 0;
  content: "";
  height: 130px;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
.mc-page-hero-solid {
  background: linear-gradient(135deg, #152033 0%, #263343 62%, #451E5D 100%);
}
.mc-page-hero .container {
  position: relative;
  z-index: 1;
}
.mc-kicker,
.mc-section-heading span,
.mc-hero-stat span,
.mc-sticky-panel span,
.mc-page-cta span,
.mc-related-link span {
  color: #8E4CB0;
  display: inline-block;
  font-family: var(--secondary-font);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.mc-page-hero h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.02;
  max-width: 920px;
  text-transform: uppercase;
}
.mc-hero-copy {
  color: rgba(255, 255, 255, .92);
  font-family: var(--secondary-font);
  max-width: 780px;
}
.mc-hero-copy p {
  color: inherit;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.mc-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.mc-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--secondary-font);
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.mc-btn:hover {
  transform: translateY(-1px);
}
.mc-btn-primary {
  background: #8E4CB0;
  color: #101828;
}
.mc-btn-primary:hover {
  box-shadow: 0 12px 30px rgba(201, 162, 74, .3);
  color: #101828;
}
.mc-btn-ghost,
.mc-btn-outline {
  border: 1px solid rgba(255, 255, 255, .7);
  color: #fff;
}
.mc-btn-ghost:hover,
.mc-btn-outline:hover {
  background: #fff;
  color: var(--primary-color);
}
.mc-hero-stat {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  padding: 22px;
}
.mc-hero-stat strong {
  color: #fff;
  display: block;
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.mc-hero-stat p {
  color: rgba(255, 255, 255, .86);
  line-height: 1.55;
  margin: 0;
}
.mc-category-strip {
  background: #fff;
  border-bottom: 1px solid #e6ebf0;
  position: sticky;
  top: 0;
  z-index: 90;
}
.header-scrolled + .mc-category-strip {
  top: 85px;
}
.mc-category-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: thin;
}
.mc-category-scroll a {
  background: #f0f3f6;
  border: 1px solid #e1e7ee;
  border-radius: 999px;
  color: #253142;
  flex: 0 0 auto;
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 15px;
  text-decoration: none;
}
.mc-category-scroll a:hover,
.mc-category-scroll a.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.mc-section {
  padding: 82px 0;
}
.mc-section-heading {
  margin-bottom: 34px;
}
.mc-section-heading h2 {
  color: #111827;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  margin: 0;
}
.mc-section-heading-light h2 {
  color: #fff;
}
.mc-overview-band {
  background: #f5f7fa;
}
.home-document-content .mc-hero-copy p {
  color: #4e5d6f;
}
.mc-feature-card,
.mc-content-card,
.mc-related-link {
  background: #fff;
  border: 1px solid #e4eaf0;
  border-radius: 8px;
}
.mc-feature-card {
  height: 100%;
  padding: 24px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.mc-feature-card:hover {
  border-color: #8E4CB0;
  box-shadow: 0 18px 42px rgba(17, 24, 39, .08);
  transform: translateY(-2px);
}
.mc-feature-icon {
  align-items: center;
  background: #eef4f7;
  border-radius: 8px;
  color: var(--primary-color);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  margin-bottom: 18px;
  width: 46px;
}
.mc-feature-card h3 {
  color: #152033;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.mc-feature-copy p,
.mc-content-body p,
.mc-sticky-panel p,
.mc-faq-accordion p {
  color: #4e5d6f;
  font-size: 16px;
  line-height: 1.72;
}
.mc-gallery-band {
  background: #162232;
}
.mc-image-tile {
  border-radius: 8px;
  display: block;
  height: 100%;
  min-height: 250px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.mc-image-tile::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, .72) 100%);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.mc-image-tile img {
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}
.mc-image-tile:hover img {
  transform: scale(1.04);
}
.mc-image-tile-large {
  min-height: 524px;
}
.mc-image-tile-large img {
  min-height: 524px;
}
.mc-image-tile span {
  bottom: 18px;
  color: #fff;
  font-family: var(--secondary-font);
  font-size: 15px;
  font-weight: 800;
  left: 18px;
  max-width: calc(100% - 36px);
  position: absolute;
  z-index: 2;
}
.mc-detail-band {
  background: #fff;
}
.mc-sticky-panel {
  background: #f0f4f8;
  border-left: 4px solid #8E4CB0;
  border-radius: 8px;
  padding: 26px;
  position: sticky;
  top: 110px;
}
.mc-sticky-panel h2 {
  color: #111827;
  font-size: 32px;
  line-height: 1.18;
  margin-bottom: 14px;
}
.mc-inline-link {
  align-items: center;
  color: var(--primary-color);
  display: inline-flex;
  font-family: var(--secondary-font);
  font-weight: 800;
  gap: 8px;
  margin-top: 12px;
  text-decoration: none;
}
.mc-content-grid {
  display: grid;
  gap: 18px;
}
.mc-content-card {
  padding: 26px;
}
.mc-content-card h2,
.mc-content-card h3,
.mc-content-card h4 {
  color: #152033;
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 12px;
}
.mc-content-card h2 {
  font-size: 30px;
}
.mc-content-card h3 {
  font-size: 24px;
}
.mc-content-card h4 {
  font-size: 20px;
}
.mc-bullet-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.mc-bullet-list li {
  color: #405063;
  font-family: var(--secondary-font);
  font-size: 15px;
  line-height: 1.65;
  padding-left: 28px;
  position: relative;
}
.mc-bullet-list li::before {
  background: #8E4CB0;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 11px;
  width: 8px;
}
.mc-faq-band {
  background: #edf2f5;
}
.mc-faq-accordion .accordion-item {
  border: 1px solid #dce4ea;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.mc-faq-accordion .accordion-button {
  box-shadow: none;
  color: #152033;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}
.mc-faq-accordion .accordion-button:not(.collapsed) {
  background: #fff7e4;
  color: var(--primary-color);
}
.mc-related-band {
  background: #fff;
}
.mc-related-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 20px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.mc-related-link strong {
  color: #152033;
  font-size: 18px;
  line-height: 1.3;
}
.mc-related-link i {
  color: var(--primary-color);
  margin-top: auto;
}
.mc-related-link:hover {
  background: #f7f1df;
  border-color: #8E4CB0;
}
.mc-page-cta {
  background: #162232;
  color: #fff;
  padding: 72px 0;
}
.mc-page-cta-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.mc-page-cta h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
}

.contact-resource-band {
  background: #f5f7fa;
  padding: 64px 0 80px;
}
.contact-resource-card {
  background: #fff;
  border: 1px solid #e4eaf0;
  border-radius: 8px;
  height: 100%;
  padding: 22px;
}
.contact-resource-card h4 {
  color: #152033;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.contact-resource-card p {
  color: #4e5d6f;
  line-height: 1.65;
}

/* Google Doc driven Home Page */
.home-cms-page {
  background: #f5f7fa;
  color: #172033;
  direction: ltr;
  text-align: left;
}
.home-cms-page h1,
.home-cms-page h2,
.home-cms-page h3,
.home-cms-page h4,
.home-cms-page p {
  letter-spacing: 0;
}
.home-cms-hero {
  background:
    linear-gradient(135deg, rgba(245, 247, 250, .96) 0%, rgba(255, 255, 255, .92) 52%, rgba(236, 240, 244, .94) 100%);
  padding: 96px 0 78px;
}
.home-cms-kicker {
  color: #9a7528;
  display: inline-block;
  font-family: var(--secondary-font);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.home-cms-hero h1 {
  color: #111827;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.home-cms-intro p,
.home-cms-section-copy p,
.home-cms-card-copy p,
.home-cms-faq p {
  color: #445160;
  font-size: 16px;
  line-height: 1.75;
}
.home-cms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.home-cms-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--secondary-font);
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  text-decoration: none;
}
.home-cms-btn-primary {
  background: var(--primary-color);
  color: #fff;
}
.home-cms-btn-primary:hover {
  color: #fff;
}
.home-cms-btn-secondary {
  background: #fff;
  border: 1px solid #cdd6df;
  color: #172033;
}
.home-cms-btn-secondary:hover {
  color: var(--primary-color);
}
.home-cms-visual {
  background: #172033;
  border-radius: 8px;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}
.home-cms-visual::after {
  background: linear-gradient(180deg, rgba(23, 32, 51, 0) 42%, rgba(23, 32, 51, .9) 100%);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.home-cms-visual img {
  height: 500px;
  object-fit: cover;
  width: 100%;
}
.home-cms-visual-grid {
  bottom: 22px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 54px);
  left: 22px;
  position: absolute;
  z-index: 2;
}
.home-cms-visual-grid span {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border-radius: 8px;
  color: var(--primary-color);
  display: inline-flex;
  height: 54px;
  justify-content: center;
  width: 54px;
}
.home-cms-nav-band {
  background: #fff;
  border-bottom: 1px solid #e2e8ef;
  border-top: 1px solid #e2e8ef;
  position: sticky;
  top: 0;
  z-index: 80;
}
.home-cms-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: thin;
}
.home-cms-nav a {
  background: #edf1f5;
  border-radius: 999px;
  color: #263343;
  flex: 0 0 auto;
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 14px;
  text-decoration: none;
}
.home-cms-nav a:hover {
  background: var(--primary-color);
  color: #fff;
}
.home-cms-section {
  padding: 78px 0;
}
.home-cms-section:nth-of-type(even) {
  background: #fff;
}
.home-cms-section-head {
  margin-bottom: 34px;
  max-width: 1020px;
}
.home-cms-section-head > span {
  color: #9a7528;
  display: inline-block;
  font-family: var(--secondary-font);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.home-cms-section-head h2 {
  color: #111827;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.home-cms-card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-cms-process-grid,
.home-cms-reason-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.home-cms-card {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  height: 100%;
  padding: 24px;
}
.home-cms-section:nth-of-type(even) .home-cms-card {
  background: #f8fafc;
}
.home-cms-card-icon {
  align-items: center;
  background: #eef4f7;
  border-radius: 8px;
  color: var(--primary-color);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 16px;
  width: 44px;
}
.home-cms-card h3,
.home-cms-card h4 {
  color: #172033;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}
.home-cms-card h4 {
  font-size: 19px;
}
.home-cms-bullets {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.home-cms-bullets-inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-cms-bullets li {
  color: #405063;
  font-family: var(--secondary-font);
  font-size: 15px;
  line-height: 1.55;
  padding-left: 24px;
  position: relative;
}
.home-cms-bullets li::before {
  background: #8E4CB0;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 8px;
}
.home-cms-faq-section {
  background: #edf2f5;
}
.home-cms-faq .accordion-item {
  border: 1px solid #dce4ea;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.home-cms-faq .accordion-button {
  box-shadow: none;
  color: #172033;
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}
.home-cms-faq .accordion-button:not(.collapsed) {
  background: #fff7e4;
  color: var(--primary-color);
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
}
@media (max-width: 991px) {
  .mc-page-hero {
    min-height: auto;
    padding: 90px 0 70px;
  }
  .mc-page-hero h1 {
    font-size: 42px;
  }
  .mc-section {
    padding: 60px 0;
  }
  .mc-sticky-panel {
    position: static;
  }
  .mc-page-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-cms-hero {
    padding: 70px 0 56px;
  }
  .home-cms-visual,
  .home-cms-visual img {
    height: 380px;
    min-height: 380px;
  }
  .home-cms-card-grid,
  .home-cms-process-grid,
  .home-cms-reason-grid,
  .home-cms-bullets-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-cms-section {
    padding: 58px 0;
  }
}
@media (max-width: 576px) {
  .mc-page-hero h1 {
    font-size: 34px;
  }
  .mc-hero-copy p,
  .mc-feature-copy p,
  .mc-content-body p,
  .mc-sticky-panel p,
  .mc-faq-accordion p {
    font-size: 14px;
  }
  .mc-image-tile,
  .mc-image-tile img,
  .mc-image-tile-large,
  .mc-image-tile-large img {
    min-height: 260px;
  }
  .mc-content-card,
  .mc-feature-card,
  .mc-sticky-panel {
    padding: 20px;
  }
  .mc-content-card h2 {
    font-size: 25px;
  }
  .mc-page-cta {
    padding-bottom: 92px;
  }
  .home-cms-hero h1 {
    font-size: 34px;
  }
  .home-cms-intro p,
  .home-cms-section-copy p,
  .home-cms-card-copy p,
  .home-cms-faq p {
    font-size: 14px;
  }
  .home-cms-card-grid,
  .home-cms-process-grid,
  .home-cms-reason-grid,
  .home-cms-bullets-inline {
    grid-template-columns: 1fr;
  }
  .home-cms-card {
    padding: 20px;
  }
  .home-cms-visual,
  .home-cms-visual img {
    height: 300px;
    min-height: 300px;
  }
  .home-cms-visual-grid {
    grid-template-columns: repeat(4, 44px);
  }
  .home-cms-visual-grid span {
    height: 44px;
    width: 44px;
  }
}

/* Refined Home/About/Services CMS presentation */
.home-refresh .home-refresh-hero {
  background: #f5f7fa;
  padding: 44px 0 54px;
}
.home-refresh #homeCmsCarousel {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(17, 24, 39, .08);
  overflow: hidden;
}
.home-refresh .carousel-indicators {
  bottom: 18px;
  gap: 8px;
  justify-content: flex-start;
  left: 32px;
  margin: 0;
  right: auto;
}
.home-refresh .carousel-indicators [data-bs-target] {
  background-color: #451E5D;
  border: 0;
  border-radius: 999px;
  height: 8px;
  opacity: .25;
  width: 34px;
}
.home-refresh .carousel-indicators .active {
  opacity: 1;
}
.home-slide {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  min-height: 560px;
}
.home-slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 48px 74px;
}
.home-slide-copy h1,
.home-slide-copy h2 {
  color: #111827;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.home-slide-copy h2 {
  font-size: clamp(30px, 4vw, 54px);
}
.home-slide-media {
  min-height: 100%;
  overflow: hidden;
}
.home-slide-media img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  width: 100%;
}
.home-preview-section {
  background: #fff;
  padding: 58px 0;
}
.home-preview-section:nth-of-type(odd) {
  background: #f5f7fa;
}
.home-preview-image,
.cms-detail-image {
  border-radius: 8px;
  overflow: hidden;
}
.home-preview-image img,
.cms-detail-image img {
  height: 430px;
  object-fit: cover;
  width: 100%;
}
.home-preview-copy h2,
.home-preview-heading h2,
.cms-detail-copy h2 {
  color: #111827;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.home-mini-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}
.home-mini-item {
  align-items: flex-start;
  background: #f6f8fb;
  border: 1px solid #e3e8ef;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  min-height: 84px;
  padding: 14px;
}
.home-mini-item i {
  color: #8E4CB0;
  margin-top: 4px;
}
.home-mini-item strong {
  color: #172033;
  font-size: 15px;
  line-height: 1.35;
}
.home-text-link {
  align-items: center;
  color: var(--primary-color);
  display: inline-flex;
  font-family: var(--secondary-font);
  font-weight: 800;
  gap: 8px;
  margin-top: 20px;
  text-decoration: none;
}
.home-preview-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 26px;
}
.home-preview-heading h2 {
  margin-bottom: 0;
  max-width: 780px;
}
.home-service-tile {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  color: #172033;
  display: block;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.home-service-tile:hover {
  border-color: #8E4CB0;
  box-shadow: 0 18px 40px rgba(17, 24, 39, .09);
  color: var(--primary-color);
  transform: translateY(-2px);
}
.home-service-tile img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  width: 100%;
}
.home-service-tile span {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  padding: 16px 18px 18px;
}
.home-process-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.home-process-strip article {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  overflow: hidden;
}
.home-process-strip img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}
.home-process-strip div {
  padding: 18px;
}
.home-process-strip h3 {
  color: #172033;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.home-process-strip p {
  color: #4b596b;
  font-size: 14px;
  line-height: 1.55;
}
.cms-detail-page {
  background: #fff;
  padding: 68px 0;
}
.cms-detail-muted {
  background: #f5f7fa;
}
.cms-numbered-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cms-numbered-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cms-numbered-card,
.service-process-grid article {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  padding: 24px;
}
.cms-numbered-card span,
.service-process-grid article span {
  color: #8E4CB0;
  display: block;
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 12px;
}
.cms-numbered-card h3,
.service-process-grid h3,
.service-doc-card h3,
.service-doc-card h4 {
  color: #172033;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.cms-numbered-card p,
.service-process-grid p {
  color: #4b596b;
  line-height: 1.7;
}
.service-doc-grid {
  display: grid;
  gap: 22px;
}
.service-doc-card {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  display: grid;
  gap: 24px;
  grid-template-columns: 310px minmax(0, 1fr);
  overflow: hidden;
  padding: 18px;
}
.service-doc-card img {
  border-radius: 8px;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  width: 100%;
}
.service-process-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 991px) {
  .home-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .home-slide-copy {
    padding: 40px 28px 68px;
  }
  .home-slide-media img {
    min-height: 340px;
  }
  .home-mini-grid,
  .home-process-strip,
  .cms-numbered-grid,
  .cms-numbered-grid-compact,
  .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-doc-card {
    grid-template-columns: 1fr;
  }
  .home-preview-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .home-refresh .home-refresh-hero {
    padding: 28px 0 36px;
  }
  .home-slide-copy {
    padding: 30px 22px 58px;
  }
  .home-slide-copy h1,
  .home-slide-copy h2 {
    font-size: 30px;
  }
  .home-slide-media img,
  .home-preview-image img,
  .cms-detail-image img {
    height: 280px;
    min-height: 280px;
  }
  .home-mini-grid,
  .home-process-strip,
  .cms-numbered-grid,
  .cms-numbered-grid-compact,
  .service-process-grid {
    grid-template-columns: 1fr;
  }
  .home-preview-section,
  .cms-detail-page {
    padding: 42px 0;
  }
}

  
/* Refined CMS-driven homepage/about/services presentation */
.banner_wrapper .carousel-item {
  position: relative;
}
.banner_wrapper .carousel-item::after {
  background: linear-gradient(90deg, rgba(13, 18, 26, .82) 0%, rgba(13, 18, 26, .58) 48%, rgba(13, 18, 26, .28) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.banner_wrapper .carousel-item .banner_img {
  height: 680px;
  min-height: 620px;
}
.banner_contents {
  z-index: 2;
}
.banner_contents .btn_top {
  display: none;
}
.banner_contents .home-hero-copy {
  margin: 0;
  max-width: 1080px;
  text-align: left;
}
.banner_contents .home-hero-copy h1 {
  color: #fff;
  font-size: 64px;
  letter-spacing: 0;
  line-height: 1.06;
  margin-bottom: 18px;
  max-width: 1080px;
  text-align: left;
  text-transform: none;
}
.banner_contents .home-hero-lead {
  max-width: 920px;
}
.banner_contents .home-hero-lead p {
  color: rgba(255, 255, 255, .94);
  font-family: var(--secondary-font);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
}
.banner_contents .home-hero-actions {
  justify-content: flex-start;
  margin-top: 22px;
}
.banner_wrapper .carousel-indicators {
  bottom: 28px;
}
.home-about-showcase .work-content h3,
.home-services-showcase .service-cont h3,
.home-expertise-showcase .expertise-cont h3 {
  font-size: 48px;
  letter-spacing: 0;
  line-height: 1.14;
  max-width: none;
  text-transform: none;
}
.home-section-copy p {
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 12px;
}
.home-about-showcase .home-section-copy p,
.home-expertise-showcase .home-section-copy p {
  color: rgba(255, 255, 255, .88);
}
.home-services-showcase .home-section-copy p {
  color: #263343;
}
.home-about-highlights {
  display: grid;
  gap: 12px;
  margin: 24px 0 8px;
}
.home-about-highlights article {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  padding: 16px;
}
.home-about-highlights span {
  color: #d8b5ef;
  display: block;
  font-family: var(--secondary-font);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}
.home-about-highlights h4 {
  color: #fff;
  font-size: 18px;
  line-height: 1.28;
  margin-bottom: 8px;
}
.home-about-highlights p {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.home-services-showcase {
  background: #f8fafc;
}
.home-services-showcase .service-img-bx,
.gallery-tile,
.testimonial-premium .testi_cont {
  box-shadow: 0 18px 46px rgba(20, 26, 37, .10);
}
.home-expertise-showcase .heart-cont p {
  color: rgba(255, 255, 255, .76);
  max-width: none;
}
.gallery-showcase {
  background: #fff;
  padding: 76px 0;
}
.gallery-showcase .gallery-title {
  align-items: flex-end;
  gap: 24px;
}
.gallery-showcase .gallery-title h3,
.testimonial-premium .testimonial-title h3 {
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
}
.gallery-showcase .gallery-title p {
  color: #536173;
  font-family: var(--secondary-font);
  font-size: 16px;
  line-height: 1.7;
  margin: 12px 0 0;
  max-width: 720px;
}
.gallery-tile {
  border-radius: 8px;
  display: block;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}
.gallery-tile::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .64) 100%);
  content: "";
  inset: 0;
  position: absolute;
}
.gallery-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}
.gallery-tile span {
  bottom: 18px;
  color: #fff;
  font-family: var(--secondary-font);
  font-size: 15px;
  font-weight: 700;
  left: 18px;
  position: absolute;
  z-index: 1;
}
.gallery-tile:hover img {
  transform: scale(1.04);
}
.gallery-tile-feature {
  min-height: 540px;
}
.testimonial-premium {
  background: linear-gradient(135deg, #321747 0%, #4a1c62 100%);
  padding: 86px 0;
}
.testimonial-premium .testimonial-title {
  align-items: flex-start;
  gap: 28px;
}
.testimonial-premium .testimonial-title h3 {
  max-width: 560px;
}
.testimonial-premium .testimonial-title p {
  max-width: 620px;
}
.testimonial-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 360px;
}
.testimonial-stats div {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  padding: 18px;
}
.testimonial-stats strong {
  color: #fff;
  display: block;
  font-size: 34px;
  line-height: 1;
}
.testimonial-stats span {
  color: rgba(255, 255, 255, .72);
  display: block;
  font-family: var(--secondary-font);
  font-size: 14px;
  margin-top: 8px;
}
.testimonial-premium .textimonial_bxs {
  margin-top: 34px !important;
}
.testimonial-premium .testi_cont {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  height: 100%;
  padding: 28px;
}
.testimonial-premium .testimonial .icon h6 {
  color: #fff;
  line-height: 1.35;
}
.testimonial-premium .testimonial .testi-para p {
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  max-width: none;
}
.about-start-wrapper {
  padding-top: 70px;
}
.service-banner .banner_contents .content-bx h1 {
  letter-spacing: 0;
  text-transform: none;
}
.service-page-list {
  padding-top: 44px;
}
.service-doc-detail {
  padding-top: 54px;
}
.cms-detail-muted .home-preview-heading > span,
.service-doc-detail .home-cms-kicker,
.about-doc-detail .home-cms-kicker {
  display: none;
}

/* Final UI alignment fixes requested after visual QA */
.banner_wrapper .carousel-item .banner_img {
  object-position: center center;
}
.banner_contents .home-hero-copy {
  max-width: 980px;
}
.banner_contents .home-hero-copy h1 {
  font-size: 58px;
  max-width: 980px;
}
.banner_contents .home-hero-lead {
  max-width: 820px;
}
.banner_contents .home-hero-lead p {
  display: block;
  overflow: visible;
}
.home-expertise-showcase {
  padding: 82px 0;
}
.home-expertise-showcase .home-why-heading {
  margin: 0 auto 42px;
  max-width: 960px;
  text-align: center;
}
.home-expertise-showcase .home-why-heading h3 {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
  text-align: center;
}
.home-expertise-showcase .home-why-heading .home-section-copy {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}
.home-expertise-showcase .home-why-heading .home-section-copy p {
  text-align: center;
}
.home-expertise-showcase .home-why-layout {
  margin-top: 0;
}
.home-expertise-showcase .exper-img {
  height: 100%;
  margin: 0;
}
.home-expertise-showcase .exper-img img {
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .22);
  height: 520px;
  object-fit: cover;
  width: 100%;
}
.home-why-list {
  display: grid;
  gap: 18px;
}
.home-expertise-showcase .expertise-icon {
  align-items: flex-start;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  display: grid;
  gap: 20px;
  grid-template-columns: 74px 1fr;
  margin: 0;
  min-height: 142px;
  padding: 22px;
}
.home-expertise-showcase .expertise-icon:nth-child(1),
.home-expertise-showcase .expertise-icon:nth-child(2),
.home-expertise-showcase .expertise-icon:nth-child(3) {
  margin-left: 0;
}
.home-expertise-showcase .expertise-icon .heart-icon {
  display: flex;
  justify-content: center;
}
.home-expertise-showcase .expertise-icon .heart-icon span {
  height: 64px;
  width: 64px;
}
.home-expertise-showcase .expertise-icon .heart-cont h6 {
  margin-bottom: 10px;
}
.home-expertise-showcase .heart-cont p {
  margin-bottom: 0;
}
.testimonial-premium .testimonial.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.testimonial-premium .testimonial.owl-carousel .owl-item {
  display: flex;
  float: none;
}
.testimonial-premium .testimonial .item {
  display: flex;
  height: auto;
  width: 100%;
}
.testimonial-premium .testi_cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  width: 100%;
}
.testimonial-premium .testimonial .testi-para {
  flex: 1 1 auto;
}
.testimonial-premium .testimonial .testi_details {
  margin-top: 22px;
}
.testimonial-premium .testimonial .testi_details .details_cont h6,
.testimonial-premium .testimonial .testi_details .details_cont span {
  color: #fff;
}
.about-start-wrapper .home-about-highlights {
  margin-bottom: 14px;
}
.our_team_wrapper {
  background: linear-gradient(180deg, #ffffff 0%, #f8f5fb 100%);
  padding: 46px 0 72px;
}
.our_team_wrapper .team-heading {
  margin: 0 auto 28px;
  max-width: 800px;
  text-align: center;
}
.our_team_wrapper .team-heading span {
  color: var(--primary-color);
  display: block;
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.our_team_wrapper .team-heading h3 {
  color: #1f2937;
  font-size: 48px;
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 14px;
  text-transform: none;
}
.our_team_wrapper .team-heading p {
  color: #536173;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
}
.team-showcase {
  align-items: stretch;
  background: #fff;
  border: 1px solid #e9edf3;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(20, 26, 37, .10);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(280px, 38%) 1fr;
  margin: 0 0 22px;
  overflow: hidden;
}
.team-showcase-media {
  min-height: 100%;
}
.team-showcase-media img {
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  width: 100%;
}
.team-showcase-content {
  padding: 34px;
}
.team-showcase-content h4 {
  color: #1f2937;
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1.16;
  margin-bottom: 12px;
  text-transform: none;
}
.team-showcase-content > p {
  color: #536173;
  font-size: 15px;
  line-height: 1.68;
  margin: 0 0 22px;
  max-width: 760px;
  text-align: left;
}
.team-capability-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.team-capability-grid article {
  background: #faf8fc;
  border: 1px solid #ece5f2;
  border-radius: 8px;
  min-height: 164px;
  padding: 18px;
}
.team-capability-grid span {
  align-items: center;
  background: #451E5D;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-family: var(--secondary-font);
  font-size: 12px;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  margin-bottom: 14px;
  width: 36px;
}
.team-capability-grid h5 {
  color: #243244;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.team-capability-grid p {
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  text-align: left;
}
.our_team_wrapper .team-grid > [class*="col-"] {
  display: flex;
}
.our_team_wrapper .team-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 26, 37, .10);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}
.our_team_wrapper .team-img {
  aspect-ratio: 1 / .86;
  background: #eee7f4;
  overflow: hidden;
}
.our_team_wrapper .team-img img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}
.our_team_wrapper .team-img::after {
  background: linear-gradient(180deg, rgba(47, 22, 67, 0) 35%, rgba(47, 22, 67, .58) 100%);
}
.our_team_wrapper .team-card:hover .team-img img {
  transform: scale(1.04);
}
.our_team_wrapper .team_info {
  background: #fff;
  border-top: 4px solid var(--primary-color);
  padding: 22px;
  position: static;
  text-align: left;
}
.our_team_wrapper .team_info h6 {
  color: #1f2937;
  font-size: 22px;
  line-height: 1.24;
  margin-bottom: 8px;
}
.our_team_wrapper .team_info span {
  color: var(--primary-color);
  display: block;
  font-family: var(--secondary-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.about-support-wrapper {
  background: #fff;
  padding: 62px 0 76px;
}
.about-support-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-support-card {
  background: #fff;
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(20, 26, 37, .09);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.about-support-card:hover {
  border-color: rgba(69, 30, 93, .26);
  box-shadow: 0 24px 54px rgba(20, 26, 37, .14);
  transform: translateY(-4px);
}
.about-support-image {
  aspect-ratio: 16 / 10;
  background: #f2eef6;
  overflow: hidden;
}
.about-support-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}
.about-support-card:hover .about-support-image img {
  transform: scale(1.04);
}
.about-support-content {
  align-items: flex-start;
  display: grid;
  gap: 14px;
  grid-template-columns: 44px 1fr;
  padding: 22px;
}
.about-support-content span {
  align-items: center;
  background: #451E5D;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-family: var(--secondary-font);
  font-size: 13px;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  line-height: 1;
  width: 44px;
}
.about-support-content h3 {
  color: #243244;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.28;
  margin: 5px 0 0;
  text-transform: none;
}

.home-duo-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-duo-card {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 24, 39, .08);
  display: grid;
  grid-template-rows: 260px 1fr;
  min-height: 100%;
  overflow: hidden;
}

.home-duo-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home-duo-card > div {
  padding: 28px;
}

.home-duo-card h2,
.home-material-grid h3,
.home-finishes-grid h2 {
  color: #172033;
  font-weight: 800;
  line-height: 1.15;
}

.home-duo-card h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.home-material-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.home-material-grid article {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  min-height: 100%;
  padding: 22px;
}

.home-material-grid h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.home-material-grid p,
.home-duo-card p {
  color: #4b596b;
  line-height: 1.7;
}

.home-finishes-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.home-finishes-grid article {
  background: #f6f8fb;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  padding: 26px;
}

.home-finishes-grid h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.home-service-detail-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0;
}

.home-service-detail-card {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(17, 24, 39, .06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.home-service-detail-icon {
  align-items: center;
  background: #f8effb;
  border-radius: 8px;
  color: #451E5D;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  margin-bottom: 18px;
  width: 46px;
}

.home-service-detail-icon img {
  height: 22px;
  width: 22px;
}

.home-service-detail-card h3 {
  color: #172033;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.home-service-detail-card .home-cms-section-copy {
  color: #44546a;
  font-size: 16px;
  line-height: 1.7;
}

.home-page-link-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-page-link-grid a {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  color: #172033;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 150px;
  padding: 20px;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-page-link-grid a:hover {
  border-color: #8E4CB0;
  box-shadow: 0 18px 38px rgba(17, 24, 39, .08);
  color: #451E5D;
  transform: translateY(-2px);
}

.home-page-link-grid span {
  color: #8E4CB0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-page-link-grid strong {
  font-size: 20px;
  line-height: 1.22;
}

.home-page-link-grid i {
  margin-top: auto;
}

.home-faq-band .home-preview-heading {
  justify-content: center;
  text-align: center;
}

@media (max-width: 1199px) {
  .home-material-grid,
  .home-service-detail-grid,
  .home-page-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .home-duo-grid,
  .home-finishes-grid {
    grid-template-columns: 1fr;
  }

  .home-material-grid,
  .home-service-detail-grid,
  .home-page-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .home-duo-card {
    grid-template-rows: 210px 1fr;
  }

  .home-duo-card > div,
  .home-material-grid article,
  .home-finishes-grid article,
  .home-page-link-grid a {
    padding: 18px;
  }

  .home-material-grid,
  .home-service-detail-grid,
  .home-page-link-grid {
    grid-template-columns: 1fr;
  }

  .home-duo-card h2,
  .home-finishes-grid h2 {
    font-size: 24px;
  }
}

/* UI polish: compact, image-led, expandable homepage/about sections */
.home-expertise-showcase {
  padding: 44px 0 58px;
}

.home-expertise-showcase .home-why-heading {
  margin-bottom: 26px;
  max-width: 1180px;
  text-align: center;
}

.home-expertise-showcase .home-why-heading h3 {
  max-width: 1180px;
}

.home-expertise-showcase .home-why-heading .home-section-copy {
  max-width: 1120px;
  width: 100%;
}

.home-expertise-showcase .home-why-heading h3,
.home-expertise-showcase .home-why-heading .home-section-copy p {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  text-align: center;
}

.home-why-carousel {
  margin: 0 auto;
  max-width: 1120px;
}

.home-why-slide {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
  min-height: 390px;
  overflow: hidden;
}

.home-why-slide-media img {
  display: block;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  width: 100%;
}

.home-why-slide-copy {
  align-self: center;
  padding: 38px 48px;
}

.home-why-slide-copy span {
  color: #d8b5ef;
  display: block;
  font-family: var(--secondary-font);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 14px;
}

.home-why-slide-copy h4 {
  color: #fff;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.08;
  margin-bottom: 16px;
}

.home-why-slide-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.home-why-carousel .carousel-control-prev,
.home-why-carousel .carousel-control-next {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  bottom: 22px;
  height: 46px;
  opacity: 1;
  top: auto;
  width: 46px;
}

.home-why-carousel .carousel-control-prev {
  left: auto;
  right: 76px;
}

.home-why-carousel .carousel-control-next {
  right: 24px;
}

.home-document-suite .home-preview-copy h3 {
  display: none;
}

.understanding-card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.understanding-card-grid article {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(17, 24, 39, .06);
  min-height: 120px;
  padding: 20px;
}

.understanding-card-grid span {
  color: #8E4CB0;
  display: block;
  font-family: var(--secondary-font);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
}

.understanding-card-grid h3 {
  color: #172033;
  font-size: 19px;
  line-height: 1.28;
  margin: 0;
}

.home-expand-card summary {
  cursor: pointer;
  list-style: none;
}

.home-expand-card summary::-webkit-details-marker {
  display: none;
}

.home-expand-label {
  align-items: center;
  color: #451E5D;
  display: inline-flex;
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  margin-top: 12px;
}

.home-expand-label::after {
  align-items: center;
  background: #451E5D;
  border-radius: 50%;
  color: #fff;
  content: "+";
  display: inline-flex;
  font-size: 15px;
  height: 22px;
  justify-content: center;
  line-height: 1;
  width: 22px;
}

.home-expand-card[open] .home-expand-label::after {
  content: "-";
}

.home-card-preview {
  color: #4b596b;
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-card-preview p {
  margin-bottom: 0;
}

.home-expand-body {
  border-top: 1px solid #e2e8ef;
  margin-top: 14px;
  padding-top: 16px;
}

.home-process-strip {
  align-items: start;
}

.home-process-card {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, .06);
  overflow: hidden;
}

.home-process-card summary > div {
  padding: 18px;
}

.home-process-card .home-cms-section-copy,
.home-process-card .home-card-preview {
  padding: 0;
}

.home-process-card .home-expand-body {
  padding: 16px 18px 18px;
}

.home-duo-card .home-expand-body,
.industry-image-card .home-expand-body,
.home-material-grid .home-expand-body,
.home-finishes-grid .home-expand-body {
  border-color: #dde5ec;
}

.industry-image-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industry-image-card {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(17, 24, 39, .07);
  overflow: hidden;
  padding-bottom: 20px;
}

.industry-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.industry-card-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.industry-card-media span {
  background: #8E4CB0;
  border-radius: 999px;
  bottom: 14px;
  color: #fff;
  font-family: var(--secondary-font);
  font-weight: 900;
  left: 14px;
  padding: 7px 11px;
  position: absolute;
}

.industry-image-card h3 {
  color: #172033;
  font-size: 24px;
  line-height: 1.2;
  margin: 20px 20px 4px;
}

.industry-image-card details {
  margin: 0 20px;
}

.home-material-grid article,
.home-finishes-grid article {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8fd 100%);
  box-shadow: 0 18px 42px rgba(69, 30, 93, .08);
}

.home-material-grid article > .home-expand-card,
.home-finishes-grid article > .home-expand-card {
  margin-top: 14px;
}

.home-finishes-grid .home-mini-grid {
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-mini-item {
  background: #fff;
  border: 1px solid #eadff0;
  box-shadow: 0 12px 26px rgba(69, 30, 93, .06);
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  min-height: 168px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.home-mini-media {
  display: block;
  height: 92px;
  overflow: hidden;
  width: 100%;
}

.home-mini-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
  width: 100%;
}

.home-mini-item:hover .home-mini-media img {
  transform: scale(1.05);
}

.home-mini-item i {
  align-items: center;
  background: #451E5D;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  height: 30px;
  justify-content: center;
  left: 12px;
  margin: 0;
  position: absolute;
  top: 76px;
  width: 30px;
  z-index: 1;
}

.home-mini-item strong {
  color: #172033;
  display: block;
  font-size: 16px;
  line-height: 1.28;
  padding: 22px 14px 14px;
  word-break: normal;
}

.home-page-link-grid a {
  padding: 0 0 18px;
}

.home-page-link-grid .home-page-link-media {
  background: #eef2f6;
  display: block;
  height: 148px;
  margin: 0 0 16px;
  overflow: hidden;
  width: 100%;
}

.home-page-link-grid .home-page-link-media img {
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
  width: 100%;
}

.home-page-link-grid a:hover .home-page-link-media img {
  transform: scale(1.05);
}

.home-page-link-grid a > span:not(.home-page-link-media),
.home-page-link-grid a > strong,
.home-page-link-grid a > i {
  margin-left: 18px;
  margin-right: 18px;
}

.home-faq-band {
  background: #f5f7fa;
}

.about-start-wrapper {
  padding-top: 32px;
}

.about-start-wrapper .home-about-highlights h4 {
  display: none;
}

.about-start-wrapper .home-about-highlights article {
  padding: 18px 20px;
}

.about_content_wrapper {
  padding: 34px 0 58px;
}

.about_content_wrapper .row {
  align-items: stretch;
}

.about_content_wrapper .left-cont {
  background: #fff;
  border: 1px solid #e2e8ef;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 26, 37, .08);
  height: 100%;
  padding: 30px;
}

.about_content_wrapper .left-cont h3,
.about_content_wrapper .left-cont h6 {
  display: none;
}

.about_content_wrapper .left-cont p {
  color: #3d4d60;
  font-size: 17px;
  line-height: 1.82;
  margin-bottom: 16px;
}

.about_content_wrapper .right-content,
.about_content_wrapper .right-content .row,
.about_content_wrapper .right-content .about_img {
  height: 100%;
}

.about_content_wrapper .right-content .about_img img {
  border-radius: 8px;
  height: 100%;
  min-height: 380px;
}

.about_content_wrapper .right-content .about_img::after {
  border-radius: 8px;
}

.team-showcase-media img {
  object-position: 63% center;
}

.our_team_wrapper .team-grid {
  display: none;
}

@media (max-width: 1199px) {
  .understanding-card-grid,
  .industry-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .home-why-slide {
    grid-template-columns: 1fr;
  }
  .home-why-slide-media {
    height: 260px;
  }
  .home-why-slide-media img {
    height: 100%;
    min-height: 0;
  }
  .home-why-slide-copy {
    padding: 28px 28px 78px;
  }
  .home-process-strip,
  .industry-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about_content_wrapper .right-content .about_img img {
    min-height: 320px;
  }
}

@media (max-width: 576px) {
  .home-expertise-showcase .home-why-heading,
  .home-expertise-showcase .home-why-heading h3,
  .home-expertise-showcase .home-why-heading .home-section-copy p {
    text-align: center !important;
  }
  .home-expertise-showcase .home-why-heading .home-section-copy,
  .home-expertise-showcase .home-why-heading .home-section-copy p {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .home-why-slide-copy h4 {
    font-size: 27px;
  }
  .home-why-slide-copy p {
    font-size: 15px;
  }
  .understanding-card-grid,
  .home-process-strip,
  .industry-image-grid {
    grid-template-columns: 1fr;
  }
  .home-page-link-grid .home-page-link-media {
    height: 180px;
  }
  .about_content_wrapper .left-cont {
    padding: 22px;
  }
  .about_content_wrapper .left-cont p {
    font-size: 15px;
  }
}
