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

:root {

	--primary: #18e0c4;
	--primary2: #00b4ff;
	--dark: #020617;
	--card: #0f172a;

}

body {

	background: var(--dark);
	color: white;
	overflow-x: hidden;

}

/* PARTICLES */

#particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.3;
}

/* NAVBAR */

.navbar {

	position: fixed;
	width: 100%;
	top: 0;

	display: flex;
	justify-content: space-between;
	align-items: center;

	padding: 20px 80px;

	background: rgba(2, 6, 23, 0.7);
	backdrop-filter: blur(10px);

	z-index: 100;

}

.logo {

	font-size: 24px;
	font-weight: 600;
	color: var(--primary);

}

.nav-links {

	display: flex;
	gap: 30px;

}

.nav-links a {

	color: white;
	text-decoration: none;

}

.nav-links a:hover {

	color: var(--primary);

}

.nav-btn {

	background: linear-gradient(45deg, var(--primary), var(--primary2));
	padding: 10px 20px;
	border-radius: 6px;

}

.nav-links a.active {

	color: var(--primary);

	font-weight: 600;

	position: relative;

}

/* underline animation */

.nav-links a.active::after {

	content: "";

	position: absolute;

	bottom: -6px;

	left: 0;

	width: 100%;

	height: 2px;

	background: var(--primary);

}

/* HERO */

/* HERO */

.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: flex-start;

	padding-left: 120px;

	position: relative;
}

/* SLIDER */

.hero-slider {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	image-rendering: auto;

	opacity: 0;

	transform: scale(1.15);

	transition:
		opacity 1.5s ease,
		transform 8s ease;
}


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

/* OVERLAY */

.hero-overlay {

	position: absolute;
	top: 0;
	left: 0;

	width: 700px;
	height: 100%;

	background: linear-gradient(to right,
			rgba(0, 0, 0, 0.9),
			rgba(0, 0, 0, 0.5),
			transparent);

}

/* HERO CONTENT */

.hero-content {

	position: relative;
	z-index: 2;

	max-width: 650px;

	padding: 60px;

	text-align: left;


}

/* TEXT */

.hero-title {
	font-size: 64px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;

	animation: slideUp 1s ease;
}

.hero-subtitle {
	font-size: 18px;
	opacity: 0.9;
	margin-bottom: 40px;

	animation: slideUp 1.4s ease;
}

/* BUTTON */

.hero-btn {

	padding: 16px 40px;

	border: none;

	border-radius: 10px;

	background: linear-gradient(45deg, var(--primary), var(--primary2));

	color: white;
	font-size: 16px;

	cursor: pointer;

	transition: 0.4s;

	animation: slideUp 1.8s ease;
}

.hero-btn:hover {

	transform: translateY(-5px);

	box-shadow:
		0 10px 30px rgba(0, 180, 255, 0.4),
		0 0 30px rgba(24, 224, 196, 0.3);
}

/* HERO LIGHT */

.hero-light {

	position: absolute;

	width: 500px;
	height: 500px;

	border-radius: 50%;

	filter: blur(160px);

	opacity: 0.35;

	animation: floatLight 10s ease-in-out infinite;
}

.light1 {
	background: #18e0c4;
	top: -200px;
	left: -200px;
}

.light2 {
	background: #00b4ff;
	bottom: -200px;
	right: -200px;
	animation-delay: 4s;
}

/* ANIMATIONS */

@keyframes heroFade {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes floatLight {

	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(60px);
	}

	100% {
		transform: translateY(0);
	}

}


.hero-buttons {
	display: flex;
	gap: 20px;
	margin-top: 10px;
}

.hero-btn-outline {

	padding: 16px 40px;

	border-radius: 10px;

	border: 2px solid var(--primary);

	background: transparent;

	color: white;

	cursor: pointer;

	transition: 0.3s;
}

.hero-btn-outline:hover {

	background: var(--primary);
	color: #020617;

	box-shadow: 0 0 20px rgba(24, 224, 196, 0.4);

}

.slider-dots {

	position: absolute;

	bottom: 40px;
	left: 50%;

	transform: translateX(-50%);

	display: flex;
	gap: 12px;

	z-index: 5;

}

.dot {

	width: 12px;
	height: 12px;

	border-radius: 50%;

	background: rgba(255, 255, 255, 0.5);

	cursor: pointer;

	transition: 0.3s;

}

.dot.active {

	background: var(--primary);

	transform: scale(1.3);

	box-shadow: 0 0 10px var(--primary);

}

/* SOLUTIONS */

.section-desc {

	max-width: 700px;
	margin: 20px auto 60px;

	font-size: 16px;
	line-height: 1.6;

	opacity: 0.8;

}

.solutions {

	padding: 120px 100px;
	text-align: center;

}

.solution-grid {

	display: grid;

	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	gap: 30px;

	margin-top: 60px;

}

.card {

	background: var(--card);

	border-radius: 12px;

	overflow: hidden;

	transition: 0.4s;

}

.card img {

	width: 100%;
	height: 200px;
	object-fit: cover;

	transition: 0.6s;

}

.card:hover img {

	transform: scale(1.1);

}

.card:hover {

	transform: translateY(-10px);

	box-shadow: 0 0 20px rgba(24, 224, 196, 0.4);

}

.card h3 {

	padding: 20px;

}

.solution-btn {
	margin-top: 50px;
	text-align: center;
}

.view-more-btn {

	display: inline-flex;
	align-items: center;
	gap: 10px;

	padding: 14px 34px;

	border-radius: 30px;

	text-decoration: none;

	color: white;

	border: 2px solid var(--primary);

	transition: 0.35s;

}

.view-more-btn span {

	transition: 0.35s;

}

.view-more-btn:hover {

	background: var(--primary);

	box-shadow: 0 10px 30px rgba(24, 224, 196, 0.4);

}

.view-more-btn:hover span {

	transform: translateX(6px);

}

/* STATS */

.experience {

	padding: 120px 100px;


}

.exp-container {

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;

}

/* LEFT SIDE */

.exp-tag {

	color: #3b82f6;
	font-weight: 600;
	display: block;
	margin-bottom: 10px;

}

.exp-left h2 {

	font-size: 44px;
	line-height: 1.2;
	margin-bottom: 20px;

}

.exp-left p {

	opacity: 0.8;
	line-height: 1.6;
	margin-bottom: 30px;

}

.exp-btn {

	padding: 14px 34px;
	border: none;

	background: linear-gradient(45deg, #2563eb, #3b82f6);

	color: white;
	border-radius: 8px;

	cursor: pointer;
	transition: 0.3s;

}

.exp-btn:hover {

	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);

}


/* RIGHT GRID */

.exp-right {

	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;

}

/* CARD */

.exp-card {

	background: #0f172a;

	padding: 40px;

	border-radius: 12px;

	text-align: center;

	border: 1px solid rgba(255, 255, 255, 0.05);

	transition: 0.35s;

}

/* NUMBER */

.exp-card h3 {

	font-size: 42px;
	color: #3b82f6;

	margin-bottom: 10px;

}

/* HOVER */

.exp-card:hover {

	transform: translateY(-10px);

	box-shadow:
		0 15px 40px rgba(0, 0, 0, 0.6),
		0 0 20px rgba(59, 130, 246, 0.3);

}

.exp-card {

	opacity: 0;
	transform: translateY(40px);

	animation: fadeUp 1s forwards;

}

@keyframes fadeUp {

	to {
		opacity: 1;
		transform: translateY(0);
	}

}

/* CTA */

.cta-section {

	padding: 120px 100px;

	background: linear-gradient(135deg,
			#020617,
			#0f172a,
			#020617);

	display: flex;
	justify-content: center;

}

/* CTA CARD */

.cta-container {

	max-width: 900px;
	width: 100%;

	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(15px);

	border-radius: 20px;

	padding: 70px 60px;

	text-align: center;

	border: 1px solid rgba(255, 255, 255, 0.08);

	position: relative;

	overflow: hidden;

}

/* SOFT GLOW */

.cta-container::before {

	content: "";

	position: absolute;

	width: 400px;
	height: 400px;

	background: radial-gradient(circle,
			rgba(24, 224, 196, 0.35),
			transparent);

	top: -120px;
	right: -120px;

	filter: blur(120px);

}

/* TEXT */

.cta-content h2 {

	font-size: 42px;
	margin-bottom: 20px;

}

.cta-content p {

	opacity: 0.8;
	max-width: 600px;
	margin: auto;
	margin-bottom: 40px;

}

/* BUTTONS */

.cta-buttons {

	display: flex;
	justify-content: center;
	gap: 20px;

}

/* PRIMARY */

.cta-btn-primary {

	padding: 15px 36px;

	border: none;

	border-radius: 8px;

	background: linear-gradient(45deg, #18e0c4, #00b4ff);

	color: white;

	cursor: pointer;

	transition: 0.3s;

}

.cta-btn-primary:hover {

	transform: translateY(-4px);

	box-shadow:
		0 10px 25px rgba(24, 224, 196, 0.4);

}

/* OUTLINE */

.cta-btn-outline {

	padding: 15px 36px;

	border-radius: 8px;

	border: 2px solid #18e0c4;

	background: transparent;

	color: white;

	cursor: pointer;

	transition: 0.3s;

}

.cta-btn-outline:hover {

	background: #18e0c4;
	color: #020617;

}

@keyframes gradient {

	0% {
		background-position: 0%
	}

	50% {
		background-position: 100%
	}

	100% {
		background-position: 0%
	}

}

/* CONTACT */

.contact-section {

	padding: 120px 100px;


}

.contact-container {

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: stretch;

}

/* FORM */

.contact-form {

	background: #0f172a;

	padding: 50px;

	border-radius: 12px;

	border: 1px solid rgba(255, 255, 255, 0.05);

}

.contact-form h2 {

	margin-bottom: 10px;
	font-size: 32px;

}

.contact-form p {

	opacity: 0.8;
	margin-bottom: 30px;

}

.contact-form,
.contact-map {

	transition: 0.4s;

}

.contact-form:hover {

	transform: translateY(-8px);

	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.6);

}

.contact-map:hover {

	transform: scale(1.02);

	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.6);

}

/* INPUT GROUP */

.input-group {

	position: relative;
	margin-bottom: 25px;

}

.input-group input,
.input-group textarea {

	width: 100%;
	padding: 14px;

	border: none;

	border-radius: 6px;

	background: #020617;
	color: white;

	outline: none;

}

.input-group textarea {

	height: 120px;
	resize: none;

}

/* FLOAT LABEL */

.input-group label {

	position: absolute;
	top: 12px;
	left: 14px;

	color: #aaa;

	pointer-events: none;

	transition: 0.3s;

}

.input-group input:focus+label,
.input-group input:valid+label,
.input-group textarea:focus+label,
.input-group textarea:valid+label {

	top: -8px;
	left: 10px;

	font-size: 12px;

	color: #18e0c4;

	background: #020617;
	padding: 0 6px;

}

/* BUTTON */

.contact-btn {

	width: 100%;

	padding: 14px;

	border: none;

	border-radius: 6px;

	background: linear-gradient(45deg, #18e0c4, #00b4ff);

	color: white;

	cursor: pointer;

	transition: 0.3s;

}

.contact-btn:hover {

	transform: translateY(-3px);

	box-shadow: 0 10px 25px rgba(24, 224, 196, 0.4);

}

/* MAP */

.contact-map {

	border-radius: 12px;
	overflow: hidden;

	min-height: 420px;

}

/* FOOTER */

.footer {

	background: #020617;

	padding: 80px 100px 30px 100px;

	border-top: 1px solid rgba(255, 255, 255, 0.05);

}

.footer-container {

	display: grid;

	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

	gap: 40px;

	margin-bottom: 40px;

}

.footer-logo {

	color: var(--primary);

	margin-bottom: 15px;

}

.footer-col h3 {

	margin-bottom: 15px;

}

.footer-col p {

	opacity: 0.8;

	line-height: 1.6;

}

.footer-col ul {

	list-style: none;

}

.footer-col ul li {

	margin-bottom: 10px;

}

.footer-col ul li a {

	text-decoration: none;

	color: white;

	opacity: 0.8;

	transition: 0.3s;

}

.footer-col ul li a:hover {

	color: var(--primary);

	opacity: 1;

}

.footer-bottom {

	text-align: center;

	border-top: 1px solid rgba(255, 255, 255, 0.05);

	padding-top: 20px;

	opacity: 0.7;

}

.about-section {

	/* padding: 120px 100px; */
	padding: 0px 100px;
	background: #020617;

}

.about-container {

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;

}

/* IMAGE */

.about-image img {

	width: 100%;
	border-radius: 14px;

	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);

}

/* CONTENT */

.about-tag {

	color: var(--primary);
	font-weight: 600;
	display: block;
	margin-bottom: 10px;

}

.about-content h2 {

	font-size: 40px;
	margin-bottom: 20px;

}

.about-content p {

	opacity: 0.8;
	line-height: 1.6;
	margin-bottom: 30px;

}

/* FEATURES */

.about-features {

	display: grid;
	gap: 18px;
	margin-bottom: 30px;

}

.feature h4 {

	margin-bottom: 5px;
	color: white;

}

.feature p {

	font-size: 14px;
	opacity: 0.8;

}

/* BUTTON */

.about-btn {

	padding: 14px 32px;
	border: none;

	background: linear-gradient(45deg, #18e0c4, #00b4ff);

	color: white;

	border-radius: 8px;

	cursor: pointer;

	transition: 0.3s;

}

.about-btn:hover {

	transform: translateY(-3px);

	box-shadow: 0 10px 30px rgba(24, 224, 196, 0.4);

}

/* CLIENTS SECTION */

.clients-section {

	padding: 120px 100px;

	text-align: center;

	background: #020617;

}

.clients-desc {

	max-width: 650px;

	margin: 20px auto 60px;

	opacity: .8;

	line-height: 1.6;

}

.clients-grid {

	display: grid;

	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));

	gap: 40px;

	align-items: center;

}

.client-logo {

	background: #0f172a;

	padding: 30px;

	border-radius: 12px;

	transition: .35s;

	border: 1px solid rgba(255, 255, 255, .05);

}

.client-logo img {

	width: 100%;

	max-height: 60px;

	object-fit: contain;

	filter: grayscale(100%);

	opacity: .7;

	transition: .35s;

}

.client-logo:hover {

	transform: translateY(-8px);

	box-shadow: 0 0 20px rgba(24, 224, 196, .4);

}

.client-logo:hover img {

	filter: grayscale(0%);

	opacity: 1;

}

.clients-btn {

	margin-top: 60px;

}

/* MOBILE */

@media(max-width:768px) {

	.clients-section {

		padding: 80px 20px;

	}

	.clients-grid {

		grid-template-columns: repeat(2, 1fr);

		gap: 20px;

	}

}

/* ============================= */
/* GLOBAL FIXES */
/* ============================= */

html,
body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

/* ============================= */
/* MOBILE MENU ICON */
/* ============================= */

.menu-toggle {
	display: none;
	font-size: 28px;
	cursor: pointer;
	color: white;
}

/* ============================= */
/* NAVBAR MOBILE */
/* ============================= */

@media (max-width:768px) {

	.navbar {
		padding: 15px 20px;
	}

	.menu-toggle {
		display: block;
	}

	.nav-links {
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background: #020617;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		padding: 30px 0;
		display: none;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
	}

	.nav-links.active {
		display: flex;
	}

}

/* ============================= */
/* HERO MOBILE FIX */
/* ============================= */

@media (max-width:768px) {

	.hero {
		padding: 0 20px;
		justify-content: center;
		text-align: center;
	}

	.hero-overlay {
		display: none;
	}

	.hero-content {
		max-width: 100%;
		padding: 20px;
		margin: auto;
		text-align: center;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.hero-btn,
	.hero-btn-outline {
		width: 220px;
	}

}

/* ============================= */
/* GRID MOBILE FIX */
/* ============================= */

@media (max-width:768px) {

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

	.exp-container {
		grid-template-columns: 1fr;
	}

	.exp-right {
		grid-template-columns: 1fr;
	}

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

	.about-container {
		grid-template-columns: 1fr;
	}

}

/* ============================= */
/* SECTION PADDING FIX */
/* ============================= */

@media (max-width:768px) {

	.solutions,
	.experience,
	.contact-section,
	.cta-section,
	.footer,
	.about-section {
		padding: 80px 20px;
	}

}

/* ============================= */
/* SMALL PHONE FIX */
/* ============================= */

@media (max-width:480px) {

	.hero-title {
		font-size: 30px;
	}

	.hero-subtitle {
		font-size: 15px;
	}

	.hero-btn,
	.hero-btn-outline {
		padding: 14px 24px;
		font-size: 14px;
	}

	.cta-content h2 {
		font-size: 26px;
	}

}


/* ///////////////////////////// */
/* solutions page */

/* PAGE HERO */
.solutions-hero {
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(135deg, #020617, #0f172a);
}

.solutions-hero h1 {
	font-size: 52px;
	margin-bottom: 15px;
}

.solutions-hero p {
	opacity: .8;
	max-width: 600px;
	margin: auto;
}

/* SOLUTION GRID */
.solution-page {
	padding: 120px 100px;
}

.solution-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

/* CARD */
.solution-card {
	background: #0f172a;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	transition: .4s;
	border: 1px solid rgba(255, 255, 255, .05);
}

.solution-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.solution-content {
	padding: 25px;
}

.solution-content h3 {
	margin-bottom: 10px;
}

.solution-content p {
	opacity: .8;
	font-size: 14px;
	line-height: 1.6;
}

/* CARD HOVER */
.solution-card:hover {
	transform: translateY(-12px);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, .6),
		0 0 25px rgba(24, 224, 196, .4);
}

/* ICON */
.solution-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(45deg, #18e0c4, #00b4ff);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 22px;
}

/* CTA */
.solution-cta {
	padding: 120px 100px;
	text-align: center;
	background: linear-gradient(135deg, #020617, #0f172a, #020617);
}

.solution-cta h2 {
	font-size: 40px;
	margin-bottom: 20px;
}

.solution-cta p {
	opacity: .8;
	max-width: 600px;
	margin: auto;
	margin-bottom: 40px;
}

.cta-btn {
	padding: 16px 40px;
	border: none;
	background: linear-gradient(45deg, #18e0c4, #00b4ff);
	border-radius: 8px;
	color: white;
	cursor: pointer;
	transition: .3s;
}

.cta-btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(24, 224, 196, .4);
}

/* MOBILE */
@media(max-width:768px) {
	.solution-page {
		padding: 80px 20px;
	}

	.solution-cta {
		padding: 80px 20px;
	}

	.solutions-hero h1 {
		font-size: 36px;
	}
}



/* client page  */

/* CLIENT LOGOS */
.clients-page {
	padding: 80px 100px;
	text-align: center;
}

.clients-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.client-card {
	background: #0f172a;
	padding: 40px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: .35s;
}

.client-card img {
	width: 100%;
	max-height: 60px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: .7;
	transition: .35s;
}

.client-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 0 20px rgba(24, 224, 196, .4);
}

.client-card:hover img {
	filter: grayscale(0);
	opacity: 1;
}

/* PROJECT SHOWCASE */
.project-section {
	padding: 80px 100px;
	text-align: center;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.project-card {
	background: #0f172a;
	border-radius: 12px;
	overflow: hidden;
	transition: .35s;
}

.project-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.project-card h3 {
	padding: 20px;
}

.project-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 0 20px rgba(24, 224, 196, .4);
}

/* CTA */
.client-cta {
	padding: 120px 100px;
	text-align: center;
	background: linear-gradient(135deg, #020617, #0f172a, #020617);
}

.client-cta h2 {
	font-size: 40px;
	margin-bottom: 20px;
}

.client-cta p {
	opacity: .8;
	max-width: 600px;
	margin: auto;
	margin-bottom: 40px;
}

.client-btn {
	padding: 16px 40px;
	border: none;
	border-radius: 8px;
	background: linear-gradient(45deg, #18e0c4, #00b4ff);
	color: white;
	cursor: pointer;
	transition: .3s;
}

.client-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(24, 224, 196, .4);
}

/* MOBILE */
@media(max-width:768px) {

	.clients-page,
	.project-section,
	.client-cta {
		padding: 80px 20px;
	}

	.client-hero h1 {
		font-size: 36px;
	}
}


/* contact page */

/* CONTACT INFO */
.contact-info {
	padding: 100px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.info-card {
	background: #0f172a;
	padding: 40px;
	border-radius: 12px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: .35s;
}

.info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 0 20px rgba(24, 224, 196, .4);
}

.info-icon {
	font-size: 32px;
	margin-bottom: 15px;
	color: #18e0c4;
}

.info-card p {
	opacity: .8;
}

/* CONTACT FORM */
.contact-main {
	padding: 100px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.form-box {
	background: #0f172a;
	padding: 50px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-box h2 {
	margin-bottom: 10px;
}

.form-box p {
	opacity: .8;
	margin-bottom: 30px;
}

.input-group {
	position: relative;
	margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 6px;
	background: #020617;
	color: white;
	outline: none;
}

.input-group textarea {
	height: 120px;
	resize: none;
}

.input-group label {
	position: absolute;
	top: 12px;
	left: 14px;
	color: #aaa;
	pointer-events: none;
	transition: .3s;
}

.input-group input:focus+label,
.input-group input:valid+label,
.input-group textarea:focus+label,
.input-group textarea:valid+label {
	top: -8px;
	font-size: 12px;
	color: #18e0c4;
	background: #020617;
	padding: 0 6px;
}

/* BUTTON */
.contact-btn {
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 6px;
	background: linear-gradient(45deg, #18e0c4, #00b4ff);
	color: white;
	cursor: pointer;
	transition: .3s;
}

.contact-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(24, 224, 196, .4);
}

/* MAP */
.contact-map {
	border-radius: 12px;
	overflow: hidden;
	min-height: 420px;
}

/* CTA */
.contact-cta {
	padding: 100px;
	text-align: center;
	background: linear-gradient(135deg, #020617, #0f172a, #020617);
}

.contact-cta h2 {
	font-size: 38px;
	margin-bottom: 20px;
}

.contact-cta p {
	opacity: .8;
	max-width: 600px;
	margin: auto;
	margin-bottom: 40px;
}

.cta-btn {
	padding: 16px 40px;
	border: none;
	border-radius: 8px;
	background: linear-gradient(45deg, #18e0c4, #00b4ff);
	color: white;
	cursor: pointer;
	transition: .3s;
}

.cta-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(24, 224, 196, .4);
}

/* MOBILE */
@media(max-width:768px) {

	.contact-info,
	.contact-main,
	.contact-cta {
		padding: 60px 20px;
	}

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

	.contact-hero h1 {
		font-size: 34px;
	}
}



/* Get quote */

/* FORM SECTION */
.quote-section {
	padding: 120px 100px;
	display: flex;
	justify-content: center;
}

.quote-container {
	max-width: 700px;
	width: 100%;
	background: #0f172a;
	padding: 60px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, .05);
	box-shadow: 0 0 30px rgba(0, 0, 0, .5);
}

.quote-container h2 {
	margin-bottom: 10px;
}

.quote-container p {
	opacity: .8;
	margin-bottom: 30px;
}

/* INPUT GROUP */
.input-group {
	position: relative;
	margin-bottom: 25px;
}

.input-group input,
.input-group textarea,
.input-group select {
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 6px;
	background: #020617;
	color: white;
	outline: none;
}

.input-group textarea {
	height: 120px;
	resize: none;
}

/* LABEL */
.input-group label {
	position: absolute;
	top: 12px;
	left: 14px;
	color: #aaa;
	pointer-events: none;
	transition: .3s;
}

.input-group input:focus+label,
.input-group input:valid+label,
.input-group textarea:focus+label,
.input-group textarea:valid+label {
	top: -8px;
	font-size: 12px;
	color: #18e0c4;
	background: #020617;
	padding: 0 6px;
}

/* SELECT */
select {
	appearance: none;
}

/* BUTTON */
.quote-btn {
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 6px;
	background: linear-gradient(45deg, #18e0c4, #00b4ff);
	color: white;
	cursor: pointer;
	font-size: 16px;
	transition: .3s;
}

.quote-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(24, 224, 196, .4);
}

/* MOBILE */
@media(max-width:768px) {
	.quote-section {
		padding: 80px 20px;
	}

	.quote-container {
		padding: 40px 25px;
	}

	.quote-hero h1 {
		font-size: 34px;
	}
}
