
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 10px;
	box-sizing: border-box;
	transition: all 0.3s ease;
}
/* Hide the header by sliding up */
.header.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease;
}

.header-container {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1350px;
	margin: 0 auto;
	padding: 12px 24px;
	border-radius: 12px;
	background-color: transparent;
	backdrop-filter: blur(10px);
	transition: all 0.5s ease;
	overflow: hidden;
}
/* Right-to-left animation overlay */
.header-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	transform: translateX(100%) scale(0.85);
	opacity: 0;
	transition: transform 0.5s ease, opacity 0.5s ease, scale 0.5s ease;
	z-index: -1;
	border-radius: 16px;
}
.header.scrolled .header-container::before {
	transform: translateX(0) scale(1);
	opacity: 1;
}
.logo {
	font-weight: bold;
	font-size: 24px;
	color: #000;
	transition: color 0.3s ease;
	z-index: 1;
}
.desktop-nav {
	display: flex;
	gap: 32px;
}
.desktop-nav a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	font-size: 16px;
	transition: color 0.3s ease;
	z-index: 1;
}
.button-container {
	display: flex;
	align-items: center;
	gap: 15px;
}

.primary-btn {
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    color: white;
    padding: 0 35px;
    line-height: 50px;
    border: 3px solid white;
    box-shadow: 5px 5px 0 white;
    border-radius: 40px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    font-family: "Montserrat", sans-serif;
    background-color: black;
    display: inline-block;
    position: relative;
}

.primary-btn:hover {
    background-color: var(--primary-color);
    border: 3px solid var(--primary-color); /* Keep border same size */
    box-shadow: 2px 2px 0 var(--primary-color);
    transform: translate(2px, 2px);
    color: white;
}

.primary-btn:active {
    box-shadow: none;
    transform: translate(4px, 4px);
    background-color: var(--primary-color);
    color: white;
}


/* Hamburger menu */
.hamburger {
	/*display: ;*/
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 2;
}
.hamburger span {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px 0;
	background-color: white;
	transition: all 0.3s ease;
}
/* Mobile menu - ensure it can hold all items */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(24, 24, 24, 0.9);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	transform: scale(0);
	opacity: 0;
	transition: transform 0.4s ease, opacity 0.4s ease;
	z-index: 999;
	pointer-events: none;
	padding: 0px 100px;
}

.cross{
	position: absolute;
	right: 30px;
	top: 30px;
}
.cross i{
	color: white;
	cursor: pointer;
}

/* When menu is open */
.mobile-menu.open {
	transform: scale(1);
	opacity: 1;
	pointer-events: auto;
}

/* Make sure links are in front */
.mobile-menu a,
.mobile-menu .mobile-cta-button {
	text-decoration: none;
	color: white;
	font-size: 24px;
	font-weight: 500;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	z-index: 1001; /* Ensure links are in front */
}
.mobile-cta-button{
	background-color: black;
	color: white;
	padding: 10px 25px;
	border-radius: 50px;

}
.nav-menu{
	display: flex;
	flex-direction: column;
}
/* Sequential animation when menu opens */
.mobile-menu.open a:nth-child(1) {
	transition-delay: 0.2s;
	opacity: 1;
	transform: translateY(0);
}
.mobile-menu.open a:nth-child(2) {
		transition-delay: 0.4s;
		opacity: 1;
		transform: translateY(0);
	}
	.mobile-menu.open a:nth-child(3) {
		transition-delay: 0.6s;
		opacity: 1;
		transform: translateY(0);
	}
	.mobile-menu.open a:nth-child(4) {
		transition-delay: 0.8s;
		opacity: 1;
		transform: translateY(0);
	}
	.mobile-menu.open .mobile-cta-button {
		transition-delay: 1s;
		opacity: 1;
		transform: translateY(0);
	}

.mobile-menu a{
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	letter-spacing: -1px;
	font-size: 4vw;
	font-weight: 800;
	line-height: 5vw;
   
}

/* Scrolled state styles */
.header.scrolled .logo {
	color: white;
}
.header.scrolled .desktop-nav a {
	color: white;
}
.header.scrolled .cta-button {
	background-color: white;
	color: black;
}
.header.scrolled .hamburger span {
	background-color: white;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
.desktop-nav {
	display: none;
}
.hamburger {
	display: block;
}
.cta-button {
	display: none;
}
.header-container {
	padding: 12px 16px;
}
/* Hamburger animation when open */
.hamburger.open span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
}
.hamburger.open span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -6px);
}
}

.title-three h2{
	font-weight: 900;
	font-family: "Montserrat", sans-serif
}
.block-feature-twenty h2{
	font-weight: 900;
	font-family: "Montserrat", sans-serif
}


.hero-image-03{
	position: absolute;
	top: 30px;
	right: 20px;
	width: 170px !important;
}
.text-left{
	text-align: left;
}
.hero-shape-01{
	width: 170px;
}
.hero-shape-63{
	width: 170px;
}
.hero-req-img img img:hover{
	background-color: var(--primary-color);
    border: 3px solid var(--primary-color); /* Keep border same size */
    box-shadow: 2px 2px 0 var(--primary-color);
    transform: translate(2px, 2px);
    color: white;
}
@media(max-width: 1470px){
	.hero-image-03{
		display:none
	}
	.text-left{
		text-align: center;
	}
}

.card-3d{
	transition: all .3s ease-in-out;
}
.card-3d:hover {
	background-color: #ffe14f; /* yellow on hover like previous button */
	box-shadow: 4px 4px 0 #000;
	transform: translate(4px, 4px);
}

.about-title{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.border{
    height: 1px;
    width: 100%;
    background-color: black;
    z-index: 10;
}
.pricing-box{
	padding-left: 30px;
	padding-top: 20px;
}
.pricing-box h4{
    font-family: "Montserrat", sans-serif;
	font-weight: 500;

}
.pricing-box p{
	 font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 19px;
	line-height: 30px;
	color: #212529;
}

.pricing-section .card{
	background-color: #212529;
	color: white;
 	font-family: "Montserrat", sans-serif;
	border-radius: 10px;
}
.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.pricing-section .input-custom{
	display: flex;
	align-items: center;
	padding-bottom: 10px;
	gap: 10px;
	border-bottom: 1px solid white;
}
.pricing-section .input-custom input{
	background-color: transparent;
	border: none;
	outline: none;
}
.pricing-section .input-custom input::placeholder{
	color: rgb(177, 175, 175);
}

.pricing-section .input-custom input {
    color: white !important; 
}

.pricing-section .input-custom input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}
.payment-option {
  cursor: pointer;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.payment-option.active {
  border-color: #F23535;
  background-color: #F23535;
  color: white;
}
.plan-option {
  cursor: pointer;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
}
.plan-option.active {
  border-color: #F23535;
  background-color: #F23535;
  color: white;
}
.total {
  font-size: 1.5rem;
  font-weight: bold;
}
.btn-subscribe{
	background-color: #F23535;
	color: white;
	border-radius: 15px;
	padding: 10px;
	transition: all 0.3s ease-in-out;
}
.btn-subscribe:hover{
	border: 1px solid #F23535;
	color: #F23535;
	background-color: transparent;
}
.btn-cancel{
	border: 1px solid black;
	color: white;
	border-radius: 15px;
	padding: 10px;
	transition: all 0.3s ease-in-out;
}
.btn-cancel:hover{
	background-color: gray;
	border: none;
	color: white;
}
.pricing-title h3{
	font-size: 34px;
	font-weight: 700;
}
.pricing-title p{
	font-size: 16px;
}

.upload-container {
  width: 100%;
  margin: auto;
  border-top: 1px solid rgb(184, 182, 182);
  padding-top: 10px;
  margin-top: 8px;
}

.file-label {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: block;
  color: #444;
}
.upload-container p{
	color: white
}

.drop-zone {
  border: 2px dashed white;
  padding: 30px 20px;
  text-align: center;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  width: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.drop-zone img{
	width: 100px;
	text-align: center;
}
.drop-zone h4{
	margin-top: -10px;
}
.drop-zone p{
	margin: 0px;
}
.drop-zone.dragover {
  background-color: #eef6ff;
  border-color: #3399ff;
}

.upload-btn {
  margin-top: 10px;
  padding: 10px 15px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
}

.file-list {
  margin-top: 15px;
  background: transparent;
  padding: 10px;
}

.file-item {
  font-size: 0.9em;
  margin-bottom: 5px;
  color: white;
}
.iti__country-list {
    background-color: #f0f0f0;  
    color: #333;                
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.add-box{
	height: 900px;
}
.brand-google{
    width: 230px;
    margin-left: -30px;
}
.brand-github{
	width: 130px;
	margin-top: 20px;
}
.success-message {
    color: green;
    font-size: 18px;
    font-weight: bold;
}
.error-message {
    color: red;
    font-size: 18px;
    font-weight: bold;
}

#services img{
    border-radius: 20px;
}
#services h2{
	font-family: "Montserrat", sans-serif;
	font-size: 55px;
	line-height: 1.2em;
	text-transform: uppercase;
	font-weight: 800;
}
#services h3{
  font-size: 25px;
}
.nav.nav-pills .nav-link.active { 
    background-color:#ff3131!important;
    color: #ffffff;
}
.nav .nav-link,
.navbar-brand,
.navbar-brand:hover{
    color: #fff;
}

.text-colored{
    color: #FF3131;
}

.nav-service-item{
    color: white!important;
}

.text-start.nav-link.text-colored.nav-service-item.active{
    color: #ffffff!important;
    background-color: #FF3131;
}

.benefit .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.benefit .row .service {
  padding: 25px 15px;
  background: transparent;
  font-size: 15px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: 0.5s;
  border-radius: 15px;

}
.benfit .row .icon{
  font-size: 23px;
  margin-bottom: 8px;
}
.benefit .bg{
  background-color: #1e1e1e !important;
}
.benefit .bg:hover{
  background-color: #1e1e1e !important;
}
.benefit .row .service:hover {
  color: #fff;
  background-color: var(--main-color);
  transform: scale(1.05);
}
.benefit .row .service i {
  color: var(--main-color);
  margin-bottom: 20px;
  font-size: 40px;
  transition: 0.5s;
}
.benefit .row .service:hover i {
  color: #fff;
}
.benefit .row .service h2 {
  font-weight: 600;
  margin-bottom: 20px;
}
.benefit h3{
  font-size: 23px;
}
.benefit .row .service p {
  color: rgb(155, 152, 152)
}

.timeline h3{
	color: black;
  font-size: 26px;
  font-weight: 600;

}
.timeline{
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}

  .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding:  64px 0;
  }
  

  .timeline::after {
    content: '';
    position: absolute;
    width: 8px;
background: linear-gradient(190deg, #f23535 0%, #0f4667 100%) !important;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    height: 0;
    transition: height 1.5s ease-out, opacity 1.5s ease-out;
  }

  .timeline-container {
    position: relative;
    width: 50%;
    padding:  32px 48px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .timeline-container.left {
    left: 0;
  }

  .timeline-container.right {
    left: 50%;
  }

  .timeline-container::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);;
    border: 4px solid #f23535;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    z-index: 99999;
  }

  .content {
    padding: 48px;
    background-color: rgba(255, 255, 255, 0.9);;
    position: relative;
    border-radius: 32px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-align: center;
    color:  #2d3548;
    font-weight: bold;
    font-size: 1.25rem;
  }

  .content:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
  }

.icon {
       font-size: 32px;
       margin-right: 16px;
       color: #F67B50; /* Fallback color */
}  
  a.content-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  
.infobox-section {
  text-align: center;
  padding: 40px 20px;


  p {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
}

.infobox-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
  color: black
}

.infobox {
  	border-radius: 10px;
  	padding: 20px;
  	text-align: left;
  	transition: transform 0.3s ease;
 	 border: 2px solid white;
    border-radius: 30px;
    box-shadow: 8px 8px 0 white;
    position: relative;
	transition: all 0.3s ease-in-out;

  &:hover {
    background-color: #ffe14f; /* yellow on hover like previous button */
	box-shadow: 4px 4px 0 #000;
	transform: translate(4px, 4px);
  }

  .icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  p {
    font-size: 1rem;
    margin-bottom: 20px;

  }

}
.infobox i{
	font-size: 40px;
	margin-bottom: 20px;
	color: white;
}
  @media screen and (max-width: 600px) {
    .timeline::after {
      left: 31px;
    }

    .timeline-container {
      width: 100%;
      padding-left: 80px;
      padding-right: 40px;
      margin-bottom:32px;
    }

    .timeline-container.left::before, .timeline-container.right::before {
      left: 31px;
    }

    .timeline-container.right {
      left: 0%;
    }

    .timeline-container.left, .timeline-container.right {
      left: 0;
    }
  }

  .show {
    opacity: 1;
    transform: translateY(0);
  }

  .timeline.show-line::after {
    height: 100%;
    opacity: 1;
  }

  .timeline.hide-line::after {
    height: 0;
    opacity: 0;
  }
.y-us-section {
    padding: 82px 0 82px;
}
.y-us-head {
    text-align: center;
    margin: 0 0 91px;
}

.y-us-title-border {
    background: #ffae11 none repeat scroll 0 0;
    border-radius: 2px;
    display: inline-block;
    height: 3px;
    position: relative;
    width: 50px;
}
.service-3 .service-box {
    margin-bottom: 18px;
}
.service-3 .service-box .iconset {
    float: left;
    text-align: center;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    background-color: #F23535;
    border-radius: 50px;
    font-size: 20px;
    padding-top: 10px;
}
.service-3 .service-box .iconset i {
    color: #000;
}
.service-3 .service-box .y-us-content {
    float: left;
    width: 75%;
}
.service-3 .service-box .y-us-content h3 {
    color: white;
    font-weight: 600;
    font-size: 23px;
    letter-spacing: 0;
    line-height: 22px;
    margin: 14px 0 12px;
    text-transform: uppercase;
}
.service-3 .service-box .y-us-content p {
    color: #b4b3b3;
    font-size: 19px;
    font-weight: 300;
    line-height: 24px;
}

.y-us-section .icon {
    color : #f4b841;
    padding:0px;
    font-size:40px;
    border: 1px solid #fdb801;
    border-radius: 100px;
    color: #fdb801;
    font-size: 28px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    width: 70px;
}

.technology svg{
    color: white;
    height: 70px;
    width: 70px;
}
.technology-box{
    background: #1e1e1e;
    border-radius: 25px;
    padding: 20px;
}

@media (max-width: 600px) {
  .drop-zone {
    padding: 20px;
  }

  .upload-btn {
    width: 100%;
  }
}

@media (max-width: 786px) {
	.footer-two .bg-wrapper{
		padding: 40px 20px;
	}
}
@media (max-width: 768px) {
	.mobile-menu{
		padding: 0px 30px;
	}
  .mobile-menu a{
	font-size: 50px;
	line-height: 60px
  }
  .scroll-top{
	height: 50px;
	width: 50px;
  }
  .ctn-preloader .txt-loading .letters-loading{
	padding-left: 10px;
	font-size: 40px;
	letter-spacing: 10px;
  }
   .row > div {
        margin-bottom: 20px;
    }
	.add-box{
		height: 500px;
	}
	.header-btn{
		display: none;
	}
	.brand-google{
		margin-left: 0px;
	}
	.project-img{
		margin-bottom: -20px
	}
}

@media (max-width: 420px) {
	.ctn-preloader .txt-loading .letters-loading{
		font-size: 18px;
		letter-spacing: 5px;
	}
}


/* what we do section desing  */
.whatwedo-container {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    height: 150vh;
}
@media only screen and (min-width: 576px) {
    .whatwedo-container {
        width: 560px;
        max-width: 100%;
    }
}
@media only screen and (min-width: 768px) {
    .whatwedo-container {
        width: 752px;
        max-width: 100%;
    }
}
@media only screen and (min-width: 992px) {
    .whatwedo-container {
        width: 976px;
        max-width: 100%;
    }
}
@media only screen and (min-width: 1392px) {
    .whatwedo-container {
        width: 1300px;
        max-width: 100%;
    }
}
.OurFormula_sectionHeading {
    color: #6d6d6d;
    text-transform: uppercase;
    position: relative;
    font-size: 14px;
    line-height: 18px;
    padding-left: 90px;
}

.OurFormula_sectionHeading:before {
    content: "";
    position: absolute;
    height: 1px;
    width: 65px;
    background: #6d6d6d;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width: 992px) {
   .OurFormula_sectionHeading {
        font-size: 14px;
        line-height: 18px;
    }
}
.OurFormula_formulaSubHeading {
    font-size: 24px;
    line-height: 120%;
    color: #ffffffb3;
    padding-right: 0;
    padding-bottom: 3rem;
    padding-top: 2rem;
}

@media only screen and (min-width: 768px) {
    .OurFormula_formulaSubHeading {
        font-size: 30px;
        line-height: 110%;
    }
}

@media only screen and (min-width: 992px) {
  .OurFormula_formulaSubHeading {
        font-size: 38px;
        line-height: 110%;
        padding-left: 90px;
    }
}

.page-container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.WhatWeDo_whatWeDoContainer {
    padding: 0;
    position: relative;
}

@media only screen and (min-width: 992px) {
.WhatWeDo_whatWeDoContainer {
        padding: 100px 0;
        padding-bottom: 0;
    }
}

.WhatWeDo_sectionHeading{
    color: #6d6d6d;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    font-size: 30px;
    padding-left: 90px;
}

.WhatWeDo_sectionHeading:before {
    content: "";
    position: absolute;
    height: 1px;
    width: 65px;
    background: #6d6d6d;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}


 
.WhatWeDo_whatWeDoWrapContainer {
    position: relative;
    padding-left: 30px;
}

 .WhatWeDo_whatWeDoWrapContainer:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 103%;
    left: 0;
    top: 0px;
    background: #ffffff3e;
    opacity: 0;
}
@media only screen and (min-width: 992px) {
     .WhatWeDo_whatWeDoWrapContainer:before {
        height: 100%;
        opacity: 1;
    }
}



@media only screen and (min-width: 768px) {
.WhatWeDo_whatWeDoWrap {
        padding: 90px 0;
    }
}
 
.WhatWeDo_whatWeDoWrap h5 {
    color: #6d6d6d;
    font-size: 15px;
    font-family: apercu;
    position: absolute;
    left: -30px;
    top: 30px;
    font-weight: 400;
    margin: 0;
}

@media only screen and (min-width: 768px) {
 .WhatWeDo_whatWeDoWrap h5 {
        top: 55px;
    }
}

@media only screen and (min-width: 992px) {
.WhatWeDo_whatWeDoWrap h5 {
        left: -60px;
        top: 60px;
    }
}
.WhatWeDo_whatWeDoWrap h3 {
    font-size: 43px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    margin-top: 0;
    margin-bottom: 15px;
    color: #6d6d6d;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.WhatWeDo_whatWeDoWrap h3:before {
    content: attr(data-count);
    font-size: 12px;
    line-height: 18px;
    color: #e4e3e4;
    text-transform: uppercase;
    position: absolute;
    left: -40px;
    top: 0;
}

.WhatWeDo_whatWeDoWrap p {
    font-size: 20px;
    line-height: 150%;
    max-width: 100%;
    color: #6d6d6d;
    opacity: 1;
    margin: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) {
.WhatWeDo_whatWeDoWrap p {
        max-width: 244px;
    }
   
}
@media (max-width: 1000px) {
   .whatwedo-container{
      display: none;
    }
}
.WhatWeDo_whatWeDoWrap {
    padding: 0;
    position: relative;
    padding-bottom: 100px;
}

.WhatWeDo_whatWeDoCotentList {
    position: absolute;
    top: 0;
    right: -170px;
    height: 250px;
    max-width: 850px;
    width: 100%;
    margin: 0px 0;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.WhatWeDo_contentImage {
    display: block;
    position: absolute;
    left: -100px;
    top: -60px;
    overflow: hidden;
    width: 100%;
    height: 450px;
}

.WhatWeDo_bgContentImg {
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100%;
    -webkit-transition: background-image .35s;
    -moz-transition: background-image .35s;
    transition: background-image .35s;
    opacity: .5;
}

.WhatWeDo_boxContent ul {
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    transition: all .35s ease;
    -webkit-animation: WhatWeDo_fadeIn__lTmCX 1s linear;
    -moz-animation: WhatWeDo_fadeIn__lTmCX 1s linear;
    animation: WhatWeDo_fadeIn__lTmCX 1s linear;
    margin-top: 75px;
}

.WhatWeDo_boxContent ul:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 45px;
    bottom: -75px;
    background: transparent -moz-linear-gradient(285deg, #fff 0, #ffffff00 50%) 0 0 no-repeat padding-box;
    background: transparent linear-gradient(165deg, #fff, #ffffff00 50%) 0 0 no-repeat padding-box;
    opacity: .05;
}

.WhatWeDo_boxContent ul li {
    display: inline-block;
    width: 100%;
    text-align: left;
    opacity: .57;
    font-size: 18px;
    line-height: 10px;
    color: #fff;
    position: relative;
    padding-left: 20px;
}

.WhatWeDo_boxContent ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(https://face44.com/_next/static/media/list-arrow.359afb25849e8380e017ba3a4458c359.png);
    width: 10px;
    height: 10px;
    display: block;
}

@media only screen and (min-width: 768px) {
.WhatWeDo_boxContent ul li {
        width: 48%;
    }
}

.WhatWeDo_scrollElement {
    position: absolute;
    content: "";
    width: 3px;
    left: 0;
    top: 0px; /* Adjust as needed */
    bottom: 0; /* Change this to bottom: 0; */
    background: #fff;
    z-index: 999;
    opacity: 1;
}

.pin-spacer {
    position: sticky;
    top: 0;
}

.WhatWeDo_whatWeDoWrap.isScrollView.is-inview h3,
.WhatWeDo_whatWeDoWrap.isScrollView.is-inview h5,
.WhatWeDo_whatWeDoWrap.isScrollView.is-inview p {
    color: #fff !important;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}
.pricing-btn{
  position: absolute;
  top: 250px;
  right: 90px;
}
.pricing-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative; /* important for button positioning */
}

.pricing-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.pricing-slider-container .pr-column {
  flex-shrink: 0;
  width: 32%; /* 3 per row on desktop */
}

/* Tablet view (2 items) */
@media (max-width: 1200px) {
  .pricing-slider-container .pr-column {
    width: 48%;
  }
  .pricing-btn{
    top: 150px;
  }
}

/* Mobile view (1 item) */
@media (max-width: 768px) {
  .pricing-slider-container .pr-column {
    width: 100%;
  }
}
