:root {
	--text-color: #000000;
	--background-color: #EFEFEF;
	--primary-color: #067c7b;
	--secondary-color: #F2D268;
	--white-space: hsl(0, 0%, 100%);
	--grey:#959595;
	--secondary-accent: #bde0e1;
	--gradiant: linear-gradient(45deg, #067c7b, #bde0e1);

	--text-primary: #000000;
	--primary: #067c7b;
	--secondary: #F2D268;
	--text-secondary: #000000;
	--gradient-primary: linear-gradient(#067c7b to #bde0e1);
	--dark-secondary: #f8fafc;
	--border: #e5e7eb;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Inter", sans-serif;
	background: #E7E7E7;
	color: var(--text-primary);
	overflow-x: hidden;
	line-height: 1.6;
}

/* Ensure top category dropdown arrows are visible (SVG uses currentColor). */
.nav-button {
	color: #000;
}

.nav-button .nav-arrow {
	color: #000;
}

.hero {
	display: flex;
	align-items: center;
	background: #e7e7e7;
	padding: 1rem;
}
.hero-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	background: white;
	padding: 1.5rem;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	gap: 2rem;
}

@media (min-width: 992px) {
	.hero {
		padding: 2rem 4rem;
	}
	.hero-container {
		padding: 2rem;
	}
}
.hero-content {
	text-align: center;
	margin:0;
}
@media (min-width: 992px) {
	.hero-content {
		text-align: left;
		margin:0;
	}
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--secondary-accent);
	color: var(--primary);
	padding: 6px 14px;
	border-radius: 50px;
	font-size: clamp(0.75rem, 2vw, 0.85rem);
	font-weight: 600;
	margin-bottom: 10px;
}
.hero-title {
	font-weight: 800;
	line-height: 1.5;
	background: var(--primary-color);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero-subtitle {
	font-size: clamp(0.95rem, 2vw, 1.3rem);
	color: var(--text-secondary);
	line-height: 1.6;
}

@media (min-width: 768px) {
	.hero-container {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		text-align: left;
		padding: 2rem;
	}
	.hero-content {
		flex: 1;
	}
	.hero-visual {
		flex: 1;
		padding: 1rem;
	}
}

@media (max-width: 576px) {
	.hero {
		padding: 1rem;
	}

	.hero-container {
		padding: 1rem;
		border-radius: 12px;
		box-shadow: none;
	}

	.hero-title {
		font-size: 1.8rem;
		line-height: 1.3;
	}

	.hero-subtitle {
		font-size: 1rem;
		line-height: 1.5;
	}

	.hero-visual {
		width: 100%;
		padding: 0.5rem;
	}

	.robot-showcase {
		width: 200px;
		height: 200px;
	}
}
.btn-primary,
.btn-secondary {
	padding: 0.8rem 1rem;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.7rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}
.btn-primary {
	background: var(--primary-color);
	color: white;
}
.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(220, 38, 38, 0.35);
	color: white;
	background:var(--primary);
}
.btn-secondary {
	background: grey;
	color: white;
}
.btn-secondary:hover {
	background: #5a5a5a;
	transform: translateY(-3px);
}
@media (max-width: 576px) {
	.btn-primary,
	.btn-secondary {
		padding: 0.6rem 1rem;
		font-size: 0.85rem;
		width: 100%;
		margin-top:10px;
	}
}
.stat-box {
	background: var(--secondary);
	padding: 1rem;
	border-radius: 12px;
	transition: all 0.3s ease;
	cursor: pointer;
	text-align: left;
	height:100%;
}

.stat-number {
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
	font-size:48px;
	text-align:center;
}

.stat-label {
	font-size: x-small;
	color: var(--text-secondary);
	text-align:center;
}
.hero-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeInRight 1s ease-out 0.8s both;
	padding: 50px 50px 50px;
}
.robot-showcase {
	position: relative;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(220, 38, 38, 0.05) 0%,
		transparent 70%
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: rotateBackground 20s linear infinite;
}
@media (min-width: 768px) {
	.robot-showcase {
		width: 300px;
		height: 300px;
	}
}
@media (min-width: 992px) {
	.robot-showcase {
		width: 400px;
		height: 400px;
	}
}
.robot-main {
	position: relative;
	z-index: 2;
}

.robot-body {
	width: 80px;
	height: 120px;
	background: linear-gradient(145deg, #e5e7eb, #f3f4f6);
	border-radius: 20px;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	animation: robotFloat 3s ease-in-out infinite;
}

.robot-head {
	width: 60px;
	height: 60px;
	background: linear-gradient(145deg, var(--primary), var(--secondary));
	border-radius: 15px;
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 25px rgba(220, 38, 38, 0.05) 0%,
;
}

.robot-eyes {
	display: flex;
	gap: 8px;
}

.robot-eye {
	width: 8px;
	height: 8px;
	background: white;
	border-radius: 50%;
	animation: robotBlink 3s ease-in-out infinite;
}

.robot-arm {
	width: 12px;
	height: 60px;
	background: linear-gradient(180deg, var(--primary), var(--secondary));
	position: absolute;
	border-radius: 6px;
	transform-origin: top;
	box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.robot-arm.left {
	top: 20px;
	left: -20px;
	animation: robotArmLeft 4s ease-in-out infinite;
}

.robot-arm.right {
	top: 20px;
	right: -20px;
	animation: robotArmRight 4s ease-in-out infinite;
}

.robot-base {
	width: 100px;
	height: 20px;
	background: linear-gradient(145deg, #d1d5db, #e5e7eb);
	border-radius: 10px;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.floating-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.floating-icon {
	position: absolute;
	background: white;
	border-radius: 12px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	animation: floatIcon 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.floating-icon:nth-child(2) {
	top: 20%;
	right: 15%;
	animation-delay: 2s;
}

.floating-icon:nth-child(3) {
	bottom: 20%;
	left: 5%;
	animation-delay: 4s;
}

.floating-icon:nth-child(4) {
	bottom: 10%;
	right: 10%;
	animation-delay: 1s;
}
.products {
	background: #e7e7e7;
	padding: 2rem 0;
}
@media (min-width: 768px) {
	.products {
		padding: 2rem 0;
	}
}
.product-card {
	background: white;
	border: 2px solid var(--border);
	border-radius: 24px;
	transition: all 0.4s ease;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	height: 100%;
	display: flex;
	flex-direction: column;
}
.product-card:hover {
	transform: scale(1.02);
	border-color: var(--primary);
	box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
}
.product-image {
	margin: 1rem;
	border-radius: 15px;
	height: 200px;
	background: linear-gradient(135deg, var(--dark-secondary), #e2e8f0);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	overflow: hidden;
}
@media (min-width: 768px) {
	.product-image {
		height: 240px;
		font-size: 4rem;
	}
}
.product-image img {
	width: auto;
	height: inherit;
	object-fit: cover;
}
.product-content {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}
@media (min-width: 768px) {
	.product-content {
		padding: 2rem;
	}
}
.product-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	margin-top: 0.3rem;
	color: var(--text-primary);
}
@media (min-width: 768px) {
	.product-title {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
}
.product-description {
	color: var(--text-secondary);
	margin-bottom: 1rem;
	line-height: 1.6;
	font-size: 0.9rem;
}
@media (min-width: 768px) {
	.product-description {
		margin-bottom: 1.5rem;
		font-size: 0.95rem;
	}
}
.product-features {
	list-style: none;
	margin-bottom: 1.5rem;
	padding: 0;
	flex: 1;
}
@media (min-width: 768px) {
	.product-features {
		margin-bottom: 2rem;
	}
}
.product-features li {
	color: var(--text-secondary);
	padding: 0.4rem 0;
	position: relative;
	padding-left: 1.75rem;
	font-size: 0.85rem;
}
@media (min-width: 768px) {
	.product-features li {
		padding: 0.5rem 0;
		padding-left: 2rem;
		font-size: 0.95rem;
	}
}
.product-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0.4rem;
	color: var(--secondary);
	font-weight: bold;
	background: rgba(239, 68, 68, 0.1);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
}
.features {
	padding: 2rem 0;
	background: #e7e7e7;
	margin:1rem;
}
@media (min-width: 768px) {
	.features {
		padding: 3rem 0;
	}
}
.deploy-section {
	background: var(--primary);
	padding: 2rem;
	border-radius: 15px;
	color: white;
	box-shadow: inset 3px 8px 30px rgba(0.9, 0.9, 0.9, 0.3);
}
.hover-animate {
	max-width: 150px;
	background: whitesmoke;
	border-radius: 15px;
	box-shadow: 0.1px 8px 30px rgba(255, 255, 255, 0.3);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-animate:hover {
	transform: scale(1.05) translateY(-5px);
	box-shadow: 0 12px 40px rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
	.deploy-section {
		padding: 2rem;
	}
}
.deploy-section h2 {
	color: white;
	font-size: clamp(1.25rem, 3vw, 2rem);
	margin-top: 0px;
}
.deploy-section p {
	font-size: clamp(0.9rem, 2vw, 1rem);
	margin-bottom: 0;
}
.services {
	padding: 2rem 0;
	background: #e7e7e7;
}
@media (min-width: 992px) {
	.services {
		padding: 5rem 0;
	}
}
.services-header h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	margin-bottom: 1rem;
}
.services-header h2 .highlight {
	color: var(--primary);
}
.services-header p {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: clamp(0.9rem, 2vw, 1rem);
	margin-bottom: 1rem;
}
.timeline {
	position: relative;
	padding-left: 25px;
}
@media (min-width: 768px) {
	.timeline {
		padding-left: 24px;
	}
}
.timeline::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, var(--primary), transparent);
}
.timeline-item {
	position: relative;
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}
@media (min-width: 768px) {
	.timeline-item {
		margin-bottom: 2.5rem;
		padding-left: 2rem;
	}
}
.timeline-item::before {
	content: "";
	position: absolute;
	left: -39px;
	top: 0;
	width: 10px;
	height: 10px;
	background: var(--primary);
	border-radius: 50%;
	border: 2px solid white;
	box-shadow: 0 0 0 2px var(--primary);
}
@media (min-width: 768px) {
	.timeline-item::before {
		border: 3px solid white;
	}
}
@media (min-width: 576px) {
	.timeline-item::before {
		left: -28px;
	}
}
.timeline-item h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
	.timeline-item h3 {
		font-size: 1.2rem;
	}
}
.timeline-item p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 0;
}
@media (min-width: 768px) {
	.timeline-item p {
		font-size: 0.95rem;
	}
}
.timeline-item:hover {
	transform: translateX(10px);
}

.timeline-item:hover::before {
	transform: scale(1.5);
	box-shadow: 0 0 0 4px var(--primary), 0 0 20px rgba(220, 38, 38, 0.5);
}
.timeline-item:hover h3 {
	color: var(--primary);
}
.custom-footer {
	padding: 2rem 0 1rem;
	background: var(--primary);
	border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
	.custom-footer {
		padding: 3rem 0 1.5rem;
	}
}
.footer-section h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: white;
	margin-top:0px;
}
.footer-section a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	display: inline-block;
}
.footer-section a:hover {
	color: white;
	transform: translateX(5px);
}
.footer-bottom {
	text-align: center;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes robotFloat {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes robotBob {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-5px) rotate(5deg);
	}
}

@keyframes robotBlink {
	0%,
	90%,
	100% {
		opacity: 1;
	}
	95% {
		opacity: 0.2;
	}
}

@keyframes robotArmLeft {
	0%,
	100% {
		transform: rotate(-15deg);
	}
	50% {
		transform: rotate(-45deg);
	}
}

@keyframes robotArmRight {
	0%,
	100% {
		transform: rotate(15deg);
	}
	50% {
		transform: rotate(45deg);
	}
}

@keyframes rotateBackground {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes sparkle {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
}

@keyframes floatIcon {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	33% {
		transform: translateY(-15px) rotate(5deg);
	}
	66% {
		transform: translateY(-8px) rotate(-3deg);
	}
}

@keyframes shimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

@keyframes bgFloat {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}
	100% {
		transform: translate(-50px, -50px) rotate(360deg);
	}
}
.reveal {
	opacity: 0;
	transform: translateY(60px);
	transition: all 0.8s ease;
}

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

.svg-shadow {
	max-width: 150px;
	transition: filter 0.3s ease;
}

.svg-shadow:hover {
	filter: drop-shadow(0 8px 20px rgba(220, 38, 38, 0.05) 0%);
}
.landing_robo{
	top:20px;
}
