/*
Theme Name: AILABS
Theme URI: #
Author: AILABS
Author URI: #
Description: AILABS is a modern, responsive, and customizable WordPress theme designed to help you create a professional and engaging website. It offers a clean and minimal design, making it perfect for personal blogs, portfolios, and business websites. The theme is built with accessibility in mind and supports international typography, ensuring a seamless experience for users worldwide.
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.2
Version: 1.0
*/

/* Reset and Base Styles */
html {
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--eerie-black: #1e1e1e;
	--licorice: #111111;
	--mine-shaft: #333333;
	--monsoon: #898989;
	--silver: #bebebe;
	--star-dust: #9b9b9b;
	--white: #ffffff;
}

body {
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: var(--mine-shaft);
	background: var(--white);
	overflow-x: hidden;
	max-width: 1920px;
	margin: 0 auto;
	font-size: 16px;
}

section {
	overflow: hidden;
}


@font-face {
	font-family: "Earth Phototype";
	src: url("assets/fonts/Earth\ Phototype-font.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* Headings use Manrope */
h1,
h2,
h3,
h4,
h5,
h6,
.hero__title,
.hero__title--highlight,
.promo-banner__title,
.features-section__title,
.feature-card__title,
.usp-section__title,
.usp-section__subtitle,
.usp-point__title,
.pioneers-section__title,
.pioneers-section__subtitle,
.accomplishments-section__title,
.stat-item__value,
.pillar__title,
.testimonial-card__title,
.testimonial-card__stats,
.faq-section__title,
.blog-section__title,
.blog-post__title,
.collaborators-section__title,
.contact-section__title,
.contact-form__title,
.footer__banner-title,
.footer__column-title,
.navbar__logo h1 {
	font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

a {
	text-decoration: none;
}

ul {
	list-style: disc;
	margin-left: 20px;
}

li {
	margin: 0;
	padding: 0;
}

/* Header Navigation */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 20px;
	max-width: 1920px;
	margin: 0 auto;
}

.navbar {
	margin: 0 auto;
}

.navbar__container {
	background: var(--white);
	border-radius: 25px;
	padding: 5px 15px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	gap: 40px;
}

.navbar__left {
	display: flex;
	align-items: center;
	gap: 40px;
}

.navbar__app-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.app-icon__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4px;
	width: clamp(20px, 2vw, 24px);
	aspect-ratio: 1;
	max-width: 20px;
	max-height: 20px;
}

.app-icon__square {
	width: 100%;
	height: 100%;
	background: var(--mine-shaft);
	border-radius: 2px;
}

.navbar__logo {
	display: flex;
	align-content: center;
	align-items: center;
}

.navbar__logo svg,
.navbar__logo img {
	width: 160px;
	height: auto;
	object-fit: contain;
}

.navbar__logo h1 {
	font-size: clamp(20px, 1.8vw, 27px);
	font-weight: 400;
	color: var(--mine-shaft);
	letter-spacing: 0;
	margin: 0;
	font-family: "Earth Phototype", sans-serif;
}

.navbar__menu {
	display: flex;
	list-style: none;
	gap: 10px;
	align-items: center;
	margin: 0;
	padding: 0;
	flex: 1;
	justify-content: center;
	position: static;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
}

.navbar__menu-item {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
}

.navbar__link {
	text-decoration: none;
	color: var(--mine-shaft);
	font-size: clamp(12px, 1.2vw, 14px);
	font-weight: 700;
	letter-spacing: 0;
	padding: 6px 15px;
	border-radius: 10px;
	transition: all 0.3s;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	font-family: 'Manrope', sans-serif;
}

.navbar__link--active {
	background: var(--eerie-black);
	color: var(--white);
	border-radius: 10px;
}

.navbar__link--has-icon::after {
	content: "";
	width: 6px;
	height: 8px;
	margin-left: 10px;
	display: inline-block;
	background: url("assets/images/polygon-2-3.svg") center/contain no-repeat;
	transform: translateY(3px);
}

.navbar__link--has-icon.navbar__link--active::after {
	background-image: url("assets/images/polygon-1-9.svg");
}

.navbar__link:hover:not(.navbar__link--active) {
	color: #52cacf;
}

.navbar__dropdown-icon {
	font-size: 10px;
	color: #666;
	display: inline-block;
	line-height: 1;
	margin-left: 6px;
	transition: transform 0.3s;
}

.navbar__dropdown-icon--white {
	color: #ffffff;
}

.navbar__right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}

.navbar__search {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s;
}

.navbar__search:hover {
	opacity: 0.7;
}

.navbar__search svg {
	width: 20px;
	height: 20px;
}

.navbar__get-in-touch {
	display: inline-block;
	text-decoration: none;
	color: #52cacf;
	border: 1px solid #52cacf;
	background: transparent;
	padding: 12px 20px;

	border-radius: 50px;
	font-size: clamp(12px, 1.2vw, 14px);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	letter-spacing: 0.3px;
	white-space: nowrap;
	font-family: 'Manrope', sans-serif;
	min-width: 120px;
	text-align: center;
}

.navbar__get-in-touch:hover {
	background: #52cacf;
	color: #fff;
}

.navbar__mobile-toggle {
	display: none;
}

/* Hero Section */
.hero {
	position: relative;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	padding: 115px 0 0;
	background:
		#ecf0f4;
	overflow: hidden;
	/* min-height: 100vh; */
	/* max-height: 715px; */
}

/* Hero with border radius */
.hero--border-radius {
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
}

/* Hero Container - Content ở trên */
.hero__container {
	margin: 0 auto;
	padding: 0 0 50px;
	position: relative;
	z-index: 1;
	width: calc(100% - 190px);
	flex: 0 0 auto;
}

/* Hero Background Images - Background ở dưới, tương tự banner-section */
.hero__background {
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex: 1;
	/* min-height: 300px; */
	padding: 0 20px 20px;
	margin-top: auto;
	position: relative;
}

.hero__background-image {
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: bottom center;
	max-height: 100%;
	align-self: flex-end;
}

.hero__background-image--mobile {
	display: none;
}

/* Hero Overlay Images - Robot và Smartphone */
.hero__overlay-images {
	position: absolute;
	right: 20px;
	bottom: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	z-index: 2;
	gap: 0;
}

.hero__robot-image {
	width: auto;
	height: auto;
	max-width: 200px;
	max-height: 200px;
	object-fit: contain;
	animation: robotFloat 3s ease-in-out infinite;
	position: relative;
	z-index: 3;
}

.hero__smartphone-image {
	width: auto;
	height: auto;
	max-width: 300px;
	max-height: 150px;
	object-fit: contain;
	position: relative;
	z-index: 2;
	margin-top: -10px;
	margin-right: -30px;
}

/* Animation cho Robot - lên xuống nhẹ nhàng ~40px */
@keyframes robotFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-40px);
	}
}

/* Hero + Banner Section Wrapper - Fit to one screen */
/* When hero and banner-section are adjacent, adjust heights to fit one screen */
.hero + .banner-section {
	margin-top: 0;
}

/* Combined height for hero + banner-section to fit one screen */
/* Hero section takes 65-70% of viewport, banner takes 30-35% */
.hero:has(+ .banner-section) {
	min-height: 65vh;
	max-height: 75vh;
}

.hero:has(+ .banner-section) + .banner-section {
	min-height: 25vh;
	max-height: 35vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 0;
}

/* If content is longer, allow it to expand naturally */
.hero:has(+ .banner-section) .hero__content {
	min-height: auto;
}

/* Ensure banner-section container fills available space */
.hero:has(+ .banner-section) + .banner-section .banner-section__container {
	width: 100%;
	height: 100%;
	min-height: 100%;
}

/* Mobile adjustments for hero + banner */
@media (max-width: 768px) {
	
	.hero__container {
		width: 100%;
		padding: 0 20px 40px;
	}
	
	.hero__background {
		min-height: 200px;
		padding: 0 20px 20px;
	}
	
	.hero:has(+ .banner-section) {
		min-height: auto;
		max-height: none;
	}
	
	.hero:has(+ .banner-section) + .banner-section {
		min-height: auto;
		max-height: none;
		padding: 20px;
	}
	
	.hero__background-image--desktop {
		display: none;
	}
	
	.hero__background-image--mobile {
		display: block;
	}
}

/* Hero decorative overlay - chỉ áp dụng cho phần content */
.hero__container::before {
	content: "";
	position: absolute;
	inset: 0;
	/* background: url("assets/images/mask-glow-1.png") bottom center / cover no-repeat; */
	transform: scale(.8);
	transform-origin: bottom left;
	opacity: 0.7;
	pointer-events: none;
	z-index: -1;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, #000 20%, #000 80%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, #000 20%, #000 80%, transparent 100%);
}


.hero__content {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 30px;
	align-items: center;
	max-width: 1500px;
	margin: 0 auto;
}

.hero__left {
	display: flex;
	align-items: flex-start;
}

.hero__title {
	font-size: 60px;
	font-weight: 400;
	line-height: 1.05;
	color: var(--licorice);
	margin: 0;
	letter-spacing: clamp(-1px, -0.1vw, -1.5px);
}

.hero__title {
	position: relative;
	min-height: 1.05em; /* Reserve minimum height */
}

.hero__title-text {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	opacity: 0; /* Ẩn khi load trang, JS sẽ hiển thị khi typing */
	transition: opacity 0.3s ease-in;
	white-space: pre-wrap; /* Preserve line breaks */
}

.hero__title-text--complete {
	position: static !important;
	top: auto !important;
	left: auto !important;
}

.hero__title-placeholder {
	display: inline-block;
	opacity: 0;
	visibility: visible; /* Reserve space but invisible */
	pointer-events: none;
	white-space: pre-wrap; /* Preserve line breaks */
	height: auto;
	width: auto;
}

.hero__title-cursor {
	display: inline-block;
	margin-left: 2px;
	color: var(--licorice);
	animation: blinkCursor 1s infinite;
	font-weight: 300;
}

@keyframes blinkCursor {
	0%, 50% {
		opacity: 1;
	}
	51%, 100% {
		opacity: 0;
	}
}

.hero__title--neural {
	color: #4A72B2;
}

.hero__title--networks {
	color: #5C7CC2;
}

.hero__right {
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: flex-start;
}

.hero__description {
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 1.6;
	color: var(--mine-shaft);
	margin: 0;
	font-weight: 500;
}

.hero__cta {
	background: #52cacf;
	color: white;
	border: 1px solid transparent;
	padding: 15px 32px;
	padding-right: 20px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero__cta svg {
	width: 14px;
	height: 14px;
}

.hero__cta:hover {
	border: 1px solid #52cacf;
	color: #52cacf;
	background: transparent;
	transform: translateY(-1px);
}

.hero__cta svg {
	transition: all 0.2s;
}

.hero__cta:hover svg {
	transform: rotate(45deg);
}

/* Promotional Banner Section */
.promo-banner {
	position: relative;
	z-index: 2;
	background: #ecf0f4;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	border: none;
	padding: 0 20px 20px;
}

.promo-banner__container {
	margin: 0 auto;
	position: relative;
	background:
		linear-gradient(90deg,
			rgba(130, 88, 200, 0.5) 0%,
			rgba(44, 132, 200, 0.5) 100%),
		rgb(156, 158, 161);
	padding: 0;
	min-height: 500px;
	border-radius: 25px;
}

.promo-banner__background {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;

}

.promo-banner__pattern {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.promo-banner__pattern-img {
	position: absolute;
	right: 290px;
	bottom: 30px;
	width: 260px;
	max-width: 45%;
}

.promo-banner__ribbons {
	display: none;
}

.ribbon {
	position: absolute;
	border-radius: 50%;
	opacity: 0.15;
	filter: blur(40px);
}

.ribbon--1 {
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.4);
	top: -150px;
	right: 150px;
	transform: rotate(45deg);
}

.ribbon--2 {
	width: 350px;
	height: 350px;
	background: rgba(224, 224, 255, 0.5);
	top: 30%;
	right: 100px;
	transform: rotate(-25deg);
}

.ribbon--3 {
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.3);
	bottom: -80px;
	right: 250px;
	transform: rotate(55deg);
}

.promo-banner__content {
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	min-height: 100%;
	padding: 60px;
}

.promo-banner__left {
	display: flex;
	height: 100%;
	z-index: 2;
}

.promo-banner__title {
	font-size: clamp(24px, 3vw, 42px);
	font-weight: 400;
	max-width: 480px;
	line-height: 40px;
	color: var(--white);
	margin: 0;
	color: #ecf0f4;

}

.promo-banner__right {
	position: absolute;
	right: 0px;
	bottom: 0px;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.promo-banner__right p {
	max-width: 120px;
	text-align: left;
	margin: auto;
	margin-bottom: 24px;
}

.promo-banner__watch-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px 35px;
	background: #ecf0f4;
	color: #111;
	text-decoration: none;
	justify-content: center;
	border-radius: 0;
	border-top-left-radius: 25px;
	font-size: 16px;
	border: none;
	position: relative;
}

.corner-svg-left {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: -18px;
	color: currentColor;
}

.corner-svg-right {
	content: "";
	position: absolute;
	top: -18px;
	right: 0;
	color: currentColor;
}

.corner-svg-bottom {
	content: "";
	position: absolute;
	right: -20px;
	bottom: 0;
	color: currentColor;
}

.promo-banner__logo {
	font-weight: 600;
	font-size: clamp(60px, 15vw, 250px);
	color: var(--white);
	position: absolute;
	z-index: 100;
	pointer-events: none;
	font-family: 'Sora', sans-serif;
	white-space: nowrap;
	left: 60px;
	bottom: 0;
	transform: translateY(31%);
	color: #ecf0f4;
}

.promo-banner__description {
	font-size: clamp(13px, 1.2vw, 15px);
	color: var(--white);
	margin: 0;
	font-weight: 400;
	position: relative;
	z-index: 2;
	text-align: right;
	width: 100px;
	line-height: 1.6;
	opacity: 1;
}


.promo-banner__play-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.promo-banner__watch-btn svg {
	width: 18px;
	height: 18px;
	display: block;
	color: #ecf0f4;
}

.promo-banner__watch-btn span {
	color: rgba(51, 51, 51, 1);
	font-weight: 500;
}

/* Tinker with Neural Network Section */
.tinker-section {
	padding: 0;
	background: #ffffff;
	position: relative;
	overflow: hidden;
	padding: 100px 20px 10px;
}

.tinker-section__container {
	max-height: 650px;
	height: 100%;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: flex-start;
}

.tinker-section__left {
	position: relative;
	height: 100%;
	max-width: 550px;
	/* min-height: 600px; */
	display: flex;
	align-items: center;
	z-index: 1;
}

.tinker-section__gradient {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 650px;
	height: 650px;
	background: url("assets/images/ellipse-150-2.svg") left bottom/contain no-repeat;
	opacity: 2;
	pointer-events: none;
	z-index: 0;
}

.tinker-section__pattern {
	position: absolute;
	left: 0;
	top: 0;
	width: 600px;
	height: 100%;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.tinker-section__pattern-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
	opacity: 0.8;
}

.tinker-section__right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 0 190px 0 0;
	position: relative;
	z-index: 2;
}

.tinker-section__title {
	font-size: 75px;
	font-weight: 400;
	line-height: 1.05;
	color: #1A1A1A;
	margin: 0;
	text-align: left;
	letter-spacing: -3px;
	line-height: 1.2;
	max-width: 1024px;
}

.tinker-section__title--gradient {
	background: #52cacf;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline;
}

.tinker-section__logos {
	width: 100%;
	max-width: 1400px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 80px;
	flex-wrap: wrap;
	padding-top: 40px;
	display: none;
}

.tinker-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s;

}

.tinker-logo img {
	max-width: 100px;
}

.tinker-logo:hover {
	filter: grayscale(0%);
	opacity: 1;
}

.tinker-logo__square {
	width: 44px;
	height: 44px;
	background: #1A1A1A;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
	border-radius: 4px;
	flex-shrink: 0;
}

.tinker-logo__oval {
	width: 60px;
	height: 32px;
	border: 1px solid #1A1A1A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 500;
	color: #1A1A1A;
	flex-shrink: 0;
}

.tinker-logo__circle {
	width: 48px;
	height: 48px;
	border: 1.5px solid #6B7280;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	font-weight: 600;
	color: #4B5563;
	flex-shrink: 0;
	font-family: 'Sora', sans-serif;
	text-align: center;
	padding: 2px;
}

.tinker-logo__name {
	font-size: 15px;
	font-weight: 600;
	color: #1A1A1A;
	line-height: 1.1;
	letter-spacing: 0.5px;
}

.tinker-logo__subtitle {
	font-size: 10px;
	font-weight: 400;
	color: #64748B;
	line-height: 1.2;
	margin-top: 2px;
}

.tinker-logo__text {
	display: flex;
	flex-direction: column;
}

/* Services Section */
.services {
	background: #ffffff;
	padding-bottom: 30px;
}

.services__container {
	/* max-width: 1350px; */
	margin: 0 auto;
	width: calc(100% - 190px);
}

.services__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
}

.services__tag {
	display: block;
	font-size: 14px;
	color: #64748B;
	margin-bottom: 8px;
	font-weight: 300;
}

.services__title {
	font-size: 40px;
	font-weight: 400;
	line-height: 1.2;
	color: #1A1A1A;
	margin: 0;
	letter-spacing: -2px;
}

.services__header-right {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.services__subtitle {
	font-size: 14px;
	color: #64748B;
	margin: 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border-radius: 12px;
	justify-content: center;
	border: 1px solid #52cacf;
	background: transparent;

	color: #52cacf;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s;
	/* width: 170px; */
	cursor: pointer;
}


.btn:hover {
	color: #fff;
	background: #52cacf;
	transform: translateY(-1px);
}

.btn svg {
	transition: all 0.2s;
}

.btn:hover svg {
	transform: rotate(45deg);
}

.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 190px;
	gap: 20px;
}

/* Card General Styles */
.service-card {
	position: relative;
	border-radius: 25px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.3s;
	max-height: 561px;
	background: #dbe2f6;
    color: #000;
}

.service-card:hover {
	transform: translateY(-5px);
	background: #52cacf;
    color: #000;
}

.service-card__title {
	font-size: 25px;
	font-weight: 400;
	line-height: 35px;
	margin: 0 0 20px;
	color: #000;
}

.service-card__title .service-card__title--black {
	color: #1A1A1A;
}

.service-card__title a {
	text-decoration: none;
	color: #000;
}

.service-card__title a:hover {
	text-decoration: underline;
}

.service-card__description {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	margin: 0;
	opacity: 0.9;
	white-space: normal;
	word-wrap: break-word;
}

.service-card__description.card_1 {
	max-width: 340px;
}

.service-card__button {
	position: absolute;
	bottom: 0;
	right: 5px;
	width: 60px;
	height: 60px;
	background: transparent;
	border: none;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s;
	z-index: 10;
}

.service-card__button svg {
	scale: 1.2;
}

/* Specific Card Variants */
.service-card--teal {
	/* background: linear-gradient(90deg, rgba(69, 208, 189, 1) 0%, rgba(68, 182, 233, 1) 100%); */
	;
	/* color: #ffffff; */
	grid-row: span 2;
	min-height: 540px;
	/* justify-content: flex-end; */
	position: relative;
}

.service-card--purple {
	/* background: #ac8de0; */
	/* color: #ffffff; */
	grid-row: span 2;
	min-height: 560px;
	position: relative;
}

.service-card--teal::before {
	content: "";
    position: absolute;
    right: 0px;
    bottom: 20px;
    width: 280px;
    height: 90px;
    pointer-events: none;
    background-image: url(assets/images/vector-16-20-17.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: contain;
    background-position: center;
}

.service-card--light::before {
	content: "";
    position: absolute;
    right: 10px;
    top: 10px;
    width: 60px;
    height: 60px;
    pointer-events: none;
    background-image: url(assets/images/vector-16-20-19.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: contain;
    background-position: center;
}

.service-card--blue::before {
	content: "";
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 60px;
    height: 60px;
    pointer-events: none;
    background-image: url(assets/images/vector-16-20-19.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: contain;
    background-position: center;
}

.service-card--purple .service-card__dots {
	position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("assets/images/vector-16-20-18.png");
    background-size: contain;
    opacity: 1;
    z-index: 0;
}

.service-card--purple .service-card__xxx {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	opacity: 0.6;
	z-index: 1;
}

.service-card--purple .service-card__xxx img {
	width: 100%;
	height: auto;
	filter: brightness(0) invert(1);
	opacity: 0.4;
}

.service-card--light {
	/* background: url("assets/images/bg-gradient.png") top right / contain no-repeat; */
    color: #1A1A1A;
    padding: 25px 48px;
    height: 190px;
    display: flex;
    background-color: #dbe2f6;
	position: relative;
}

.service-card--light .service-card__graphic {
	display: none;
}

.service-card--blue {
	/* background: linear-gradient(90deg, rgba(130, 88, 200, 0.6) 0%, rgba(44, 132, 200, 0.6) 100%); */
	/* color: #ffffff; */
	min-height: 258px;
	position: relative;
	padding: 30px 40px;
}

.service-card--blue .service-card__bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.service-card--blue .service-card__bg-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.service-card__content {
	position: relative;
	z-index: 2;
}

.service-card__icon img {
	display: block;
	margin-bottom: 30px;
}

/* Team Section */

/* Marquee Section */
.marquee {
	width: 100%;
	background: #ffffff;
	overflow: hidden;
	padding: 30px 0 60px;
	white-space: nowrap;
}

.marquee__content {
	display: inline-block;
	animation: marquee-scroll 20s linear infinite;
}

.marquee:hover .marquee__content {
	animation-play-state: paused;
}

.marquee__content .marquee__item {
	font-size: 120px;
	font-weight: 400;
	color: rgba(17, 17, 17, 1);
	margin-right: 80px;
	letter-spacing: -3px;
	position: relative;
	
}
.marquee__content .marquee__item svg {
	position: absolute;
	bottom: 0;
    left: -195px;
    width: auto;
    height: 90%;
}

.marquee__content .marquee__item span {
	margin-right: 120px;
	display: inline-block;
}

@keyframes marquee-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* USP Section */
.usp-section {
	padding: 15px 80px 60px;
	background: #ffffff;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.usp-section__container {
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.usp-section__header {
	text-align: left;
	margin-bottom: 45px;
}

.usp-section__tag {
	display: block;
	font-size: 14px;
	color: #64748B;
	margin-bottom: 8px;
	font-weight: 300;
}

.usp-section__title {
	font-size: 40px;
	font-weight: 400;
	line-height: 1.2;
	color: #1A1A1A;
	margin: 0;
	max-width: 600px;
}

.usp-section__points {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.usp-point {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.usp-point__icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 8px;
}

.usp-point__icon--ai {
	color: #6366F1;
}

.usp-point__icon--solutions {
	color: #3B82F6;
}

.usp-point__icon--tech {
	color: #8B5CF6;
}

.usp-point__icon--development {
	color: #4F46E5;
}

.usp-item__title {
	font-size: 18px;
	font-weight: 700;
	color: #1A1A1A;
	margin: 0 0 12px 0;
}

.usp-item__description {
	font-size: 13px;
	line-height: 1.5;
	color: #64748B;
	margin: 0;
	max-width: 260px;
}

/* Pioneers Section */
.pioneers-section {
	background: #ffffff;
	padding: 0 20px;
}

.pioneers-section__container {
	width: 100%;
	background: #fff;
	border-radius: 25px;
	padding: 120px 80px;
	position: relative;
	color: #ffffff;
	display: flex;
	justify-content: flex-end;
	overflow: hidden;
	z-index: 1;
}

.pioneers-section__bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80%;
	max-width: 450px;
	will-change: transform;
}

.pioneers-section__col--left {
	position: relative;
	/* overflow: hidden; */
}

.pioneers-section__col--left img {
	/* object-fit: contain; */
}

.pioneers-section__container:before {
	content: "";
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	height: 100%;
	background: #161616;
	transform: skewY(-2.5deg);
	bottom: 0;
	right: 0;
	border-radius: 25px;
	pointer-events: none;
}

.pioneers-section__stroke-text {
	font-size: 120px;
	font-weight: 700;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px #52cacf;
	z-index: 0;
	text-transform: capitalize;
	margin-bottom: 50px;
	margin-top: 30px;
	position: relative;
	z-index: 1;
}

.pioneers-section__content {
	max-width: 700px;
	position: relative;
	z-index: 1;
}

.pioneers-section__tag {
	display: inline-block;
	font-size: 14px;
	color: rgba(255, 255, 255, 1);
	margin-bottom: 24px;
	font-weight: 300;
	width: 100%;
}

.pioneers-section__title {
	font-size: 40px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 40px;
	letter-spacing: -2px;
}

.pioneers-section__text {
	margin-bottom: 60px;
}

.pioneers-section__text p {
	font-size: 16px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1);
	margin-bottom: 24px;
}

.pioneers-section__text p:last-child {
	margin-bottom: 0;
	font-weight: 600;
}

.pioneers-section__buttons {
	display: inline-block;
}

.pioneers-section__cta {
	display: flex;
	align-items: center;
	gap: 12px;
	background: transparent;
	border: 1px solid #52cacf;
	color: #52cacf;

	border-radius: 15px;
	padding: 15px 26px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.pioneers-section__cta:hover {
	background: #52cacf;
	color: #fff;
}

.pioneers-section__cta svg {
	transition: all 0.3s ease;
}


.pioneers-section__cta:hover svg {
	stroke: #fff;
	transform: rotate(45deg);
}

.pioneers-section__container {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

.pioneers-section__spacer {
	display: none !important;
}

.pioneers-section__right-col {
	display: contents !important;
}

.pioneers-section__stroke-text {
	grid-column: 1;
	position: static !important;
	top: auto !important;
	left: auto !important;
	transform: none !important;
}

.pioneers-section__content {
	grid-column: 2;
}


/* Accomplishments Section */
.accomplishments-section {
	width: calc(100% - 190px);
	padding: 95px 0;
	margin: 0 auto;
}

.accomplishments-section__container {
	margin: 0 auto;
}

.accomplishments-section__tag {
	display: block;
	font-size: 14px;
	color: #64748B;
	margin-bottom: 16px;
	font-weight: 300;
}

.accomplishments-section__title {
	font-size: 60px;
	font-weight: 400;
	line-height: 70px;
	margin-bottom: 36px;
	color: #1A1A1A;
	letter-spacing: -2px;
	max-width: 800px;
}

.accomplishments-section__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	margin-bottom: 90px;
}

.stat-card {
	padding: 60px 0;
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.stat-card--dark {
	background: #161616;
	color: #ffffff;
	width: clamp(320px, 50vw, 610px);
	padding: 60px;
}

.stat-card--light {
	background: transparent;
	color: #1A1A1A;
	width: 100%;
}

.stat-card__value {
	font-size: 80px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -4px;
	margin-bottom: 40px;
	color: transparent;
	-webkit-text-stroke: 1px rgba(99, 102, 241, 0.6);
}

.stat-card--dark .stat-card__value {
	-webkit-text-stroke: 1px rgba(99, 102, 241, 1);
}

.stat-card__value--purple {
	-webkit-text-stroke: 1px rgba(139, 92, 246, 0.6);
}

.stat-card__value--blue {
	-webkit-text-stroke: 1px rgba(59, 130, 246, 0.6);
}

.stat-card__label {
	font-size: 20px;
	font-weight: 600;
	line-height: 35px;
	margin-bottom: 16px;
	color: rgba(17, 17, 17, 1)
}

.stat-card--dark .stat-card__label {
	color: rgba(255, 255, 255, 1)
}

.stat-card__description {
	font-size: 16px;
	line-height: 30px;
	color: rgba(51, 51, 51, 1);
	margin: 0;
}

.stat-card--dark .stat-card__description {
	max-width: 300px;
	color: rgba(255, 255, 255, 1)
}

/* Technology Grid */
.tech-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.tech-item {
	display: flex;
	flex-direction: column;
	gap: 32px;

}

.tech-item__icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.tech-item__title {
	font-size: 32px;
	font-weight: 400;
	line-height: 1.2;
	color: #1A1A1A;
	margin: 0;
}

.tech-item__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.tech-item__list li {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 500;
	color: rgba(51, 51, 51, 1);
	padding-left: 15px;
	position: relative;
}

.tech-item__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 4px;
	height: 4px;
	background: #1b1b1b;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Testimonials Section */
.testimonials-section {
	padding: 20px;
	background: #ffffff;
}

.testimonials-section__container {
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 20px;
}

.testimonial-card {
	padding: 120px 90px;
	border-radius: 25px;
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	justify-content: center;
}

.testimonial-card__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 50px;
}

.testimonial-card--dark {
	background: rgba(31, 31, 31, 1);
	color: white;
	justify-content: flex-start;
	border-radius: 25px;
}

.testimonial-card__quote-icon {
	font-size: 120px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.2);
	line-height: 1;
	font-family: Georgia, serif;
}

.testimonial-card__quote {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.95);
	font-family: 'Sora', sans-serif;
}

.testimonial-card__author {
	margin-top: auto;
}

.testimonial-card__name {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Sora', sans-serif;
}

.testimonial-card__navigation {
	margin-top: auto;
	display: flex;
	justify-content: center;
	gap: 2px;
	position: absolute;
	bottom: 0;
	left: 90px;
	background: #fff;
	border-top-right-radius: 25px;
	border-top-left-radius: 25px;
	padding: 0 10px;
}

.testimonial-card__navigation--corner .corner-svg-left {
	left: -20px;
}

.testimonial-card__nav-btn {
	width: 40px;
	height: 40px;
	color: #000;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	border: none;
	background: transparent;
}

.testimonial-card__nav-btn:hover {
	color: #000000b3;
}

.testimonial-card__nav-btn svg {
	width: 20px;
	height: 20px;
}

.testimonial-card--gradient {
	background: linear-gradient(90deg,
			rgba(130, 88, 200, 0.5) 0%,
			rgba(44, 132, 200, 0.5) 100%);
	color: white;
	text-align: left;
	justify-content: flex-start;
	position: relative;
	padding: 50px;
}

.testimonial-card__tag {
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 4px;
	position: relative;
	z-index: 1;
	font-family: 'Sora', sans-serif;
	margin-top: 30px;
}

.testimonial-card__title {
	font-size: 40px;
	font-weight: 400;
	line-height: 1.2;
	position: relative;
	z-index: 1;
	letter-spacing: -1px;
}

.testimonial-card__stats {
	position: relative;
	z-index: 1;
	margin-top: auto;
}

.testimonial-card__stats-value {
	font-size: 100px;
	font-weight: 600;
	line-height: 0.5;
	margin-bottom: 30px;
	letter-spacing: -2px;
	color: transparent;
	-webkit-text-stroke: 1px #fff;
}

.testimonial-card__stats-label {
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Sora', sans-serif;
}

/* FAQ Section */
.faq-section {
	padding: 120px 30px;
	background: rgba(240, 242, 244, 1);
	margin: 0 20px;
	border-radius: 25px;
}

.faq-section__container {
	max-width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 0.75fr 1.25fr;
	gap: 100px;
	align-items: start;
	background: rgba(240, 242, 244, 1);
}

.faq-section__visual {
	background: transparent;
	border-radius: 0;
	padding: 0;
	min-height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-section__pattern {
	width: 100%;
	height: auto;
	mix-blend-mode: multiply;
}

.faq-section__content {
	display: flex;
	flex-direction: column;
	max-width: 900px;
}

.faq-section__tag {
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	color: rgba(17, 17, 17, 1);
	margin-left: 10px;
	font-family: 'Sora', sans-serif;
}

.faq-section__title {
	font-size: 60px;
	font-weight: 400;
	line-height: 70px;
	margin-bottom: 40px;
	color: #1F2937;
	letter-spacing: -2px;
	max-width: 600px;
}

.faq-item {
	background: transparent;
	border-radius: 0;
	margin-bottom: 0;
	overflow: visible;
	border-bottom: 1px solid #E5E7EB;
	margin-bottom: 40px;
	border-bottom: 1px solid rgba(51, 51, 51, 1);
}


.faq-item__question {
	width: 100%;
	padding: 0;
	background: transparent;
	border: none;
	text-align: left;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 300;
	color: rgba(17, 17, 17, 1);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.3s;
	gap: 16px;
	margin-bottom: 25px;
}

.faq-item__question:hover {
	color: #7B3FE4;
}

.faq-item__question span {
	flex: 1;
	font-family: 'Sora', sans-serif;
}

.faq-item__question svg {
	width: 10px;
	height: 10px;
	color: #6B7280;
	flex-shrink: 0;
	transition: transform 0.3s, color 0.3s;
}

.faq-item--active .faq-item__question svg {
	transform: rotate(90deg);
	color: #7B3FE4;
}

.faq-item__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;

}

.faq-item--active .faq-item__answer {
	margin-top: 5px;
	margin-bottom: 30px;
	max-width: 750px;
	max-height: 1500px;
}

.faq-item__answer p {
	padding: 0;
	color: #4B5563;
	line-height: 30px;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Sora', sans-serif;
}

.faq-section__view-more svg {
	width: 16px;
	height: 16px;
}

/* Blog Section */
.blog-section {
	width: calc(100% - 190px);
	margin: auto;
	padding: 125px 0 65px;
	background: #ffffff;
}

.blog-section__container {
	margin: 0 auto;
}

.blog-section__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 80px;
	gap: 40px;
}

.blog-section__header-left {
	flex: 1;
}

.blog-section__tag {
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	color: rgba(51, 51, 51, 1);
	margin-bottom: 16px;
	font-family: 'Sora', sans-serif;
}

.blog-section__title {
	font-size: 60px;
	font-weight: 400;
	line-height: 70px;
	margin: 0;
	color: #1F2937;
	letter-spacing: -2px;
	max-width: 630px;
}

.blog-section__more-btn {
	background: transparent;
	color: #1F2937;
	padding: 15px 25px;
	border-radius: 15px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Sora', sans-serif;
	white-space: nowrap;
	margin-top: 20px;
	border: 1px solid transparent;
	background: linear-gradient(rgb(255, 255, 255), rgba(240, 242, 244, 1)) padding-box,
		linear-gradient(90deg, rgba(130, 88, 200, 1) 0%, rgba(44, 132, 200, 1) 100%) border-box;

}

.blog-section__more-btn svg {
	width: 16px;
	height: 16px;
}

.blog-section__more-btn:hover {
	background: #111111;
	color: #ffffff;
	border-color: #111111;
}

.blog-section__posts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
}

.blog-post {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
}

.blog-post:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-post__image {
	width: 100%;
	height: 280px;
	overflow: hidden;
}

.blog-post__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.blog-post:hover .blog-post__image img {
	transform: scale(1.05);
}

.blog-post__meta {
	font-size: 13px;
	color: #6B7280;
	padding: 20px 24px 12px;
	font-family: 'Sora', sans-serif;
}

.blog-post__title {
	padding: 0 24px 15px;
	margin: 0;
	line-height: 1.4;
}

.blog-post__title-link {
	font-size: 25px;
	font-weight: 400;
	color: rgba(17, 17, 17, 1);
	text-decoration: none;
	transition: color 0.3s;
	display: inline-block;
	position: relative;
	line-height: 35px;
}

.blog-post__title-link:hover {
	text-decoration: underline;
}

.blog-post__cursor {
	width: 28px;
	height: auto;
	position: absolute;
	top: -8px;
	right: -32px;
	opacity: 0;
	transition: opacity 0.3s, transform 0.3s;
	pointer-events: none;
}

.blog-post:first-child .blog-post__title-link:hover .blog-post__cursor {
	opacity: 1;
	transform: translate(4px, -4px);
}

.blog-post__categories {
	font-size: 13px;
	color: #9B9B9B;
	padding: 0 45px 50px;
	font-family: 'Sora', sans-serif;
	margin-top: auto;
}

/* Collaborators Section */
.collaborators-section {
	width: calc(100% - 190px);
	padding: 65px 0;
	margin: auto;
	background: #ffffff;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.collaborators-section__container {
	margin: 0 auto;
	position: relative;
	z-index: 1;
	isolation: isolate;
}

.collaborators-section__tag {
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	color: #9CA3AF;
	margin-bottom: 16px;
	font-family: 'Sora', sans-serif;
}

.tinker-logo__img {
	width: 120px;
	transition: transform 0.3s;
}

.tinker-logo__img:hover {
	transform: scale(1.1);
}

.collaborators-section__title {
	font-size: 40px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 30px;
	color: #1F2937;
	letter-spacing: -2px;
	max-width: 630px;
}

.collaborators-section__logos {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 80px;
	flex-wrap: wrap;
}

.collaborator-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #9CA3AF;
	font-family: 'Sora', sans-serif;
	transition: opacity 0.3s;
}

.collaborator-logo--minimize {
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.collaborator-logo:hover {
	opacity: 0.8;
}

.collaborator-logo__name {
	font-size: 16px;
	font-weight: 600;
	color: #9CA3AF;
	line-height: 1.2;
}

.collaborator-logo__name--large {
	font-size: 24px;
	font-weight: 700;
}

.collaborator-logo__name--white {
	color: #ffffff;
}

.collaborator-logo__subtitle {
	font-size: 11px;
	font-weight: 400;
	color: #9CA3AF;
	line-height: 1.3;
}

.collaborator-logo__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.collaborator-logo__text--stacked {
	align-items: flex-start;
}

.collaborator-logo__square {
	width: 48px;
	height: 48px;
	background: #9CA3AF;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	border-radius: 4px;
	flex-shrink: 0;
}

.collaborator-logo__oval {
	width: 60px;
	height: 40px;
	border: 1.5px solid #9CA3AF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 600;
	color: #9CA3AF;
	flex-shrink: 0;
}

.collaborator-logo--agrimax {
	gap: 0;
}

.collaborator-logo__box {
	display: flex;
	align-items: center;
	background: #D1D5DB;
	border-radius: 4px;
	padding: 8px 12px;
	gap: 10px;
}

.collaborator-logo__icon {
	width: 24px;
	height: 24px;
	background: #6B7280;
	border-radius: 2px;
	position: relative;
	flex-shrink: 0;
}

.collaborator-logo__icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 12px;
	background: #ffffff;
	clip-path: polygon(50% 0%, 0% 100%, 50% 80%, 100% 100%);
}

.collaborator-logo__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -30%);
	width: 6px;
	height: 8px;
	background: #ffffff;
	clip-path: polygon(50% 0%, 0% 100%, 50% 80%, 100% 100%);
}

.collaborator-logo--vintage {
	gap: 0;
}

.collaborator-logo__circle {
	width: 80px;
	height: 80px;
	border: 1.5px solid #9CA3AF;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-shrink: 0;
}

.collaborator-logo__circle-top {
	position: absolute;
	top: 8px;
	font-size: 8px;
	font-weight: 600;
	color: #9CA3AF;
	letter-spacing: 0.5px;
}

.collaborator-logo__circle-center {
	font-size: 20px;
	font-weight: 700;
	color: #9CA3AF;
	font-style: italic;
	font-family: Georgia, serif;
}

.collaborator-logo__circle-bottom {
	position: absolute;
	bottom: 8px;
	font-size: 8px;
	font-weight: 600;
	color: #9CA3AF;
	letter-spacing: 0.5px;
}

/* Contact Section */
.contact-section {
	background: #000;
	border-top-right-radius: 25px;
	border-top-left-radius: 25px;
	padding: 0;
	padding-top: 85px;
	margin: 0 20px;
}

.contact-section__container {
	max-width: calc(100% - 190px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 110px;

}

.contact-section__info {
	background: transparent;
	color: white;
	padding: 0;

}

.contact-section__tag {
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	color: #9CA3AF;
	margin-bottom: 20px;
	font-family: 'Sora', sans-serif;
}

.contact-section__title {
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 24px;
	line-height: 1.2;
	color: #ffffff;
}

.contact-section__description {
	color: rgba(255, 255, 255, 1);
	margin-bottom: 70px;
	font-family: 'Sora', sans-serif;
}

.contact-info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-info__column {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.contact-info__item {
	font-size: 15px;
	line-height: 1.6;
	gap: 20px;
}

.contact-info__item strong {
	display: block;
	font-size: 18px;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 1);
	font-weight: 400;
	font-family: 'Sora', sans-serif;
}

.contact-info__item p {
	color: rgba(255, 255, 255, 1);
	margin: 4px 0;
	font-family: 'Sora', sans-serif;
}

.contact-info__social {
	display: flex;
	gap: 45px;
	margin-top: 8px;
}

.contact-info__item p.mail,
.contact-info__item a.mail {
	text-decoration: underline;
	color: rgba(255, 255, 255, 1);
}

.contact-info__item a.mail:hover {
	opacity: 0.8;
}

.contact-info__item a.contact-link {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
}

.contact-info__item a.contact-link:hover {
	opacity: 0.8;
}

.contact-info__social .social-icon {
	transition: transform 0.3s ease;
}

.contact-info__social .social-icon:hover {
	transform: scale(1.2);
}



.contact-section__form {
	background: white;
	padding: 50px 40px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form__title {
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 32px;
	color: #1F2937;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.contact-form-shortcode form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-shortcode form textarea{
    height: 120px;
}

.contact-form-shortcode .wpcf7-not-valid-tip {
	font-size: 12px;
	text-align: right;
}

.contact-form__input,
.contact-form__textarea {
	padding: 14px 16px;
	border: 1px solid #D1D5DB;
	border-radius: 20px;
	font-size: 15px;
	font-family: 'Sora', sans-serif;
	transition: border-color 0.3s;
	color: #1F2937;
	font-weight: 300;
	width: 100%;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
	color: #9CA3AF;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
	outline: none;
	border-color: #52cacf;
}

.contact-form__textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-form__submit {
	background: transparent;
	color: #1F2937;
	border: 1.5px solid #D1D5DB;
	padding: 14px 28px;
	border-radius: 15px;
	font-size: 16px;
	font-weight: 300;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	font-family: 'Sora', sans-serif;
	border: 1px solid transparent;
	background: linear-gradient(rgb(255, 255, 255), rgba(240, 242, 244, 1)) padding-box,
		linear-gradient(90deg, rgba(130, 88, 200, 1) 0%, rgba(44, 132, 200, 1) 100%) border-box;
}

.contact-form__submit svg {
	width: 16px;
	height: 16px;
}

.contact-form__submit:hover {
	opacity: 0.7;
}

/* Contact Form 7 Submit Button with Icon */
.contact-form-shortcode .wpcf7-submit.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	color: #52cacf;
}

.contact-form-shortcode .wpcf7-submit.btn {
	padding-right: 44px; /* chừa chỗ cho icon */
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 13.5L13.5 4.5M13.5 4.5H6.75M13.5 4.5V11.25' stroke='%2352cacf' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 18px 18px;
	border: 1px solid #52cacf;
	color: #52cacf;
}

.contact-form-shortcode .wpcf7-submit.btn:hover {
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9H15M15 9L10.5 4.5M15 9L10.5 13.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-color: #52cacf;
	color: #fff;
}

/* Banner Section */
.banner-section {
	width: 100%;
	background: rgb(236, 240, 244);
    padding: 0px 20px 20px;
	border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
	overflow: hidden;
}

.banner-section__container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
}

.banner-section__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.banner-section__image--mobile {
	display: none;
}

.grecaptcha-badge {
	right: -1800px !important;
}

@media (max-width: 768px) {
	.banner-section {
		height: auto;
	}
	
	.banner-section__image--desktop {
		display: none;
	}
	
	.banner-section__image--mobile {
		display: block;
		height: auto;
		object-fit: contain;
	}
}

/* Footer */
.footer {
	background: #000;
	color: white;
	position: relative;
	overflow: hidden;
	margin: 0 20px 20px;
    border-radius: 0 0 25px 25px;
}

.footer__banner {
	max-width: calc(100% - 190px);
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 100px 0 60px;
}

.footer__banner-content {
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 40px;
}

.footer__banner-title {
	font-size: clamp(32px, 5vw, 80px);
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
	letter-spacing: clamp(-1px, -0.15vw, -2.4px);
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(113deg, rgba(69, 208, 189, 1) 0%, rgba(68, 182, 233, 1) 100%);
	background-clip: text;
	color: transparent;
	font-family: 'Sora', sans-serif;
	max-width: 800px;
}

.footer__banner-cta {
	display: flex;
	align-items: center;
	gap: 12px;
	background: transparent;
	border: 1px solid #52cacf;
	background: transparent;
	color: #52cacf;
	border-radius: 15px;
	padding: 15px 26px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.footer__banner-cta svg {
	width: 16px;
	height: 16px;
	transition: all 0.3s ease;
}

.footer__banner-cta:hover {
	background: #52cacf;
	color: #fff;
}

.footer__banner-cta:hover svg{
	transform: rotate(45deg);
}



.footer__main {
	position: relative;
	z-index: 1;
}

.footer__container {
	max-width: calc(100% - 190px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 40px;
	border-top: 1px solid rgba(203, 203, 203, 1);
	padding-top: 80px;
}

.footer__left {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer__logo h2 {
	font-size: 27px;
	font-weight: 400;
	color: var(--white);
	letter-spacing: 0;
	margin: 0;
	font-family: Earth Phototype;
}

.footer__logo img {
	max-width: 150px;
	object-fit: contain;
}

.footer__social {
	display: flex;
	gap: 12px;
	margin-top: 8px;
}

.footer__social-icon {
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s;
	font-family: 'Sora', sans-serif;
}

.footer__social-icon:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.footer__social-icon svg {
	width: 14px;
	height: 14px;
}

.footer__since {
	width: clamp(450px, 70vw, 750px);
	margin: 0;
	font-size: 150px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(44, 132, 200, 0.6);
	text-transform: lowercase;
	margin-top: 20px;
}



.footer__copyright {
	font-size: clamp(12px, 1.2vw, 14px);
	color: var(--silver);
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
}

.footer__right {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.footer__column-title {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 20px;
	color: white;
}

.footer__links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0;
	margin: 0;
}

.footer__links a {
	color: var(--white);
	text-decoration: none;
	font-size: clamp(14px, 1.2vw, 16px);
	transition: color 0.3s;
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	line-height: 30px;
	position: relative;
	display: inline-block;
}

.footer__link--active {
	text-decoration: underline;
	text-underline-offset: 6px;
	text-decoration-thickness: 1px;
}

.footer__link--active::after {
	display: none;
}

/* Animated underline from left to right */
.footer__links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #ffffff;
	transition: width 0.4s ease;
}

.footer__links a:hover::after {
	width: 100%;
}

.footer__links a:hover {
	color: white;
	text-decoration: none;
}

.footer__bottom {
	max-width: calc(100% - 190px);
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.footer__bottom p {
	margin-top: 20px;
	margin-bottom: 40px;
}



.footer__terms {
	font-size: clamp(12px, 1.2vw, 14px);
	color: var(--silver);
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
}

.footer__terms-link {
	color: var(--silver);
	text-decoration: none;
	transition: color 0.3s;
	position: relative;
	display: inline-block;
}

/* Animated underline from left to right */
.footer__terms-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #ffffff;
	transition: width 0.4s ease;
}

.footer__terms-link:hover::after {
	width: 100%;
}

.footer__terms-link:hover {
	color: #ffffff;
}

.footer {
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 520px;
	/* background: url("assets/images/mask-glow-1.png") bottom center/cover no-repeat; */
	pointer-events: none;
	z-index: 100;
	opacity: 1;
}

/* nội dung footer nằm trên glow */
.footer>* {
	position: relative;
	z-index: 1;
}



/* Responsive Design */
@media (max-width: 1440px) {

	/* .hero__container,
    .promo-banner,
    .tinker-section,
    .features-section__container,
    .usp-section__container,
    .pioneers-section__container,
    .accomplishments-section__container,
    .testimonials-section__container,
    .faq-section__container,
    .blog-section__container,
    .collaborators-section {
        padding: 80px 60px;
    } */

	.collaborators-section__logos {
		gap: 50px;
	}
}

@media (min-width: 1650px) {
	.hero {
		padding: 160px 0 0;
	}

	.hero__container {
		padding: 0 0 100px;
	}
}

@media (max-width: 1199px) {
	.footer__container {
		grid-template-columns: auto;
	}

	.hero {
		min-height: auto;
		max-height: none;
	}

	.hero__container,
	.services{
		padding: 0 20px;
	}

	.marquee__content .marquee__item svg {
		left: -165px;
	}


	.hero__content {
		margin: 0 0 20px;
	}

	.hero__overlay-images .hero__robot-image{
		max-width: 150px;
		max-height: 150px;
	}

	.tinker-section {
		padding: 20px 20px 10px;
	}

	.contact-section__container,
	.collaborators-section {
		max-width: 100%;
		width: 100%;
	}

	.services__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-card--light {
		height: auto;
	}

	.services__container {
		padding: 0 20px;
	}

	.collaborators-section {
		padding: 40px 20px;
	}

	.usp-section {
		padding: 15px 20px 60px;
	}
}

@media (max-width: 1024px) {
	.hero__container,
	.services__container,
	.footer__banner,
	.footer__container,
	.footer__bottom,
	.team__container {
		max-width: 100%;
		width: 100%;
	}

	.services__container {
		padding: 0;
	}
	
	.navbar__container {
		gap: 24px;
	}

	.navbar__menu {
		gap: 20px;
	}

	.navbar__link {
		font-size: 12px;
		padding: 6px 12px;
	}

	.navbar__get-in-touch {
		padding: 8px 16px;
		font-size: 12px;
	}

	.hero__content {
		grid-template-columns: 1fr;
	}

	.hero__title {
		font-size: 48px;
	}
	
	.hero__title-cursor {
		font-size: 48px;
	}

	.hero__right {
		align-items: flex-start;
	}

	.promo-banner {
		padding: 0 60px 60px;
	}

	.promo-banner__container {
		padding: 50px 60px;
	}

	.promo-banner__content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.promo-banner__title {
		font-size: 32px;
	}

	.promo-banner__logo {
		font-size: 100px;
		position: relative;
		bottom: auto;
		left: auto;
	}

	.promo-banner__right {
		align-items: flex-start;
	}

	.promo-banner__description {
		text-align: left;
	}

	.tinker-section__container {
		grid-template-columns: 1fr;
		gap: 60px;
		margin-bottom: 60px;
	}

	.tinker-section__title {
		font-size: 48px;
		text-align: left;
	}

	.tinker-section__logos {
		gap: 40px;
	}

	.pioneers-section {
		min-height: auto;
		border-radius: 0;
	}

	.pioneers-section__container {
		padding: 80px 60px;
	}

	.pioneers-section__content {
		max-width: 100%;
	}

	.pioneers-section__title {
		font-size: 80px;
	}

	.pioneers-section__subtitle {
		font-size: 28px;
	}

	.faq-section__container {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.faq-section__visual {
		min-height: 300px;
	}

	.contact-section {
		padding: 80px 60px;
	}

	.contact-section__container {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.contact-info {
		grid-template-columns: 1fr;
	}

	.footer__banner {
		padding: 60px;
	}

	.footer__banner-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
	}

	.footer__banner-title {
		font-size: 36px;
	}

	.footer__divider {
		margin: 0 60px;
	}

	.footer__main {
		padding: 60px;
	}

	.footer__container {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.footer__right {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px;
	}

	.footer__since {
		font-size: 100px;
	}

	.footer__bottom {
		padding: 0 60px;
	}

	.features-section__header {
		flex-direction: column;
		gap: 40px;
	}

	.features-section__header-right {
		align-items: flex-start;
		max-width: 100%;
	}

	.features-section__description {
		text-align: left;
	}

	.features-section__title {
		font-size: 40px;	
	}

	.features-section__cards {
		grid-template-columns: 1fr;
	}

	.feature-card {
		min-height: 350px;
	}

	.usp-section__subtitle {
		font-size: 36px;
	}

	.usp-section__points {
		grid-template-columns: repeat(2, 1fr);
		padding: 60px 30px;
		gap: 30px;
	}

	.accomplishments-section__title {
		font-size: 40px;
	}

	.accomplishments-section__stats {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.stat-item__value {
		font-size: 64px;
	}

	.accomplishments-section__pillars {
		grid-template-columns: 1fr;
	}

	.blog-section__header {
		flex-direction: column;
		gap: 30px;
	}

	.blog-section__header-left {
		width: 100%;
	}

	.blog-section__more-btn {
		align-self: flex-start;
		margin-top: 0;
	}

	.blog-section__title {
		font-size: 40px;
	}

	.blog-section__posts {
		grid-template-columns: 1fr;
	}

	.footer__container {
		grid-template-columns: 1fr;
	}

	.footer__right {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.navbar__container {
		grid-template-columns: repeat(2, 1fr);
	}

	.header {
		padding: 16px;
	}

	.navbar {
		position: relative;
	}

	.hero__content {
		margin: 0;
	}

	.navbar__container {
		gap: 16px;
		flex-wrap: nowrap;
		position: relative;
		justify-content: space-between;
	}

	.marquee__content .marquee__item svg {
		left: -105px;
	}

	.navbar__left {
		gap: 12px;
	}

	.navbar__logo h1 {
		font-size: 20px;
	}

	.navbar__logo svg,
	.navbar__logo img {
		width: 120px;
	}


	.navbar__menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0px;
		right: 0px;
		background: white;
		flex-direction: column;
		padding: 20px;
		border-radius: 12px;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
		gap: 12px;
		z-index: 1001;
	}

	.navbar__menu.active {
		display: flex;
	}

	.navbar__menu-item {
		width: 100%;
		justify-content: space-between;
	}

	.navbar__link {
		flex: 1;
		text-align: left;
	}

	.navbar__right {
		gap: 12px;
		margin-left: auto;
	}

	.navbar__get-in-touch {
		display: none;
	}

	.navbar__search svg {
		width: 18px;
		height: 18px;
	}

	/* Mobile menu toggle button */
	.navbar__mobile-toggle {
		display: block;
		background: transparent;
		border: none;
		cursor: pointer;
		padding: 8px;
		margin-left: 8px;
	}

	.navbar__mobile-toggle span {
		display: block;
		width: 24px;
		height: 2px;
		background: #333;
		margin: 5px 0;
		transition: 0.3s;
	}

	.hero {
		padding-top: 90px;
        padding-bottom: 0;
		min-height: auto;
	}

	.hero__container {
		padding: 0 20px 20px;
	}

	.hero__content {
		grid-template-columns: 1fr;
		gap: 0;
		text-align: center;
	}

	.hero__left {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero__right {
		gap: 0px;
	}

	.hero__title {
		font-size: 32px;
		letter-spacing: -1px;
		line-height: 1.2;
		min-height: 1.2em; /* Giữ chỗ cho 1 dòng text */
	}
	
	.hero__title-text {
		min-height: 1.2em; /* Giữ chỗ cho text */
	}
	
	.hero__title-cursor {
		font-size: 32px;
	}

	.hero__description {
		font-size: 15px;
		margin: 20px auto;
		max-width: 100%;
	}

	.hero__cta {
		padding: 12px 28px;
		font-size: 15px;
		justify-content: center;
		margin: auto;
	}

	.promo-banner {
		padding: 40px 16px 10px;
		margin-top: 0;
	}

	.promo-banner__container {
		padding: 30px 20px;
		border-radius: 16px;
	}

	.promo-banner__left {
		flex-direction: column;
		align-items: flex-start;
	}

	.promo-banner__content {
		display: flex;
		flex-direction: column;
		gap: 20px;
		text-align: center;
		padding: 0px;
	}

	.promo-banner__title {
		font-size: 24px;
		line-height: 1.3;
		text-align: left;
	}

	.promo-banner__logo {
		font-size: 60px;
		position: static;
		margin: 10px 0;
	}

	.promo-banner__right {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.promo-banner__description {
		font-size: 14px;
		text-align: center;
		margin-bottom: 20px;
	}

	.promo-banner__watch-btn {
		padding: 12px 24px;
		font-size: 14px;
		width: 100%;
		justify-content: center;
	}

	.tinker-section {
		padding: 40px 16px 10px;
	}

	.tinker-section__container {
		display: flex;
		flex-direction: column;
		gap: 30px;
		margin-bottom: 30px;
	}

	.tinker-section__left {
		min-height: 150px;
		display: flex;
		justify-content: center;
		position: absolute;
	}

	.tinker-section__gradient {
		width: 100px;
		height: 100px;
	}

	.tinker-section__pattern {
		width: 120px;
	}

	.tinker-section__title {
		font-size: 28px;
		text-align: center;
		letter-spacing: -1px;
		line-height: 1.2;
	}

	.tinker-section__logos {
		gap: 20px;
		align-items: center;
		justify-content: center;
	}

	.tinker-logo {
		justify-content: center;
	}

	.tinker-section__right {
		padding: 0;
		width: 100%;
	}

	.services {
		padding: 40px 16px;
	}

	.services__header {
		flex-direction: column;
		gap: 30px;
		margin-bottom: 40px;
		align-items: flex-start;

	}

	.services__tag {
		font-size: 12px;
	}

	.services__title {
		font-size: 32px;
		letter-spacing: -1px;
	}

	.services__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.service-card {
		max-width: 100% !important;
		height: auto !important;
		padding: 30px 24px !important;
	}

	.service-card__title {
		font-size: 24px !important;
	}

	.marquee {
		padding: 30px 0;
	}

	.marquee__content .marquee__item {
		font-size: 40px;
		margin-right: 30px;
		letter-spacing: -1px;
	}

	.usp-section {
		padding: 60px 16px;
	}

	.usp-section__header {
		margin-bottom: 30px;
	}

	.usp-section__tag {
		font-size: 12px;
	}

	.usp-section__title {
		font-size: 28px !important;
		line-height: 1.2 !important;
		margin-bottom: 0 !important;
		max-width: 100% !important;
	}

	.usp-section__points {
		grid-template-columns: 1fr;
		padding: 0;
		gap: 24px;
	}

	.usp-point {
		max-width: 100%;
		gap: 10px;
	}

	.pioneers-section-wrapper {
		padding: 0;
	}

	.pioneers-section {
		padding: 40px 16px;
	}

	.pioneers-section__container {
		display: flex !important;
		flex-direction: column !important;
		padding: 60px 16px !important;
		background: #161616 !important;
		/* Ensure visibility */
		border-radius: 20px !important;
	}

	.pioneers-section__container:before {
		display: none;
		/* Hide the skew background on mobile for simplicity */
	}

	.pioneers-section__col--left {
		display: none;
		/* Hide the network image on mobile to save space */
	}

	.pioneers-section__stroke-text {
		font-size: 45px !important;
		margin-bottom: 20px !important;
		margin-top: 0px !important;
		text-align: left;
		width: 100%;
		line-height: 1;
	}

	.pioneers-section__content {
		max-width: 100% !important;
		text-align: left;
	}

	.pioneers-section__tag {
		font-size: 12px;
		margin-bottom: 16px;
	}

	.pioneers-section__title {
		font-size: 28px !important;
		line-height: 1.2;
		margin-bottom: 24px !important;
		letter-spacing: -1px;
	}

	.pioneers-section__text p {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 16px;
	}

	.pioneers-section__cta {
		width: 100%;
		justify-content: center;
	}

	.features-section,
	.usp-section,
	.accomplishments-section {
		padding: 60px 16px;
		width: 100%;
	}

	.accomplishments-section__tag {
		font-size: 12px;
	}

	.accomplishments-section__title {
		font-size: 32px !important;
		line-height: 1.2 !important;
		margin-bottom: 40px !important;
		letter-spacing: -1px;
	}

	.accomplishments-section__stats {
		grid-template-columns: 1fr;
		gap: 24px !important;
		margin-bottom: 60px;
	}

	.stat-card {
		padding: 20px 0;
		width: 100% !important;
	}

	.stat-card--dark {
		padding: 30px !important;
	}

	.stat-card__value {
		font-size: 60px !important;
		margin-bottom: 20px !important;
	}

	.stat-card__label {
		font-size: 18px !important;
		line-height: 1.4 !important;
	}

	.stat-card__description {
		font-size: 14px !important;
		line-height: 1.6 !important;
	}

	.tech-grid {
		grid-template-columns: 1fr;
		gap: 40px !important;
	}

	.tech-item {
		gap: 20px !important;
	}

	.tech-item__title {
		font-size: 24px !important;
	}

	.tech-item__list li {
		font-size: 14px !important;
		line-height: 2 !important;
	}

	.testimonials-section {
		padding: 40px 16px;
	}

	.testimonials-section__container {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.testimonial-card__tag {
		margin-top: 0;
	}

	.testimonial-card__stats {
		margin-top: 30px;
	}

	.testimonial-card {
		padding: 40px 20px !important;
		min-height: auto !important;
	}

	.testimonial-card__quote-icon {
		font-size: 60px !important;
		margin-bottom: 10px !important;
	}

	.testimonial-card__quote {
		font-size: 15px !important;
		line-height: 1.6 !important;
		margin-bottom: 24px !important;
	}

	.testimonial-card--gradient {
		padding: 40px 16px !important;
	}

	.testimonial-card__stats-value {
		font-size: 60px !important;
		line-height: 1 !important;
		margin-bottom: 15px !important;
	}

	.faq-section {
		padding: 60px 16px;
		margin: 0 16px;
	}

	.faq-section__container {
		display: flex;
		flex-direction: column;
		gap: 30px;
		position: relative;
	}

	.faq-section__visual {
		position: absolute;
		left: 0;
		opacity: 0.2;
		pointer-events: none;
	}

	.faq-section__title {
		font-size: 28px !important;
		line-height: 1.2 !important;
		margin-bottom: 30px !important;
		letter-spacing: -1px;
	}

	.faq-item__question {
		font-size: 20px !important;
		margin-bottom: 15px !important;
	}

	.faq-item__answer p {
		font-size: 14px !important;
		line-height: 1.6 !important;
	}

	.faq-section__view-more {
		padding: 12px 24px;
		font-size: 15px;
	}

	.blog-section {
		padding: 60px 16px;
		width: 100%;
	}

	.service-card--teal,
	.service-card--purple {
		min-height: auto;
	}

	.blog-section__header {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 40px;
	}

	.blog-section__title {
		font-size: 28px !important;
		line-height: 1.2 !important;
		letter-spacing: -1px;
	}

	.blog-section__more-btn {
		width: 100%;
		justify-content: center;
	}

	.blog-section__posts {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.blog-section__posts {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.blog-post__image {
		height: 200px !important;
	}

	.blog-post__meta {
		font-size: 12px;
		padding: 16px 20px 10px;
	}

	.blog-post__title-link {
		font-size: 20px !important;
		line-height: 1.4 !important;
	}

	.blog-post__categories {
		font-size: 12px;
		padding: 0 20px 30px !important;
	}

	.collaborators-section {
		padding: 10px 16px 20px;
		width: 100%;
	}

	.collaborators-section__tag {
		font-size: 12px;
	}

	.collaborators-section__title {
		font-size: 28px !important;
		line-height: 1.2 !important;
		margin-bottom: 40px !important;
		letter-spacing: -1px;
	}

	.collaborators-section__logos {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 40px !important;
		justify-items: center;
	}

	.collaborator-logo {
		justify-content: center;
	}

	.contact-section {
		padding: 60px 16px;
		margin: 0 16px;
	}

	.contact-section__container {
		display: flex;
		flex-direction: column;
		gap: 40px;
		max-width: 100% !important;
	}

	.contact-section__tag {
		font-size: 12px;
	}

	.contact-section__title {
		font-size: 28px;
	}

	.contact-section__description {
		font-size: 14px !important;
	}

	.contact-info {
		grid-template-columns: 1fr;
		gap: 30px !important;
	}

	.contact-section__form {
		padding: 20px;
	}

	.contact-form__title {
		font-size: 24px;
	}

	.footer {
		padding: 0;
		margin: 0 16px;
	}

	.footer__banner {
		padding: 60px 16px !important;
		width: 100% !important;
	}

	.footer__banner-content {
		flex-direction: column !important;
		align-items: center !important;
		text-align: center;
		gap: 30px;
	}

	.footer__banner-title {
		font-size: 28px !important;
		line-height: 1.2 !important;
	}

	.footer__divider {
		margin: 0 24px;
	}

	.footer__main {
		padding: 40px 16px !important;
		width: 100% !important;
	}

	.footer__container {
		display: flex;
		flex-direction: column;
		gap: 40px;
		padding-top: 40px !important;
		width: 100% !important;
	}

	.footer__right {
		grid-template-columns: 1fr !important;
		gap: 30px !important;
	}

	.footer__since {
		font-size: 60px !important;
		width: 100% !important;
		letter-spacing: -2px;
	}

	.footer__bottom {
		padding: 0;
		text-align: center !important;
		margin-top: 20px;
		margin-bottom: 30px;
		flex-direction: column !important;
		width: 100% !important;
		gap: 0;
	}

	.footer__bottom p {
		margin-bottom: 0;
	}

	.testimonials-section__container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.testimonial-card {
		padding: 40px 30px;
		min-height: 400px;
	}

	.testimonial-card__quote-icon {
		font-size: 80px;
	}

	.testimonial-card__quote {
		font-size: 16px;
	}

	.testimonial-card__title {
		font-size: 28px;
	}

	.testimonial-card__stats-value {
		font-size: 56px;
	}

	.usp-section__title {
		font-size: 32px;
		margin-bottom: 30px;
	}

	.usp-section__header {
		margin-bottom: 40px;
	}

	.usp-section__tag {
		font-size: 12px;
	}

	.usp-section__subtitle {
		font-size: 24px;
		letter-spacing: -1px;
	}

	.usp-section__points {
		grid-template-columns: 1fr;
		padding: 0;
		gap: 30px;
	}

	.usp-point__icon {
		width: 56px;
		height: 56px;
		margin-bottom: 0;
	}

	.usp-point__icon img {
		width: 28px;
		height: 28px;
	}

	.usp-point__title {
		font-size: 20px;
	}

	.usp-point__description {
		font-size: 14px;
	}
}

/* Team Section */
.team {
	padding: 50px 0 100px;
	background: #ffffff;
	overflow: hidden;
}

.team__container {
	width: calc(100% - 190px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.team__header {
	max-width: 480px;
	grid-column: span 2;
}

.team__tag {
	display: block;
	font-size: 14px;
	color: #898989;
	margin-bottom: 24px;
}

.team__title {
	font-size: 40px;
	font-weight: 400;
	line-height: 1.2;
	color: #111111;
	margin-bottom: 40px;
}

.team__stats {
	display: flex;
	flex-direction: column;
	margin-bottom: 40px;
}

.team__stats-value {
	font-size: 110px;
	font-weight: 800;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px #52cacf;
	font-family: 'Sora', sans-serif;
	margin-bottom: 10px;
}

.team__stats-label {
	font-size: 16px;
	font-weight: 600;
	color: #111111;
}

.team__grid {
	display: contents;
	/* Header and cards participate in the same grid */
}

/* Team Card Styles */
.team-card {
	position: relative;
	display: flex;
	background: #fff;
	border-radius: 20px;
	flex-direction: column;
	gap: 0;
	transition: transform 0.3s ease;
	border: 1px solid #E0E0E0;
	overflow: hidden;
}

.team-card:hover {
	transform: translateY(-10px) !important;
}

.team-card__image-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 0.85;
	border-radius: 12px;
}

.team-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 12px;
	overflow: hidden;
}

.team-card__social-pill {
	position: absolute;
	top: 50%;
	left: 35px;
	transform: translateY(-50%) translateX(-20px);
	background: #111111;
	border-radius: 30px;
	padding: 15px 8px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	z-index: 10;
}

.team-card:hover .team-card__social-pill {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	transition: opacity 0.2s;
	color: #fff;
}

.social-icon img {
	width: 16px;
	height: 16px;
}

.team-card__share {
	position: absolute;
	bottom: -11px;
	left: 20px;
	width: 70px;
	height: auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	cursor: pointer;
	transition: background 0.3s;
	border: none;
	z-index: 5;
}

.team-card__bg-text {
	position: absolute;
	top: 0;
	right: 17px;
    font-size: 47px;
	font-weight: bold;
	color: #ffffff;
	opacity: 0.8;
	pointer-events: none;
	white-space: nowrap;
	font-family: 'Sora', sans-serif;
	letter-spacing: -2px;
	transform: translateY(0) rotate(-90deg);
	transform-origin: right center;
}

.team-card__info {
	text-align: left;
	padding: 30px;
}

.team-card__name {
	font-size: 20px;
	font-weight: 600;
	color: #111111;
	margin-bottom: 8px;
}

.team-card__title {
	font-size: 14px;
	color: #898989;
	font-weight: 500;
}

/* Specific Staggered Grid Positions */
.team-card--v1 {
	grid-column: 3;
	grid-row: 1;
	margin-top: 50px;
}

.team-card--v2 {
	grid-column: 4;
	grid-row: 1;
	margin-top: 100px;
}

.team-card--v3 {
	grid-column: 2;
	grid-row: 2;
}

.team-card--v4 {
	grid-column: 3;
	grid-row: 2;
	margin-top: -50px;
}

.team-card--v5 {
	grid-column: 4;
	grid-row: 2;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
	.team__container {
		grid-template-columns: 1fr 1fr;
		width: calc(100% - 100px);
	}

	.team-card--v1,
	.team-card--v2,
	.team-card--v3,
	.team-card--v4,
	.team-card--v5 {
		grid-column: auto;
		grid-row: auto;
		margin-top: 0;
	}

	.team__header {
		grid-column: span 2;
		margin-bottom: 40px;
	}
}

@media (max-width: 768px) {
	.team {
		padding: 40px 0 60px;
	}

	.team__container {
		grid-template-columns: 1fr;
		width: calc(100% - 32px);
		gap: 16px;
	}

	.team__header {
		grid-column: span 1;
	}

	.team__title {
		font-size: 40px;
	}

	.team__stats-value {
		font-size: 70px;
	}
}

/* Swiper Fixes */
.testimonials-slider {
	width: 100%;
	min-width: 0;
	overflow: hidden;
	position: relative;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}

/* Update Testimonials Navigation Z-Index */
.testimonial-card__navigation {
	z-index: 10;
}

.content-section {
	width: calc(100% - 190px);
	margin: 0 auto;
	padding: 80px 0;
}

.content-section h1, 
.content-section h2,
.content-section h3,
.content-section h4,
.content-section h5,
.content-section h6 {
	margin-bottom: 5px;
	margin-top: 10px;
}

/* ============================================
   PROFESSIONAL ANIMATIONS & EFFECTS
   ============================================ */

/* Loading Animation with Robot */
.page-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
	opacity: 0;
	visibility: hidden;
}

.loader-robot {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.loader-robot__image {
	width: 80px;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
	animation: robotAnimation 2s ease-in-out infinite;
}

.loader-progress {
	width: 100px;
	height: 3px;
	background: rgba(82, 202, 207, 0.2);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.loader-progress__bar {
	height: 100%;
	width: 0%;
	background: #52cacf;
	border-radius: 2px;
	transition: width 0.3s ease;
}

@keyframes robotAnimation {
	0%, 100% {
		transform: translateY(0) scale(1) rotate(0deg);
		opacity: 1;
	}
	25% {
		transform: translateY(-10px) scale(1.05) rotate(-3deg);
		opacity: 0.95;
	}
	50% {
		transform: translateY(-15px) scale(1.1) rotate(0deg);
		opacity: 0.9;
	}
	75% {
		transform: translateY(-10px) scale(1.05) rotate(3deg);
		opacity: 0.95;
	}
}

/* Fade Up Animation */
.fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.active {
	opacity: 1;
	transform: translateY(0);
}

/* Fade In Animation */
.fade-in {
	opacity: 0;
	transition: opacity 0.8s ease;
}

.fade-in.active {
	opacity: 1;
}

/* Slide In Left */
.slide-in-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.active {
	opacity: 1;
	transform: translateX(0);
}

/* Slide In Right */
.slide-in-right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.active {
	opacity: 1;
	transform: translateX(0);
}

/* Scale In Animation */
.scale-in {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.active {
	opacity: 1;
	transform: scale(1);
}

/* Hero Title Glow Effect */
.hero__title {
	position: relative;
}

.hero__title::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.hero__title:hover::after {
	opacity: 1;
	animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
	0%, 100% {
		filter: drop-shadow(0 0 10px rgba(30, 30, 30, 0.3));
	}
	50% {
		filter: drop-shadow(0 0 20px rgba(30, 30, 30, 0.6));
	}
}

/* Enhanced Card Hover Effects */
.service-card,
.feature-card,
.testimonial-card,
.blog-post,
.team-card {
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover,
.feature-card:hover {
	cursor: pointer;
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Button Hover Effects */
.btn,
.hero__cta,
.navbar__get-in-touch,
.pioneers-section__cta,
.team__explore,
.contact-form-shortcode .wpcf7-submit.btn,
.footer__banner-cta {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.btn::after,
.hero__cta::after,
.navbar__get-in-touch::after,
.pioneers-section__cta::after,
.team__explore::after,
.contact-form-shortcode .wpcf7-submit.btn::after,
.footer__banner-cta::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
	pointer-events: none;
	z-index: 0;
}

.btn:hover::after,
.hero__cta:hover::after,
.navbar__get-in-touch:hover::after,
.pioneers-section__cta:hover::after,
.team__explore:hover::after,
.contact-form-shortcode .wpcf7-submit.btn:hover::after,
.footer__banner-cta:hover::after {
	width: 300px;
	height: 300px;
}

.btn:hover,
.hero__cta:hover,
.navbar__get-in-touch:hover,
.pioneers-section__cta:hover,
.team__explore:hover,
.contact-form-shortcode .wpcf7-submit.btn:hover,
.footer__banner-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Ensure text and icons are above ripple effect */
.navbar__get-in-touch,
.pioneers-section__cta,
.team__explore,
.contact-form-shortcode .wpcf7-submit.btn,
.footer__banner-cta {
	position: relative;
	z-index: 1;
}

/* SVG rotate effect for buttons with SVG */
.pioneers-section__cta svg,
.team__explore svg,
.footer__banner-cta svg {
	transition: transform 0.3s ease;
	position: relative;
	z-index: 1;
}

.pioneers-section__cta:hover svg,
.team__explore:hover svg,
.footer__banner-cta:hover svg {
	transform: rotate(45deg);
}

/* Section Title Underline Animation */
.services__title,
.features-section__title,
.usp-section__title,
.pioneers-section__title,
.accomplishments-section__title,
.team__title,
.faq-section__title,
.blog-section__title,
.contact-section__title {
	position: relative;
	display: inline-block;
}

.services__title::after,
.features-section__title::after,
.usp-section__title::after,
.pioneers-section__title::after,
.accomplishments-section__title::after,
.team__title::after,
.faq-section__title::after,
.blog-section__title::after,
.contact-section__title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--eerie-black), transparent);
	transition: width 1s ease;
}

.services__title.active::after,
.features-section__title.active::after,
.usp-section__title.active::after,
.pioneers-section__title.active::after,
.accomplishments-section__title.active::after,
.team__title.active::after,
.faq-section__title.active::after,
.blog-section__title.active::after,
.contact-section__title.active::after {
	width: 100px;
}

/* Parallax Elements */
.parallax-element {
	transition: transform 0.1s ease-out;
	will-change: transform;
}

/* Smooth Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

.scroll-indicator::before {
	content: '';
	display: block;
	width: 2px;
	height: 30px;
	background: linear-gradient(to bottom, transparent, var(--eerie-black));
	margin: 0 auto;
}

/* Number Counter Animation */
.stat-card__value,
.team__stats-value,
.testimonial-card__stats-value {
	transition: all 0.3s ease;
}

.stat-card__value:hover,
.team__stats-value:hover {
	transform: scale(1.1);
	text-shadow: 0 0 20px rgba(30, 30, 30, 0.3);
}

/* Image Hover Effects */
img {
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-card img:hover,
.feature-card img:hover,
.blog-post img:hover {
	transform: scale(1.05);
}

/* FAQ Accordion Animation */
.faq-item {
	transition: all 0.3s ease;
}

.faq-item--active {
	transform: translateX(5px);
}

/* Pulse Animation */
@keyframes pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.05);
	}
}

.pulse {
	animation: pulse 2s ease-in-out infinite;
}

/* Shimmer Effect */
@keyframes shimmer {
	0% {
		background-position: -1000px 0;
	}
	100% {
		background-position: 1000px 0;
	}
}

.shimmer {
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	background-size: 1000px 100%;
	animation: shimmer 2s infinite;
}

/* Gradient Animation */
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.gradient-animated {
	background-size: 200% 200%;
	animation: gradientShift 5s ease infinite;
}

/* Floating Animation */
@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

.float {
	animation: float 3s ease-in-out infinite;
}

/* Rotate Animation */
@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.rotate {
	animation: rotate 20s linear infinite;
}

/* Text Reveal Animation */
.text-reveal {
	overflow: hidden;
}

.text-reveal span {
	display: inline-block;
	opacity: 0;
	transform: translateY(100%);
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-reveal.active span {
	opacity: 1;
	transform: translateY(0);
}

/* Word Reveal Animation - for title text reveal */
.word-reveal {
	opacity: 0;
	transform: translateY(20px);
	display: inline-block;
	transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
	            transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	white-space: pre-wrap; /* Preserve spaces and line breaks */
	vertical-align: baseline;
}

/* Ensure gradient classes work with word reveal - preserve original gradient styles */
.hero__title .tinker-section__title--gradient,
.tinker-section__title .tinker-section__title--gradient {
	background: #52cacf;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline;
	color: transparent;
}

/* If word-reveal is inside gradient span, apply gradient directly to word-reveal */
/* This ensures gradient style is preserved even when words are wrapped */
.tinker-section__title--gradient .word-reveal,
.hero__title .tinker-section__title--gradient .word-reveal,
h1.tinker-section__title .tinker-section__title--gradient .word-reveal,
h1.hero__title .tinker-section__title--gradient .word-reveal,
h2.tinker-section__title .tinker-section__title--gradient .word-reveal,
.hero__title span.tinker-section__title--gradient .word-reveal,
.tinker-section__title span.tinker-section__title--gradient .word-reveal {
	background: #52cacf !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	color: transparent !important;
	display: inline-block;
}

/* Ensure gradient span itself maintains its style */
.hero__title span.tinker-section__title--gradient,
.tinker-section__title span.tinker-section__title--gradient {
	background: #52cacf;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline;
	color: transparent;
}

/* Ensure <br> tags work properly */
.hero__title br,
.tinker-section__title br {
	display: block;
	content: '';
	margin: 0;
	line-height: 0;
}

/* Stagger Animation Delays */
.fade-up:nth-child(1) { transition-delay: 0.1s; }
.fade-up:nth-child(2) { transition-delay: 0.2s; }
.fade-up:nth-child(3) { transition-delay: 0.3s; }
.fade-up:nth-child(4) { transition-delay: 0.4s; }
.fade-up:nth-child(5) { transition-delay: 0.5s; }
.fade-up:nth-child(6) { transition-delay: 0.6s; }

/* Mobile Optimizations */
@media (max-width: 768px) {
	.fade-up,
	.slide-in-left,
	.slide-in-right {
		transform: translateY(20px);
	}
	
	.service-card:hover,
	.feature-card:hover {
		transform: translateY(-4px) scale(1.01);
	}
}

/* Performance Optimizations */
.will-change-transform {
	will-change: transform;
}

.will-change-opacity {
	will-change: opacity;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}