/** @format */

.hero-pattern {
	background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(198, 77, 16, 0.85)),
		url("../images/banner.png") center/cover;
}
.card-hover {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.training-card {
	background: linear-gradient(to bottom right, #f0f9ff, #dbeafe);
	border-left: 4px solid #1e3a8a;
}
.team-card {
	transition: all 0.4s ease;
}
.team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.work-card {
	position: relative;
	overflow: hidden;
}
.work-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(30, 58, 138, 0.9), transparent);
	transform: translateY(100%);
	transition: transform 0.4s ease;
}
.work-card:hover .work-overlay {
	transform: translateY(0);
}
.section-title:after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: #f59e0b;
	margin: 15px auto 0;
}
.nav-link {
	position: relative;
}
.nav-link:after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #f59e0b;
	transition: width 0.3s ease;
}
.nav-link:hover:after {
	width: 100%;
}
.stat-card {
	position: relative;
	overflow: hidden;
}
.stat-card:before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(245, 158, 11, 0.1) 0%,
		rgba(245, 158, 11, 0) 70%
	);
	z-index: 0;
}
.mobile-menu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
}
.mobile-menu.open {
	max-height: 500px;
}

.training-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(15px);
	border: 2px solid rgba(220, 38, 38, 0.1);
	box-shadow: 0 10px 40px rgba(220, 38, 38, 0.1);
}

.card-hover {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
	border-color: rgba(220, 38, 38, 0.3);
}

.section-title {
	background: linear-gradient(135deg, #dc2626, #ef4444, #f59e0b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(2px 2px 4px rgba(220, 38, 38, 0.3));
}

.road-safety-bg {
	background: linear-gradient(
			135deg,
			rgba(220, 38, 38, 0.05) 0%,
			rgba(245, 158, 11, 0.05) 50%,
			rgba(5, 150, 105, 0.05) 100%
		),
		url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23dc2626' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}

.traffic-light {
	animation: traffic-blink 3s infinite;
}

@keyframes traffic-blink {
	0%,
	30% {
		color: #dc2626;
	}
	35%,
	65% {
		color: #f59e0b;
	}
	70%,
	100% {
		color: #059669;
	}
}

.road-path {
	stroke-dasharray: 200;
	stroke-dashoffset: 200;
	animation: road-draw 4s ease-in-out infinite;
}

@keyframes road-draw {
	0% {
		stroke-dashoffset: 200;
	}
	50% {
		stroke-dashoffset: 0;
	}
	100% {
		stroke-dashoffset: -200;
	}
}

.floating-icon {
	animation: float-safety 4s ease-in-out infinite;
}

.floating-icon:nth-child(2) {
	animation-delay: -1s;
}
.floating-icon:nth-child(3) {
	animation-delay: -2s;
}
.floating-icon:nth-child(4) {
	animation-delay: -3s;
}

@keyframes float-safety {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
		opacity: 0.4;
	}
	50% {
		transform: translateY(-15px) rotate(5deg);
		opacity: 0.8;
	}
}

.safety-badge {
	background: linear-gradient(45deg, #dc2626, #ef4444);
	animation: pulse-safety 2s infinite;
}

@keyframes pulse-safety {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
	}
}

.road-stripes {
	background: repeating-linear-gradient(
		90deg,
		transparent,
		transparent 10px,
		rgba(220, 38, 38, 0.1) 10px,
		rgba(220, 38, 38, 0.1) 20px
	);
}

.team-bg {
	position: relative;
	background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(198, 77, 16, 0.85)),
		url("../images/banner.png") center/cover;
	overflow: hidden;
}

.team-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(
			circle at 20% 50%,
			rgba(120, 119, 198, 0.3) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 80%,
			rgba(120, 119, 198, 0.2) 0%,
			transparent 50%
		);
	animation: float 20s ease-in-out infinite;
}

.team-bg::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	animation: rotate 60s linear infinite;
	pointer-events: none;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.team-card {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	background: rgba(255, 255, 255, 1);
}

.team-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), #8b5cf6, #ec4899);
	border-radius: 16px 16px 0 0;
}

.section-title {
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-content {
	position: relative;
	z-index: 2;
}

.floating-elements {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 1;
}

.floating-icon {
	position: absolute;
	color: rgba(255, 255, 255, 0.1);
	animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}
.floating-icon:nth-child(2) {
	top: 20%;
	right: 10%;
	animation-delay: 2s;
}
.floating-icon:nth-child(3) {
	bottom: 20%;
	left: 10%;
	animation-delay: 4s;
}
.floating-icon:nth-child(4) {
	bottom: 10%;
	right: 5%;
	animation-delay: 6s;
}
.floating-icon:nth-child(5) {
	top: 50%;
	left: 15%;
	animation-delay: 1s;
}
.floating-icon:nth-child(6) {
	top: 60%;
	right: 20%;
	animation-delay: 3s;
}

.primary {
	color: var(--primary);
}
.bg-primary {
	background-color: var(--primary);
}
.text-primary {
	color: var(--primary);
}
.hover\:bg-blue-800:hover {
	background-color: #1e40af;
}

.glass-effect {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-member-image {
	position: relative;
	overflow: hidden;
}

.team-member-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		transparent 0%,
		rgba(37, 99, 235, 0.1) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.team-card:hover .team-member-image::after {
	opacity: 1;
}

@media (max-width: 768px) {
	.floating-icon {
		font-size: 2rem;
	}
}

/* Enhanced Background patterns */
.works-bg {
	background: 
                /* Primary gradient overlay */ linear-gradient(
			135deg,
			rgba(59, 130, 246, 0.1) 0%,
			rgba(16, 185, 129, 0.08) 25%,
			rgba(139, 92, 246, 0.06) 50%,
			rgba(236, 72, 153, 0.08) 75%,
			rgba(245, 158, 11, 0.1) 100%
		),
		/* Radial overlays */
			radial-gradient(
				ellipse at top left,
				rgba(59, 130, 246, 0.15) 0%,
				transparent 60%
			),
		radial-gradient(
			ellipse at top right,
			rgba(16, 185, 129, 0.12) 0%,
			transparent 60%
		),
		radial-gradient(
			ellipse at bottom left,
			rgba(139, 92, 246, 0.1) 0%,
			transparent 60%
		),
		radial-gradient(
			ellipse at bottom right,
			rgba(236, 72, 153, 0.12) 0%,
			transparent 60%
		),
		radial-gradient(
			circle at center,
			rgba(245, 158, 11, 0.08) 0%,
			transparent 70%
		),
		/* Base gradient */
			linear-gradient(180deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
	position: relative;
	overflow: hidden;
}

.works-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
                /* Hexagon pattern */ url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='hexagon' x='0' y='0' width='50' height='43.4' patternUnits='userSpaceOnUse'%3E%3Cpath d='M25 0l12.5 7.2v14.4L25 28.8 12.5 21.6V7.2z' fill='none' stroke='%23cbd5e1' stroke-width='0.5' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23hexagon)'/%3E%3C/svg%3E"),
		/* Dot grid pattern */
			radial-gradient(
				circle at 25% 25%,
				rgba(59, 130, 246, 0.4) 1px,
				transparent 1px
			),
		radial-gradient(
			circle at 75% 75%,
			rgba(16, 185, 129, 0.3) 1px,
			transparent 1px
		);
	background-size: 80px 80px, 40px 40px, 60px 60px;
	background-position: 0 0, 20px 20px, 10px 10px;
	opacity: 0.6;
	animation: backgroundShift 20s ease-in-out infinite;
	pointer-events: none;
}

.works-bg::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
                /* Flowing wave pattern */ url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpath id='wave' d='M0,100 Q50,50 100,100 T200,100' fill='none' stroke='%23e2e8f0' stroke-width='2' opacity='0.4'/%3E%3C/defs%3E%3Cuse href='%23wave' y='0'/%3E%3Cuse href='%23wave' y='50'/%3E%3Cuse href='%23wave' y='100'/%3E%3Cuse href='%23wave' y='150'/%3E%3C/svg%3E");
	background-size: 400px 400px;
	animation: waveFlow 25s linear infinite;
	opacity: 0.3;
	pointer-events: none;
}

@keyframes backgroundShift {
	0%,
	100% {
		background-position: 0 0, 20px 20px, 10px 10px;
		opacity: 0.6;
	}
	50% {
		background-position: 40px 40px, 60px 60px, 50px 50px;
		opacity: 0.8;
	}
}

@keyframes waveFlow {
	0% {
		transform: translateX(-200px) translateY(0px);
	}
	100% {
		transform: translateX(200px) translateY(-50px);
	}
}

.section-title {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), #1d4ed8);
	border-radius: 2px;
}

.work-card {
	position: relative;
	background: white;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(229, 231, 235, 0.5);
	backdrop-filter: blur(10px);
}

.work-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.work-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.1),
		rgba(255, 255, 255, 0.05)
	);
	border-radius: inherit;
	pointer-events: none;
}

.work-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.9) 0%,
		rgba(0, 0, 0, 0.7) 50%,
		rgba(0, 0, 0, 0.3) 80%,
		transparent 100%
	);
	backdrop-filter: blur(8px);
	transform: translateY(0);
	transition: all 0.3s ease;
}

.work-card:hover .work-overlay {
	background: linear-gradient(
		to top,
		rgba(37, 99, 235, 0.95) 0%,
		rgba(37, 99, 235, 0.8) 50%,
		rgba(37, 99, 235, 0.4) 80%,
		transparent 100%
	);
}

.work-image {
	transition: transform 0.4s ease;
}

.work-card:hover .work-image {
	transform: scale(1.1);
}

.support-btn {
	background: linear-gradient(135deg, var(--primary), #1d4ed8);
	position: relative;
	overflow: hidden;
	transform: perspective(1px) translateZ(0);
	transition: all 0.3s ease;
}

.support-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.support-btn:hover::before {
	left: 100%;
}

.support-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.floating-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
	z-index: 1;
}

.floating-element {
	position: absolute;
	opacity: 0.15;
	animation: float 8s ease-in-out infinite;
	filter: blur(0.5px);
}

.floating-element:nth-child(1) {
	top: 15%;
	left: 8%;
	animation-delay: 0s;
	animation-duration: 10s;
}

.floating-element:nth-child(2) {
	top: 25%;
	right: 12%;
	animation-delay: 3s;
	animation-duration: 12s;
}

.floating-element:nth-child(3) {
	bottom: 30%;
	left: 15%;
	animation-delay: 6s;
	animation-duration: 9s;
}

.floating-element:nth-child(4) {
	bottom: 20%;
	right: 8%;
	animation-delay: 2s;
	animation-duration: 11s;
}

.floating-element:nth-child(5) {
	top: 40%;
	left: 45%;
	animation-delay: 4s;
	animation-duration: 13s;
}

.floating-element:nth-child(6) {
	top: 60%;
	right: 35%;
	animation-delay: 1s;
	animation-duration: 8s;
}

.floating-element:nth-child(7) {
	bottom: 45%;
	left: 25%;
	animation-delay: 5s;
	animation-duration: 14s;
}

.floating-element:nth-child(8) {
	top: 35%;
	right: 55%;
	animation-delay: 7s;
	animation-duration: 10s;
}

/* Geometric floating shapes */
.geometric-shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(
		45deg,
		rgba(59, 130, 246, 0.1),
		rgba(16, 185, 129, 0.1)
	);
	animation: geometricFloat 15s ease-in-out infinite;
}

.geometric-shape:nth-child(odd) {
	background: linear-gradient(
		45deg,
		rgba(139, 92, 246, 0.1),
		rgba(236, 72, 153, 0.1)
	);
}

.geometric-shape.shape-1 {
	width: 120px;
	height: 120px;
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}

.geometric-shape.shape-2 {
	width: 80px;
	height: 80px;
	top: 20%;
	right: 10%;
	animation-delay: 3s;
	border-radius: 20%;
}

.geometric-shape.shape-3 {
	width: 150px;
	height: 150px;
	bottom: 15%;
	left: 10%;
	animation-delay: 6s;
}

.geometric-shape.shape-4 {
	width: 100px;
	height: 100px;
	bottom: 25%;
	right: 5%;
	animation-delay: 9s;
	border-radius: 30%;
}

.geometric-shape.shape-5 {
	width: 60px;
	height: 60px;
	top: 50%;
	left: 50%;
	animation-delay: 12s;
	transform: translate(-50%, -50%);
}

@keyframes geometricFloat {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg) scale(1);
		opacity: 0.1;
	}
	25% {
		transform: translateY(-30px) rotate(90deg) scale(1.1);
		opacity: 0.15;
	}
	50% {
		transform: translateY(-60px) rotate(180deg) scale(0.9);
		opacity: 0.2;
	}
	75% {
		transform: translateY(-30px) rotate(270deg) scale(1.05);
		opacity: 0.15;
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg) scale(1);
		opacity: 0.15;
	}
	33% {
		transform: translateY(-25px) rotate(120deg) scale(1.1);
		opacity: 0.25;
	}
	66% {
		transform: translateY(-40px) rotate(240deg) scale(0.9);
		opacity: 0.2;
	}
}

/* Particle system */
.particle-system {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(59, 130, 246, 0.4);
	border-radius: 50%;
	animation: particleFloat 20s linear infinite;
}

.particle:nth-child(2n) {
	background: rgba(16, 185, 129, 0.4);
	animation-duration: 25s;
}

.particle:nth-child(3n) {
	background: rgba(139, 92, 246, 0.4);
	animation-duration: 18s;
}

.particle:nth-child(4n) {
	background: rgba(236, 72, 153, 0.4);
	animation-duration: 22s;
}

.particle:nth-child(5n) {
	background: rgba(245, 158, 11, 0.4);
	animation-duration: 28s;
}

@keyframes particleFloat {
	0% {
		transform: translateY(100vh) translateX(0) rotate(0deg);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(-100px) translateX(100px) rotate(360deg);
		opacity: 0;
	}
}

/* Generate random positions for particles */
.particle:nth-child(1) {
	left: 10%;
	animation-delay: 0s;
}
.particle:nth-child(2) {
	left: 20%;
	animation-delay: 2s;
}
.particle:nth-child(3) {
	left: 30%;
	animation-delay: 4s;
}
.particle:nth-child(4) {
	left: 40%;
	animation-delay: 6s;
}
.particle:nth-child(5) {
	left: 50%;
	animation-delay: 8s;
}
.particle:nth-child(6) {
	left: 60%;
	animation-delay: 10s;
}
.particle:nth-child(7) {
	left: 70%;
	animation-delay: 12s;
}
.particle:nth-child(8) {
	left: 80%;
	animation-delay: 14s;
}
.particle:nth-child(9) {
	left: 90%;
	animation-delay: 16s;
}
.particle:nth-child(10) {
	left: 15%;
	animation-delay: 18s;
}
.particle:nth-child(11) {
	left: 25%;
	animation-delay: 20s;
}
.particle:nth-child(12) {
	left: 35%;
	animation-delay: 22s;
}
.particle:nth-child(13) {
	left: 45%;
	animation-delay: 24s;
}
.particle:nth-child(14) {
	left: 55%;
	animation-delay: 26s;
}
.particle:nth-child(15) {
	left: 65%;
	animation-delay: 28s;
}
.particle:nth-child(16) {
	left: 75%;
	animation-delay: 30s;
}
.particle:nth-child(17) {
	left: 85%;
	animation-delay: 32s;
}
.particle:nth-child(18) {
	left: 95%;
	animation-delay: 34s;
}
.particle:nth-child(19) {
	left: 5%;
	animation-delay: 36s;
}
.particle:nth-child(20) {
	left: 95%;
	animation-delay: 38s;
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
	animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
	animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
	animation-delay: 0.3s;
}
.fade-in:nth-child(4) {
	animation-delay: 0.4s;
}
.fade-in:nth-child(5) {
	animation-delay: 0.5s;
}
.fade-in:nth-child(6) {
	animation-delay: 0.6s;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Icon styling */
.work-card h3::before {
	content: "🎯";
	margin-right: 8px;
	font-size: 1.2em;
}

.work-card:nth-child(1) h3::before {
	content: "🚗";
}
.work-card:nth-child(2) h3::before {
	content: "🎓";
}
.work-card:nth-child(3) h3::before {
	content: "💪";
}
.work-card:nth-child(4) h3::before {
	content: "🤝";
}
.work-card:nth-child(5) h3::before {
	content: "🔍";
}
.work-card:nth-child(6) h3::before {
	content: "🚑";
}

.contact-bg {
	background: linear-gradient(
			135deg,
			rgba(30, 64, 175, 0.05) 0%,
			rgba(245, 158, 11, 0.05) 50%,
			rgba(30, 64, 175, 0.05) 100%
		),
		url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><circle cx="200" cy="200" r="3" fill="%231e40af"/><circle cx="400" cy="150" r="2" fill="%23f59e0b"/><circle cx="600" cy="250" r="4" fill="%231e40af"/><circle cx="800" cy="180" r="2" fill="%23f59e0b"/><circle cx="150" cy="400" r="3" fill="%231e40af"/><circle cx="350" cy="380" r="2" fill="%23f59e0b"/><circle cx="550" cy="420" r="3" fill="%231e40af"/><circle cx="750" cy="390" r="2" fill="%23f59e0b"/><circle cx="950" cy="410" r="4" fill="%231e40af"/><circle cx="100" cy="600" r="2" fill="%23f59e0b"/><circle cx="300" cy="580" r="3" fill="%231e40af"/><circle cx="500" cy="620" r="2" fill="%23f59e0b"/><circle cx="700" cy="590" r="4" fill="%231e40af"/><circle cx="900" cy="610" r="2" fill="%23f59e0b"/><circle cx="250" cy="800" r="3" fill="%231e40af"/><circle cx="450" cy="780" r="2" fill="%23f59e0b"/><circle cx="650" cy="820" r="3" fill="%231e40af"/><circle cx="850" cy="790" r="2" fill="%23f59e0b"/></svg>');
}

.road-pattern {
	background-image: repeating-linear-gradient(
			0deg,
			transparent,
			transparent 20px,
			rgba(30, 64, 175, 0.03) 20px,
			rgba(30, 64, 175, 0.03) 22px
		),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 20px,
			rgba(245, 158, 11, 0.03) 20px,
			rgba(245, 158, 11, 0.03) 22px
		);
}

.floating-elements::before {
	content: "";
	position: absolute;
	top: 10%;
	left: 5%;
	width: 60px;
	height: 60px;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231e40af" opacity="0.1"><path d="M19 17h2c.6 0 1-.4 1-1s-.4-1-1-1h-2v2zm-7-6c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2zM1 10v3h3v-3H1zm20-4H3c-.55 0-1 .45-1 1v4h20V7c0-.55-.45-1-1-1z"/></svg>')
		no-repeat center;
	background-size: contain;
	opacity: 0.1;
	animation: float 6s ease-in-out infinite;
}

.floating-elements::after {
	content: "";
	position: absolute;
	bottom: 15%;
	right: 8%;
	width: 50px;
	height: 50px;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23f59e0b" opacity="0.1"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>')
		no-repeat center;
	background-size: contain;
	animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

.card-hover {
	transition: all 0.3s ease;
}

.card-hover:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-container {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.95);
}

.contact-info-card {
	position: relative;
	overflow: hidden;
}

.contact-info-card::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><circle cx="50" cy="50" r="30" stroke="white" stroke-width="0.5" opacity="0.1"/><circle cx="50" cy="50" r="20" stroke="white" stroke-width="0.3" opacity="0.1"/><circle cx="50" cy="50" r="10" stroke="white" stroke-width="0.2" opacity="0.1"/></svg>')
		no-repeat center;
	background-size: 200px 200px;
	opacity: 0.1;
}

.partnership-card {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border: 1px solid rgba(30, 64, 175, 0.1);
}

.input-focus {
	transition: all 0.3s ease;
}

.input-focus:focus {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px -5px rgba(30, 64, 175, 0.1);
}

.submit-btn {
	background: linear-gradient(135deg, var(--secondary) 0%, #d97706 100%);
	position: relative;
	overflow: hidden;
}

.submit-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.submit-btn:hover::before {
	left: 100%;
}
