/* font-family */
@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=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* import files */
@import url("../css/fonts.css");
@import url("../css/header_footer.css");
:root{
  --open-sans: "Open Sans", sans-serif;
  --dm-sans: "DM Sans", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body{
  font-family: var(--open-sans);
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  background: #FFF;
  overflow-x: hidden;
}
a:hover{
  color: #014040;
}
a, a:hover{
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
main{
  padding: 84px 0 0;
}
.container-80{
  padding: 0  80px;
}
.cstm-container{
  padding: 0 30px;
}
section{scroll-margin-top: 85px;}
/* ------------------ HOME [ START ]  -------------------*/
.home-blog{
  position: relative;
  padding: 80px 0 100px;
  border-radius: 0 0 60px 60px;
}
.home-blog:before{
  content: '';
  position: absolute;
  background: url(../images/home-shape.svg) no-repeat;
  background-size: contain;
  top: -48px;
  right: 0;
  width: 509px;
  height: 576px;
  z-index: -1;
}
.home-blog:after{
  content: '';
  position: absolute;
  background: url(../images/home-shape2.svg) no-repeat;
  background-size: contain;
  bottom: 12%;
  left: 0;
  width: 509px;
  height: 576px;
  z-index: -1;
}
.home-blog-title{
  text-align: center;
  padding: 0 0;
}
.home-blog-title h1{
  font-family: var(--dm-sans);
  font-weight: 700;
  font-size: 67px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 20px;
}
.home-blog-title h1 span{
  color: #F17405;
}
.home-blog-title p{
  font-size: 18px;
  color: #000000;
  margin-bottom: 0px;
  font-weight: 400;
  font-family: var(--open-sans);
}
/* ------------------- owl home slide ------------------ */
.owl-home{
  padding: 0 0 90px;
  position: relative;
  overflow: visible;
}
.owl-home .owl-stage-outer {
  overflow: hidden !important; /* hide overflow cleanly */
}
.owl-home .owl-stage {
  display: flex;
  align-items: center;
}

.owl-home img {
  border-radius: 10px;
  transition: all 0.4s ease;
  opacity: 0.6;
  transform: scale(0.9); /* slightly smaller by default */
  transform-origin: center center;
  z-index: 1;
}
.owl-home .owl-item.center img {
  transform: scale(1.05); /* subtle zoom for center */
  opacity: 1;
  z-index: 3;
}
.owl-home .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}
/* ------------------- owl home slide [ END ] ------------------ */
.comn-btn{
  background: #014040;
  color: #fff;
  border: 1.2px solid transparent;
  padding: 14px 33px;
  border-radius: 500px;
  display: inline-block;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-family: var(--dm-sans);
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.4s ease, transform 0.3s ease;
  white-space: nowrap;
  text-align: center;
  width: fit-content;
}
.comn-btn svg {
  transition: transform 0.3s ease;
}
.comn-btn:hover {
  background: #FFF;
  color: #014040;
  border-color: #014040;
  font-weight: 600;
  transform: translateY(-3px);
}
.comn-btn:hover svg {
  transform: translateY(-3px);
}
/* --------------- Counter ------------ */
.counter-area{
  border-top: 1px solid #00000033;
  border-bottom: 1px solid #00000033;
  padding: 20px 0;
  position: relative;
  margin: 25px auto;
}
.counter-bx{
  display: flex;
  align-items: center;
  gap: 20px;
}
.cnt-icon img{
  width: 60px;
  min-width: 60px;
  height: auto;
  object-fit: cover;
}
.counter-bx span{
  font-weight: 500;
  font-size: 42px;
  text-transform: capitalize;
  color: #000000;
  font-family: var(--dm-sans);
}
.counter-bx p{
  font-size: 15px;
  color: #000000;
  margin-bottom: 0;
}
/* ------------------- data integration ---------------------- */
.decision-data-blog{
  position: relative;
  padding-bottom: 50px;
}
.decision-bx{
  background: linear-gradient(180deg, #F8F4E8 75.32%, rgba(248, 244, 232, 0) 100%);
  padding: 80px 50px 40px;
  border-radius: 40px;
}
.decision-txt{
  padding-right: 60px;
}
.move-data-txt{
  display: flex;
  justify-content: center;
  height: 100%;
  flex-flow: column;
}
.decision-txt h2, .move-data-txt h2{
  font-family: var(--dm-sans);
  font-weight: 700;
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.decision-txt h2 span, .move-data-txt h2 span{
  color: #F17405;
}
.decision-txt p, .data-txt p{
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 20px;
  color: #1E1E1E;
}
.data-bx{
  background: #FFFFFF;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 30px;
}
.data-txt h3{
  font-family: var(--dm-sans);
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 8px;
  color: #1E1E1E;
}
.data-txt p{
  margin-bottom: 0;
}
.data-img{
  position: relative;
}
.data-main-img{
  border-radius: 30px;
  object-fit: cover;
  /* max-width: 100%;
  height: auto; */
  width: 336px !important;
  height: 300px;
  position: relative;
}
.data-arrow{
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 19px 19px 0;
  z-index: 2;
  display: inline-block;
}
.data-arrow img{
  width: 50px;
  min-width: 50px;
  height: 50px;
  object-fit: contain;
  transition: 0.5s ease-in-out;
}
.data-arrow:hover img{
  transform: rotate(45deg);
}
/* ----------------------- brilliant move ----------------- */
.brilliant-blog{
  position: relative;
  padding-bottom: 100px;
}
.brilliant-blog .row{
  height: -webkit-fill-available;
}
.brilliant-blog .col-lg-6, .move-img{
  height: 100%;
}
.brillient-bx{
  padding: 50px 40px;
  border: 3px solid #0140401A;
  border-radius: 40px;
  display: flex;
  align-items: center;
}
.move-img{
  border-radius: 40px;
  background: #002121;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
}
.move-img img{
  width: 100%;
}
.move-data-txt{padding-left: 50px;}
.move-data-txt p{
  font-weight: 400;
  font-size: 18px;
  color: #1E1E1E;
  margin-bottom: 8px;
}
.move-data-txt > p:last-of-type {
  margin-bottom: 20px;
}


/*--karan Start--*/

 .kkglob-title h2 {
  font-family: var(--dm-sans);
  font-weight: 700;
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.kkglob-title h2 span {
  color: rgba(241, 116, 5, 1);
}

/*--Here’s The Problem --*/

.pr-30{
  padding-right: 30px;
}
.pl-30{
  padding-left: 30px;
}
.pr-60{
  padding-right: 60px;
}
.pl-60{
  padding-left: 60px;
}
.wd-pb-60{
  padding-bottom: 60px;
}
.wd-pb-100{
  padding-bottom: 100px;
}
.prosolution-sec{
  position: relative;
  padding-bottom: 80px;
}
.prosolution-sec:before{
  content: "";
  position: absolute;
  background-image: url('../images/prosol-bg-img.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;
}
.prosolution-wrap{
 padding: 0 50px 100px 50px; 
 position: relative;
 overflow: hidden;
 z-index: 9;
}
/*.prosolution-wrap:before{
  content: "";
  position: absolute;
  background-image: url('../images/prosol-bg-img.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;
}*/
.prosolution-sec .kkglob-title{
  margin-bottom: 10px;
}
.prosolution-sec p{
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 28px;
}
.prob-img img{
  object-fit: cover;
  border-radius: 20px;
  height: auto;
  width: 100%;
  border: 2px solid #00000033;
}
.solu-img img{
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid #00000033;
}
.globalpro-grid ul {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 28px;
}
.globalpro-grid ul li{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.globalpro-grid ul li svg{
  width: 30px;
  height: 30px;
}
.globalpro-grid ul li p{
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  color: #1E1E1E;
  margin-bottom: 0;
}
.prosolution-wrap .row:last-of-type{
  padding-top: 60px;
}
/*--Here’s The Problem  End--*/

/*--Turn Data Results--*/
.datareslt-sec .datafamlybg-wrap{
  padding: 100px 50px;
  background: rgba(248, 244, 232, 1);
  border-radius: 40px;
}
/* .datareslt-img img{
 aspect-ratio: 1.06/1;
  object-fit: cover;
  width: 100%;
} */
.datareslt-sec .kkglob-title{
  margin-bottom: 40px;
}
.datareslt-btn{
  margin-top: 40px;
}
.datareslt-list li{
  background-color: #fff;
  padding: 30px 30px;
  border-radius: 15px;
  margin-bottom: 12px;
}
.datareslt-list li h3{
  font-family: var(--dm-sans);
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 0;
}
/*--Turn Data Results End--*/

/*--What Our Clients Say--*/
.ourclint-sec{
  padding: 50px 0;
}
.ourclint-slider .slick-slide {
  margin: 0 13px;
}
.ourclint-sec .kkglob-title{
  margin-bottom: 40px;
}
.ourclint-btn {
  text-align: center;
  width: fit-content;
  margin: 50px auto auto;
}
.ourclint-slider{
  padding: 0 20px;
}
.ourclint-wrap {
  position: relative;
  z-index: 9;
  overflow: hidden;
  cursor: pointer;
}
.ourclint-wrap .ourclint-img {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
}
.ourclint-img img{
  width: 100%;
  aspect-ratio: 0.69/1;
  object-fit: cover;
  border-radius: 40px;
}
.ourclint-img:before{
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 64.9%);
  width: 100%;
  height: 100%;
  border-radius: 40px;
}
.ourclint-content {
  position: absolute;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 0 0 20px 20px;
  width: calc(100% - 50px);
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
  transition: all 0.4s ease-in;
  padding-bottom: 16px;
}
.ourclint-content p{
  opacity: 1;
  margin-bottom: 6px;
}
/*.ourclint-wrap:hover .ourclint-content p{
   opacity: 1;
}*/
/* .ourclint-slider  .slick-next:before, .ourclint-slider .slick-prev:before{
  content: none;
}
.ourclint-slider  .slick-next{
  right: 0;
}
.ourclint-slider  .slick-prev{
  left: -25px;
} */

.ourclint-slider {
  position: relative;
}

/* Remove default icons */
.ourclint-slider .slick-next:before,
.ourclint-slider .slick-prev:before {
  content: none;
}

/* Arrow common styling */
.ourclint-slider .slick-prev,
.ourclint-slider .slick-next {
  position: absolute;
  top: 50%; /* center vertically */
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  display: none;
}

/* Position left/right */
.ourclint-slider .slick-prev {
  left: -20px; /* adjust depending on container padding */
}

.ourclint-slider .slick-next {
  right: -20px;
}

.ourclint-content h4{
font-weight: 700;
font-size: 16px;
text-align: center;
margin-bottom: 0;
}
.ourclint-content  p{
font-weight: 400;
font-size: 16px;
text-align: center;
}
/*--What Our Clients Say End--*/

/*--Data Family Truly--*/

.datafamlybg-wrap{
  padding: 50px;
  background: linear-gradient(180deg, #F8F4E8 55.25%, rgba(248, 244, 232, 0) 100%);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.datafamly-sec .kkglob-title{
  margin-bottom: 20px;
}
.datafamly-img img{
    border-radius: 40px;
    object-fit: cover;
/*    aspect-ratio: 1.2 / 1;*/
    height: auto;
}
.datafamlybg-wrap p{
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 20px;
  color: #1E1E1E;
}

/*--Data Family Truly End--*/
/*------------------- karan End ------------------------*/
.datareslt-list {
  max-height: 500px; 
  overflow-y: auto;  
  padding-right: 10px; 
}
/* Keep image fixed in its column */
.datareslt-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.datareslt-img img{
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.datareslt-list::-webkit-scrollbar {
  width: 6px;
}
.datareslt-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
/* ------------------------ new css ----------------------- */
.brand-scroll-wrapper {
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
}
.brand-track {
  display: flex;
  width: 100%;
  position: relative;
/*  width: max-content;*/
  
  overflow: hidden;
}
/*.brand-track.revrse {
  animation: scroll-right 40s linear infinite;
}*/
.brand-content {
  display: flex;
  gap: 100px;
  width: max-content; 
  padding-right: 100px; 
  animation: scroll-left 25s linear infinite;
}
.brand-track.revrse .brand-content {
  animation: scroll-right 25s linear infinite !important;
}
.brand-content img {
  object-fit: contain;
  height: 40px;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
/* -------------- verticla slide ------------- */
.data-slider.owl-carousel .owl-item {
  transition: transform 1.2s ease;
}
.data-slider .owl-animated-out {
  animation: slideOutUp 1.2s forwards;
}
.data-slider .owl-animated-in {
  animation: slideInUp 1.2s forwards;
}

@keyframes slideOutUp {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-100%); opacity: 0; }
}

@keyframes slideInUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
/* -------------- help clients ------------- */
.help-clients-bx{
  padding: 70px 50px 50px;
  position: relative;
  background: #F8F4E8;
  border-radius: 40px;
}
.help-clients-bx .comn-title{
  width: 42%;
  margin: 0 auto 40px;
}
.comn-title h3{
  font-family: var(--dm-sans);
  font-weight: 700;
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.comn-title h3 span{
  color: #F17405;
}
.comn-title p{
  font-weight: 400;
  font-size: 18px;
  color: #1E1E1E;
  margin-bottom: 0;
}
.comn-title{
  margin-bottom: 40px;
}
.help-data-bx{
  background: #FFFFFF;
  border-bottom: 1px solid#000000;
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
}
.help-data-bx:hover{
  transform: translateY(-5px);
  border-bottom: 1px solid#F17405;
}
.help-data-top{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}
.help-data-icon{
  display: block;
}
.help-data-icon svg{
  width: 62px;
  height: 62px;
}
.help-data-bx:hover .help-data-icon svg path{
  fill: #F17405;
}
.help-data-top h4{
  font-family: var(--dm-sans);
  font-weight: 700;
  font-size: 20px;
  text-transform: capitalize;
  color:#1E1E1E;
  margin-bottom: 0;
}
.help-data-dtls p{
  font-weight: 400;
  font-size: 18px;
  color: #1E1E1E;
  margin-bottom: 0;
}
.wd-mb-24{
  margin-bottom: 24px;
}
/* ------------- Recent Projects ----------------- */
.recent-project-blog{
  position: relative;
  padding-bottom: 50px;
}
.recent-project-blog:before{
  content: '';
  position: absolute;
  background: url(../images/project.svg) no-repeat;
  background-size: contain;
  width: 877px;
  height: 988px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  margin: 0 auto;
}
.project-slide img{
  max-width: 100%;
  height: auto;
  border-radius: 40px;
}
/* ------------------ OUR APPROACH ---------------- */
.approach-dtls-area{
  padding: 50px;
  position: relative;
  background: linear-gradient(180deg, #F8F4E8 57.97%, rgba(248, 244, 232, 0) 100%);
  border-radius: 40px;
}
.approach-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding:0 80px;
  position: relative;
}
.approach-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0;
}
.approach-item.reverse {
  flex-direction: row-reverse;
}
.approach-item:not(.reverse) .approach-text{
  margin-left: -40px;
}
.approach-item.reverse .approach-text {
  margin-right: -40px;
}
.approach-text{
  background: #FFFFFF;
  border-radius: 15px;
  padding: 30px;
  z-index: 1;
}
.approach-text span{
  font-family: var(--open-sans);
  font-weight: 700;
  font-size: 84px;
  text-transform: capitalize;
  color: #014040;
  margin-bottom: 14px;
}
.approach-text h4{
  font-family: var(--dm-sans);
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
  color: #1E1E1E;
  margin-bottom: 14px;
}
.approach-text p{
  font-weight: 400;
  font-size: 18px;
  color: #1E1E1E;
  margin-bottom: 0;
}
.approach-img-side {
  flex: 0 0 37%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0px;
}
.approach-img-side img {
  max-width: 100%;
  height: auto;
  border-radius: 40px;
}
/* ------------- accordion [Need help ]------------- */
.need-help-blog{
  padding: 0 0 30px;
  position: relative;
}
.need-help-blog:before{
  content: '';
  position: absolute;
  background: url(../images/help-bg-icon.png) no-repeat;
  background-attachment: fixed;
  background-size: contain;
  width: 954px;
  height: 1086px;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: -1;
  margin: 0 auto;
}

.need-help-blog .accordion-item {
  border: none;
  background: #FFFFFF;
  border: 1px solid #0000000F;
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  padding: 15px;
}

.need-help-blog .accordion-item:first-of-type{
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.need-help-blog .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: none;
  box-shadow: none;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
  color: #0a2c33;
  position: relative;
  border-radius: 0px;
  transition: all 0.3s ease;
}
.need-help-blog .accordion-button:not(.collapsed){
  background: #FFF;
  border: 0;
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.need-help-blog .accordion-button::after{display: none;}

.need-help-blog .accordion-item:hover{
  border: 1px solid #F1740580;
  box-shadow: 0px 8px 16px 0px #FFB1690D, 9.43px 28.28px 113.13px 0px #7E8AFD14;
}
.need-help-blog .accordion-button:not(.collapsed) .icon-left,
.need-help-blog .accordion-button.active .icon-left{
  background: #FFF5E7;
}
.need-help-blog .accordion-button.active .icon-left svg path{
  fill: #F08509;
}

.need-help-blog .accordion-button:not(.collapsed) .icon-right,
 .need-help-blog .accordion-button.active .icon-right{
  background: #F17405;
  box-shadow: 0px 11.14px 9.47px 0px #F1740547;
}
/* .accordion-button .arrow-down {
  transition: transform 0.3s ease;
}
.arrow-down {
  transform: rotate(0deg);
}
.arrow-down.rotate{
  transform: rotate(90deg);
} */

.need-help-blog .accordion-item:first-of-type .accordion-button{
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.need-help-blog .accordion-button .icon-left {
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E6ECEE;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 12px;
}
.need-help-blog .accordion-button .icon-right {
  width: 35px;
  min-width: 35px;
  height: 35px;
  background: #014040;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  /* margin-left: auto; */
  transition: all 0.3s ease;
  box-shadow: 0px 11.14px 9.47px 0px #01404026;
}
.need-help-blog .accordion-button:focus {
  box-shadow: none;
}
/*.need-help-blog .accordion-collapse {
  overflow: hidden;
  transition: height 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;
  opacity: 0;
  height: 0;
}*/
.need-help-blog .accordion-collapse {
  overflow: hidden;
  height: 0;
  transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.need-help-blog .accordion-collapse.show {
  max-height: 500px;
  opacity: 1;
  transition: all 0.9s ease-in-out;
}
.need-help-blog .accordion-body {
  padding: 0;
  border-top: 1px dashed #CBCBCB;
  margin-top: 14px;
  padding-top: 14px;
}
.need-help-blog .accordion-body p{
  font-family: var(--open-sans);
  font-weight: 400;
  font-size: 14px;
  color: #030712;
  margin-bottom: 0;
}
.need-help-blog .accordion-title {
  flex: 1;
  text-align: left;
  font-family: var(--dm-sans);
  font-weight: 700;
  font-size: 20px;
  color: #1E2721;
}
.help-btn{
  margin: 42px auto 0;
}
.book-consult-blog{
  position: relative;
  padding-bottom: 50px;
}
.book-consult-bx{
  background: #F8F4E8;
  padding: 80px 50px;
  border-radius: 40px;
}
.help-img{
  text-align: right;
}
.service-lottie-box{
  background: #003131;  
  border-radius: 30px;     
  padding: 5px;         
  display: flex;
  align-items: center;
  justify-content: center;
  width: 346px; 
  min-width: 346px;             
  height: 300px;
  position: relative;
  overflow: hidden;  
}
/* .service-lottie-box svg{
  transform: scale(1.8);
} */
.service-lottie{
  width: 100%;
  height: 100%;
  background: transparent;
  object-fit: cover;
}
.data-bx .service-lottie {
  transform: scale(1.5); 
  transform-origin: center;
}
/* ------------- home slick slider ----------- */
.home-slider {
  overflow: hidden;
  padding: 48px 0;
  margin: 0 auto;
  perspective: 1000px;
}
.home-slider .slick-track {
  display: flex;
  align-items: center; 
}
.home-slider .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  transform: scale(0.8);
  opacity: 0.8;
  margin: 0 -60px; /* overlap effect */
  filter: brightness(0.9);
  will-change: transform, opacity;
}
.home-slider .slick-center {
  transform: scale(1);
  opacity: 1;
  z-index: 3;
  filter: brightness(1);
  position: relative;
}

.home-slider img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 24px;
  transition: all 0.4s ease;
  object-fit: contain; 
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
}
/* ------------- home slick slider ----------- */
.help-center-txt{
  text-align: center;
}
.help-center-txt p{
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 25px;
  color: #1E1E1E;
}

.approach-video{
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 40px;
}
.data-slider-section {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
/* -------------------- Recent projects --------------------- */
/* ------------- hammer slider [ START] ------------- */
/* MAIN CONTAINER */
.slider-container {
  position: relative;
  overflow: hidden;
  height: auto;
}

.slider .slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(300px, 72vw, 460px);  /* min, ideal, max */
  transform: translateX(-50%) scale(0.45);
  opacity: 0.4;
  z-index: 1;
  transition: 0.6s ease;
  pointer-events: none;
}
.slider .slide .project-bx {
  position: relative;   
  width: 100%;
  height: auto;         
}

.slider .slide.active {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
}

.slider .slide.prev-1 {
  transform: translate(calc(-50% - 270px), 0) scale(0.8);
  opacity: 0.7;
  z-index: 3;
}

.slider .slide.next-1 {
  transform: translate(calc(-50% + 270px), 0) scale(0.8);
  opacity: 0.7;
  z-index: 3;
}

.slider .slide.prev-2 {
  transform: translate(calc(-50% - 480px), 0) scale(0.65);
  opacity: 0.4;
  z-index: 2;
}

.slider .slide.next-2 {
  transform: translate(calc(-50% + 480px), 0) scale(0.65);
  opacity: 0.4;
  z-index: 2;
}

@media (max-width: 768px) {
  .slider .slide.prev-2,
  .slider .slide.next-2 {
    opacity: 0;
  }

  .slider .slide.prev-1,
  .slider .slide.next-1 {
    transform: translate(-50%, -50%) scale(0.7);
  }
}
.project-bx{
  background: #F8F4E8;
  padding: 20px;
  border-radius: 40px;
  position: relative;
  width: 100%;
}
.project-img{
  text-align: center;
  margin-bottom: 18px;
}
.project-img img{
  border-radius: 20px;
  object-fit: contain;
  width: 100%;
}
.projct-date{
  font-weight: 700;
  font-size: 13px;
  color: #1E1E1E;
  display: block;
  padding: 0;
  margin: 0;
  text-align: left;
}
.projct-txt{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #00000036;
  text-align: left;
}
.projct-txt h4{
  font-weight: 700;
  font-size: 21px;
  color: #1E1E1E;
  margin-bottom: 7px;
}
.projct-txt p{
  font-weight: 400;
  font-size: 18px;
  color: #1E1E1E;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* ------------- hammer slider [ END ] ------------- */
.datafamily-video{
  width: 100%;
  text-align: right;
  margin: 0;
  aspect-ratio: 4/3;
}
.datafamily-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
/* --------------- faq -------------- */
.faq-item{
  background: #FFFFFF;
  border: 1px solid #0000000F;
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  padding: 15px;
}
.faq-item:hover{
  border: 1px solid #F1740580;
  box-shadow: 0px 8px 16px 0px #FFB1690D, 9.43px 28.28px 113.13px 0px #7E8AFD14;
}
.faq-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: none;
  box-shadow: none;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
  color: #0a2c33;
  position: relative;
  border-radius: 0px;
  transition: all 0.3s ease;
}
.faq-title-lft{
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E6ECEE;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 12px;
}
.faq-item:hover .icon-left{
  background: #FFF5E7;
}
.faq-item:hover .icon-left svg path{
  fill: #F08509;
}
.faq-title h4{
  font-family: var(--dm-sans);
  font-weight: 700;
  font-size: 20px;
  color: #1E2721;
  margin-bottom: 0;
}
.icon-right {
  width: 35px;
  min-width: 35px;
  height: 35px;
  background: #014040;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0px 11.14px 9.47px 0px #01404026;
}
.faq-item:hover .icon-right{
  background: #F17405;
  box-shadow: 0px 11.14px 9.47px 0px #F1740547;
}
.arrow-down {
  transition: transform 0.5s ease-in-out;
  transform: rotate(0deg);
}
.faq-item:hover .arrow-down{
  transform: rotate(90deg);
}
.faq-body{
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  margin-top: 0;
  border-top: 1px dashed transparent;
  transition: all 0.9s ease;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;

}
.faq-item:hover .faq-body{
  max-height: 500px; 
  opacity: 1;
  padding-top: 14px;
  margin-top: 14px;
  border-top-color: #CBCBCB; 
  transition: all 1.2s ease;
  cursor: pointer;
}
.faq-item:hover .faq-body {
  transform: scaleY(1);
  opacity: 1;
}
.faq-body.open {
  opacity: 1;
  padding-top: 14px;
  margin-top: 14px;
  border-top-color: #CBCBCB;
}
.faq-body p{
  font-family: var(--open-sans);
  font-weight: 400;
  font-size: 14px;
  color: #030712;
  margin-bottom: 0;
}