/* Global styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
	overflow-x: hidden;
	width: 100%;
}
body {
	font-family: "Outfit", sans-serif !important;
	line-height: 1.6;
	color: #333;
}
.container {
	width: 90%;
	max-width: 1320px;
	margin: 0 auto;
}
.globe-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.navbar {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	background-color: transparent !important;
	position: fixed !important;
	width: 100% !important;
	top: 0 !important;
	z-index: 1000 !important;
	transition: all 0.3s ease !important;
	padding: 0 !important;
	background: #fff !important;
}
.dark-bar {
}
.navbar-scrolled {
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.nav-container {
	padding: 15px 0 16px 0;
	transition: border-bottom 0.3s ease;
}
.nav-container.scrolled {
	border-bottom: none;
}
.logo {
	height: 50px;
}
.logo img {
	width: 150px;
}
.nav-links-container {
	display: flex;
	align-items: center;
	gap: 15px;
}
.nav-links {
	display: flex;
	list-style: none;
	gap: 36px;
	margin: 0 !important;
}
.nav-links a {
	transition: color 0.3s;
	color: #020202;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
}
.navbar-scrolled .nav-links a {
	color: #333;
}
.nav-links a:hover {
	color: #93AAFE;
}
.contact-btn {
	border: 1.5px solid #dde4ff !important;
	background: #fff !important;
	color: #394a88;
	border: none;
	padding: 12px 27px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	margin-left: 100px;
	margin-top: 2px;
	outline: none;
	text-decoration: none;
}
.contact-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(78, 110, 242, 0.3);
}

/* Hide contact button on tablets */
@media (max-width: 1024px) {
.contact-btn {
	display: none !important;
}
.nav-container {
	padding: 15px
}
}
.mobile-menu {
	display: none;
	font-size: 24px;
	cursor: pointer;
}
/* Hero Section */
.hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-top: 80px;
	background-color: #f8f9fa;
}
.digital-marketing-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-top: 80px;/* background-color: #f8f9fa; */
}
.hero-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/hero-bg.jpg');
	background-size: cover;
	background-position: right center;
	z-index: 1;/* animation: heroFloat 4s ease-in-out infinite, heroZoom 6s ease-in-out infinite; */
}
 @keyframes heroFloat {
 0%, 100% {
 transform: translateY(0px) translateX(0px);
}
 25% {
 transform: translateY(-15px) translateX(-8px);
}
 50% {
 transform: translateY(-8px) translateX(15px);
}
 75% {
 transform: translateY(15px) translateX(-12px);
}
}
 @keyframes heroZoom {
 0%, 100% {
 transform: scale(1);
}
 50% {
 transform: scale(1.08);
}
}
.hero-container {
	z-index: 2;
	padding: 50px 0px;
}
.hero-content {
	max-width: 768px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 34px;
}
.hero-content h1 {
	color: #101010;
	font-size: 95px;
	font-weight: 700;
	line-height: 120px;
}
.hero-content h1 span {
	font-weight: 300;
}
.hero-content p {
	color: #020202;
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0.17px;
	max-width: 75%;
}
.hero-buttons {
	display: flex;
	gap: 15px;
}
.navbar-scrolled a {
	color: #000 !important;
}
.btn {
	display: inline-block;
	padding: 11px 25px;
	border-radius: 8px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1rem;
}
.btn-primary {
	background-color: #93AAFE;
	color: white;
	box-shadow: 0 4px 15px rgba(78, 110, 242, 0.3);
}
.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(78, 110, 242, 0.4);
}
.btn-outline {
	border: 1px solid #93AAFE;
	color: #93AAFE;
	background-color: transparent;
	font-weight: 700;
}
.btn-outline-light {
	border: 2px solid #ffffff;
	color: #ffffff;
	background-color: transparent;
	font-weight: 700;
}
.btn-outline-light:hover {
	background-color: #ffffff;
	color: #000000;
}
.btn-outline:hover {
	background-color: #93AAFE;
	color: white;
}
.explore-btn {
	background-image: url('../images/button-bg.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	color: white;
	transition: all 0.3s ease;
	height: 100%;
	min-width: 160px;
	padding: 10px 35px 10px 25px;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}
.explore-btn img {
	position: absolute;
	top: -5px;
	right: -8px;
	font-size: 14px;
	color: white;
	transition: all 0.3s ease;
	z-index: 10;
}
.explore-btn:hover img {
	transform: rotate(45deg);
}
.explore-btn-light {
	background-image: url('../images/button-bg-light.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	color: white;
	transition: all 0.3s ease;
	height: 100%;
	min-width: 160px;
	padding: 12px 35px 12px 25px;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}
.explore-btn-light img {
	position: absolute;
	top: -3px;
	right: -5px;
	font-size: 14px;
	color: white;
	transition: all 0.3s ease;
	z-index: 10;
}
.explore-btn-light:hover img {
	transform: rotate(45deg);
}
.send-message-btn-light {
	background-image: url('../images/button-bg-light.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	color: white;
	transition: all 0.3s ease;
	height: 100%;
	min-width: 160px;
	padding: 12px 35px 12px 25px;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}
.explore-btn-get {
	background-image: url('../images/get-started-button-bg.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	color: white;
	transition: all 0.3s ease;
	height: 50px;
	min-width: 160px;
	padding: 12px 35px 12px 25px;
	text-decoration: none;
	font-weight: 600;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}
.explore-btn-get img {
	position: absolute;
	top: -3px;
	right: -10px;
	font-size: 14px;
	color: white;
	transition: all 0.3s ease;
	z-index: 10;
}
.explore-btn-get:hover img {
	transform: rotate(45deg);
}
.book-your-free-ai-consultation {
	background: #394a88;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}


/* Main content styles */
.main-content {
	padding: 60px 0;
}
/* Services Section */
.services {
	padding: 80px 0;
	background-color: #FAFBFF;
}
.services-header {
	text-align: center;
	margin-bottom: 60px;
}
.services-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 2px solid #93AAFE;
	border-radius: 25px;
	margin-bottom: 20px;
	color: #93AAFE;
	font-size: 14px;
	font-weight: 500;
}
.services-label i {
	font-size: 16px;
}
.services-header h2 {
	color: #101010;
	font-size: 75px;
	font-weight: 400;
	line-height: 95px;
	text-align: center;
	max-width: 1000px;
	margin: 20px auto 0 auto;
}
.services-header h2 span {
	font-weight: 700;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 40px;
	max-width: 90%;
	margin: auto;
}
.service-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	justify-content: center;
}
.service-icon {
	width: 55px;
	height: 55px;
}
.service-card h3 {
	color: #101010;
	text-align: center;
	font-size: 28px;
	font-style: normal;
	font-weight: 300;
	line-height: 30px;/* 107.143% */
}
.service-card p {
	color: #101010;
	text-align: center;
	font-size: 17px;
	font-style: normal;
	font-weight: 300;
	line-height: 25px;
	/* 147.059% */
	letter-spacing: 0.17px;
}
/* AI Section */
.ai-section {
	padding: 80px 0;
	background-color: #ffffff;
}
.ai-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}
.ai-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 2px solid #93AAFE;
	border-radius: 25px;
	margin-bottom: 20px;
	color: #93AAFE;
	font-size: 14px;
	font-weight: 500;
}
.ai-label i {
	font-size: 16px;
}
.ai-left {
	z-index: 1 !important;
}
.ai-left h2 {
	color: #101010;
	font-size: 75px;
	font-style: normal;
	font-weight: 400;
	line-height: 80px;
	letter-spacing: 0.75px;
	margin-bottom: 20px;
	margin-top: 20px;
}
.ai-left h2 span {
	font-weight: 700;
}
.ai-left p {
	color: #101010;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0.17px;
	margin-bottom: 40px;
	z-index: 1;
}
.transform-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background-color: #93AAFE;
	color: white;
	padding: 16px 32px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(147, 170, 254, 0.3);
}
.menusitebar-main-wraper {
	display: none;
}
.transform-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(147, 170, 254, 0.4);
}
.transform-btn i {
	font-size: 14px;
	transition: transform 0.3s ease;
}
.transform-btn:hover i {
	transform: translate(2px, -2px);
}
.ai-right {
	display: flex;
	justify-content: center;
	align-items: center;
}
.ai-graphic {
	position: relative;
	width: 400px;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ai-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	max-width: 400px;
	max-height: 400px;
}
.ai-right img {
	width: 100%;
	height: auto;
	margin-right: -200px;
	animation: rotate 80s linear infinite;
}
.nav-links li {
	position: relative;
	padding: 16px 0;
}
.header-nav-dropdown .product-dropdown {
	width: 44%;
	display: inline-block;
	border-bottom: 1px solid #efefef;
	padding-bottom: 15px;
	float: left;
	margin: 20px;
	margin-bottom: 0;
}
.product-dropdown .product-dropdown-icon {
	width: 60px;
	height: 60px;
	float: left;
}
.product-dropdown-icon img {
	width: 100%;
}
.product-dropdown-text {
	width: 70%;
	float: left;
	padding-left: 15px;
}
.product-dropdown-text h6 {
	color: #1F2A49;
	font-weight: 500;
	font-size: 18px;
	margin: 0;
	line-height: 20px;
	padding: 0;
}
.product-dropdown-text p {
	font-weight: 300;
	color: #000;
	font-size: 16px;
	padding: 0;
	margin: 0;
	line-height: 20px;
}
.nav-links li:hover .header-nav-dropdown {
	display: block;
}

/* Ensure image extends to right edge on all desktop screens */
@media (min-width: 1285px) {
.ai-right img {
	margin-right: -500px;
	max-width: 50vw;
	width: auto;
	height: auto;
}
}
.ai-section {
	padding: 0px !important;
}
 @keyframes rotate {
 from {
 transform: rotate(0deg);
}
to {
	transform: rotate(360deg);
}
}

/* Responsive styles */
@media (max-width: 1024px) {
.nav-links {
	display: none;
	position: absolute;
	top: 70px;
	left: 0;
	width: 100%;
	background-color: #ffffff;
	flex-direction: column;
	padding: 20px 0;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.nav-links.active {
	display: flex;
}
.nav-links li {
	margin: 0;
	text-align: center;
}
.mobile-menu {
	display: block;
	color: #000;
}
.navbar-scrolled .mobile-menu {
	color: #333;
}
.nav-links a {
	color: #000 !important;
}
.nav-links {
	gap: 0px !important;
}
}
 @media (max-width: 768px) {
.ai-right img {
	margin-right: 0px !important;
	margin-bottom: 60px;
}
.industry-hero {
	margin-top: 70px !important;
}
.portfolio-banner-wraper h4 span {
	display: inline !important;
}
.portfolio-banner-wraper {
	padding: 40px 0 !important;
}
.menusitebar-main-wraper {
	display: block;
}
.ai-hero {
	margin-top: 75px !important;
}
.hero-content h1 {
	font-size: 2.5rem;
	line-height: 1.2;
}
.hero-content h1 span {
	font-size: 1.8rem;
}
.hero-content p {
	font-size: 1rem;
	max-width: 100%;
}
.hero-buttons {
	flex-direction: column;
	gap: 10px;
	align-items: center;
}
.btn {
	padding: 10px 20px;
}
/* Services responsive styles */
.services-header h2 {
	font-size: 32px;
	line-height: 1.2;
}
.services-grid {
	grid-template-columns: 1fr;
	gap: 30px;
	max-width: 100%;
}
.service-card h3 {
	font-size: 20px;
}
.service-card p {
	font-size: 14px;
}
/* AI section responsive styles */
.ai-content {
	grid-template-columns: 1fr;
	text-align: center;
}
.ai-left {
	padding-right: 0;
	order: 2;
}
.ai-right {
	order: 1;
}
.ai-left h2, .dm-header h2, .plugging-left h2, .industries-content h2, .products-left h2 {
	font-size: 32px !important;
	line-height: 1.2 !important;
}
.plugging-content {
	grid-template-columns: 1fr !important;
	gap: 40px !important;
	text-align: center;
}
.ai-left p {
	font-size: 16px;
}
.ai-graphic {
	width: 300px;
	height: 300px;
}
.ai-image {
	max-width: 300px;
	max-height: 300px;
}
.transform-btn {
	padding: 14px 28px;
	font-size: 15px;
}
/* Digital Marketing responsive styles */


.dm-services {
	gap: 20px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.dm-service {
	font-size: 16px;
	text-align: center;
}
.join-btn {
	padding: 14px 28px;
	font-size: 15px;
}
/* Plugging section responsive styles */
.plugging-content {
	grid-template-columns: 1fr;
	gap: 40px;
	text-align: center;
}
.plugging-left h2 {
	font-size: 32px;
}
.plugging-left p {
	font-size: 16px;
	max-width: 100%;
}
.plugging-right {
	align-items: center !important;
}
.it-services-list {
	align-items: center !important;
}
/* BPO section responsive styles */
.bpo-content h2 {
	font-size: 32px;
	line-height: 1.2;
	padding: 0 20px;
}
.bpo-content p {
	font-size: 16px;
	padding: 0 20px;
}
/* Industries section responsive styles */
.industries-section {
	padding: 80px 0 !important;
}
.products-section {
	padding: 60px 0 !important;
}
.industries-content h2 {
	font-size: 32px;
	padding: 0 20px;
}
.industries-content p {
	font-size: 16px;
	padding: 0 20px;
}
.industry-label {
	padding: 10px 16px;
	font-size: 14px;
}
.industry-label i {
	font-size: 16px;
}
/* Products section responsive styles */
.products-content {
	grid-template-columns: 1fr !important;
	gap: 40px !important;
	text-align: center !important;
}
.products-left h2 {
	font-size: 32px;
}
.products-left h2 .ecosystem {
	font-size: 36px;
}
.products-left p {
	font-size: 16px;
	max-width: 100%;
}
.puzzle-image {
	max-width: 400px;
}
.drawer-menu {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	right: 0;
	width: 350px;
	height: 100vh;
	padding: 45px 0 0 0;
	background: #fff;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: perspective(500px) rotateY(-90deg);
	transform: perspective(500px) rotateY(-90deg);
	opacity: 0;
	overflow: auto;
	overflow-x: hidden;
}
.drawer-menu li {
	text-align: left;
}
.drawer-menu li a {
	display: block;
	height: auto;
	line-height: 40px;
	font-size: 20px;
	font-weight: 300;
	color: #000;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.drawer-menu li a:hover {
	color: #1a1e24;
	background: #fff;
}
/* checkbox */
.check {
	display: none;
}
/* menu button - label tag */
.menu-btn {
	position: absolute;
	display: block;
	top: 27px;
	right: 18px;
	display: block;
	width: 40px;
	height: 40px;
	font-size: 10px;
	text-align: center;
	cursor: pointer;
	z-index: 3;
}
.ai-hero {
	margin-top: 75px;
}
.bar {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 30px;
	height: 1.5px;
	background: #394a88;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}
.bar.middle {
	top: 10px;
	opacity: 1;
}
.bar.bottom {
	top: 20px;
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
}
.menu-btn__text {
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
	color: #fff;
	-webkit-transition: all .5s;
	transition: all .5s;
	display: block;
	visibility: visible;
	opacity: 1;
}
.menu-btn:hover .bar {
	background: #18b6a4;
}
.close-menu {
	position: fixed;
	top: 0;
	right: 350px;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0);
	cursor: url(http://theorthodoxworks.com/demo/images/cross.svg), auto;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	visibility: hidden;
	opacity: 0;
}
/* checked */
.check:checked ~ .drawer-menu {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	opacity: 1;
	z-index: 2;
}
.check:checked ~ .contents {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
}
.check:checked ~ .menu-btn .menu-btn__text {
	visibility: hidden;
	opacity: 0;
}
.check:checked ~ .menu-btn .bar.top {
	width: 40px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	background: #394a88
}
.check:checked ~ .menu-btn .bar.middle {
	opacity: 0;
}
.check:checked ~ .menu-btn .bar.bottom {
	width: 40px;
	top: 28px;
	background: #394a88;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.check:checked ~ .close-menu {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	background: rgba(0,0,0,.5);
	visibility: visible;
	opacity: 1;
	z-index: 3;
	backdrop-filter: blur(10px);
}
.drawer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.drawer-menu ul li a {
	text-decoration: none;
}
.drawer-menu ul li a img {
	margin-right: 5px;
	margin-top: -2px;
}
.menusitebar-main-wraper {
	display: none;
}
/* Footer responsive styles */
.footer-top {
	flex-direction: column;
	gap: 20px;
	text-align: center;
}
.newsletter-section {
	flex-direction: column;
	gap: 10px;
}
.newsletter-input {
	width: 250px;
}
.social-section {
	flex-direction: column;
	gap: 10px;
}
.footer-content {
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.logo-column {
	grid-column: span 2;
	align-items: center;
}
.footer-bottom {
	flex-direction: column;
	gap: 15px;
	text-align: center;
}
.legal-links {
	gap: 15px;
}
.footer-links {
	grid-template-columns: 1fr 1fr !important;
	gap: 20px !important;
}
}
 @media (max-width: 768px) {
.footer-content {
	grid-template-columns: 1fr !important;
	gap: 30px;
}
.menusitebar-main-wraper {
	display: block;
}
.footer-links-container {
	width: 100%;
	align-items: center;
	gap: 20px;
}
.footer-content {
	text-align: center;
}
.footer-link, .contact-info {
	justify-content: center;
}
}
/* Digital Marketing Section */
.digital-marketing {
	padding: 80px 0;
	background-image: url('../images/puzzle-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.digital-marketing .container {
	position: relative;
}
.dm-header {
	text-align: center;
	margin-bottom: 60px;
}
.dm-label {
	display: inline-block;
	padding: 8px 16px;
	border: 2px solid #93AAFE;
	border-radius: 25px;
	margin-bottom: 20px;
	color: #93AAFE;
	font-size: 14px;
	font-weight: 500;
}
.dm-header h2 {
	color: #101010;
	text-align: center;
	font-size: 75px;
	font-style: normal;
	font-weight: 400;
	line-height: 95px;
	/* 126.667% */
	letter-spacing: 0.75px;
	max-width: 1100px;
	margin: 20px auto 0 auto;
}
.dm-header h2 .emphasized {
	font-weight: 700;
}
.dm-services {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
	flex-wrap: wrap;
}
.dm-service {
	color: #101010;
	font-size: 28px;
	font-style: normal;
	font-weight: 300;
	line-height: 28px;
	/* 100% */
	letter-spacing: 0.28px;
}
.dm-cta {
	text-align: center;
}
.join-btn {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	background-color: #93AAFE;
	color: white;
	padding: 16px 32px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(147, 170, 254, 0.3);
}
.join-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(147, 170, 254, 0.4);
}
.arrow-circle {
	width: 24px;
	height: 24px;
	background-color: #93AAFE;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid white;
}
.arrow-circle i {
	font-size: 12px;
	color: white;
}
/* Plugging Section */
.plugging-section {
	padding: 80px 0;
}
.plugging-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 80px;
	align-items: center;
}
.plugging-left h2 {
	color: #101010;
	font-size: 75px;
	font-style: normal;
	font-weight: 400;
	line-height: 95px;
	/* 126.667% */
	letter-spacing: 0.75px;
}
.plugging-left h2 .bold-text {
	font-weight: 700;
}
.plugging-left p {
	color: #666666;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
}
.plugging-right {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.it-solutions-label {
	display: inline-block;
	padding: 8px 16px;
	border: 2px solid #93AAFE;
	border-radius: 25px;
	margin-bottom: 30px;
	color: #93AAFE;
	font-size: 14px;
	font-weight: 500;
}
.it-services-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
}
.it-service {
	color: #101010;
	font-size: 28px;
	font-style: normal;
	font-weight: 300;
	line-height: 35px;
	letter-spacing: 0.28px;
}
/* Industries Section */
.industries-section {
	padding: 120px 0;
	background-image: url('../images/industry-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.industries-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}
.industry-label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	border: 2px solid #93AAFE;
	border-radius: 25px;
	margin-bottom: 30px;
	color: #93AAFE;
	font-size: 16px;
	font-weight: 500;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}
.industry-label i {
	font-size: 18px;
	color: #93AAFE;
}
.industries-content h2 {
	color: #101010;
	text-align: center;
	font-family: "Plus Jakarta Sans";
	font-size: 75px;
	font-style: normal;
	font-weight: 400;
	line-height: 95px;
	/* 126.667% */
	letter-spacing: 0.75px;
	margin-top: 20px;
}
.industries-content h2 .emphasized {
	font-weight: 700;
}
/* Products Section */
.products-section {
	padding: 80px 0;
	background-color: #ffffff;
}
.products-content {
	display: grid;
	grid-template-columns: 40% 60%;
	gap: 60px;
	align-items: center;
}
.products-left h2 {
	color: #101010;
	font-family: "Plus Jakarta Sans";
	font-size: 75px;
	font-style: normal;
	font-weight: 400;
	line-height: 95px;
	/* 126.667% */
	letter-spacing: 0.75px;
}
.ecosystem {
	font-weight: 700;
}
.products-left p {
	color: #666666;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
	margin: 32px 0;
	max-width: 500px;
}
.products-right {
	display: flex;
	justify-content: center;
	align-items: center;
}
.puzzle-pieces {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.puzzle-image {
	width: 100%;
	height: auto;
	object-fit: contain;
}
/* Footer */
.footer {
	background-color: #F4F6FF;
	padding: 60px 0 20px;
	color: #101010;
}
/* Footer Top Strip */
.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0 30px 0;
	border-bottom: 1px solid #e9ecef;
	margin-bottom: 40px;
}
.newsletter-section {
	display: flex;
	align-items: center;
	gap: 15px;
}
.newsletter-label {
	color: #394A88;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 27px;
}
.newsletter-input-group {
	display: flex;
	align-items: center;
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 25px;
	overflow: hidden;
}
.newsletter-input {
	border: none;
	outline: none;
	padding: 12px 20px;
	font-size: 16px;
	background: transparent;
	min-width: 250px;
}
 .newsletter-input::placeholder {
 color: #10101080;
}
.submit-btn {
	background: #93AAFE;
	color: white;
	border: none;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border-radius: 25px;
}
.submit-btn:hover {
	background: #7c8fd8;
}
.social-section {
	display: flex;
	align-items: center;
	gap: 15px;
}
.social-label {
	font-weight: 500;
	font-size: 16px;
}
.social-icons {
	display: flex;
	gap: 15px;
}
.social-icon {
	color: #93AAFE;
	font-size: 20px;
	transition: all 0.3s ease;
}
.social-icon:hover {
	color: #7B68EE;
	transform: translateY(-2px);
}
.hero-area-detail-wrap {
	padding: 120px 0 60px 0;
	background: #F6F9FF;
}
.hero-area-detail-wrap h1 {
	color: #0e1328;
	font-size: 65px;
	font-weight: 200;
	line-height: 80px;
	letter-spacing: -4px;
	margin: 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
	text-align: center;
	margin-bottom: 0;
}
.inner-privacy-content {
	padding: 50px 0;
}
.inner-privacy-content h2 {
	font-size: 25px;
	color: #0e1328;
}
.inner-privacy-content p {
	color: #374151;
	font-size: 18px;
	line-height: 26px;
	font-weight: 300;
}
.inner-privacy-content p a {
	color: #94abff;
	text-decoration: none;
}
.inner-privacy-content ul {
	margin: 0;
	padding: 0;
	color: #374151;
	font-size: 18px;
	line-height: 26px;
	font-weight: 300;
	margin-left: 38px;
	margin-bottom: 30px
}
.inner-privacy-content ul li {
	margin-bottom: 8px;
}
/* Footer Content */
.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.footer-column {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-link {
	color: #171618;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 20.7px;
	cursor: pointer;
	transition: color 0.3s ease;
}
.footer-links {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
.footer-link:hover {
	color: #93AAFE;
}
.footer-link strong {
	font-weight: 600;
}
.footer-links-container {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.footer-link strong {
	color: #101010;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 27px;
}
.footer-logo {
	max-width: 250px;
}
.contact-info {
	display: flex;
	align-items: center;
	gap: 8px;
}
.contact-info i {
	color: #93AAFE;
	font-size: 14px;
}
.logo-column {
	align-items: flex-start;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 24px;
	font-weight: 600;
	color: #101010;
}
.footer-logo i {
	color: #93AAFE;
	font-size: 28px;
}
/* Footer Bottom */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid #e9ecef;
}
.copyright {
	color: #101010;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20.7px;
}
.legal-links {
	display: flex;
	gap: 20px;
}
.legal-link {
	font-size: 16px;
	font-weight: 400;
	line-height: 20.7px;
	color: #101010;
	text-decoration: none;
	transition: color 0.3s ease;
}
.email-icon {
	width: 20px;
	height: 20px;
}
.legal-link:hover {
	color: #93AAFE;
}
.btn-wrapper {
	position: relative;
	display: inline-block;
}
.btn-wrapper img {
	position: absolute;
	left: -50px;
	/* shift puzzle outside */
	top: 20%;
	transform: translateY(-50%);
	width: 80px;
	height: 80px;
	z-index: 0;/* keep behind button */
}
.image-btn {
	position: relative;
	padding: 10px 20px;
	border: 2px solid #93AAFE;
	background: #FFF;
	color: #93AAFE;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	cursor: pointer;
	z-index: 1;
	font-size: 17px;/* keep button above image */
}
.image-btn-dark {
	border: 2px solid #394a88;
	padding: 7px 29px 8px 29px;
	text-align: center;
	font-size: 18px;
	border-radius: 30px;
	background: #fff;
	color: #394a88;
	font-weight: 600;
	position: relative;
	font-family: "Outfit", sans-serif !important;
	background: #fff;
}
/* Business Process Outsourcing Section */
.bpo-section {
	padding: 80px 0 300px 0;
	position: relative;
	background-image: url('../images/focus-growth-bg.jpg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.bpo-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}
.bpo-content h2 {
	color: #101010;
	font-size: 75px;
	font-style: normal;
	font-weight: 400;
	line-height: 95px;
	letter-spacing: 0.75px;
	margin: 20px 0;
}
.bpo-content h2 span {
	font-weight: 700;
}
.bpo-content p {
	color: #666666;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
/* Industries Section */


.digital-content h1 {
	color: #0e1328;
	font-size: 75px;
	font-weight: 200;
	line-height: 80px;
	letter-spacing: -4px;
	margin: 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
	text-align: center;
	margin-bottom: 0;
}
.digital-content h1 span {
	font-weight: 400;
}
.digital-content h1 span strong {
	color: #93AAFE;
	font-weight: 400;
}
.digital-img {
	width: 65%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin: 0 auto;
}
/* Image Container and Callout Cards */
.image-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}
.callout-card {
	position: absolute;
	border-radius: 15px;
	padding: 25px;
	max-width: 440px;
	z-index: 10;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	border-radius: 20px;
	background: rgba(240, 240, 240, 0.40);
	backdrop-filter: blur(40px);
}
.callout-number {
	border: 1px solid #90a6f8;
	color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 16px;
	flex-shrink: 0;
	background: #90a6f8
}
.callout-content {
	color: #101010;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.4;
	flex: 1;
}
.callout-label {
	font-weight: 500;
	color: #101010;
}
/* Position the callout cards around the image */
.callout-1 {
	top: 80px;
	left: 20%;
	transform: translateX(-50%);
}
.callout-2 {
	top: 200px;
	left: 20%;
	transform: translateX(-50%);
}
.callout-3 {
	bottom: 200px;
	right: 20%;
	transform: translateX(50%);
}
.callout-4 {
	bottom: 80px;
	right: 20%;
	transform: translateX(50%);
}
.portfolio-page-wrap {
	background: url(../images/bg-portfolio-page.jpg) no-repeat top;
	background-size: cover;
	padding: 120px 0 250px 0;
	text-align: center;
}
.portfolio-page-wrap .artifical-icon-span {
	margin-bottom: 15px;
	display: inline-block;
	position: relative;
}
.portfolio-page-wrap h1 {
	font-size: 75px;
	color: #101010;
	font-weight: 300;
	letter-spacing: -2px;
	text-align: center;
	margin-bottom: 30px;
	line-height: 80px;
	padding-top: 50px;
}
.portfolio-page-wrap h1 span {
	color: #93AAFE;
	display: block;
	font-weight: 400
}
.portfolio-page-wrap .artifical-icon-span span {
	border: 2px solid #394a88;
	padding: 6px 29px 8px 29px;
	text-align: center;
	font-size: 18px;
	border-radius: 30px;
	background: #fff;
	color: #394a88;
	font-weight: 600;
	position: relative;
	background: #fff;
}
.portfolio-page-wrap span strong {
	font-weight: 300;
}
.portfolio-page-wrap .artifical-icon-span img {
	position: absolute;
	left: -50px;
	top: 20%;
	transform: translateY(-50%);
	width: 80px;
	height: 80px;
	z-index: 0;
}
.portfolio-main-wrap {
	margin-top: -215px
}
.portfolio-main-wrap ul {
	display: flex;
	list-style: none;
	gap: 40px;
	margin-bottom: 30px;
	justify-content: center;
}
.portfolio-main-wrap ul li {
	width: 330px;
}
.portfolio-main-wrap ul li .portfolio-list-wrap a {
	display: block;
	background: #fff;
	text-decoration: none;
	border-radius: 12px;
	box-shadow: 0px 15px 35px 0 #dee7ec;
	padding-bottom: 20px
}
.portfolio-main-wrap ul li .portfolio-list-wrap a:hover {
	box-shadow: 0px 2px 2px 0 #dee7ec;
}
.portfolio-main-wrap ul li .portfolio-list-wrap a h5 {
	font-size: 25px;
	color: #0E1328;
	font-weight: 300;
	padding: 16px 20px;
	border-bottom: 1px solid #ecf0ff;
}
.portfolio-main-wrap ul li .portfolio-list-wrap p {
	font-size: 14px;
	font-weight: 300;
	color: #0E1328;
	line-height: 18px;
	padding: 10px 20px 5px 20px;
	opacity: 0.7;
	padding-right: 0;
}
.portfolio-list-image {
	height: 180px;
	border-radius: 15px;
	background-size: cover !important;
	position: relative;
	margin-top: 30px;
	width: 88%;
	margin: 0 auto;
	padding-bottom: 20px;
}
.listing-mobiel-app-wrap {
	padding: 60px 0;
}
.listing-mobiel-app-wrap .artifical-icon-span {
	margin-bottom: 15px;
	display: inline-block;
	position: relative;
}
.listing-mobiel-app-wrap .artifical-icon-span span {
	border: 2px solid #394a88;
	padding: 6px 29px 8px 29px;
	text-align: center;
	font-size: 18px;
	border-radius: 30px;
	background: #fff;
	color: #394a88;
	font-weight: 600;
	position: relative;
	background: #fff;
}
.listing-mobiel-app-wrap .artifical-icon-span img {
	position: absolute;
	left: -50px;
	top: 20%;
	transform: translateY(-50%);
	width: 80px;
	height: 80px;
	z-index: 0;
}
.listing-mobiel-app-wrap .artifical-icon-span span strong {
	font-weight: 300;
}
.artifical-mobile-wrap {
	text-align: center;
}
.artifical-mobile-wrap h3 {
	font-size: 50px;
	color: #101010;
	font-weight: 300;
	letter-spacing: -2px;
	text-align: center;
	line-height: 55px;
	margin-bottom: 60px;
}
.artifical-mobile-wrap h3 span {
	color: #93AAFE;
	font-weight: 400;
}
.listing-mobiel-app-wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.listing-mobiel-app-wrap ul li {
	border: 1px solid #DCE0F4;
	border-radius: 15px;
	display: flex;
	margin: 0 auto;
	margin-top: 40px;
	overflow: hidden;
}
.listing-mobiel-app-wrap ul li .mobile-list-left-right {
	display: flex;
	height: 365px;
	overflow: hidden;
}
.mobile-list-left-right .mobile-list-left-text {
	padding: 35px 35px 0px 35px;
	width: 50%;
}
.mobile-list-left-text h5 {
	font-size: 30px;
	font-weight: 300;
	color: #101010;
	line-height: 30px;
	position: relative;
	margin-bottom: 20px;
}
.mobile-list-left-text h5:before {
	content: "";
	position: absolute;
	bottom: -10px;
	height: 1.5px;
	background: #93AAFE;
	width: 40px;
}
.mobile-list-left-text p {
	font-size: 15px;
	font-weight: 300;
	color: #000;
	margin: 0;
}
.mobile-list-left-text strong {
	display: block;
	font-size: 20px;
	font-weight: 400;
	color: #394A88;
	margin-bottom: 0;
	padding: 5px 0 5px 0
}
.mobile-list-left-text .list-mobile-info span {
	display: block;
	font-size: 16px;
	font-weight: 300;
	color: #000;
	background: url(../images/check-app.svg) no-repeat left;
	padding-left: 22px;
	background-size: 2.8%
}
.btn-mobile-app {
	margin: 10px 0;
}
.btn-mobile-app a {
	text-decoration: none;
	width: 50px;
	height: 40px;
	padding-top: 5px;
	border: 1px solid #DFE6F8;
	display: block;
	float: left;
	border-radius: 6px;
	text-align: center;
	margin-right: 5px;
}
.mobile-list-left-image img {
	width: 100%;
}
.mobile-list-left-image {
	width: 50%;
	height: 378px;
	overflow: hidden;
}
.load-more-btn {
	text-align: center;
	margin-top: 60px !important;
}
.mobile-app-list li {
	display: none;
}
.mobile-app-list li:nth-child(-n+3) {
	display: block;
}
.load-more-btn {
	text-align: center;
	margin-top: 20px;
}
.load-more-btn a {
	background: #394a88;
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
}
.load-more-btn a:hover {
	background: #93aafe;
	color: #fff;
}
.number-main-wraper {
	background: #93aafe;
	padding: 60px 0 30px 0;
	margin-top: 60px;
}
.number-main-wraper ul {
	list-style: none;
	display: flex;
	gap: 25px;
	justify-content: center;
}
.number-main-wraper ul li {
	text-align: center;
	width: 400px;
}
.number-main-wraper ul li .listing-number-icon {
	margin-top: -120px;
}
.listing-number-icon {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	border: 5px solid #93aafe;
	background: #fff;
	margin: 0 auto;
	margin-bottom: 10px;
	padding-top: 45px;
}
.number-main-wraper ul li .listing-number-icon img {
	width: 40px;
}
.number-main-wraper ul li:nth-child(2) .listing-number-icon {
	padding-top: 40px;
}
.number-main-wraper ul li .listing-number-text h6 {
	font-size: 40px;
	color: #fff;
	font-weight: 400;
	line-height: 40px;
}
.listing-number-text span {
	color: #fff;
	font-size: 16px;
	font-weight: 300;
}
.business-main-wrap {
	padding: 90px 0 40px 0;
	background: #F4F7FF;
}
.business-main-wrap h4 {
	font-size: 50px;
	line-height: 60px;
	font-weight: 300;
	letter-spacing: -2px;
	margin-bottom: 20px;
}
.business-main-wrap h4 span {
	font-weight: 500;
	color: #93aafe;
}
.business-main-wrap .artifical-icon-span {
	position: relative;
	margin-bottom: 20px;
}
.business-main-wrap .artifical-icon-span span {
	border: 2px solid #394a88;
	padding: 6px 29px 8px 29px;
	text-align: center;
	font-size: 18px;
	border-radius: 30px;
	background: #fff;
	color: #394a88;
	font-weight: 600;
	position: relative;
	background: #fff;
}
.business-main-wrap .artifical-icon-span img {
	position: absolute;
	left: -50px;
	top: 20%;
	transform: translateY(-50%);
	width: 80px;
	height: 80px;
	z-index: 0;
}
.business-main-wrap .artifical-icon-span strong {
	font-weight: 300;
}
.business-image-wrap {
}
.business-image-wrap ul {
	display: flex;
	gap: 25px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.business-image-wrap ul li {
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}
.business-image-wrap ul li img {
	width: 100%;
}
.carousel-control-next, .carousel-control-prev {
	width: 60px !important;
	height: 60px !important;
	background-color: #FFFFFF !important;
	border-radius: 50%;
	padding: 20px !important;
	opacity: 1 !important;
	position: absolute !important;
	border: 1px solid #D7DBE7 !important
}
.carousel-control-prev-icon {
	filter: brightness(0%);
}
.carousel-control-next-icon {
	filter: brightness(0%);
}
.carousel-control-next {
	right: auto;
	left: 70px;
}
.btn-corousel {
	position: absolute;
	top: -100px;
	right: 10%;
}
.business-text-image-wrap {
	margin-top: 20px;
}
.business-text-wrap {
	display: flex;
	justify-content: space-between;
	padding: 20px 0 30px 0;
}
.business-text-wrap .text-tag-heading-wrap {
	width: 50%;
}
.business-text-wrap .text-tag-heading-wrap .business-tags-wrap span {
	background: #fff;
	padding: 6px 18px;
	border-radius: 30px;
	font-weight: 300;
	font-size: 14px;
	color: #000000;
	border: 1px solid #C9CFE4;
	margin-right: 10px
}
.text-tag-heading-wrap h5 {
	font-size: 36px;
	letter-spacing: -1px;
	color: #000;
	margin: 0;
	padding: 0;
	padding-top: 10px;
	font-weight: 300
}
.utility-app-wraper {
	padding: 90px 0;
}
.utility-app-wraper .artifical-icon-span {
	margin-bottom: 15px;
	display: inline-block;
	position: relative;
}
.utility-app-wraper .artifical-icon-span img {
	position: absolute;
	left: -50px;
	top: 20%;
	transform: translateY(-50%);
	width: 80px;
	height: 80px;
	z-index: 0;
}
.utility-app-wraper .artifical-icon-span span {
	border: 2px solid #394a88;
	padding: 6px 29px 8px 29px;
	text-align: center;
	font-size: 18px;
	border-radius: 30px;
	background: #fff;
	color: #394a88;
	font-weight: 600;
	position: relative;
	background: #fff;
}
.utility-app-wraper .artifical-icon-span span strong {
	font-weight: 300;
}
.utility-span {
	text-align: center;
	margin-bottom: 10px;
}
.utility-app-wraper h3 {
	font-size: 50px;
	color: #101010;
	font-weight: 300;
	letter-spacing: -2px;
	text-align: center;
	line-height: 55px;
	margin-bottom: 40px;
}
.utility-app-wraper h3 span {
	color: #93AAFE;
	font-weight: 400;
}
.utility-app-wraper ul {
	list-style: none;
	margin: 0;
	display: flex;
	gap: 35px;
	padding: 0;
	justify-content: center;
}
.utility-app-wraper ul li {
	width: 34%;
}
.list-utility-image img {
	width: 100%;
}
.list-utility-text .tag-utility {
	margin-bottom: 8px;
	margin-top: 15px;
}
.list-utility-text .tag-utility span {
	background: #fff;
	padding: 4px 13px;
	border-radius: 30px;
	font-weight: 300;
	font-size: 12px;
	color: #000000;
	border: 1px solid #C9CFE4;
	margin-right: 8px;
}
.list-utility-text h5 {
	font-size: 25px;
	letter-spacing: -1px;
	color: #000;
	font-weight: 300;
}
.list-utility-text {
	position: relative;
}
.list-utility-text .zoom-icon-utility {
	position: absolute;
	top: -120px;
	right: 0px;
}
.list-utility-text .zoom-icon-utility img {
	width: 95px
}
.mobile-list-left-text {
	position: relative;
}
.image-mobile-wrap {
	position: absolute;
	right: 19px;
	bottom: 20px;
	width: 150px;
	opacity: 0.3;
}
.image-mobile-wrap img {
	width: 100%;
}
.image-mobile2-wrap {
	right: 31px;
	bottom: 0;
	opacity: 1;
}
.image-mobile3-wrap {
	right: 0;
	width: 250px;
	bottom: 0;
	opacity: 1;
}
.utility-modal-wraper .modal-dialog {
	max-width: 1100px;
}
.utility-modal-wraper .modal-dialog .modal-body {
	padding: 0;
}
.utility-modal-wraper .modal-dialog .modal-content {
	border-radius: 30px;
	overflow: hidden;
}
.utility-modal-wraper .ultility-main-image {
	height: 650px;
	background-size: cover !important;
	padding: 25px;
	text-align: right;
}
.utility-modal-wraper .ultility-main-image button {
	color: #fff;
	box-shadow: none;
	outline: none;
	filter: brightness(0) invert(1);
	opacity: 1
}
.ultility-text-wraper {
	padding: 20px 25px 22px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ultility-text-wraper h5 {
	font-size: 25px;
	letter-spacing: -1px;
	color: #000;
	font-weight: 500;
	margin: 0;
}
.ultility-btn-wrap a {
	display: inline-block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #ddd;
	text-align: center;
	padding-top: 15px;
	margin-left: 5px;
}
.ultility-btn-wrap a:hover {
	background: #394a88;
	border: 1px solid #394a88;
}
.ultility-btn-wrap a:hover img {
	filter: brightness(0) invert(1);
}
.utility-modal-wraper .modal {
	background: rgb(0 0 0 / 15%);
	backdrop-filter: blur(5px);
}








/* Responsive adjustments for callout cards */
@media (max-width: 1024px) {
.callout-card {
	max-width: 180px;
	padding: 15px;
}
.callout-1 {
	left: 10%;
}
.callout-2 {
	left: 15%;
}
.callout-3 {
	right: 10%;
}
.callout-4 {
	right: 15%;
}
}
 @media (max-width: 768px) {
.callout-card {
	position: static;
	transform: none;
	margin: 15px 0px;
	max-width: 100%;
}
.image-container {
	flex-direction: column;
}
.digital-img {
	width: 100%;
	margin-bottom: 30px;
}
}
.social-proof-section {
	background: #FAFBFF;
	padding: 80px 0;
}
.social-proof-card-content {
	display: flex;
	gap: 20px;
}
.social-proof-card-content img {
	width: 60px;
	height: 60px;
}
.social-proof-card-content h4 {
	color: #101828;
	font-size: 25px;
	font-style: normal;
	font-weight: 300;
	line-height: 32px;
	margin-bottom: 5px;
}
.social-proof-card-content p {
	color: #0e1328;
	font-size: 16px;
	font-weight: 300;
	padding-right: 15px;
	line-height: 22px;
}
.social-proof-content {
	display: flex;
	gap: 20px;
	max-width: 90%;
	margin: 0 auto;
}
/* Brand Section */
.brand-section {
	padding: 80px 0;
	background-color: #ffffff;
}
.brand-content {
	display: grid;
	grid-template-columns: 45% 55%;
	gap: 60px;
	align-items: center;
}
/* Left Side - Circular Infographic */
.brand-infographic {
	display: flex;
	justify-content: center;
	align-items: center;
}
.circular-diagram {
	position: relative;
	width: 400px;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.central-logo {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 5px;
}
.globe-icon {
	font-size: 32px;
	color: #1e3a8a;
}
.iffra-text {
	font-size: 36px;
	font-weight: 700;
	color: #1e3a8a;
	font-family: "Plus Jakarta Sans", sans-serif;
}
.inner-circle {
	position: absolute;
	width: 200px;
	height: 200px;
	border: 2px solid #1e3a8a;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.outer-circle {
	position: absolute;
	width: 350px;
	height: 350px;
	border: 2px dashed #93c5fd;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/* Diagram Icons */
.diagram-icon {
	position: absolute;
	z-index: 5;
}
.icon-circle {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.icon-circle.blue {
	background: #1e3a8a;
}
.icon-circle.purple {
	background: #8b5cf6;
}
.icon-circle.light-blue {
	background: #93c5fd;
}
.icon-circle.pink {
	background: #ec4899;
}
.icon-circle.green {
	background: #10b981;
}
/* Icon Positions */
.icon-1 {
	top: 15%;
	right: 20%;
}
.icon-2 {
	top: 25%;
	right: 10%;
}
.icon-3 {
	bottom: 25%;
	right: 10%;
}
.icon-4 {
	bottom: 15%;
	right: 20%;
}
.icon-5 {
	bottom: 25%;
	left: 10%;
}
.icon-6 {
	top: 25%;
	left: 10%;
}
.icon-7 {
	top: 5%;
	left: 50%;
	transform: translateX(-50%);
}
/* Stat Boxes */
.stat-box {
	position: absolute;
	background: white;
	padding: 12px 16px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	white-space: nowrap;
	left: 60px;
	top: 50%;
	transform: translateY(-50%);
}
.stat-number {
	font-size: 24px;
	font-weight: 700;
	color: #101010;
	line-height: 1;
}
.stat-label {
	font-size: 12px;
	color: #666666;
	margin-top: 4px;
}
/* Right Side - Content */


.brand-label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	border: 2px solid #93c5fd;
	border-radius: 25px;
	margin-bottom: 30px;
	color: #93c5fd;
	font-size: 16px;
	font-weight: 500;
	background-color: rgba(147, 197, 253, 0.1);
}
.puzzle-icon {
	width: 20px;
	height: 20px;
}
.brand-text h2 {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 60px;
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
	margin-top: 30px !important;
}
.brand-text h2 span {
	color: #93AAFE;
	font-weight: 500;
}
.benefits-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}
.benefit-item {
	display: flex;
	align-items: center;
	gap: 15px;
}
.benefit-icon {
	width: 30px;
	height: 30px;
	background: #93AAFE;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
	flex-shrink: 0;
}
.brand-img {
	width: 100%;
}
.benefit-item span {
	color: #374151;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
}
.get-started-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #93c5fd, #3b82f6);
	color: white;
	padding: 16px 32px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(147, 197, 253, 0.3);
}
.get-started-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(147, 197, 253, 0.4);
}
.get-started-btn i {
	font-size: 14px;
	transform: rotate(45deg);
}

/* Responsive styles for brand section */
@media (max-width: 1024px) {
.brand-content {
	grid-template-columns: 1fr;
	gap: 60px;
}
.circular-diagram {
	width: 350px;
	height: 350px;
}
.outer-circle {
	width: 300px;
	height: 300px;
}
.inner-circle {
	width: 180px;
	height: 180px;
}
}
 @media (max-width: 768px) {
.circular-diagram {
	width: 300px;
	height: 300px;
}
.outer-circle {
	width: 250px;
	height: 250px;
}
.inner-circle {
	width: 150px;
	height: 150px;
}
.icon-circle {
	width: 40px;
	height: 40px;
	font-size: 16px;
}
.stat-box {
	padding: 8px 12px;
	left: 50px;
}
.stat-number {
	font-size: 20px;
}
.stat-label {
	font-size: 10px;
}
}
/* Social Media Section */
.social-media-section {
	padding: 40px 0 80px 0;
	background-color: #ffffff;
	position: relative;
	overflow: hidden;
}
.social-media-content {
	text-align: center;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}
/* Top Label */
.social-media-label {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	padding: 12px 24px;
	border: 2px solid #93c5fd;
	border-radius: 25px;
	margin-bottom: 30px;
	color: #1e3a8a;
	font-size: 16px;
	font-weight: 500;
	background-color: rgba(147, 197, 253, 0.1);
	position: relative;
}
.puzzle-connection {
	position: relative;
	display: flex;
	align-items: center;
}
.dashed-line {
	width: 20px;
	height: 2px;
	background: repeating-linear-gradient(to right, #93c5fd 0, #93c5fd 4px, transparent 4px, transparent 8px);
	margin-right: 8px;
}
.puzzle-icon {
	width: 20px;
	height: 20px;
}
/* Main Heading */
.social-media-content h2 {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 60px;
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
	margin-top: 30px !important;
}
.social-media-content h2 span {
	color: #93AAFE;
	font-weight: 500;
}
/* Process Flow */
.process-flow {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.process-step span {
	color: #101010;
	font-size: 25px;
	font-weight: 300;
	white-space: nowrap;
}
/* Flow Arrows */
.flow-arrow {
	display: flex;
	align-items: center;
	position: relative;
}
.arrow-line {
	width: 40px;
	height: 2px;
	background: repeating-linear-gradient(to right, #93c5fd 0, #93c5fd 4px, transparent 4px, transparent 8px);
}
.arrow-head {
	width: 0;
	height: 0;
	border-left: 8px solid #1e3a8a;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	margin-left: -2px;
}
/* CTA Button */
.cta-container {
	text-align: center;
}
.viral-btn {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	background: linear-gradient(135deg, #93c5fd, #3b82f6);
	color: white;
	padding: 20px 40px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(147, 197, 253, 0.3);
}
.viral-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(147, 197, 253, 0.4);
}
.arrow-circle {
	width: 24px;
	height: 24px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.arrow-circle i {
	color: #3b82f6;
	font-size: 12px;
	transform: rotate(45deg);
}
/* Background Social Media Icons */
.background-icons {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	background-image: url('../images/social-media.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.6;
}
 @keyframes float {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
}
 50% {
 transform: translateY(-20px) rotate(180deg);
}
}

/* Responsive styles for social media section */
@media (max-width: 1024px) {
.process-flow {
	gap: 15px;
}
.process-step span {
	font-size: 16px;
}
.arrow-line {
	width: 30px;
}
}
 @media (max-width: 768px) {
.process-flow {
	flex-direction: column;
	gap: 20px;
}
.flow-arrow {
	transform: rotate(90deg);
}
.viral-btn {
	padding: 16px 32px;
	font-size: 16px;
}
.bg-icon {
	font-size: 20px;
}
}
/* Google Ads Section */
.google-ads-section {
	padding: 40px 0 80px 0;
	background-color: #ffffff;
	overflow: hidden;
}
.google-ads-content {
	display: flex;
	align-items: center;
	gap: 0;
}
/* Left Side - Content (50%) */
.google-ads-text {
	width: 60%;
	padding-right: 40px;
	z-index: 2;
}
.google-ads-text h2 {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 60px;
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
	margin-top: 30px !important;
}
.google-ads-text h2 span {
	color: #93AAFE;
	font-weight: 500;
}
.google-ads-benefits {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 40px;
}
.google-ads-benefits .benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}
.google-ads-benefits .benefit-icon {
	width: 30px;
	height: 30px;
	background: #93AAFE;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
	flex-shrink: 0;
	margin-top: 2px;
}
.google-ads-benefits .benefit-item span {
	color: #374151;
	font-size: 20px;
	line-height: 30px;
	font-weight: 300;
	padding-right: 143px;
}
.google-ads-benefits .benefit-item strong {
	color: #101010;
	font-weight: 300;
}
/* Right Side - Image with Text Overlay (60%) */
.google-ads-visual {
	width: 45%;
	position: relative;
	margin-left: -10%;
}
.google-ads-image {
	width: 100%;
	object-fit: cover;
}

/* Text Overlay on Image */


/* Responsive styles for Google Ads section */
@media (max-width: 1024px) {
.google-ads-content {
	flex-direction: column;
	gap: 40px;
}
.google-ads-text {
	width: 100%;
	padding-right: 0;
	text-align: center;
}
.google-ads-visual {
	width: 100%;
	margin-left: 0;
}
.google-ads-benefits .benefit-item {
	justify-content: center;
}
}
 @media (max-width: 768px) {
.google-ads-benefits .benefit-item span {
	font-size: 15px;
}
.text-overlay {
	padding: 20px;
}
.text-overlay h3 {
	font-size: 24px;
}
.text-overlay p {
	font-size: 14px;
}
}
/* AI Hero Section */
.ai-hero {
	padding: 130px 0;
	background-color: #000000;
	background-image: url('../images/ai-hero-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	margin-top: 95px;
}
/* Get Started with AI Section */
.get-started-ai {
	position: relative;
	padding:40px 0 120px 0;
	background-image: url('../images/puzzle-bg.jpg');
	background-size: cover;
	background-position: center;
}
.get-started-overlay {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}
.get-started-overlay h2 {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
	text-align: center;
}
.get-started-overlay h2 span {
	color: #93AAFE;
	font-weight: 500;
}
.get-started-overlay p {
	color: #0e1328;
	font-size: 22px;
	font-weight: 300;
	line-height: 30px;
	padding: 0;
	max-width: 670px;
	width: 100%;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 50px;
}
.ai-btn-wrap{
	text-align: center;
	margin-top: 70px;
}
.ai-btn-wrap a{
	background: #394a88;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.ai-btn-wrap a:hover{
	background: #93AAFE;
}


 @media (max-width: 768px) {
.get-started-ai {
	padding: 80px 0;
}
.get-started-overlay p {
	font-size: 15px;
}
}
.ai-hero-container {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
}
.ai-hero-content {
	position: relative;
	z-index: 2;
}
.ai-hero-title {
	color: #ffffff;
	font-size: 75px;
	font-style: normal;
	font-weight: 400;
	line-height: 80px;
	margin: 0 0 20px 0;
	letter-spacing: -3px;
}
.ai-hero-title span {
	font-weight: 200;
	color: #ffffff;
}
.ai-hero-subtitle {
	color: #ffffff;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
	margin-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.ai-hero-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.ai-explore-btn {
	background: #93AAFE;
	color: white;
	padding: 16px 32px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 4px 15px rgba(147, 170, 254, 0.3);
}
.ai-explore-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(147, 170, 254, 0.4);
}
.ai-explore-btn img {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
}
.ai-explore-btn:hover img {
	transform: translate(2px, -2px);
}
.ai-btn {
	padding: 10px 25px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}
.ai-btn-outline {
	border: 2px solid #ffffff;
	color: #ffffff;
	background-color: transparent;
}
.ai-btn-outline:hover {
	background-color: #ffffff;
	color: #000000;
}
/* AI Hero Background */
.ai-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('images/ai-hero-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.3;
	z-index: 1;
}

/* Responsive styles for AI Hero section */
@media (max-width: 1024px) {
.ai-hero-buttons {
	flex-direction: column;
	gap: 15px;
}
}
/* AI Transformation Section */
.ai-transformation-section {
	padding: 80px 0;
	background: #ffffff;
}
.ai-transformation-header h2 {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
	margin-bottom: 60px;
	text-align: center;
}
.ai-transformation-header h2 span {
	color: #93AAFE;
	font-weight: 500;
}
.ai-transformation-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 60px;
	align-items: start;
}
.ai-transform-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.ai-transform-icon {
	width: 46px;
	height: 46px;
	background: #93AAFE;
	opacity: 0.4;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ai-transform-icon img {
	width: 22px;
	height: 22px;
	filter: brightness(0) invert(1);
}
.ai-transform-card img {
	margin-bottom: 20px;
}
.ai-transform-card h3 {
	color: #202020;
	text-align: center;
	font-size: 21px;
	font-style: normal;
	font-weight: 300;
}
.ai-transform-card p {
	color: #202020;
	text-align: center;
	font-size: 17px;
	font-style: normal;
	font-weight: 300;
	line-height: 27px;/* 158.824% */
}
 @media (max-width: 1024px) {
.ai-transformation-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
}
 @media (max-width: 640px) {
.ai-transformation-header h2 {
	font-size: 36px;
}
.ai-transformation-grid {
	grid-template-columns: 1fr;
	gap: 25px;
}
}
 @media (max-width: 768px) {
.ai-hero-subtitle {
	font-size: 20px;
	font-weight: 300;
	color: #FFF;
}
.ai-hero-title {
	font-size: 40px;
}
}
/* Industries We Serve */
.industries-we-serve {
	padding: 20px 0 0px 0;
	background: #ffffff;
}
.industries-title {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
	margin-bottom: 60px;
	text-align: center;
}
.industries-title span {
	color: #93AAFE;
	font-weight: 500;
}
.industries-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.industry-card {
	position: relative;
	border-radius: 12px;
	background: #F3F4F8;
	border: 1px solid #E6E9F2;
	min-height: 220px;
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.industry-card:hover {
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}
.industry-overlay {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.industry-card:hover .industry-overlay {
	opacity: 1;
}
.industry-content {
	position: absolute;
	inset: 0;
	padding: 18px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 8px;
}
.industry-content h3 {
	color: #fff;
	font-size: 25px;
	font-weight: 300;
	line-height: 35px;
	letter-spacing: -1px;
	text-align: center;
}
.industry-card:hover .industry-content h3 {
	color: #ffffff;
}
.industry-content p {
	color: #FFF;
	font-size: 18px;
	font-weight: 300;
	line-height: 25px;
	display: none;
	text-align: center;
}
.industry-card:hover .industry-content p {
	display: block;
}
/* set overlay images via data attribute */
.industry-card[data-image] .industry-overlay {
	background-image: attr(data-image url);
}
 @supports not (background-image: attr(data-image url)) {
/* Fallback: set via inline style with JS on DOMContentLoaded */
}
 @media (max-width: 1024px) {
.industries-grid {
	grid-template-columns: repeat(2, 1fr);
}
}
 @media (max-width: 640px) {
.industries-grid {
	grid-template-columns: 1fr;
}
}
/* Why Choose Our AI Services Section */
.why-choose-section {
	padding: 100px 0;
	background: #ffffff;
}
.why-choose-graphic {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 500px;
}
.why-choose-image {
	max-width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: contain;
}
.why-choose-text h2 {
	color: #104;
	font-size: 48px;
	font-weight: 400;
	line-height: 58px;
	margin-bottom: 40px;
}
.why-choose-text h2 span {
	font-weight: 700;
	font-size: 56px;
}
.features-list {
	list-style: none;
	padding: 0;
	margin-bottom: 40px;
}
.features-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 20px;
	color: #202020;
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
}
.features-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 12px;
	height: 12px;
	background: #93AAFE;
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(147, 170, 254, 0.2);
}
.ai-audit-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #93AAFE 0%, #7B8FE6 100%);
	color: white;
	padding: 15px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(147, 170, 254, 0.3);
}
.ai-audit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(147, 170, 254, 0.4);
}
.btn-arrow {
	width: 24px;
	height: 24px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.ai-audit-btn:hover .btn-arrow {
	background: rgba(255, 255, 255, 0.3);
	transform: translateX(2px);
}
.btn-arrow img {
	width: 12px;
	height: 12px;
	filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
.why-choose-graphic {
	height: 300px;
}
.why-choose-image {
	max-height: 300px;
}
.why-choose-text h2 {
	font-size: 42px;
	line-height: 50px;
}
.why-choose-text h2 span {
	font-size: 48px;
}
}
 @media (max-width: 768px) {
.why-choose-section {
	padding: 60px 0;
}
.why-choose-text h2 {
	font-size: 36px;
	line-height: 42px;
}
.why-choose-text h2 span {
	font-size: 40px;
}
.features-list {
	gap: 20px;
}
.feature-content h3 {
	font-size: 18px;
}
.feature-content p {
	font-size: 15px;
}
}
 @media (max-width: 640px) {
.why-choose-graphic {
	height: 250px;
}
.abstract-network {
	width: 250px;
	height: 250px;
}
.why-choose-text h2 {
	font-size: 32px;
	line-height: 38px;
}
.why-choose-text h2 span {
	font-size: 36px;
}
.ai-audit-btn {
	padding: 12px 25px;
	font-size: 15px;
}
}
/* IT Solutions Hero Section */
.it-solutions-hero {
	position: relative;
	min-height: 650px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.it-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/it-solution-hero-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 1;
	z-index: 1;
}
.it-hero-main {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 850px;
	margin: 0 auto;
	padding: 200px 20px 180px 20px
}
.it-hero-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 40px;
}
.it-hero-heading {
	color: #0e1328;
	font-size: 75px;
	font-weight: 300;
	line-height: 85px;
	letter-spacing: -4px;
	margin: 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
	text-align: center;
	margin-bottom: 30px;
}
.it-hero-heading span {
	color: #93AAFE;
	font-weight: 500;
}
.it-hero-text {
	color: #0e1328;
	font-size: 22px;
	font-weight: 300;
	line-height: 30px;
	padding: 0;
	max-width: 900px;
	width: 100%;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 30px;
}
.it-hero-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.it-btn {
	padding: 16px 32px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 180px;
	justify-content: center;
}
.it-btn-main {
	background: linear-gradient(135deg, #394A88 0%, #5B6BC0 100%);
	color: white;
	box-shadow: 0 8px 25px rgba(57, 74, 136, 0.3);
}
.it-btn-main:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(57, 74, 136, 0.4);
}
.it-btn-main i {
	font-size: 14px;
	transition: transform 0.3s ease;
}
.it-btn-main:hover i {
	transform: translate(2px, -2px);
}
.it-btn-secondary {
	background: transparent;
	color: #394A88;
	border: 2px solid #394A88;
	font-weight: 600;
}
.it-btn-secondary:hover {
	background: #394A88;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(57, 74, 136, 0.3);
}

/* Responsive Design for IT Solutions Hero */
@media (max-width: 1024px) {
.it-btn {
	padding: 14px 28px;
	font-size: 16px;
	min-width: 160px;
}
}
 @media (max-width: 768px) {
.it-solutions-hero {
	min-height: 90vh;
}
.it-hero-main {
	padding: 100px 20px 60px;
}
.it-hero-actions {
	flex-direction: column;
	gap: 15px;
}
.it-btn {
	width: 100%;
	max-width: 280px;
}
}
 @media (max-width: 640px) {
.it-btn {
	padding: 12px 24px;
	font-size: 15px;
}
}
/* Statistics Section - Pixel Perfect */
.stats-section {
	padding: 100px 0 50px 0;
	background: #ffffff;
}
.stats-wrapper {
	display: flex;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 0;
}
.stats-left-column {
	width: 40%;
	padding-right: 60px;
}
.years-number {
	color: #93AAFE;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 120px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -2px;
}
.years-label {
	color: #93AAFE;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 16px;
	letter-spacing: -1px;
}
.years-subtitle {
	color: #93AAFE;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 22px;
	margin-left: 4px;
}
.success-link-text {
	color: #333333;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
}
.success-stories {
	color: #333333;
	font-weight: 300;
	text-decoration: none;
	transition: color 0.3s ease;
}
.success-stories:hover {
	color: #93AAFE;
}
.stats-divider {
	width: 1px;
	height: 320px;
	background: #E0E0E0;
	margin: 0 40px;
	flex-shrink: 0;
}
.stats-right-column {
	width: 60%;
	padding-left: 20px;
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px 40px;
	max-width: 600px;
}
.stat-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.stat-value {
	color: #394A88;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 64px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -1px;
}
.stat-description {
	color: #333333;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.4;
	text-align: center;
	max-width: 200px;
}
}

/* Responsive Design */
@media (max-width: 1200px) {
.stats-wrapper {
	max-width: 1000px;
}
.stats-left-column {
	padding-right: 40px;
}
.stats-divider {
	margin: 0 30px;
}
.stats-grid {
	gap: 40px 30px;
}
}
 @media (max-width: 1024px) {
.stats-section {
	padding: 80px 0;
}
.stats-wrapper {
	flex-direction: column;
	gap: 50px;
}
.stats-left-column {
	width: 100%;
	padding-right: 0;
	text-align: center;
}
.stats-divider {
	display: none;
}
.stats-right-column {
	width: 100%;
	padding-left: 0;
}
.years-subtitle {
	margin-left: 0;
}
.years-number {
	font-size: 100px;
}
.years-label {
	font-size: 40px;
}
.stat-value {
	font-size: 56px;
}
}
 @media (max-width: 768px) {
.stats-section {
	padding: 60px 0;
}
.stats-wrapper {
	gap: 40px;
}
.years-number {
	font-size: 80px;
}
.years-label {
	font-size: 32px;
}
.years-subtitle {
	font-size: 18px;
}
.stats-grid {
	gap: 30px 20px;
}
.stat-value {
	font-size: 48px;
}
.stat-description {
	font-size: 20px;
}
}
 @media (max-width: 640px) {
.stats-grid {
	grid-template-columns: 1fr;
	gap: 25px;
}
.years-number {
	font-size: 64px;
}
.years-label {
	font-size: 28px;
}
.years-subtitle {
	font-size: 16px;
}
.stat-value {
	font-size: 40px;
}
.stat-description {
	font-size: 20px;
}
}
.years-line {
	display: flex;
	gap: 10px;
}
/* Why Choose Us Section */
.why-choose-us-section {
	padding: 100px 0;
	background-color: #ffffff;
	background-image: url('../images/puzzle-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}
.why-choose-content {
	position: relative;
	z-index: 2;
	text-align: center;
}
.why-choose-title {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
	text-align: center;
	margin-bottom: 50px;
}
.why-choose-title span {
	color: #93AAFE;
	font-weight: 500;
}
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}
.benefit-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	padding: 20px 15px;
	transition: transform 0.3s ease;
}
.benefit-card:hover {
	transform: translateY(-5px);
}
.benefit-icon {
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, #93AAFE 0%, #7B8FE6 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 28px;
	box-shadow: 0 6px 20px rgba(147, 170, 254, 0.3);
}
.benefit-title {
	color: #202020;
	text-align: center;
	font-size: 24px;
	font-weight: 400;
	line-height: 30px;
}
.benefit-description {
	color: #202020;
	text-align: center;
	font-size: 19px;
	font-weight: 300;
	line-height: 27px;
}
.cta-container {
	text-align: center;
}
.join-journey-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #93AAFE 0%, #7B8FE6 100%);
	color: white;
	padding: 16px 32px;
	border-radius: 30px;
	text-decoration: none;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(147, 170, 254, 0.3);
}
.join-journey-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(147, 170, 254, 0.4);
}
.btn-arrow {
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.join-journey-btn:hover .btn-arrow {
	background: rgba(255, 255, 255, 0.3);
	transform: translate(2px, -2px);
}
.btn-arrow i {
	font-size: 10px;
	transform: rotate(45deg);
}

/* Responsive Design for Why Choose Us Section */
@media (max-width: 1024px) {
.why-choose-title {
	font-size: 56px;
	line-height: 1.2;
	margin-bottom: 50px;
}
.benefits-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}
.benefit-icon {
	width: 60px;
	height: 60px;
	font-size: 24px;
}
.benefit-title {
	font-size: 20px;
}
.benefit-description {
	font-size: 15px;
}
}
 @media (max-width: 768px) {
.why-choose-us-section {
	padding: 80px 0;
}
.why-choose-title {
	font-size: 42px;
	line-height: 1.2;
	margin-bottom: 40px;
}
.benefits-grid {
	grid-template-columns: 1fr;
	gap: 25px;
	margin-bottom: 40px;
}
.benefit-card {
	padding: 15px 10px;
}
.benefit-icon {
	width: 50px;
	height: 50px;
	font-size: 20px;
}
.benefit-title {
	font-size: 18px;
}
.benefit-description {
	font-size: 14px;
	max-width: 100%;
}
.join-journey-btn {
	padding: 14px 28px;
	font-size: 15px;
}
}
 @media (max-width: 640px) {
.why-choose-title {
	font-size: 32px;
}
.benefit-title {
	font-size: 20px;
}
.benefit-description {
	font-size: 20px;
}
}
/* BPO Hero Section */
.bpo-hero {
	padding: 190px 0 190px 0;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	background-image: url(../images/bg-bpo.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 1;
	z-index: 1;
}
.bpo-hero-content {
	grid-template-columns: 60% 40%;
	gap: 80px;
	align-items: center;
}
.bpo-hero-text {
	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.bpo-hero-title {
	color: #0e1328;
	font-size: 75px;
	font-weight: 300;
	line-height: 85px;
	letter-spacing: -4px;
	margin: 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
}
.bpo-hero-title span {
	color: #93AAFE;
	font-weight: 500;
}
.bpo-hero-description {
	color: #0e1328;
	font-size: 22px;
	font-weight: 300;
	line-height: 30px;
	padding: 0;
	max-width: 700px;
	width: 100%;
	margin-bottom: 0px;
}
.bpo-hero-buttons {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
}
.bpo-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #394A88;
	color: white;
	padding: 16px 32px;
	border-radius: 30px;
	text-decoration: none;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(57, 74, 136, 0.3);
}
.bpo-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(57, 74, 136, 0.4);
}
.bpo-btn-secondary {
	display: inline-flex;
	align-items: center;
	background: transparent;
	color: #93AAFE;
	border: 2px solid #93AAFE;
	padding: 14px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}
.bpo-btn-secondary:hover {
	background: #93AAFE;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(147, 170, 254, 0.3);
}
.btn-arrow {
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.bpo-btn-primary:hover .btn-arrow {
	background: rgba(255, 255, 255, 0.3);
	transform: translate(2px, -2px);
}
.btn-arrow i {
	font-size: 10px;
	transform: rotate(45deg);
}
.bpo-hero-visual {
	position: absolute;
	top: -6px;
	left: 21%;
}
.bpo-graphic {
	position: relative;
	width: 400px;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.concentric-circles {
	position: relative;
	width: 100%;
	height: 100%;
}
.circle {
	position: absolute;
	border-radius: 50%;
	border: 2px solid #93AAFE;
	opacity: 0.3;
	animation: pulse 4s ease-in-out infinite;
}
.circle-1 {
	width: 100px;
	height: 100px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 0s;
}
.circle-2 {
	width: 200px;
	height: 200px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 0.5s;
}
.circle-3 {
	width: 300px;
	height: 300px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 1s;
}
.circle-4 {
	width: 400px;
	height: 400px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 1.5s;
}
 @keyframes pulse {
 0%, 100% {
 opacity: 0.1;
 transform: translate(-50%, -50%) scale(1);
}
 50% {
 opacity: 0.4;
 transform: translate(-50%, -50%) scale(1.05);
}
}

/* Responsive Design for BPO Hero */
@media (max-width: 1024px) {
.bpo-hero-content {
	grid-template-columns: 1fr;
	gap: 60px;
	text-align: center;
}
.bpo-hero-buttons {
	justify-content: center;
}
.bpo-graphic {
	width: 300px;
	height: 300px;
}
.circle-4 {
	width: 300px;
	height: 300px;
}
}
 @media (max-width: 768px) {
.bpo-hero {
	padding: 100px 0 80px;
}
.bpo-hero-buttons {
	flex-direction: column;
	gap: 15px;
}
.bpo-btn-primary, .bpo-btn-secondary {
	width: 100%;
	max-width: 280px;
	justify-content: center;
}
.bpo-graphic {
	width: 250px;
	height: 250px;
}
.circle-3 {
	width: 250px;
	height: 250px;
}
.circle-4 {
	width: 250px;
	height: 250px;
}
}
 @media (max-width: 640px) {
.bpo-btn-primary, .bpo-btn-secondary {
	padding: 12px 24px;
	font-size: 15px;
}
}
/* Everything You Need Section */
.everything-section {
	background-color: #ffffff;
}
.everything-content {
	text-align: center;
}
.everything-title {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
	text-align: center;
	margin-bottom: 30px;
	padding-top: 60px;
}
.everything-title span {
	color: #93AAFE;
	font-weight: 500;
}
.everything-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.everything-grid .everything-card:nth-child(5) {
	grid-column: 2;
	grid-row: 2;
}
.everything-grid .everything-card:nth-child(6) {
	grid-column: 3;
	grid-row: 2;
}
.everything-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0px;
	padding: 20px 20px;
	transition: transform 0.3s ease;
}
.everything-card:hover {
	transform: translateY(-5px);
}
.everything-card img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}
.everything-card h3.everything-title {
	color: #101010;
	text-align: center;
	font-size: 25px;
	font-weight: 300;
	line-height: 30px;
	margin: 0;
	letter-spacing: 0;
}
.everything-description {
	color: #202020;
	text-align: center;
	font-size: 17px;
	font-weight: 300;
	line-height: 25px;
	font-size: 19px;
	font-weight: 300;
}

/* Responsive Design for Everything Section */
@media (max-width: 1024px) {
.everything-content h2.everything-title {
	margin-bottom: 60px;
}
.everything-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 30px;
}
.everything-grid .everything-card:nth-child(5) {
	grid-column: 2;
	grid-row: 2;
}
.everything-grid .everything-card:nth-child(6) {
	grid-column: 3;
	grid-row: 2;
}
.everything-card img {
	width: 50px;
	height: 50px;
}
.everything-card h3.everything-title {
	font-size: 20px;
}
.everything-description {
	font-size: 15px;
}
}
 @media (max-width: 768px) {
.everything-content h2.everything-title {
	margin-bottom: 50px;
}
.everything-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.everything-grid .everything-card:nth-child(5) {
	grid-column: 1;
	grid-row: 3;
}
.everything-grid .everything-card:nth-child(6) {
	grid-column: 2;
	grid-row: 3;
}
.everything-card {
	padding: 20px 15px;
}
.everything-card img {
	width: 45px;
	height: 45px;
	margin-bottom: 15px;
}
.everything-card h3.everything-title {
	font-size: 18px;
}
.everything-description {
	font-size: 14px;
	max-width: 100%;
}
}
 @media (max-width: 640px) {
.everything-grid {
	grid-template-columns: 1fr;
	gap: 0px;
}
.everything-grid .everything-card:nth-child(5) {
	grid-column: 1;
	grid-row: 5;
}
.everything-grid .everything-card:nth-child(6) {
	grid-column: 1;
	grid-row: 6;
}
.everything-card h3.everything-title {
	font-size: 16px;
}
.everything-description {
	font-size: 20px;
	line-height: 26px;
}
}
/* Maximize Savings Section */
.maximize-section {
	padding: 100px 0 100px 0;
	background-color: #ffffff;
}
.maximize-content {
	text-align: center;
}
.maximize-title {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
	text-align: center;
	margin-bottom: 70px;
}
.maximize-title span {
	color: #93AAFE;
	font-weight: 500;
}
.maximize-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 250px;
}
.maximize-card {
	border-radius: 20px;
	padding: 40px 24px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.maximize-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.maximize-card-white {
	background-color: #ffffff;
	border: 1px solid #e5e7eb;
}
.maximize-card-blue {
	background-color: #93AAFE;
	color: white;
}
.maximize-card-dark {
	background-color: #394A88;
	color: white;
}
.maximize-card:nth-child(2), .maximize-card:nth-child(4) {
	transform: translateY(-50%);
}
.maximize-percentage {
	text-align: center;
	font-size: 72px;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -1.44px;
	margin-bottom: 8px;
}
.maximize-metric {
	text-align: center;
	font-size: 25px;
	font-weight: 300;
	line-height: normal;
	letter-spacing: -0.56px;
	margin-bottom: 16px;
}
.maximize-description {
	text-align: center;
	font-size: 17px;
	font-weight: 300;
	line-height: normal;
}

/* Responsive Design for Maximize Section */
@media (max-width: 1024px) {
.maximize-title {
	margin-bottom: 60px;
}
.maximize-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}
.maximize-percentage {
	font-size: 48px;
}
.maximize-metric {
	font-size: 20px;
}
.maximize-description {
	font-size: 15px;
}
}
 @media (max-width: 768px) {
.maximize-section {
	padding: 80px 0;
}
.maximize-title {
	margin-bottom: 50px;
}
.maximize-grid {
	grid-template-columns: 1fr;
	gap: 20px;
}
.maximize-card {
	padding: 30px 25px;
}
.maximize-percentage {
	font-size: 40px;
}
.maximize-metric {
	font-size: 18px;
}
.maximize-description {
	font-size: 14px;
}
}
 @media (max-width: 640px) {
.maximize-percentage {
	font-size: 36px;
}
.maximize-metric {
	font-size: 25px;
	margin: 0;
}
.maximize-description {
	font-size: 20px;
}
}
/* Ready to Outsource Section */
.outsource-hero {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.outsource-background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/out-source-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}
.outsource-content {
	position: relative;
	z-index: 3;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}
.outsource-text {
	align-items: center;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.outsource-title {
	color: #FFF;
	font-size: 75px;
	font-weight: 300;
	line-height: 80px;
	letter-spacing: -4px;
	margin: 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
}
.outsource-title span {
	font-weight: 500;
	color: #fff
}
.outsource-buttons {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
}
.outsource-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #93AAFE;
	color: white;
	padding: 16px 32px;
	border-radius: 30px;
	text-decoration: none;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(147, 170, 254, 0.3);
}
.outsource-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(147, 170, 254, 0.4);
}
.outsource-btn-secondary {
	border: 1px solid #fff;
	color: #fff;
	background-color: transparent;
	font-weight: 700;
}
.outsource-btn-secondary:hover {
	background: #ffffff;
	color: #394A88;
}
.outsource-btn-arrow {
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.outsource-btn-primary:hover .outsource-btn-arrow {
	background: rgba(255, 255, 255, 0.3);
	transform: translate(2px, -2px);
}
.outsource-btn-arrow i {
	font-size: 10px;
	transform: rotate(45deg);
}

/* Responsive Design for Outsource Section */
@media (max-width: 1024px) {
.outsource-title {
	font-size: 56px;
	line-height: 1.2;
}
.outsource-text {
	max-width: 100%;
	text-align: center;
}
.outsource-buttons {
	justify-content: center;
}
}
 @media (max-width: 768px) {
.outsource-hero {
	min-height: 30vh;
}
.outsource-content {
	padding: 80px 0;
}
.outsource-title {
	font-size: 42px;
	line-height: 1.2;
}
.outsource-buttons {
	flex-direction: column;
	gap: 15px;
}
.outsource-btn-primary, .outsource-btn-secondary {
	width: 100%;
	max-width: 280px;
	justify-content: center;
}
.outsource-title {
	font-size: 40px;
}
}
 @media (max-width: 640px) {
.outsource-title {
	font-size: 36px;
}
.outsource-btn-primary, .outsource-btn-secondary {
	padding: 12px 24px;
	font-size: 15px;
}
}
/* Trusted By Section */
.trusted-section {
	padding: 100px 0;
	background-color: #ffffff;
}
.trusted-title {
	color: #101010;
	text-align: center;
	font-size: 30px;
	font-weight: 400;
	line-height: 46px;
	margin-bottom: 50px;
}
.trusted-logos {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
}
.trusted-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}
.trusted-logo:hover {
	opacity: 0.7;
}
.trusted-logo-img {
	height: 40px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
	filter: grayscale(100%) opacity(0.6);
	transition: all 0.3s ease;
}
.trusted-logo:hover .trusted-logo-img {
	filter: grayscale(0%) opacity(1);
}

/* Responsive Design for Trusted Section */
@media (max-width: 1024px) {
.trusted-title {
	font-size: 28px;
	line-height: 1.2;
	margin-bottom: 50px;
}
.trusted-logos {
	gap: 40px;
}
.trusted-logo-img {
	height: 35px;
	max-width: 100px;
}
}
 @media (max-width: 768px) {
.trusted-section {
	padding: 80px 0;
}
.trusted-title {
	font-size: 24px;
	line-height: 1.2;
	margin-bottom: 40px;
}
.trusted-logos {
	gap: 30px;
	justify-content: center;
}
.trusted-logo-img {
	height: 30px;
	max-width: 80px;
}
}
 @media (max-width: 640px) {
.trusted-title {
	font-size: 30px;
}
.trusted-logos {
	gap: 20px;
	flex-wrap: wrap;
}
.trusted-logo {
	flex: 0 0 calc(33.333% - 20px);
	margin-bottom: 20px;
}
.trusted-logo-img {
	height: 25px;
	max-width: 70px;
}
}
 @media (max-width: 480px) {
.trusted-logos {
	gap: 15px;
}
.trusted-logo {
	flex: 0 0 calc(50% - 15px);
}
.trusted-logo-img {
	height: 22px;
	max-width: 60px;
}
}
/* Industry Hero Section */
.industry-hero {
	position: relative;
	/* min-height: 100vh; */
	display: flex;
	align-items: center;
	overflow: hidden;
	margin-top: 88px;
}
.industry-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/global-connections.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}
.industry-hero-content {
	position: relative;
	z-index: 3;
	padding: 90px 0;
}
.industry-hero-title {
	color: #fff;
	font-size: 75px;
	font-weight: 300;
	line-height: 85px;
	letter-spacing: -4px;
	margin: 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
	margin-bottom: 20px;
}
.industry-hero-title span {
	font-weight: 500;
}
.industry-hero-description {
	color: #fff;
	font-size: 22px;
	font-weight: 300;
	line-height: 30px;
	padding: 0;
	max-width: 900px;
	width: 100%;
	margin-bottom: 30px;
}
.industry-hero-buttons {
	display: flex;
	gap: 20px;
	align-items: center;
}
.industry-btn-primary {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
	color: #ffffff;
	padding: 16px 32px;
	border-radius: 30px;
	text-decoration: none;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}
.industry-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}
.industry-btn-arrow {
	width: 24px;
	height: 24px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 12px;
	transition: all 0.3s ease;
}
.industry-btn-arrow i {
	font-size: 12px;
	color: #ffffff;
	transform: rotate(45deg);
}
.industry-btn-primary:hover .industry-btn-arrow {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}
.industry-btn-secondary {
	display: inline-flex;
	align-items: center;
	background: transparent;
	color: #ffffff;
	border: 2px solid #60a5fa;
	padding: 14px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}
.industry-btn-secondary:hover {
	background: #60a5fa;
	color: #1a1f3a;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(96, 165, 250, 0.3);
}

/* Responsive Design for Industry Hero */
@media (max-width: 1024px) {
.industry-hero-text {
	max-width: 100%;
	text-align: center;
}
.about-hero-text {
	max-width: 100%;
	text-align: center;
}
.industry-hero-title {
	font-size: 55px;
	line-height: 65px;
	text-align: center;
}
.industry-hero-description {
	text-align: center;
}
}
 @media (max-width: 768px) {
.industry-hero {
	position: relative;
	/* min-height: 100vh; */
	display: flex;
	align-items: center;
	overflow: hidden;
}
.about-hero {
	position: relative;
	/* min-height: 100vh; */
	display: flex;
	align-items: center;
	overflow: hidden;
	margin-top: 76px !important;
}
.industry-hero-title {
	font-size: 45px;
	line-height: 55px;
}
.about-hero-title {
	font-size: 45px;
	line-height: 55px;
}
.industry-hero-description {
	font-size: 16px;
	line-height: 26px;
}
.about-hero-description {
	font-size: 16px;
	line-height: 26px;
}
.industry-hero-buttons {
	flex-direction: column;
	gap: 15px;
}
.about-hero-buttons {
	flex-direction: column;
	gap: 15px;
}
.industry-btn-primary, .industry-btn-secondary, .about-hero-btn-primary, .about-hero-btn-secondary {
	width: 100%;
	justify-content: center;
}
}
 @media (max-width: 640px) {
.industry-hero-title, .about-hero-title {
	font-size: 35px;
	line-height: 45px;
}
.industry-hero-description {
	font-size: 15px;
	line-height: 24px;
}
.about-hero-description {
	font-size: 15px;
	line-height: 24px;
}
}
/* Core Business Needs Section */
.core-business-section {
	position: relative;
	padding: 120px 0;
	background-color: #ffffff;
	overflow: hidden;
}
.core-business-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/puzzle-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}
.core-business-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 600px;
}
.core-business-text {
	text-align: center;
	margin-bottom: 80px;
	max-width: 600px;
	margin: 0 auto;
	z-index: 3;
}
.core-business-title {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 55px;
	margin: 0;
	padding: 0;
	text-align: center;
	margin-bottom: 10px;
}
.core-business-title span {
	color: #93AAFE;
	font-weight: 500;
}
.core-business-description {
	color: #0e1328;
	font-size: 22px;
	font-weight: 300;
	line-height: 30px;
	padding: 0;
	margin-bottom: 30px;
}
.core-business-cards {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.core-card {
	background: #ffffff;
	border: 2px solid #e0e7ff;
	border-radius: 12px;
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: absolute;
	min-width: 327px;
	pointer-events: auto;
}
.core-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	border-color: #3b82f6;
}
.core-card-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}
.core-card-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.core-card-title {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0.2px;
}
/* Position cards at actual corners */
.core-card-top-left {
	top: 40px;
	left: 40px;
}
.core-card-top-right {
	top: 40px;
	right: 40px;
}
.core-card-bottom-left {
	bottom: 40px;
	left: 40px;
}
.core-card-bottom-right {
	bottom: 40px;
	right: 40px;
}

/* Responsive Design for Core Business Section */
@media (max-width: 1024px) {
.core-business-section {
	padding: 100px 0;
}
.core-business-description {
	font-size: 16px;
	line-height: 26px;
}
.core-card {
	width: 180px;
	height: 140px;
	padding: 20px 15px;
}
.core-card-icon {
	width: 45px;
	height: 45px;
	margin-bottom: 12px;
}
.core-card-title {
	font-size: 15px;
}
.core-card-top-left, .core-card-top-right {
	top: 30px;
}
.core-card-bottom-left, .core-card-bottom-right {
	bottom: 30px;
}
.core-card-top-left, .core-card-bottom-left {
	left: 30px;
}
.core-card-top-right, .core-card-bottom-right {
	right: 30px;
}
}
 @media (max-width: 768px) {
.core-business-section {
	padding: 80px 0;
}
.core-business-content {
	min-height: 500px;
}
.core-business-text {
	margin-bottom: 60px;
}
.core-business-description {
	font-size: 15px;
	line-height: 24px;
}
.core-card {
	width: 160px;
	height: 120px;
	padding: 15px 10px;
}
.core-card-icon {
	width: 40px;
	height: 40px;
	margin-bottom: 10px;
}
.core-card-title {
	font-size: 14px;
	line-height: 20px;
}
.core-card-top-left, .core-card-top-right {
	top: 20px;
}
.core-card-bottom-left, .core-card-bottom-right {
	bottom: 20px;
}
.core-card-top-left, .core-card-bottom-left {
	left: 20px;
}
.core-card-top-right, .core-card-bottom-right {
	right: 20px;
}
}
 @media (max-width: 640px) {
.core-business-cards {
	position: relative;
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 20px;
	height: auto;
	max-width: 400px;
	margin: 0 auto;
}
.core-card {
	position: relative;
	width: 100%;
	height: 120px;
	padding: 15px 10px;
}
.core-card-top-left, .core-card-top-right, .core-card-bottom-left, .core-card-bottom-right {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
}
.core-card-icon {
	width: 35px;
	height: 35px;
	margin-bottom: 8px;
}
.core-card-title {
	font-size: 22px;
	line-height: 18px;
	font-weight: 300
}
}
/* Bespoke Industry Solutions Section */
.bespoke-section {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.bespoke-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/bespoke-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}
.bespoke-content {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.bespoke-text {
	text-align: center;
	max-width: 1000px;
	padding: 100px 0;
}
.bespoke-title {
	color: #fff;
	font-size: 75px;
	font-weight: 300;
	line-height: 85px;
	letter-spacing: -4px;
	margin: 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
	margin-bottom: 20px;
	text-align: center
}
.bespoke-title span {
	font-weight: 500;
}



/* Responsive Design for Bespoke Section */
@media (max-width: 1024px) {
.bespoke-text {
	max-width: 700px;
}
}
 @media (max-width: 768px) {
.bespoke-section {
	min-height: 30vh;
}
.bespoke-title {
	font-size: 40px !important;
}
}
 @media (max-width: 640px) {
.bespoke-text {
	padding: 0 15px;
}
}
/* Sectors We've Served Section */
.sectors-section {
	padding: 70px 0 70px 0;
	background-color: #ffffff;
}
.sectors-main-title {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 55px;
	margin: 0;
	padding: 0;
	text-align: center;
	margin-bottom: 60px;
}
.sectors-main-title span {
	color: #93AAFE;
	font-weight: 500;
}
.sectors-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 20px;
}
.sector-card {
	position: relative;
	/* border-radius: 16px; */
	overflow: hidden;
	height: 300px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}
/* 
.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} */

.sector-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.sector-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
/* .sector-card:hover .sector-image img {
    transform: scale(1.05);
} */

.sector-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(to top, rgba(57, 74, 136, 0.9) 0%, rgba(57, 74, 136, 0) 100%);
	padding: 20px 25px;
	color: #ffffff;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: center;
	opacity: 0;
	transform: translateY(-100%);
	transition: all 0.3s ease;
}
.sector-card:hover .sector-overlay {
	opacity: 1;
	transform: translateY(0);
}
.sector-title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
	margin: 0 0 12px 0;
	text-align: center;
}
.sector-description {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	margin: 0;
	text-align: center;
	opacity: 0.9;
}

/* Responsive Design for Sectors Section */
@media (max-width: 1024px) {
.sectors-section {
	padding: 100px 0;
}
.sectors-grid {
	gap: 30px;
}
.sector-card {
	height: 350px;
}
.sector-overlay {
	height: 25%;
	padding: 15px 20px;
}
.sector-title {
	font-size: 22px;
	line-height: 28px;
}
.sector-description {
	font-size: 13px;
	line-height: 18px;
}
}
 @media (max-width: 768px) {
.sectors-section {
	padding: 80px 0;
}
.sectors-grid {
	grid-template-columns: 1fr;
	grid-template-rows: repeat(4, 1fr);
	gap: 25px;
	max-width: 500px;
}
.sector-card {
	height: 300px;
}
.sector-overlay {
	height: 25%;
	padding: 12px 15px;
}
.sector-title {
	font-size: 20px;
	line-height: 26px;
}
.sector-description {
	font-size: 12px;
	line-height: 16px;
}
}
 @media (max-width: 640px) {
.sector-card {
	height: 250px;
}
.sector-overlay {
	height: 25%;
	padding: 10px 12px;
}
.sector-title {
	font-size: 18px;
	line-height: 24px;
}
.sector-description {
	font-size: 11px;
	line-height: 15px;
}
}
/* Contact Form Section */
.contact-form-section {
	padding: 120px 0 40px 0;
	background-color: #ffffff;
}
.contact-form-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 60px;
}
.contact-form-title {
	flex: 1;
}
.contact-main-title {
	color: #0e1328;
	font-size: 75px;
	font-weight: 300;
	line-height: 85px;
	letter-spacing: -4px;
	margin: 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
}
.contact-main-title span {
	font-weight: 500;
}
.contact-main-title span span {
	color: #93AAFE;
}
.form-submit img {
	position: relative;
	top: -14px;
	right: -29px;
}
.contact-social-icons {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-top: 10px;
	flex-direction: column;
}
.social-icon {
	width: 45px;
	height: 45px;
	background: #ffffff;
	border: 1px solid #e0e7ff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #60a5fa;
	text-decoration: none;
	font-size: 18px;
	transition: all 0.3s ease;
}
.social-icon:hover {
	background: #60a5fa;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}
.form-row {
	display: grid;
	gap: 20px;
	margin-bottom: 25px;
}
.form-row-three {
	grid-template-columns: 1fr 1fr 1fr;
}
.form-row-two {
	grid-template-columns: 1fr 1fr;
}
.form-row-one {
	grid-template-columns: 1fr;
}
.form-group {
	display: flex;
	flex-direction: column;
}
.form-label {
	color: rgba(16, 16, 16, 0.70);
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
	padding: 14px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 15px;
	color: #101010;
	background: #ffffff;
	transition: all 0.3s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
	border-color: #60a5fa;
	box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.1);
}
.form-textarea {
	resize: vertical;
	min-height: 120px;
}
.phone-input-group {
	display: flex;
	gap: 10px;
}
.country-code-select {
	flex: 0 0 100px;
	padding: 14px 12px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 15px;
	color: #101010;
	background: #ffffff;
	cursor: pointer;
}
.phone-input {
	flex: 1;
}
.number-input-group {
	display: flex;
	align-items: center;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	overflow: hidden;
}
.number-btn {
	width: 40px;
	height: 48px;
	background: #f8fafc;
	border: none;
	color: #64748b;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.number-btn:hover {
	background: #e2e8f0;
	color: #60a5fa;
}
.number-input {
	flex: 1;
	padding: 14px 16px;
	border: none;
	text-align: center;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #101010;
	background: #ffffff;
}
.number-input:focus {
	outline: none;
}
.form-submit {
	display: flex;
	justify-content: flex-start;
}
.send-message-btn {
	display: inline-flex;
	align-items: center;
	background: #60a5fa;
	color: #ffffff;
	padding: 16px 32px;
	border: none;
	border-radius: 25px;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(96, 165, 250, 0.2);
}
.send-message-btn:hover {
	background: #3b82f6;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}
.btn-arrow {
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 10px;
	transition: all 0.3s ease;
}
.btn-arrow i {
	font-size: 10px;
	color: #ffffff;
	transform: rotate(45deg);
}
.send-message-btn:hover .btn-arrow {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

/* Responsive Design for Contact Form */
@media (max-width: 1024px) {
.contact-form-header {
	align-items: center;
}
.form-row-three {
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.form-row-three .form-group:last-child {
	grid-column: 1 / -1;
}
}
 @media (max-width: 768px) {
.contact-form-section {
	padding: 80px 0;
}
.contact-form-header {
	margin-bottom: 40px;
}
.form-row-three, .form-row-two {
	grid-template-columns: 1fr;
	gap: 20px;
}
.phone-input-group {
	flex-direction: column;
	gap: 10px;
}
.country-code-select {
	flex: none;
	width: 100%;
}
}
 @media (max-width: 640px) {
.contact-social-icons {
	gap: 15px;
}
.social-icon {
	width: 45px;
	height: 45px;
	font-size: 18px;
}
.form-input, .form-select, .form-textarea {
	padding: 14px 16px;
	font-size: 15px;
}
.send-message-btn {
	padding: 16px 30px;
	font-size: 15px;
}
}
/* about section css */
.about-hero {
	position: relative;
	/* min-height: 100vh; */
	display: flex;
	align-items: center;
	overflow: hidden;
	margin-top: 88px;
}
.about-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/about-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}
.about-hero-content {
	position: relative;
	z-index: 3;
	padding: 200px 0 100px 0;
}
.about-hero-title {
	color: #fff;
	font-size: 75px;
	font-weight: 300;
	line-height: 85px;
	letter-spacing: -4px;
	margin: 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
	margin-bottom: 20px;
}
.about-hero-title span {
	font-weight: 500;
}
.about-hero-description {
	color: #fff;
	font-size: 22px;
	font-weight: 300;
	line-height: 30px;
	padding: 0;
	width: 1000px;
	margin-bottom: 30px;
}
.about-hero-buttons {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
	margin-top: 45px;
}
.about-hero-text {
	place-content: center;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.about-hero-description {
	text-align: center;
	margin: auto;
}
/* Who We Are Section */
.who-we-are {
	padding: 80px 0;
	background-color: #ffffff;
}
.who-we-are-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.who-we-are-title {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}
.who-we-are-title span {
	color: #93AAFE;
	font-weight: 500;
}
.who-we-are-description {
	color: #0e1328;
	font-size: 22px;
	font-weight: 300;
	line-height: 40px;
	padding: 0;
	max-width: 700px;
	width: 100%;
	margin-bottom: 30px;
}
.who-we-are-image img {
	width: 100%;
	height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
.who-we-are {
	padding: 60px 0;
}
.who-we-are-content {
	grid-template-columns: 1fr;
	gap: 40px;
}
.who-we-are-description {
	font-size: 16px;
}
}
/* What Sets Us Apart Section */
.what-sets-us-apart {
	padding: 0px 0 100px 0;
	background-color: #ffffff;
}
.section-header {
	text-align: center;
	margin-bottom: 80px;
}
.section-title {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
}
.section-title span {
	color: #93AAFE;
	font-weight: 500;
}
.section-description {
	color: #0e1328;
	font-size: 22px;
	font-weight: 300;
	line-height: 30px;
	padding: 0;
	max-width: 1000px;
	width: 100%;
	margin-bottom: 30px;
	margin: 0 auto;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
.feature-card {
	padding: 40px 20px;
	border-radius: 16px;
	background-color: #ffffff;
	transition: all 0.3s ease;
}
.feature-card:hover {
	background-color: #ffffff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-10px);
}
.feature-number {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background-color: #f4f7ff;
	color: #394A88;
	font-size: 40px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: -0.4px;
	display: flex;
	align-items: center;
	/* justify-content: center; */
	margin-bottom: 40px;
	margin-left: 25px;
}
.feature-number span {
	margin-left: -25px;
	font-weight: 500;
}
.feature-title {
	color: #101010;
	font-size: 25px;
	font-weight: 300;
	line-height: 31px;
	margin-bottom: 20px;
	letter-spacing: -1px;
}
.feature-description {
	color: #202020;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

/* Responsive Design */
@media (max-width: 1024px) {
.features-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
}
 @media (max-width: 768px) {
.what-sets-us-apart {
	padding: 80px 0;
}
.section-header {
	margin-bottom: 60px;
}
.section-description {
	font-size: 16px;
}
.features-grid {
	grid-template-columns: 1fr;
	gap: 0px;
}
.feature-card {
	padding: 30px 20px;
}
.feature-card.featured {
	transform: none;
}
.feature-title {
	font-size: 20px;
	margin-bottom: 10px;
}
.feature-description {
	font-size: 1rem;
	line-height: 1.2;
}
}
/* Ready to Transform Section */
.ready-to-transform {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.transform-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/ready-to-transform.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}
.transform-content {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	padding: 80px 20px;
}
.transform-title {
	color: #fff;
	font-size: 75px;
	font-weight: 300;
	line-height: 85px;
	letter-spacing: -4px;
	margin: 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
	margin-bottom: 20px;
}
.transform-title span {
	font-weight: 500;
}
.transform-description {
	color: #FFF;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 45px;
}

/* Responsive Design */
@media (max-width: 1024px) {
.transform-title {
	font-size: 48px;
}
.transform-description {
	font-size: 17px;
}
.transform-btn {
	padding: 16px 32px;
	font-size: 17px;
}
}
 @media (max-width: 768px) {
.transform-content {
	padding: 60px 20px;
}
.transform-title {
	font-size: 36px;
	margin-bottom: 20px;
}
.transform-description {
	font-size: 16px;
	margin-bottom: 35px;
}
.transform-btn {
	padding: 14px 28px;
	font-size: 16px;
}
}
 @media (max-width: 480px) {
.transform-title {
	font-size: 28px;
}
.transform-description {
	font-size: 15px;
}
.transform-btn {
	padding: 12px 24px;
	font-size: 15px;
}
}
.custom-arrow-button {
	color: white;
	transition: all 0.3s ease;
	height: 50px;
	min-width: 160px;
	padding: 12px 35px 12px 25px;
	text-decoration: none;
	font-weight: 600;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}
.custom-arrow-button img {
	position: absolute;
	top: -3px;
	right: -6px;
	font-size: 14px;
	color: white;
	transition: all 0.3s ease;
	z-index: 10;
}
.custom-arrow-button:hover img {
	transform: rotate(45deg);
}
.ai-navbar-wrap .nav-container {
	border: none !important;
	margin: 0 auto;
}
.mobile-app-wraper {
	padding: 70px 0 40px 0;
	border-bottom: 1px solid #ececec;
}
.left-text-wraper {
	width: 50%;
	float: left;
}
.left-text-wraper h2 {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
}
.left-text-wraper h2 span {
	color: #93AAFE;
	font-weight: 500;
}
.left-text-wraper p {
	color: #0e1328;
	font-size: 18px;
	font-weight: 300;
	line-height: 26px;
	padding: 0;
	width: 700px;
	margin-bottom: 20px;
}
.clearfix {
	clear: both;
}
.text-image-mobile {
	width: 50%;
	float: left;
	text-align: center
}
.text-image-mobile img {
	width: 60%;
	position: relative;
	top: -30px;
}
.left-text-wraper .cta-container {
	text-align: left !important;
}
.portfolio-banner-wraper {
	background: url(../images/bg-portfolio.jpg) no-repeat top;
	background-size: cover;
	padding: 90px 0;
}
.portfolio-banner-wraper h4 {
	color: #FFF;
	font-size: 65px;
	font-weight: 300;
	line-height: 75px;
	letter-spacing: -4px;
	margin: 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
	text-align: center;
	margin-bottom: 30px;
}
.portfolio-banner-wraper h4 span {
	display: block;
	font-weight: 500;
}
.footer-main-wraper {
	background: #F4F6FF;
	padding: 30px 0 0 0;
}
.link-footer-wrp {
	width: 35%;
	float: left;
}
.link-footer-wrp .footer-heading {
	font-size: 25px;
	font-weight: 300;
	color: #0e1328;
	margin-bottom: 10px;
	line-height: 40px;
}
.link-footer-wrp ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.link-footer-wrp ul li {
	line-height: 30px;
	width: 48%;
	display: inline-block;
}
.link-footer-wrp ul li a {
	text-decoration: none;
	font-size: 18px;
	color: #0e1328;
	font-weight: 300;
}
.footer-subscribe-wrap {
	width: 30%;
	float: left;
}
.footer-subscribe-wrap .footer-heading {
	font-size: 25px;
	font-weight: 300;
	color: #0e1328;
	margin-bottom: 10px;
	line-height: 40px;
}
.footer-subscribe-wrap .form-group {
	position: relative;
	margin-bottom: 15px;
}
.footer-subscribe-wrap .form-group .form-control {
	height: 45px;
	border: 1.5px solid #93AAFE;
	border-radius: 30px;
	padding-left: 25px;
	width: 100%;
}
.footer-subscribe-wrap .form-group button {
	position: absolute;
	border-radius: 30px;
	top: 0;
	right: 0;
	background: #93AAFE;
	outline: none;
	border: none;
	height: 45px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 0 30px;
}
.footer-subscribe-wrap .footer-socail-wrap a {
	text-decoration: none;
	margin: 0 3px;
}
.footer-subscribe-wrap .footer-socail-wrap a img {
	width: 25px;
}
.bottom-footer-wrap {
	padding: 20px 0 20px 0;
	margin: 0 auto;
	border-top: 1px solid #C4D0FF;
	margin-top: 30px;
}
.bottom-footer-wrap .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 24px;
	font-weight: 600;
	color: #101010;
}
.footer-logo img {
	width: 100px;
}
.bottom-footer-wrap p {
	text-align: center;
	font-weight: 300;
	font-size: 14px;
	color: #0e1328;
	padding-top: 8px;
}
.btn-bottom-footer {
	text-align: right;
}
.btn-bottom-footer a {
	text-align: center;
	font-weight: 300;
	font-size: 14px;
	color: #0e1328;
	text-decoration: none;
	margin-left: 15px;
}
.enterprise-image img {
	width: 82% !important;
}
.mobile-app-wraper-last img {
	width: 82% !important;
}
.industries-we-serve ul {
	list-style: none;
}
.industries-we-serve ul li {
	width: 33%;
	float: left;
	padding-bottom: 30px;
}
.industries-we-serve .ai-btn-wrap {
    margin-top: 0px;
	margin-bottom: 60px;
}
.industry-list-wrap .industry-image {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	margin: 0 auto;
	overflow: hidden;
	background-size: cover !important
}
.industry-list-wrap .industry-image img {
	width: 100%
}
.industry-list-wrap .industry-image-text {
	text-align: center;
	margin-top: 20px;
}
.industry-image-text h5 {
	font-size: 25px;
	font-weight: 300;
}
.industry-image-text p {
	color: #202020;
	text-align: center;
	font-size: 17px;
	font-style: normal;
	font-weight: 300;
	line-height: 27px;
	padding: 0 10px;
	height: 84px;
	overflow: hidden;
}
.list-it-services-wrapeer ul {
	list-style: none;
	margin-bottom: 80px;
	margin-top: 30px;
}
.list-it-services-wrapeer ul li {
	border: 1px solid #e5e5e5;
    padding: 25px 0;
    display: flex;
    gap: 29px;
    align-items: start;
    width: 80%;
    margin: 0 auto;
    justify-content: space-between;
    border-radius: 10px;
    padding: 23px;
    margin-bottom: 27px;
}
.no-service-wrap {
	width: 120px;
	height: 100px;
	text-align: center;
	font-size: 55px;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	align-items: center;
	display: flex;
	justify-content: center;
	color: #394a88;
	font-weight: 600;
}
.content-show h5 {
	font-size: 20px !important;
	font-weight: 300 !important;
	color: #8ca2f7  !important;
	margin: 0;
	padding: 0;
	margin: 5px 0 10px 0;
}
.content-show span {
	color: #0e1328;
	font-size: 16px;
	font-weight: 300;
	line-height: 22px;
	padding-bottom: 3px;
	display: block
}
.content-show .benefit-icon {
	float: left;
	margin-right: 10px;
	margin-top: -2px;
	margin-bottom: 10px;
}
.service-icon-text {
	width: 80%;
}
.service-icon-wrap {
	width: 120px;
	text-align: center
}
.service-icon-wrap img {
	width: 80%
}
.service-icon-text h5 {
	font-size: 25px;
	font-weight: 300;
	line-height: 22px;
	margin-bottom: 10px;
}
.list-it-services-wrapeer h6 {
	padding: 65px 0 15px 0;
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	line-height: 65px;
	margin: 0 !important;
	text-align: center;
}
.list-it-services-wrapeer h6 strong {
	color: #95abff;
	font-weight: 600;
}
.list-it-services-wrapeer p {
	color: #0e1328;
	font-size: 16px;
	font-weight: 300;
	line-height: 22px;
	padding-bottom: 3px
}
.list-it-services-wrapeer a {
	text-decoration: none;
	font-size: 16px;
	color: #394a88;
	border-bottom: 1px solid #94abff;
}
.industr-service-list {
	list-style: none;
	margin: 0px;
}
.industr-service-list li {
	width: 30%;
	background: #fff;
	margin: 0 15px;
	border-radius: 15px;
	background-size: cover !important;
	box-shadow: 0px 0px 30px 0 #e4e4e4;
	padding: 25px;
	text-align: center;
	float: left;
	height: 300px;
	margin-bottom: 25px
}
.industr-service-list li .industry-list-text .industry-list-icon {
	width: 110px;
	height: 110px;
	margin: 0 auto;
	border-radius: 50%;
	border: 1px solid #e4e9ff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px
}
.industry-list-icon img {
	width: 50%;
}
.industr-service-list li .industry-list-text h5 {
	font-size: 25px;
	font-weight: 300;
	margin: 0;
	padding: 0;
}
.industr-service-list li .industry-list-text p {
	color: #0e1328;
	font-size: 14px;
	font-weight: 300;
	line-height: 24px;
	padding: 0;
	margin-top: 5px;
}
.modules-nav-wraper {
	background: #fff
}
.modules-hero-wraper:before {
	content: "";
	position: absolute;
	width: 1200px;
	height: 1200px;
	border-radius: 50%;
	background: #E9FBF1;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: -300px;
	z-index: -1
}
.modules-nav-wraper .container {
	display: flex;
	justify-content: normal;
	padding: 10px 0;
}
.modules-nav-wraper .nav-links-container {
	justify-content: space-between;
	width: 100%;
	padding-left: 55px;
}
.modules-nav-wraper .header-nav-dropdown {
	left: -100px !important
}
.modules-nav-wraper .contact-btn {
	border: 1.5px solid #394a88 !important;
	background: #394a88 !important;
	color: #fff !important;
	padding: 8px 27px;
	font-size: 14px !important;
}
.modules-nav-wraper .logo img {
	width: 150px;
	position: relative;
	top: 5px;
}
.modules-hero-wraper {
	margin-top: 120px;
	text-align: center;
}
.modules-hero-wraper .module-logo-wrap {
	position: relative;
}
.modules-hero-wraper .module-logo-wrap:before {
	content: "";
	background: url(../images/logo-border.svg) no-repeat top;
	background-size: contain;
	position: absolute;
	bottom: -67px;
	width: 204px;
	height: 50px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.modules-hero-wraper h1 {
	color: #0e1328;
	font-size: 75px;
	font-weight: 400;
	line-height: 80px;
	letter-spacing: -4px;
	margin: 40px 0 0 0;
	padding: 0;
	font-family: "Outfit", sans-serif;
	text-align: center;
}
.modules-hero-wraper h1 span {
	color: #08CF65;
	font-weight: 500;
}
.modules-hero-wraper p {
	width: 631px;
	margin: 0 auto;
	margin-top: 20px;
	line-height: 30px;
	color: #0e1328;
	font-size: 22px;
	font-weight: 300;
}
.btn-module-wrap {
	margin-top: 30px;
}
.btn-module-wrap a {
	font-size: 14px;
	color: #fff;
	padding: 16px 20px;
	margin: 0 10px;
	background-image: linear-gradient(to right, #08CF65, #4BC986);
	text-decoration: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	font-family: "Lexend", sans-serif;
	padding: 15px 20px;
	box-shadow: 0px 5px 25px 0 #e0e0e0;
}
.btn-module-wrap a:nth-child(2) {
	background: #fff !important;
	color: #4BC986 !important;
	border: 1.5px solid #08CF65
}
.btn-module-wrap a img {
	margin-left: 10px;
	position: relative;
	top: 5px;
}
.btn-module-wrap a:hover {
	box-shadow: none;
}
.module-screen-shot {
	margin-top: 60px;
}
.module-screen-shot img {
	width: 100%;
}
.hrm-listi-wraper ul {
	list-style: none;
	margin-bottom: 60px;
}
.hrm-listi-wraper ul li {
	display: inline-block;
	width: 29%;
	margin: 0 25px;
	text-align: center;
	padding: 0 20px;
}
.hrm-listi-wraper ul li span {
	display: block;
	color: #101010;
	text-align: center;
	font-size: 22px;
	font-weight: 300;
	margin: 0;
	margin-top: 5px;
}
.listing-hrm-module p {
	line-height: 25px;
	color: #0e1328;
	font-size: 18px;
	font-weight: 300;
}
.how-it-work-hrm {
	background: #FAFAFA;
	padding: 60px 0;
}
.how-it-work-hrm h2 {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
	text-align: center;
	margin-bottom: 50px;
}
.how-it-work-hrm h2 span {
	color: #08CF65;
	font-weight: 500;
}
.how-it-work-hrm ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 25px;
	width: 100%;
}
.how-it-work-hrm ul li {
	background: #fff;
	padding: 15px;
	width: 100%;
	border-radius: 10px;
	border: 1px solid #DBDBDB
}
.listing-how-work-hrm span {
	display: block;
	color: #101010;
	font-size: 25px;
	font-weight: 300;
	margin: 0;
	margin-bottom: 15px
}
.image-howitwork {
	margin: 5px 0;
}
.image-howitwork img {
	width: 100%
}
.listing-how-work-hrm p {
	color: #0e1328;
	font-size: 18px;
	font-weight: 300;
}
.mobile-acessibility-wrap {
	padding: 60px 0;
}
.left-right-mobile-wrp {
	display: flex;
	justify-content: space-between;
	gap: 25px;
	width: 100%;
	justify-content: center;
	align-items: center;
}
.left-text-main-wrap {
	width: 50%;
}
.left-right-mobile-wrp .left-text-main-wrap h3 {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 55px;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
}
.left-text-main-wrap h3 span {
	display: block;
	color: #08CF65;
	font-weight: 500;
}
.left-text-main-wrap p {
	color: #0e1328;
	font-size: 18px;
	font-weight: 300;
	padding-right: 180px
}
.app-btn-wraper {
	margin-top: 20px;
}
.app-btn-wraper a {
	text-decoration: none;
	margin-right: 5px;
	display: inline-block;
	width: 150px;
}
.app-btn-wraper a img {
	width: 100%;
}
.mobile-howwork-image {
	width: 40%;
}
.mobile-howwork-image img {
	width: 100%;
}
.hrm-optimize-wraper {
	background: #EDFFF5;
	padding: 60px 0;
}
.hrm-optimize-wraper h3 {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 62px;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
	text-align: center;
}
.hrm-optimize-wraper h3 span {
	color: #08CF65;
	font-weight: 500;
}
.hrm-optimize-wraper p {
	color: #0e1328;
	font-size: 18px;
	font-weight: 300;
	text-align: center;
	padding: 0 250px;
}
.hrm-optimize-wraper strong {
	display: block;
	text-align: center;
	margin: 15px 0;
	font-size: 40px;
	color: #08CF65
}
.hrm-optimize-wraper strong span {
	display: block;
	color: #0e1328;
	font-size: 18px;
	font-weight: 300;
	margin: 5px 0;
}
.btn-price-wrap {
	text-align: center;
	margin-top: 22px
}
.btn-price-wrap a {
	font-size: 14px;
	color: #fff;
	padding: 14px 40px;
	margin: 0 10px;
	background-image: linear-gradient(to right, #08CF65, #4BC986);
	text-decoration: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	font-family: "Lexend", sans-serif;
	padding: 15px 20px;
	box-shadow: 0px 5px 25px 0 #e0e0e0;
}
.btn-price-wrap a img {
	margin-left: 10px;
	position: relative;
	top: 5px;
}
.btn-price-wrap a:hover {
	box-shadow: none;
	background-image: linear-gradient(to right, #4BC986, #08CF65);
}
.unlock-main-wrper {
	padding: 60px 0;
}
.unlock-inner-wraper {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.left-unlock-text {
	width: 60%;
	text-align: center;
	margin: 0 auto;
}
.left-unlock-text h5 {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 62px;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
}
.left-unlock-text h5 span {
	color: #08CF65;
	font-weight: 500;
}
.left-unlock-text p {
	color: #0e1328;
	font-size: 18px;
	font-weight: 300;
}
.right-btn-wraper {
	width: 40%;
	text-align: center;
}
.drawer-overlay {
	position: fixed;
	top: 75px;
	left: 0;
	width: 100%;
	height: 0;
	background: rgba(0, 0, 0, 0.2);
	overflow: hidden;
	transition: height 0.4s ease;
	z-index: 1000;
}
/* Drawer content */
.drawer {
	width: 100%;
	padding: 0px 20px 20px 20px;
}
/* When open */
.drawer-overlay.open {
	height: 100%;
}
.arrow {
	display: inline-block;
	transition: transform 0.3s ease;
}
.arrow img {
	width: 12px !important;
	margin-left: 5px;
}
.arrow.open {
	transform: rotate(180deg);
	/* Flip down when open */
	;
}
.arrow.open img {
	position: relative;
	top: -4px;
	left: -5px;
}
.drawer-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1352px;
	margin: 0 auto;
}
.product-dropdown:hover .product-dropdown-icon {
	rotate: 25deg;
	transition: ease-in 0.3s;
	-moz-transition: ease-in 0.3s;
	-webkit-transition: ease-in 0.3s;
	-ms-transition: ease-in 0.3s;
	-o-transition: ease-in 0.3s;
}
.product-dropdown:hover h6 {
	opacity: 0.7;
}
.product-dropdown:hover p {
	opacity: 0.7;
}
.no-border {
	border: none !important;
}
.second-heading {
	margin-top: 30px;
}
.clearfix {
	clear: both;
}
#dotNav {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 11111111111;
}
#dotNav .dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #000;
	/* black by default */
	opacity: 0.4;
	cursor: pointer;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
#dotNav .dot.active {
	opacity: 1;
	transform: scale(1.3);
}
.header-nav-dropdown {
	background: #fff;
	border-radius: 0px 0px 12px 12px;
}
.header-nav-dropdown h5 {
	font-size: 17px;
	color: #1F2A49;
	margin: 0;
	font-weight: 300;
	padding: 20px 20px 0px 20px
}
.header-nav-dropdown .product-dropdown {
	width: 30%;
	display: inline-block;
	border-bottom: 1px solid #efefef;
	padding-bottom: 12px;
	float: left;
	margin: 12px 20px 12px 20px;
	margin-bottom: 0;
}
.product-dropdown .product-dropdown-icon {
	width: 40px;
	height: 40px;
	float: left;
}
.product-dropdown-icon img {
	width: 100%;
}
.product-dropdown-text {
	width: 81%;
	float: left;
	padding-left: 10px;
}
.product-dropdown-text h6 {
	color: #1F2A49;
	font-weight: 500;
	font-size: 16px;
	margin: 0;
	padding: 0;
}
.product-dropdown-text p {
	font-weight: 300;
	color: #000;
	font-size: 13px;
	padding: 0;
	margin: 0;
}
.nav-links li:hover .header-nav-dropdown {
	display: block;
}
.nav-links a {
	transition: color 0.3s;
	color: #020202;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
}
.navbar-scrolled .nav-links a {
	color: #333;
}
.nav-links a:hover {
	color: #93AAFE;
}
.new-footer-main-wraper {
	background: #F6F9FF;
	padding: 40px 0 0px 0;
}
.new-footer-main-wraper p {
	font-size: 13px;
	line-height: 22px;
	padding-bottom: 15px;
	font-weight: 300;
}
.top-text-footer {
	border-bottom: 1px solid #d3d9e5;
	padding-bottom: 15px;
	margin-bottom: 25px
}
.links-footer .inner-footer-link {
	width: 25%;
	float: left;
}
.inner-footer-link h4 {
	font-size: 13px;
	color: #0e1328;
	font-weight: 500;
	margin-bottom: 5px;
	margin-top: 10px;
}
.inner-footer-link ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.inner-footer-link ul li a {
	font-size: 13px;
	font-weight: 300;
	color: #000;
	text-decoration: none;
}
.inner-footer-link ul li span {
	font-size: 13px;
	font-weight: 300;
	color: #000;
	text-decoration: none;
}
.copyright {
	margin-top: 55px;
	text-align: center;
	font-size: 13px;
	text-align: center;
	color: #000;
	padding: 15px 0;
	border-top: 1px solid #d3d9e5;
	font-weight: 300;
	opacity: 0.7
}
.drawer-overlay {
	position: fixed;
	top: 75px;
	left: 0;
	width: 100%;
	height: 0;
	background: rgba(0, 0, 0, 0.4);
	overflow: hidden;
	transition: height 0.4s ease;
	z-index: 1000;
	backdrop-filter: blur(5px);
}
/* Drawer content */
.drawer {
	width: 100%;
	padding: 0px 20px 20px 20px;
}
.multiple-list-wraper {
	padding: 20px;
}
.header-nav-dropdown h5 {
	padding: 0px 20px 10px 20px !important;
}
/* When open */
.drawer-overlay.open {
	height: 100%;
}
.arrow {
	display: inline-block;
	transition: transform 0.3s ease;
}
.arrow img {
	width: 12px !important;
	margin-left: 5px;
}
.arrow.open {
	transform: rotate(180deg);
	/* Flip down when open */
	;
}
.arrow.open img {
	position: relative;
	top: -4px;
	left: -5px;
}
.drawer-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1352px;
	margin: 0 auto;
}
.product-dropdown:hover .product-dropdown-icon {
	rotate: 25deg;
	transition: ease-in 0.3s;
	-moz-transition: ease-in 0.3s;
	-webkit-transition: ease-in 0.3s;
	-ms-transition: ease-in 0.3s;
	-o-transition: ease-in 0.3s;
}
.product-dropdown:hover h6 {
	opacity: 0.7;
}
.product-dropdown:hover p {
	opacity: 0.7;
}
.no-border {
	border: none !important;
}
.second-heading {
	margin-top: 30px;
}
.clearfix {
	clear: both;
}
#dotNav {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 11111111111;
}
#dotNav .dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #000;
	/* black by default */
	opacity: 0.4;
	cursor: pointer;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
#dotNav .dot.active {
	opacity: 1;
	transform: scale(1.3);
}
.header-nav-dropdown {
	background: #fff;
}
.header-nav-dropdown h5 {
	font-size: 17px;
	color: #1F2A49;
	margin: 0;
	font-weight: 300;
	padding: 20px 20px 0px 20px
}
.header-nav-dropdown .product-dropdown {
	width: 30%;
	display: inline-block;
	border-bottom: 1px solid #efefef;
	padding-bottom: 12px;
	float: left;
	margin: 12px 20px 12px 20px;
	margin-bottom: 0;
}
.product-dropdown .product-dropdown-icon {
	width: 40px;
	height: 40px;
	float: left;
}
.product-dropdown-icon img {
	width: 100%;
}
.product-dropdown-text {
	width: 81%;
	float: left;
	padding-left: 10px;
}
.product-dropdown-text h6 {
	color: #1F2A49;
	font-weight: 500;
	font-size: 16px;
	margin: 0;
	padding: 0;
}
.product-dropdown-text p {
	font-weight: 300;
	color: #000;
	font-size: 13px;
	padding: 0;
	margin: 0;
}
.nav-links li:hover .header-nav-dropdown {
	display: block;
}
.nav-links a {
	transition: color 0.3s;
	color: #020202;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
}
.navbar-scrolled .nav-links a {
	color: #333;
}
.nav-links a:hover {
	color: #93AAFE;
}
.active-nav {
	color: #94abff !important;
}
.multiple-list-wraper-row {
	width: 30%;
	float: left;
	margin-right: 42px;
}
.multiple-list-wraper-row .product-dropdown {
	width: 100% !important;
}
 @media (max-width: 768px) {
.about-hero-title, .who-we-are-title, .transform-title, .section-title, .ai-hero-title, .ai-transformation-header h2, .industries-title, .get-started-overlay h2, .bpo-hero-title, .everything-title, .maximize-title, .outsource-title, .digital-content h1, .brand-text h2, .google-ads-text h2, .social-media-content h2, .industry-hero-title, .core-business-title, .bespoke-title, .sectors-main-title, .it-hero-heading, .list-it-services-wrapeer h6, .portfolio-banner-wraper h4, .modules-hero-wraper h1 {
	font-size: 2rem;
	line-height: 1.2;
	letter-spacing: 0px;
}
.about-hero-description, .who-we-are-description, .transform-description, .bpo-hero-description, .industry-hero-description, .it-hero-text, .list-it-services-wrapeer p {
	max-width: 100%;
	font-size: 1rem;
	line-height: 1.2;
}
.list-it-services-wrapeer p {
	padding: 0px;
	margin: 0px;
}
.years-content {
	text-align: start;
}
.stats-section {
	padding-bottom: 0px;
}
.who-we-are-text, .who-we-are-content {
	max-width: 100%;
}
.what-sets-us-apart {
	padding: 0px
}
.feature-number, .everything-title {
	margin-bottom: 20px !important;
}
.who-we-are {
	padding-bottom: 30px !important;
}
.ai-hero-content {
	padding: 0px 15px;
}
.ai-transformation-header h2, .industries-title, .maximize-title {
	margin-bottom: 30px;
}
.get-started-overlay h2 {
	margin-bottom: 10px;
}
.industries-we-serve ul li {
	width: 100%;
}
.industries-we-serve ul {
	margin: 0px;
}
.everything-card h3.everything-title {
	padding-top: 0px;
	margin-bottom: 0px !important;
}
.everything-card {
	gap: 0px;
}
.maximize-card:nth-child(2), .maximize-card:nth-child(4) {
	transform: translateY(0px);
}
.maximize-grid {
	margin-top: 0px;
}
.trusted-section {
	padding: 30px 0px;
}
.maximize-section {
	padding-top: 30px;
}
.contact-main-title {
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: 0px;
}
.contact-form-header {
	flex-direction: column;
}
.contact-social-icons {
	flex-direction: row;
}
.contact-main-title {
	margin-bottom: 10px;
}
.contact-form-section {
	padding-bottom: 30px;
}
.social-proof-content {
	flex-wrap: wrap;
}
.social-proof-card-content h4 {
	font-size: 20px;
	margin-bottom: 0px;
}
.social-proof-card-content {
	align-items: center;
}
.curve-arrow {
	rotate: 90deg;
}
.google-ads-benefits .benefit-item span {
	padding-right: 0px;
	text-align: start;
	font-size: 1rem;
	line-height: 1.2;
}
.social-media-section, .brand-section {
	padding-bottom: 30px;
}
.process-flow {
	margin-bottom: 0px;
}
.core-business-text {
	margin-bottom: 0px;
}
.industr-service-list li {
	width: 100%;
	margin: 15px 0px;
}
.list-it-services-wrapeer ul li {
	width: 100%;
}
.benefit-card {
	gap: 4px;
}
}
 @media (max-width: 1024px) and (min-width: 768px) {
.about-hero-title, .who-we-are-title, .ai-hero-title, .industries-title, .bpo-hero-title, .everything-title, .maximize-title, .outsource-title, .digital-content h1, .brand-text h2, .google-ads-text h2, .industry-hero-title, .core-business-title, .bespoke-title, .sectors-main-title, .it-hero-heading, .list-it-services-wrapeer h6, .portfolio-banner-wraper h4, .modules-hero-wraper h1 {
	font-size: 3.5rem;
	line-height: 1.2;
}
.modules-hero-wraper:before {
	height: 90vh;
	width: 100%;
}
.what-sets-us-apart {
	padding-top: 0px
}
.contact-main-title {
	font-size: 36px;
	line-height: 1.2;
	letter-spacing: 0px;
}
.social-proof-content {
	flex-wrap: wrap;
}
.curve-arrow {
	rotate: 90deg;
}
.google-ads-benefits .benefit-item span {
	padding-right: 0px;
	text-align: start;
	font-size: 18px;
	line-height: 1.2;
}
.social-media-section {
	padding-bottom: 30px;
}
.image-container {
	align-items: start;
}
.industr-service-list li {
	width: 45%;
	margin: 15px;
}
}
@media screen and (max-width:768px) {
.navbar .container {
}
.ai-hero-title {
	font-size: 40px !important;
}
.ai-hero-title br {
	display: none;
}
.ai-hero {
	padding: 40px 0;
}
.ai-transformation-header {
	text-align: center;
}
.drawer-menu .sub-heading-wrap {
	position: relative;
	left: 30px;
	display: block;
	margin-bottom: 14px;
	color: #394a88;
	font-size: 20px;
}
.logo-drawer img {
	width: 180px;
}
.ai-transformation-header h2 {
	font-size: 40px;
	letter-spacing: -1px
}
.ai-transform-card p {
	font-size: 20px;
}
.ai-transform-card h3 {
	font-size: 25px;
}
.industries-title {
	font-size: 40px;
	letter-spacing: -1px;
	margin-bottom: 50px;
}
.industries-we-serve {
	padding-top: 0;
}
.ai-transformation-section {
	padding-bottom: 50px;
}
.industry-image-text p {
	font-size: 20px;
}
.get-started-overlay h2 {
	font-size: 40px;
	letter-spacing: -1px;
}
.new-footer-main-wraper {
	width: 100%;
}
.links-footer {
	padding-bottom: 40px;
}
.links-footer .inner-footer-link {
	width: 100%;
	float: none;
}
.inner-footer-link h4 {
	font-size: 22px;
}
.inner-footer-link ul li {
	line-height: 22px;
	padding: 5px 0;
}
.inner-footer-link ul li a {
	font-size: 18px;
}
.copyright {
	margin-top: 0;
}
.ai-navbar-wrap .nav-container {
	background: #fff;
}
.logo-drawer {
	margin-left: 25px;
	margin-bottom: 30px;
}
.header-nav-dropdown .product-dropdown {
	width: 85%;
	margin: 0;
	margin-left: 30px;
}
.drawer-menu ul {
	margin-bottom: 20px;
	border-bottom: 1px solid #e6ebff;
	padding-bottom: 14px;
}
.header-nav-dropdown h5 {
	font-size: 20px;
	margin: 0;
	padding: 0;
	padding-left: 30px;
	margin-bottom: 10px;
}
.multiple-list-wraper-row {
	width: 100%;
	float: left;
	margin-right: 0;
}
.digital-content h1 {
	font-size: 40px;
	letter-spacing: -1px;
}
.btn-wrapper img {
	display: none;
}
.callout-content {
	font-size: 20px;
}
.social-proof-card-content p {
	padding-right: 0;
	font-size: 20px;
}
.social-proof-card-content h4 {
	font-size: 23px;
}
.benefit-item span {
	font-size: 20px;
}
.brand-text h2 {
	font-size: 40px;
	letter-spacing: -1px;
}
.social-media-content h2 {
	font-size: 40px;
	letter-spacing: -1px;
}
.google-ads-text h2 {
	font-size: 40px;
	letter-spacing: -1px;
}
.google-ads-visual {
	display: none;
}
.it-solutions-hero {
	min-height: 550px;
}
.it-hero-heading {
	font-size: 40px;
	letter-spacing: -1px;
}
.it-hero-text {
	font-size: 20px;
	line-height: 26px
}
.list-it-services-wrapeer h6 {
	font-size: 40px;
	letter-spacing: -1px;
}
.list-it-services-wrapeer p {
	font-size: 20px;
	line-height: 28px;
}
.service-icon-text h5 {
	font-size: 23px;
	letter-spacing: -1px;
}
.portfolio-banner-wraper h4 {
	font-size: 40px;
	letter-spacing: -1px;
}
.years-content {
	display: none;
}
.success-link-text {
	font-size: 40px;
	letter-spacing: -1px;
	line-height: 48px;
	font-weight: 300;
	color: #0e1328;
}
.bpo-hero-title {
	font-size: 40px;
}
.bpo-hero-description {
	font-size: 20px;
	line-height: 26px
}
.feature-number, .everything-title {
	font-size: 40px;
}
.everything-card h3.everything-title {
	font-size: 25px;
	margin-top: 15px;
}
.everything-card {
	gap: 4px;
}
.maximize-title {
	font-size: 40px;
	letter-spacing: -1px;
}
.outsource-text {
	gap: 20px;
}
.menusitebar-industry-wraper .menu-btn {
	top: 26px;
}
.industry-hero-title {
	font-size: 40px;
}
.industry-hero-title br {
	display: none;
}
.industry-hero-description {
	font-size: 20px;
}
.industry-hero-content {
	padding: 60px 0;
}
.core-business-title {
	font-size: 40px;
	letter-spacing: -1px;
}
.core-business-description {
	font-size: 20px;
}
.sectors-main-title {
	font-size: 40px;
	letter-spacing: -1px;
	margin-bottom: 30px;
}
.contact-main-title {
	text-align: center;
	font-size: 38px;
	letter-spacing: -1px;
	margin-top: 30px;
}
.industry-hero-title {
	font-size: 40px;
}
.about-hero-title {
	font-size: 40px;
	letter-spacing: -1px;
	margin-bottom: 30px;
}
.about-hero-description {
	font-size: 20px;
	line-height: 26px;
}
.who-we-are-title {
	font-size: 40px;
	letter-spacing: -1px
}
.who-we-are-description {
	font-size: 20px;
	line-height: 24px;
}
.section-title {
	font-size: 40px;
	letter-spacing: -1px
}
.section-description {
	font-size: 20px;
}
.feature-title {
	font-size: 25px;
}
.feature-description {
	font-size: 20px;
	font-weight: 300
}
.transform-title {
	font-size: 40px;
	letter-spacing: -1px
}
.transform-description {
	font-size: 20px;
	font-weight: 300
}
.about-hero-content {
	padding: 125px 0 100px 0;
}
.modules-hero-wraper:before {
	display: none;
}
.modules-hero-wraper h1 {
	font-size: 40px;
	letter-spacing: -1px;
	font-weight: 300;
}
.modules-hero-wraper p {
	width: 100%;
	font-size: 20px;
}
.hrm-listi-wraper ul li {
	width: 100%;
}
.hrm-listi-wraper ul li {
	width: 100%;
	margin: 0 0 50px 0;
}
.hrm-listi-wraper ul li span {
	font-size: 25px;
	font-weight: 300;
}
.listing-hrm-module p {
	font-size: 20px;
}
.how-it-work-hrm h2 {
	font-size: 40px;
	letter-spacing: -1px;
	font-weight: 300;
}
.how-it-work-hrm ul {
	display: block;
}
.left-right-mobile-wrp .left-text-main-wrap h3 {
	font-size: 40px;
	letter-spacing: -1px;
	font-weight: 300;
}
.left-text-main-wrap p {
	padding: 0;
}
.left-text-main-wrap {
	width: 100%;
}
.left-right-mobile-wrp {
	display: block;
}
.left-text-main-wrap p {
	font-size: 20px;
}
.mobile-howwork-image {
	display: none;
}
.hrm-optimize-wraper h3 {
	font-size: 40px;
	letter-spacing: -1px;
	font-weight: 300;
	line-height: 45px;
}
.hrm-optimize-wraper p {
	padding: 0;
	font-size: 20px;
}
.hrm-optimize-wraper strong span {
	padding: 0;
	font-size: 20px;
}
.left-unlock-text h5 {
	font-size: 40px;
	letter-spacing: -1px;
	font-weight: 300;
	line-height: 45px;
}
.left-unlock-text {
	width: 100%;
}
.left-unlock-text p {
	font-size: 20px;
}
.portfolio-page-wrap h1 {
	font-size: 50px;
	line-height: 56px;
}
.portfolio-main-wrap {
	display: none;
}
.portfolio-page-wrap {
	padding: 130px 0 60px 0;
}
.artifical-mobile-wrap h3 {
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 30px;
}
.listing-mobiel-app-wrap ul li .mobile-list-left-right {
	display: block;
	height: auto;
	overflow: visible;
}
.mobile-list-left-right .mobile-list-left-text {
	width: 100%;
	padding-bottom: 30px;
}
.mobile-list-left-image {
	width: 100%;
	height: auto;
	margin-top: 0;
}
.image-mobile-wrap {
	display: none;
}
.number-main-wraper ul {
	display: block;
	margin: 0;
	padding: 0;
}
.number-main-wraper ul li {
	margin: 0;
	padding: 0;
	width: 100%;
}
.number-main-wraper ul li .listing-number-icon {
	margin-top: 20px
}
.number-main-wraper {
	margin-top: 0;
	padding: 20px 0;
}
.business-main-wrap h4 {
	font-size: 40px;
	line-height: 40px;
	margin: 0;
	margin-bottom: 20px;
}
.business-main-wrap h4 br {
	display: none;
}
.btn-corousel {
	position: relative;
	top: -33px;
	right: auto;
	left: 0;
	display: none;
}
.business-text-wrap {
	display: block;
	padding-bottom: 0;
	padding-top: 20px
}
.business-text-wrap .text-tag-heading-wrap {
	width: 100%;
}
.text-tag-heading-wrap h5 {
	font-size: 30px;
}
.business-main-wrap {
	padding: 60px 0;
}
.utility-app-wraper ul li {
	width: 100%;
	margin-bottom: 40px;
}
.utility-app-wraper ul {
	display: block;
}
.utility-app-wraper {
	padding: 60px 0 0 0;
}
.eye-icon-wrap {
	display: none;
}
.navbar .container {
	padding: 14px 0 8px 11px !important;
}
.list-utility-text h5 {
	font-size: 30px;
}
}
.eye-icon-wrap {
	text-align: right
}
.eye-icon-wrap a {
	display: inline-block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #ddd;
	text-align: center;
	padding-top: 15px;
	margin-left: 5px;
}
.eye-icon-wrap a:hover {
	background: #394A88;
}
.eye-icon-wrap a:hover img {
	filter: brightness(0) invert(1);
}
.business-list-wrp span {
	display: block;
	font-size: 16px;
	font-weight: 300;
	color: #000;
	background: url(../images/check-app.svg) no-repeat left;
	padding-left: 24px;
	background-size: 2.8%;
	margin-bottom: 5px;
}
.app-links-wraper {
	position: fixed;
	top: 77px;
	width: 100%;
	padding: 10px 0;
	background: #eef1ff;
	z-index: 111;
}
.app-links-wraper ul {
	list-style: none;
	display: flex;
	gap: 45px;
	margin: 0;
	padding: 0;
	justify-content: center;
}
.app-links-wraper ul li a {
	color: #394a88;
	font-size: 16px;
	text-decoration: none;
}
.app-links-wraper ul li a:hover {
	color: #93aafe;
}
.app-links-wraper .container {
	padding: 0;
}
.socail-footer {
	margin-top: 15px;
}
.socail-footer a {
	text-decoration: none;
	margin-right: 5px;
}
.socail-footer a img {
	width: 30px;
	opacity: 0.5
}
.socail-footer a:hover img {
	opacity: 1;
}
.about-ai-main-wraper {
	padding: 60px 0 0 0 ;
}
.about-ai-main-wraper ul {
	list-style: none;
}
.about-ai-main-wraper ul li {
	margin-bottom: 90px;
	;
}
.about-ai-list .row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}
.about-ai-list .about-ai-image {
	width: 49%;
	height: 330px;
	background-size: cover !important;
	border-radius: 20px;
}
.about-ai-list .about-ai-image img {
	width: 100%;
}
.about-ai-text {
	width: 49% !important;
}
.about-ai-text h5 {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
	line-height: 65px;
}
.about-ai-text h5 span {
	color: #93AAFE;
	font-weight: 500;
	display: block;
}
.about-ai-text p {
	color: #202020;
	font-size: 20px;
	font-style: normal;
	font-weight: 300;
}
.location-main-wraper {
	padding: 20px;
    background: #f5f5f5;
    border-radius: 15px;
    margin-left: 25px;
}
.location-main-wraper ul {
	list-style: none;
}
.location-main-wraper ul li {
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 15px;
	margin-bottom: 30px;
	background: #fff;
}
.location-main-wraper ul li .location-icon-wrap {
	width: 50px;
	height: 50px;
}
.location-main-wraper ul li .location-icon-wrap img {
	width: 100%;
}
.location-main-wraper h2 {
	text-align: left;
    color: #0e1328;
    font-size: 40px;
    font-weight: 300;
    margin:0 0 15px 0;
}
.location-main-wraper h2 span {
	color: #93AAFE;
}
.location-main-wraper h5 {
	color: #202020;
	text-align: left;
	font-size: 22px;
	font-style: normal;
	font-weight: 300;
}
.location-main-wraper p {
	color: #202020;
	text-align: center;
	font-size: 17px;
	font-style: normal;
	font-weight: 300;
	line-height: 27px;
}
.enterprise-solution{
	padding:80px 0 120px 0;
}
.heading-enterprise-wrap{
	display: flex;
    align-items: center;
    margin-bottom: 70px;
    justify-content: center;
    text-align: center;
}
.heading-enterprise-wrap span{
	 border: 2px solid #394a88;
    padding: 7px 29px 8px 29px;
    text-align: center;
    font-size: 18px;
    border-radius: 30px;
    background: #fff;
    color: #394a88;
    font-weight:300;
    position: relative;
    font-family: "Outfit", sans-serif !important;
    background: #fff;
}
.puzzle-heading{
	position:relative;
	margin-bottom:20px;
}
.puzzle-heading img{
	position: absolute;
    left: 122px;
    top: 20%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    z-index: 0;
}
.puzzle-heading strong{
	font-weight:500
}
.heading-left-wrap h5{
	font-size:50px;
	color:#0E1328;
	font-weight:300;
	letter-spacing:-1px;
	line-height:50px
}
.heading-left-wrap h5 strong{
	font-weight:500;
	display:block;
}
.btn-right-wrap{
	text-align:right;
}
.btn-right-wrap a{
	    background: #394a88;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.enterprise-solution ul{
	list-style:none;
	display:flex;
	gap:37px
}
.enterprise-solution ul li{
	    background: #fff;
    padding:30px 40px 40px 40px;
    width: 23%;
    box-shadow: 0px 0px 30px 0 #efefef;
    border-radius: 15px;
	text-align:center
}
.enterprise-list-icon{
	width:110px;
	margin:0 auto;
	margin-bottom:10px;
}
.enterprise-list-icon img{
	width:100%;
}
.enterprise-list-text{
	text-align: center;
    font-size: 19px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
}
.personalize-main-wraper{
	background:url(../images/personalize_bg.jpg) no-repeat center;
	background-size:cover;
	padding:80px 0;
	
}

.personalize-main-wraper .container{
	display:flex;
	gap:45px;
	    align-items: center;
}
.personalize-main-wraper .puzzle-heading{
	position:relative
}
.personalize-main-wraper .puzzle-heading img {
    position: absolute;
    left: -50px;
    top: 20%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    z-index: 0;
}
.personalize-main-wraper .puzzle-heading span{
	border: 2px solid #394a88;
    padding: 7px 29px 8px 29px;
    text-align: center;
    font-size: 18px;
    border-radius: 30px;
    background: #fff;
    color: #394a88;
    font-weight: 300;
    position: relative;
    font-family: "Outfit", sans-serif !important;
    background: #fff;
}
.personalize-text-wraper h3{
	    font-size: 50px;
    color: #0E1328;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 50px;
}
.personalize-text-wraper p{
	font-size:20px;
	font-weight:300;
	color:#000;
	line-height:29px;
	padding:25px 0;
}
.personalize-text-wraper ul{
	list-style:none;
}
.personalize-text-wraper ul li .list-personalize-wrap{
	background: #fff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: self-end;
}
.list-personalize-wrap .list-personalize-icon{
	width:50px;
}
.list-personalize-text h5{
	font-size: 20px;
    font-weight: 300;
}
.list-personalize-text p{
	padding:0;
	margin:0;
	font-size:16px;
}
.it-solution-moble-app{
	padding:100px 0 80px 0;
	background:url(../images/mobile-it-bg.png) repeat-x  top center ;
	background-size: 70%;
}
.it-solution-moble-app  .puzzle-heading {
    position: relative;
	    position: relative;
    text-align: center;
}
.it-solution-moble-app  .puzzle-heading img {
    position: absolute;
    left:-177px;
    top: 20%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    z-index: 0;
	right:0;
	margin:0 auto
}

.it-solution-moble-app  .puzzle-heading span {
    border: 2px solid #394a88;
    padding: 7px 29px 8px 29px;
    text-align: center;
    font-size: 18px;
    border-radius: 30px;
    background: #fff;
    color: #394a88;
    font-weight: 300;
    position: relative;
    font-family: "Outfit", sans-serif !important;
    background: #fff;
}
.it-solution-moble-app h4{
	text-align:center;
	font-size: 40px;
    color: #0E1328;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 50px;
	margin:25px 0;
}
.it-solution-moble-app h4 strong{
	font-weight: 500;
}
.it-solution-moble-app ul{
	list-style: none;
    display: flex;
    gap: 35px;
    margin-top: 56px;
	position: relative; 
}
.it-solution-moble-app ul::before{
	content: "";
    position: absolute;
    top: 19px;
    background: #D7DBE7;
    height: 1px;
    width: 100%;
    z-index: -1;
}
}
.it-solution-moble-app ul li{
    gap: 15px;
    width: 33%;
    align-items: center;
    justify-content: center;
}
.top-heading{
	text-align:center;
}
.it-solution-moble-app ul li .heading-mobile{
	display: block;
    border: 1px solid #D7DBE7;
    border-radius: 30px;
    background: #fff;
    padding: 6px 0px;
    width: 150px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.inner-box-mobile-app{
	border:1px solid #D7DBE7;
	padding:35px;
	border-radius:12px;
	position: relative;
	background:#fff;
}
.inner-box-mobile-app::before{
	content: "";
    position: absolute;
    height: 50px;
    width: 0.5px;
    background: #D7DBE7;
    top: -51px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.inner-box-mobile-app .number-icon-wrap{
	display:flex;
	justify-content:space-between;
}
.number-icon-wrap .number-mobile-wrap{
	font-size: 50px;
    color: #394A88;
    line-height: 50px;
}
.inner-mobile-text h5{
	font-size: 25px;
	color:#000;
	margin:15px 0 10px 0;
	font-weight: 300;
}
.inner-mobile-text p{
	font-size: 18px;
	line-height: 26px;
	font-weight: 300;
}
.btn-get-touch{
	text-align: center;
	margin-top: 60px;
}
.btn-get-touch a{
	background: #394a88;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-get-touch  a:hover{
	background: #94abff;
  }
.find_perfect_btu-wrap {
	border-top: 1px solid #e1e1e1;
	padding-top: 60px;
	padding-bottom:90px;
}
.btu_header_wrap {
	padding-bottom: 60px;
}
.btu_header_wrap h4 {
	font-size: 40px;
	color: #000;
	line-height: 45px;
	letter-spacing: -1px;
	font-weight: 300;
}
.btu_header_wrap p {
	font-size: 20px;
	font-weight: 300;
	line-height: 29px;
}
.btu_header_wrap .row {
	justify-content: center;
	align-items: center;
}
.btu_image_wrap {
	width:90%;
}
.btu_image_wrap  img{
	width:100%;
}
.according_main_wrap .accordion-item {
	border: none;
	border-bottom: 1px solid #e1e1e1;
	border-radius:0 !important;
}



.according_main_wrap .accordion-item button {
	box-shadow: none;
	padding: 18px 10px;
	padding-left: 0;
	background: none !important;
	font-size: 22px;
	letter-spacing: -0.5px;
	font-family: 'Loretta' !important;
	color: #000;
	border: none !important;
	border-radius:0 !important
}
.according_main_wrap .accordion-body {
	padding: 0 35px 25px 0;
	font-weight: 300;
	font-size: 16px;
	background:none !important;
	margin-bottom:0 !important;
	border:none !important;
	border-radius: 0px !important;
}
.accordion-button:not(.collapsed) {
	color: #ccc;
}
.accordion-button::after {
	width: 30px !important;
	height: 30px !important;
	border: 1.5px solid #ccc !important;
	border-radius: 50% !important;
	padding: 5px !important;
	background-size: 15px !important;
	background-position: 46% 53% !important
}
.accordion-button:not(.collapsed)::after {
	border: 1.5px solid #832E31 !important;
	background-position: 46% 53% !important;
	filter: brightness(0%) !important;
}
.btn_cta_wrap {
	margin-top: 35px;
}
.btn_cta_wrap a {
	color: #7C2C2F;
	border-bottom: 1.5px solid #7C2C2F;
	font-family: "Outfit", sans-serif;
	margin-right: 25px;
	font-size: 18px
}
.btn_cta_wrap a:hover {
	color: #000;
}
.btu_header_wrap .row{
	display:flex;
}

.btu_header_wrap .col-md-5{
	width: 100%;
}
.btu_text_main_wrap .row{
	display:flex;
	gap:0px;
    align-items: center;
}

.btu_text_main_wrap .col-md-6{
	width: 50%;
}
.according_main_wrap h4{
	font-size: 25px;
	font-weight: 300;
	color: #000;
}

.according_main_wrap p{
    font-size: 18px;
    font-weight: 300;
    line-height: 29px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
    margin-left: 0;
}
.no-border-wrap{
	border: none !important;
	padding: 0 !important;
}
.according_main_wrap .btn-get-touch{
    text-align: left;
    margin-top: 36px !important;
}


  
  /* Modal Content */
  .modal-content {
	padding: 0px;
	width:720px;
	border-radius: 10px;
	position: relative;
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	transform: scale(0.8);
	transition: all 0.3s ease;
	margin:5% auto;
	background:#fff url(../images/bg-modal.jpg) no-repeat bottom right;
	background-size: contain;
  }
  
  /* Show animation */
  .modal-overlay.active .modal-content {
	transform: scale(1);
	opacity: 1;
  }
  
  /* Close Button */
  .close-modal {
	position: absolute;
    top: -5px;
    right: 14px;
    font-size: 37px;
    cursor: pointer;
    color: #394a88;
    transition: color 0.3s;
    font-weight: 200;
  }
  
  .close-modal:hover {
	color: #000;
  }
.left-right-modal-contact{
	display:flex;
	gap:25px
}
.contact-info-left{
	width: 58%;
    padding: 31px;
    background: #fff;
    border-radius: 15px 
}
.contact-info-left h5{
	font-size: 35px;
    color: #0e1328;
    font-weight: 300;
    letter-spacing: -1px;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
	line-height: 33px;
}
.contact-info-left h5 strong{
	color: #93AAFE;
}
.contact-info-left .form-group{
	margin-bottom: 10px;
}
.contact-info-left .form-group label{
	font-size: 14px;
	margin: 0 0 5px 0;
	color: rgba(16, 16, 16, 0.70);
}
.contact-info-left .form-input{
	height: 38px;
}
.contact-info-left .form-control{
	padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    color: #101010;
    background: #ffffff;
    transition: all 0.3s  ease;
	outline: none;
	resize: none;
}
.contact-info-left .form-control:focus{
    border: 1px solid #93AAFE;
}
.submit-btn-wrap {
	margin-top: 10px;
}
.submit-btn-wrap button{
	width: 100%;
	background: #394a88;
	color: #fff;
	font-size: 15px;
	border-radius: 8px;
	height: 40px;
	border: none;
	cursor: pointer;
}
.submit-btn-wrap button:hover{
	background: #93AAFE;
}
.right-contact-info-icon{
	width: 150px;
	margin: 0 auto;
}
.right-contact-info-icon img{
	width: 100%;
}
.right-contact-info-wrap{
	width: 42%;
    padding-top: 80px;
    margin-left: -26px;
}
.right-contact-info-wrap h5{
    font-size: 23px;
    color: #141a31;
    font-weight: 400;
    text-align: center;
    letter-spacing: -1px;
}
.right-contact-info-wrap p{
    font-size: 14px;
    text-align: center;
    padding: 0 23px;
    font-weight: 300;
    line-height: 18px;
	padding-top: 5px;
	padding-bottom: 70px;
}
.contact-info-wrap{
	padding-left: 30px;
}
.contact-info-wrap span{
	font-size: 16px;
	color: #141a31;
	display: block;
	margin-bottom:5px;
}
.contact-info-wrap span img{
	width: 16px;
    position: relative;
    top: 2px;
    margin-right: 6px;
}
.contact-info-wrap span:nth-child(1) img{
	position: relative;
	top:5px !important;
	width: 14px;
}
.radio-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-family: "Poppins", sans-serif;
  }
  
  .custom-radio {
	position: relative;
	padding-left: 22px;
	cursor: pointer;
	user-select: none;
	font-size: 14px;
	color: #333;
  }
  
  .custom-radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
  }
  
  .radio-mark {
	position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s  ease;
    border: 1px solid #ccc;
  }
  
  .custom-radio:hover input ~ .radio-mark {
	background-color: #ddd;
  }
  
  .custom-radio input:checked ~ .radio-mark {
	background-color: #93aafe;
	border-color: #93aafe;
  }
  
  .radio-mark::after {
	content: "";
	position: absolute;
	display: none;
  }
  
  .custom-radio input:checked ~ .radio-mark::after {
	display: block;
  }
  
  .custom-radio .radio-mark::after {
	top: 4px;
	left:4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
  }
  .inner-radio-group{
	display:flex;
	gap:25px;
	margin-top: -9px;
  }
  .radio-group .label{
	font-size: 14px;
    margin: 0 0 5px 0;
	color: rgba(16, 16, 16, 0.70);
  }
  .social-icon-modal{
	width: 35px;
	height: 35px;
	background: #fff;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	position: relative;
	top: 10px;
	padding-top: 5px;
	color:#394a88
  }
  .btn-get-started{
	text-align: center;
	margin-top: 60px;
  }

  .btn-get-started a{
  background: #394a88;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
  }
  .btn-get-started a:hover{
	background: #94abff;
  }
  .outsource-text p{
	font-size: 30px;
	font-weight: 300;
	color: #fff;
  }