/*
Theme Name: BitBuild Technology
Theme URI: https://bitbuildtechnology.com/
Author: Team BitBuildTechnology
Author URI: https://bitbuildtechnology.com/
Description: At BitBuild Technology, we’re more than just a service provider — we’re your technology partner for innovation, growth, and long-term success. With a strong foundation in web development, digital marketing, UI/UX design, content strategy, e-commerce solutions, and IT consulting, we help businesses build, scale, and thrive in today’s competitive digital landscape.
Version: 1.0
*/

:root {
  --primary: #5545a1;
  --secondary: #a34d93;
  --yellow:#ff9c4d;
  --dark:#101829;

  --font-primary: "Raleway", sans-serif;
  --font-secondary: "Open Sans", sans-serif;
}

/*** --------------------
Global Styles Start
-------------------- ***/
body{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family:var(--font-secondary);
}
h1, h2, h3, h4, h5, h6 {
  font-family:var(--font-primary);
}
body, p, span, li, {
  font-family:var(--font-secondary);
}

.text-primary{
	color:var(--primary) !important;
}
.text-secondary{
	color:var(--secondary) !important;
}
.text-yellow{
	color:var(--yellow);
}
.text-dark{
	color:var(--dark);
}
.text-primary-gredient{
	background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-secondary-gredient{
	background: linear-gradient(45deg, var(--secondary), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-line-2{
	text-overflow:ellipsis;
	overflow:hidden;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
}
.text-line-3{
	text-overflow:ellipsis;
	overflow:hidden;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
}
.bg-primary{
	background-color:var(--primary) !important;
}
.bg-secondary{
	background-color:var(--secondary) !important;
}
.bg-dark{
	background-color:var(--dark);
}
.bg-primary-gredient{
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.btn{
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
    transition: color .5s ease-in-out, background-color .5s ease-in-out, border-color .5s ease-in-out, box-shadow .5s ease-in-out;
}

.btn-primary{
    color: #fff;
    background-color: var(--primary);
    box-shadow: 0px 0px 22px 2px rgba(0, 0, 0, 0.1);
    border: 2px solid;
    border-color: var(--primary);
}
.btn-primary:hover{
    color: #fff;
    background-color: var(--secondary);
    border: 2px solid;
    border-color: var(--secondary);
}

.btn-secondary{
    color: #fff;
    background-color: var(--secondary);
    box-shadow: 0px 0px 22px 2px rgba(0, 0, 0, 0.1);
    border: 2px solid;
    border-color: var(--secondary);
}
.btn-secondary:hover{
    color: #fff;
    background-color: var(--primary);
    border: 2px solid;
    border-color: var(--primary);
}

.btn-primary-gredient{
    color: #fff;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0px 0px 22px 2px rgba(0, 0, 0, 0.1);
    border: none;
}
.btn-primary-gredient:hover{
	color: #fff;
	border: none;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}
.btn-primary-outline{
	color: var(--primary);
    background-color: #fff;
    box-shadow: 0px 0px 22px 2px rgba(0, 0, 0, 0.1);
    border: 2px solid;
    border-color: var(--primary);
}
.btn-primary-outline:hover{
    color: var(--primary);
    background-color: rgb(85 69 161 / 5%);
    border: 2px solid;
    border-color: var(--primary);
}

.btn-light{
    color: var(--primary);
    background-color:#fff;
    border: 2px solid;
    border-color: #fff;
}
.btn-light:hover{
    color: #fff;
    background-color: transparent;
    border: 2px solid;
    border-color: #fff;
}
/*** --------------------
Global Styles End
-------------------- ***/


/*** -------------------
Footer CSS Start
-------------------- ***/
.footer .footer-item a{
    line-height: 35px;
    color: #fff;
    transition: 0.5s;
    text-decoration: none;
    white-space: nowrap;
	opacity: 0.6;
}
.footer .footer-item a:hover{
	opacity: 1;
}
.footer .footer-item a i{
    text-align:start;
	display: inline;
}

.footer .social-links a{
	color:#fff;
/*     width: 40px;
    height: 40px; */
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
	opacity: 0.6;
	text-decoration:none;
}
.footer .social-links a:hover{
    opacity: 1;
}
.footer .partner-logo-box{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer .partner-logo-box img{
	max-width: 100%;
    max-height: 60px;
}
/*** -------------------
Footer CSS End
-------------------- ***/

/*** -------------------
Home Page CSS Start
-------------------- ***/

/*** Banner Section Start ***/
.home-banner-section{
	background: linear-gradient(45deg, rgb(85 69 161 / 5%), rgb(163 77 147 / 5%), rgb(255 156 77 / 5%));
}
/*** Banner Section End ***/

/*** Industry Leaders Section Start ***/
.home-industry-leader-section .industry-card{
	background-color: #fff;
	border-radius:8px;
	display:flex;
	align-items:center;
	justify-content:center;
	padding: 15px 15px;
	height:100%;
	border: 2px solid;
    border-color: #0000001a;
	transition: background-color .5s ease-in-out, border-color .5s ease-in-out, box-shadow .5s ease-in-out, transform .5s ease-in-out;
}
.home-industry-leader-section .industry-card:hover{
	border-color: rgb(85 69 161 / 50%);
    box-shadow: 0px 25px 50px -12px #00000040;
    transform: translateY(-0.25rem);
    background: linear-gradient(90deg, rgb(85 69 161 / 5%), rgb(163 77 147 / 5%));
}
.home-industry-leader-section .industry-card img{
	width:100%;
}
/*** Industry Leaders Section End ***/


/*** Why BitBuild Section Start ***/
.why-bitbuild-section{
	background-color:#fbf9fa;
}
.why-bitbuild-section .items{
	height:100%;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:15px;
	transition: background-color .5s ease-in-out, border-color .5s ease-in-out, box-shadow .5s ease-in-out, transform .5s ease-in-out;
}
.why-bitbuild-section .items:hover{
	border-color:rgb(85 69 161 / 50%);
	box-shadow: 0px 25px 50px -12px #00000040;
	transform: translateY(-0.25rem);
    background: linear-gradient(90deg, rgb(85 69 161 / 5%), rgb(163 77 147 / 5%));
}
.why-bitbuild-section .items:hover h4{
	color:var(--primary);
}
.why-bitbuild-section .items .icon{
	font-size: 30px;
    padding: 10px;
    border-radius: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	transition: transform .5s ease-in-out;
}
/* .why-bitbuild-section .items:hover .icon{
	transform: rotate(15deg);
} */

.why-bitbuild-section .items2{
	height:100%;
	display: flex;
    align-items: center;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:15px;
	transition: box-shadow .5s ease-in-out;
}
.why-bitbuild-section .items2:hover{
	border-color:rgb(85 69 161 / 50%);
	box-shadow: 0px 25px 50px -12px #00000040;
}
.why-bitbuild-section .items2 .icon{
	margin-right:10px;
	font-size: 22px;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
/*** Why BitBuild Section End ***/

/*** Home Services Section Start ***/
.home-services-section .items{
	height:100%;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:20px;
	transition: background-color .5s ease-in-out, border-color .5s ease-in-out, box-shadow .5s ease-in-out, transform .5s ease-in-out;
}
.home-services-section .items:hover{
	border-color:rgb(85 69 161 / 50%);
	box-shadow: 0px 25px 50px -12px #00000040;
	transform: translateY(-0.25rem);
    background: linear-gradient(90deg, rgb(85 69 161 / 10%), rgb(163 77 147 / 10%));
}
.home-services-section .items:hover h4{
	color:var(--primary);
}
.home-services-section .items .icon{
	font-size: 30px;
    padding: 10px;
    border-radius: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	transition: transform .5s ease-in-out;
}
/* .home-services-section .items:hover .icon{
	transform: rotate(15deg);
} */
.home-services-section .point-list-box{
	list-style: none;
	padding:0px;
}
.home-services-section .items .btn{
	font-size: 1rem;
    font-weight: 400;
}
.home-services-section .items:hover .btn{
	color:var(--primary);
	background-color:rgb(85 69 161 / 10%);
}
/*** Home Services Section End ***/

/*** Home Case Studies Section Start ***/
.home-case-studies-section{
	background-color:#fbf9fa;
}
.home-case-studies-section .items{
	overflow:hidden;
	height:100%;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:0px;
	transition: box-shadow .5s ease-in-out;
}
.home-case-studies-section .items .card-header img{
	object-fit: cover;
	min-height: 281px;
	max-height:281px;
	width:100%;
	border-top-left-radius:14px;
	border-top-right-radius:14px;
	transition: transform .5s ease-in-out;
}
.home-case-studies-section .items:hover .card-header img{
	transform: scale(1.1);
}

.home-case-studies-section .items .card-header p{
	z-index:1;
	font-size: 16px;
    font-weight: 500;
	display:none;
	color:#fff;
	width:100%;
	border-top-left-radius:14px;
	border-top-right-radius:14px;
	align-items: end;
/*     display: flex; */
    height: 100%;
    margin: 0px;
    position: absolute;
    bottom: 0px;
    padding: 20px;
    background-color: rgb(0 0 0 / 40%);
	transition: 0.5s ease-in-out;
}
.home-case-studies-section .items:hover .card-header p{
	display:flex;
}
.home-case-studies-section .items .card-body{
	padding:20px;
}
.home-case-studies-section .point-list-box{
	list-style: none;
	padding:0px;
}
.home-case-studies-section .point-list-box li{
	display: flex;
    align-items: center;
}
.home-case-studies-section .point-list-box li i{
	font-size:8px;
	color:var(--primary);
	margin-right:5px;
}
.home-case-studies-section .items .card-body .stats{
	height:100%;
	padding:15px;
	background-color:rgb(233 235 239 / 10%);
	border:2px solid;
	border-color:#0000001a;
	border-radius: 15px;
	text-align:center;
}
.home-case-studies-section .items:hover .stats{
	border-color:rgb(85 69 161 / 50%);
}
.home-case-studies-section .items:hover{
	box-shadow: 0px 25px 50px -12px #00000040;
}
.home-case-studies-section .items:hover h4{
	color:var(--primary);
}
.home-case-studies-section .items .btn{
	font-size: 1rem;
    font-weight: 400;
}
.home-case-studies-section .items:hover .btn{
	color:#fff;
	background-color:var(--primary);
}
.home-case-studies-section .items .btn:hover{
	color:#030213;
	background-color:#e9ebef;
}
/*** Home Case Studies Section End ***/

/*** Home Client Testimonials Section Start ***/
.home-client-testimonials-section .items{
	height:100%;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:20px;
	transition: background-color .5s ease-in-out, border-color .5s ease-in-out, box-shadow .5s ease-in-out, transform .5s ease-in-out;
}
.home-client-testimonials-section .items:hover{
	border-color:rgb(85 69 161 / 50%);
	box-shadow: 0px 25px 50px -12px #00000040;
	transform: translateY(-0.25rem);
    background: linear-gradient(90deg, rgb(85 69 161 / 10%), rgb(163 77 147 / 10%));
}
.home-client-testimonials-section .items h4{
	color:rgb(85 69 161 / 20%);
}
.home-client-testimonials-section .items:hover h4{
	color:var(--primary);
}
.home-client-testimonials-section .items .review-start i {
    color: #ff9c4d;
}
.home-client-testimonials-section .items .client-profile img{
	width:60px;
	height:60px;
	min-width: 60px;
	border-radius:50%;
	object-fit: cover;
}
/*** Home Client Testimonials Section End ***/

/*** Home Our Process Section Start ***/
.our-process-section{
	background: linear-gradient(145deg, var(--primary), var(--secondary), var(--primary));
}
.our-process-section .items{
	position:relative;
	color:#fff;
	text-align:center;
	height:100%;
	background-color:rgb(255 255 255 / 10%);
	border-radius:14px;
	border:1px solid;
	border-color:rgb(255 255 255 / 20%);
	padding:25px 15px;
	transition: background-color .5s ease-in-out, border-color .5s ease-in-out, box-shadow .5s ease-in-out, transform .5s ease-in-out;
}
.our-process-section .items:hover{
	transform: scale(1.1);
}
.our-process-section .items .icon{
	background-color:rgb(255 255 255 / 20%);
	font-size: 30px;
    padding: 10px;
    border-radius: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	transition: transform .5s ease-in-out;
}
.our-process-section .items h5{
	color:rgb(255 255 255 / 50%);
}
.our-process-section .items p{
	color:rgb(255 255 255 / 80%);
}
.our-process-section .items .arrow-icon{
	color:rgb(255 255 255 / 50%);
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -16px;
    font-size: 24px;
}
@media(max-width:575.92px){
  .our-process-section .items .arrow-icon{
      top: unset;
	  left:50%;
      transform: translateX(-50%);
      bottom: -18px;
  }
  .our-process-section .items .arrow-icon i{
      transform: rotate(90deg);
  }
}
/*** Home Our Process Section End ***/

/*** Home Footer CTA Section Start ***/
.home-footer-cta-section{
	background: linear-gradient(145deg, var(--primary), var(--secondary), var(--yellow));
}
/*** Home Footer CTA Section End ***/

/*** -------------------
Home Page CSS End
-------------------- ***/


/*** -------------------
Contact Us Page CSS Start
-------------------- ***/

/*** Contact Us Banner Section Start ***/
.contact-banner-section{
	background: linear-gradient(45deg, rgb(85 69 161 / 5%), rgb(163 77 147 / 5%), rgb(255 156 77 / 5%));
}
/*** Contact Us Banner Section End ***/

/*** Contact Form Section Start ***/
.contact-form-section .items{
/* 	height:100%; */
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:20px;
	box-shadow: 0px 0px 0px 0px #00000040;
}
.contact-form-section .items .icon{
	font-size: 30px;
    padding: 10px;
    border-radius: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	transition: transform .5s ease-in-out;
}
.contact-form-section .btn-primary{
	width: 100%;
	padding: 0.5rem 1.5rem;
	border-radius:0.375rem;
    color: #fff;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0px 0px 22px 2px rgba(0, 0, 0, 0.1);
    border: none;
	text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
    transition: color .5s ease-in-out, background-color .5s ease-in-out, border-color .5s ease-in-out, box-shadow .5s ease-in-out;
}
.contact-form-section .btn-primary:hover{
	color: #fff;
	border: none;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}
.contact-form-section input, .contact-form-section textarea{
	background-color:#f3f3f5 !important;
}
.contact-form-section .items-dark{
	background: linear-gradient(145deg, var(--primary), var(--secondary), var(--primary)) !important;
}
.contact-form-section .point-list-box{
	list-style: none;
	padding:0px;
}
/*** Contact Form Section End ***/

/*** Trusted Brands Section Start ***/
.trusted-brands-section .items{
	height:100%;
	display: flex;
    align-items: center;
	justify-content:center;
	flex-direction:column;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:15px;
	transition: box-shadow .5s ease-in-out;
}
.trusted-brands-section .items:hover{
	border-color:rgb(85 69 161 / 50%);
	box-shadow: 0px 25px 50px -12px #00000040;
}
.trusted-brands-section .items .icon{
	font-size: 22px;
    padding: 10px;
    border-radius: 12px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
/*** Trusted Brands Section End ***/

/*** Trusted Brands Section Start ***/
.contact-faqs-section{
	background-color:rgb(251 249 250 / 100%);
}
.contact-faqs-section .items{
	height:100%;
	display: flex;
    align-items: start;
	justify-content:center;
	flex-direction:column;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:15px;
	transition: box-shadow .5s ease-in-out;
}
.contact-faqs-section .items:hover{
	border-color:rgb(85 69 161 / 50%);
	box-shadow: 0px 25px 50px -12px #00000040;
}
.contact-faqs-section .items h4{
	color:var(--primary);
}
/*** Trusted Brands Section End ***/

/*** -------------------
Contact Us Page CSS End
-------------------- ***/

/*** --------------
Blog Page CSS Start
------------------- ***/

/*** Blog Banner Section Start ***/
.blog-banner-section{
	background-color:#fbf9fa;
}
.blog-banner-section .search-form .search-field{
	background-color:#f3f3f5;
	width: 100%;
    max-width: 650px;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
}
/*** Blog Banner Section End ***/

/*** Blog Categories Section Start ***/
.blog-categories-section ul{
	list-style: none;
    padding: 0px;
    margin: 0px;
	display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.blog-categories-section ul li{
	padding:5px;
}
.blog-categories-section ul li a{
	color:#0a0a0a;
	background-color:#fff;
	border:1px solid;
	border-color:#0000001a;
	border-radius:8px;
	padding:5px 10px;
	text-decoration:none;
	transition: color .5s ease-in-out, background-color .5s ease-in-out, border-color .5s ease-in-out;
}
.blog-categories-section ul li a:hover, .blog-categories-section ul li a.active{
	color:#fff;
	background-color:var(--primary);
	border:1px solid;
	border-color:var(--primary);
}
/*** Blog Categories Section End ***/

/*** Feature Blog Section Start ***/
.feature-blog-section .feature-blog-card{
	display: flex;
    align-items: center;
	height:100%;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:0px;
	transition: box-shadow .5s ease-in-out;
}

.feature-blog-section .feature-blog-card .card-header img{
	object-fit: cover;
	width:100%;
	border-top-left-radius:14px;
	border-bottom-left-radius:14px;
	transition: transform .5s ease-in-out;
}
.feature-blog-section .feature-blog-card .card-body{
	padding:30px;
}
.feature-blog-section .feature-blog-card .card-body .blog-category, .blog-posts-section .items .card-body .blog-category{
	border-radius:8px;
	padding:5px 10px;
	text-decoration:none;
	color:#fff;
	background-color:var(--primary);
	border:1px solid;
	border-color:var(--primary);
}
.feature-blog-section .feature-blog-card .items{
	width:50%;
}
/*** Feature Blog Section End ***/

/*** Blog Posts Section Start ***/
.blog-posts-section{
	background-color:#fbf9fa;
}
.blog-posts-section .items{
	height:100%;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:0px;
	transition: box-shadow .5s ease-in-out;
}
.blog-posts-section .items .card-header img{
	object-fit: cover;
	min-height: 281px;
	max-height:281px;
	width:100%;
	border-top-left-radius:14px;
	border-top-right-radius:14px;
	transition: transform .5s ease-in-out;
}
.blog-posts-section .items:hover .card-header img{
	transform: scale(1.1);
}
.blog-posts-section .items .card-body{
	padding:20px;
}
.blog-posts-section .items:hover{
	box-shadow: 0px 25px 50px -12px #00000040;
}
.blog-posts-sectionblog-posts-section .items:hover h4{
	color:var(--primary);
}
.blog-posts-section .items .btn{
	font-size: 1rem;
    font-weight: 400;
}
.blog-posts-section .items:hover .btn{
	color:#fff;
	background-color:var(--primary);
}
.blog-posts-section .items .btn:hover{
	color:#030213;
	background-color:#e9ebef;
}
.blog-footer-cta-section{
	background: linear-gradient(145deg, var(--primary), var(--secondary), var(--primary));
}
/*** Blog Posts Section End ***/

/*** Reading Blog Banner Section Start ***/
.reading-blog-page{
	background-color:#fbf9fa;
}
.reading-blog-banner-section .items .blog-category, .reading-blog-banner-section .items .blog-category{
	border-radius:8px;
	padding:5px 10px;
	text-decoration:none;
	color:#fff;
	background-color:var(--primary);
	border:1px solid;
	border-color:var(--primary);
}
.reading-blog-banner-section .items .profile-img{
	width:60px;
	height:60px;
	border-radius:50%;
	object-fit:cover;
}
.reading-blog-banner-section .blog-social-share .blog-social-icons{
	background-color:#fff;
	text-decoration: none;
	display: inline-flex;
	align-items:center;
	justify-content:center;
	width:40px;
	height:35px;
	border-radius:8px;
	color:#090909;
	border:1px solid;
	border-color:#0000001a;
	transition: background-color .5s ease-in-out, border-color .5s ease-in-out, box-shadow .5s ease-in-out, transform .5s ease-in-out;
}
.reading-blog-banner-section .blog-social-share .blog-social-icons:hover{
	border-color:rgb(85 69 161 / 50%);
	background: linear-gradient(90deg, rgb(85 69 161 / 10%), rgb(163 77 147 / 10%));
}
/*** Reading Blog Banner Section End ***/
/*** ------------
Blog Page CSS End
----------------- ***/

/*** ----------------------
Case Studies Page CSS Start
--------------------------- ***/

/*** Case Studies Banner Section Start ***/
.case-studies-banner-section{
	background:linear-gradient(180deg, rgb(85 69 161 / 5%), rgb(163 77 147 / 5%), rgb(255 156 77 / 5%));
}
.case-studies-banner-section .stats{
	text-align:center;
	height:100%;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:20px;
	transition: background-color .5s ease-in-out, border-color .5s ease-in-out, box-shadow .5s ease-in-out, transform .5s ease-in-out;
}
.case-studies-banner-section .stats:hover{
	border-color:rgb(85 69 161 / 50%);
	box-shadow: 0px 25px 50px -12px #00000040;
	transform: translateY(-0.25rem);
    background: linear-gradient(90deg, rgb(85 69 161 / 5%), rgb(163 77 147 / 5%));
}
.case-studies-banner-section .stats .icon{
	font-size: 22px;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	transition: transform .5s ease-in-out;
}
/*** Case Studies Banner Section End ***/

/*** Case Studies Posts Section Start ***/
.case-studies-posts-section .items{
	overflow: hidden;
	height:100%;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:0px;
	transition: box-shadow .5s ease-in-out;
}
.case-studies-posts-section .items .card-header img{
	object-fit: cover;
	min-height: 230px;
	max-height:230px;
	width:100%;
	border-top-left-radius:14px;
	border-top-right-radius:14px;
	transition: transform .5s ease-in-out;
}
.case-studies-posts-section .items:hover .card-header img{
	transform: scale(1.1);
}

.case-studies-posts-section .items .card-body{
	padding:20px;
}
.case-studies-posts-section .items .card-body .stats{
	height:100%;
	padding:15px;
	background-color:rgb(233 235 239 / 10%);
	border:2px solid;
	border-color:#0000001a;
	border-radius: 15px;
	text-align:center;
}
.case-studies-posts-section .point-list-box{
	list-style: none;
	padding:0px;
}
.case-studies-posts-section .point-list-box li{
	display: flex;
    align-items: center;
}
.case-studies-posts-section .point-list-box li i{
	font-size:8px;
	color:var(--primary);
	margin-right:5px;
}
.case-studies-posts-section .items:hover .stats{
	border-color:rgb(85 69 161 / 50%);
}
.case-studies-posts-section .items:hover{
	box-shadow: 0px 25px 50px -12px #00000040;
}
.case-studies-posts-section .items:hover h4{
	color:var(--primary);
}
.case-studies-posts-section .items .btn{
	font-size: 1rem;
    font-weight: 400;
}
.case-studies-posts-section .items:hover .btn{
	color:#fff;
	background-color:var(--primary);
}
.case-studies-posts-section .items .btn:hover{
	color:#030213;
	background-color:#e9ebef;
}
.case-studies-footer-cta-section{
	background: linear-gradient(145deg, var(--primary), var(--secondary), var(--primary));
}
/*** Case Studies Posts Section End ***/

/*** Case Studies Trusted Brands Section Start ***/
.case-study-trusted-brands-section{
	background-color:#fbf9fa;
}
.case-study-trusted-brands-section .items{
	height:100%;
	display: flex;
    align-items: center;
	justify-content:space-between;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:15px;
	transition: box-shadow .5s ease-in-out;
}
.case-study-trusted-brands-section .items:hover{
	border-color:rgb(85 69 161 / 50%);
	box-shadow: 0px 25px 50px -12px #00000040;
}
/*** Case Studies Trusted Brands Section End ***/

/*** Reading Case Study Banner Section Start ***/
.reading-case-study-banner-section .case-study-category{
	border-radius:8px;
	padding:5px 10px;
	text-decoration:none;
	color:#fff;
	background-color:var(--primary);
	border:1px solid;
	border-color:var(--primary);
}
.case-study-stats-section{
	background-color:#fbf9fa;
}
.case-study-stats-section .stats{
	text-align:center;
	height:100%;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:20px;
	transition: background-color .5s ease-in-out, border-color .5s ease-in-out, box-shadow .5s ease-in-out, transform .5s ease-in-out;
}
.case-study-stats-section .stats:hover{
	border-color:rgb(85 69 161 / 50%);
	box-shadow: 0px 25px 50px -12px #00000040;
	transform: translateY(-0.25rem);
    background: linear-gradient(90deg, rgb(85 69 161 / 5%), rgb(163 77 147 / 5%));
}
.case-study-stats-section .stats .icon{
	font-size: 22px;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	transition: transform .5s ease-in-out;
}
/*** Reading Case Study Banner Section End ***/

/*** --------------------
Case Studies Page CSS End
------------------------- ***/

/*** ------------------
Services Page CSS Start
----------------------- ***/

/*** Services Banner Section Start ***/
.services-banner-section{
	background:linear-gradient(180deg, rgb(85 69 161 / 5%), rgb(163 77 147 / 5%), rgb(255 156 77 / 5%));
}
.services-banner-section .stats{
	text-align:center;
	height:100%;
	padding:20px;
}

.services-banner-section .stats .icon{
	font-size: 22px;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	transition: transform .5s ease-in-out;
}
/*** Services Banner Section End ***/

/*** Services Section Start ***/
/* .services-section .service-img{
	border: 4px solid #fff;
	box-shadow: 0px 0px 35px 0px rgb(0 0 0 / 40%);
} */

.services-section .service-img-box{
	position:sticky;
	top:100px;
/* 	position:relative; */
	width:100%;
/* 	height:100%; */
	overflow:hidden;
	border-radius:19px;
	box-shadow: 0px 0px 22px 4px rgb(0 0 0 / 10%);
}
.services-section .service-img-box .service-img{
	width:100%;
	height:100%;
	object-fit: cover;
	transition: transform .5s ease-in-out;
}
.services-section .service-img-box:hover .service-img{
	transform: scale(1.1);
}
.services-section .service-img-box .items{
	position: absolute;
    bottom: 0px;
    width: 100%;
}
.services-section .content{
    width: 100%;
	background-color:#fff;
	border-radius:19px;
}
.services-section .items .title-icons{
	font-size: 30px;
    padding: 10px;
    border-radius: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	transition: transform .5s ease-in-out;
}
.services-section .items .stats{
	height:100%;
	padding:15px;
	background-color:#fff;
	border:2px solid;
	border-color:#0000001a;
	border-radius: 15px;
	text-align:center;
	box-shadow: 0px 0px 22px 4px rgb(0 0 0 / 10%);
}
.services-section .items .stats:hover{
	border-color:rgb(85 69 161 / 50%);
}
@media (max-width:991.92px){
	.services-section .service-img-box{
	position:relative;
	top:unset;
}
}
/*** Services Section End ***/

/*** Services Technology Stack Section Start ***/
.technology-stack-section .items{
	height:100%;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:20px;
	transition: background-color .5s ease-in-out, border-color .5s ease-in-out, box-shadow .5s ease-in-out, transform .5s ease-in-out;
}
.technology-stack-section .items:hover{
	border-color:rgb(85 69 161 / 50%);
	box-shadow: 0px 25px 50px -12px #00000040;
	transform: translateY(-0.25rem);
    background: linear-gradient(90deg, rgb(85 69 161 / 10%), rgb(163 77 147 / 10%));
}
.technology-stack-section .items:hover h4{
	color:var(--primary);
}
.technology-stack-section .items .icon{
	font-size: 25px;
    padding: 10px;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	transition: transform .5s ease-in-out;
}
.technology-stack-section .items .point-list-box{
	padding:0px;
	list-style:none;
}
.technology-stack-section .items .point-list-box li{
	font-weight: 600;
	background-color: rgb(85 69 161 / 10%);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    height: 100%;
	margin-right: 10px;
}
.technology-stack-section .items .point-list-box li:last-child{
	margin-right: 0px;
}
/*** Services Technology Stack Section End ***/

/*** Industries Section Start ***/
.Industries-section{
	background-color:#fbf9fa;
}
.Industries-section .items{
	text-align:center;
	height:100%;
	background-color:#fff;
	border-radius:14px;
	border:2px solid;
	border-color:#0000001a;
	padding:25px 20px;
	transition: background-color .5s ease-in-out, border-color .5s ease-in-out, box-shadow .5s ease-in-out, transform .5s ease-in-out;
}
.Industries-section .items:hover{
	border-color:rgb(85 69 161 / 50%);
	box-shadow: 0px 25px 50px -12px #00000040;
	transform: translateY(-0.25rem);
    background: linear-gradient(90deg, rgb(85 69 161 / 5%), rgb(163 77 147 / 5%));
}
.Industries-section .items:hover h4{
	color:var(--primary);
}
.Industries-section .items .icon{
	font-size: 30px;
    padding: 10px;
    border-radius: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	transition: transform .5s ease-in-out;
}
/*** Industries Section End ***/

/*** Services FAQs Section Start ***/
.service-faqs-section{
	background-color:#fbf9fa;
}
.service-faqs-section .accordion-item{
    margin-bottom: 20px;
    border-radius: 8px !important;
/*     height: 100%; */
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.service-faqs-section .accordion-header{
    box-shadow: none;
    border: none;
    border-color: #fff;
    width: 100%;
}
.service-faqs-section .accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: none;
    border: none;
    border-color: #fff;
}
.service-faqs-section .accordion-item button {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .15s ease-in-out;
}
.service-faqs-section .accordion-item button lable{
	font-size: 18px;
    font-weight: 600;
}
.service-faqs-section .accordion-button:focus {
    border: none;
    box-shadow: none;
}
.service-faqs-section .accordion-button::after{
	display:none;
}
.service-faqs-section .accordion-item .accordion-button i.fa-minus{
    display:none;
}
.service-faqs-section .accordion-item .accordion-button i.fa-plus{
    display:inline-block;
}
.service-faqs-section .accordion-item .accordion-button:not(.collapsed) i.fa-plus{
    display:none;
}
.service-faqs-section .accordion-item .accordion-button:not(.collapsed) i.fa-minus{
    display:inline-block;
}
/*** Services FAQs Section End ***/

/*** ----------------
Services Page CSS End
--------------------- ***/