﻿*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: all 0.25s ease-in-out;
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #0A102A;
	color: #ffffff;
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: #25d366;
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

	.whatsapp-float:hover {
		background-color: #128c7e;
		transform: scale(1.1);
		box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.4);
	}

/* NAVBAR */
.navbar {
	padding: 20px 0;
	position: sticky;
	top: 0;
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	background: rgba(10, 16, 42, 0.95);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 24px;
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: white;
}

	.logo span {
		color: #00B4D8;
	}

.nav-links {
	list-style: none;
	display: flex;
	gap: 20px;
}

	.nav-links a {
		text-decoration: none;
		color: #ffffff;
		font-size: 0.95rem;
		opacity: 0.8;
		transition: 0.3s;
	}

		.nav-links a:hover, .nav-links a.active {
			opacity: 1;
			color: #00B4D8;
		}

/* BUTTONS */
.btn, .btn-primary {
	background: linear-gradient(135deg, #00B4D8, #0077B6);
	color: white;
	padding: 12px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
	box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2);
	border: none;
	cursor: pointer;
}

	.btn:hover, .btn-primary:hover {
		transform: translateY(-3px);
		box-shadow: 0 10px 25px rgba(0, 180, 216, 0.4);
	}

.btn-secondary {
	border: 1px solid #00B4D8;
	padding: 12px 25px;
	margin-left: 10px;
	color: #ffffff;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 600;
	background: transparent;
}

	.btn-secondary:hover {
		background: rgba(0, 180, 216, 0.1);
	}

/* HERO SECTION */
.hero {
	padding: 140px 0 100px;
	text-align: center;
	background: radial-gradient(circle at center, #1a2555 0%, #0A102A 70%);
}

	.hero h2 {
		font-size: 48px;
		font-family: 'Poppins', sans-serif;
		line-height: 1.2;
		background: -webkit-linear-gradient(#fff, #a5b4fc);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		margin-bottom: 20px;
	}

	.hero p {
		margin: 0 auto 30px;
		font-size: 18px;
		max-width: 700px;
		color: #cbd5e1;
	}

/* TECH STACK MARQUEE */
.tech-stack-section {
	padding: 40px 0;
	background: #060B22;
	border-top: 1px solid rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.05);
	overflow: hidden;
}

.section-subtitle {
	text-align: center;
	font-size: 0.8rem;
	letter-spacing: 2px;
	color: #00B4D8;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.tech-marquee {
	display: flex;
	overflow: hidden;
	white-space: nowrap;
}

.tech-track {
	display: flex;
	gap: 50px;
	animation: scroll 20s linear infinite;
}

	.tech-track span {
		font-size: 1.5rem;
		color: #64748b;
		display: flex;
		align-items: center;
		gap: 10px;
		font-weight: 600;
	}

		.tech-track span i {
			font-size: 2rem;
			color: #fff;
		}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* PROCESS TIMELINE */
.process-section {
	padding: 100px 0;
	text-align: center;
}

	.process-section h3 {
		font-size: 2rem;
		margin-bottom: 10px;
		font-family: 'Poppins', sans-serif;
	}

.process-timeline {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 50px;
	flex-wrap: wrap;
	gap: 20px;
}

.process-step {
	flex: 1;
	min-width: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.step-icon {
	width: 60px;
	height: 60px;
	background: #1e293b;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #00B4D8;
	margin-bottom: 20px;
	border: 2px solid #00B4D8;
	box-shadow: 0 0 15px rgba(0, 180, 216, 0.3);
}

.process-line {
	flex-grow: 1;
	height: 2px;
	background: #334155;
	margin-top: 30px;
	display: none;
}

@media (min-width: 768px) {
	.process-line {
		display: block;
	}
}

.process-step h4 {
	margin-bottom: 10px;
	color: #fff;
}

.process-step p {
	font-size: 0.9rem;
	color: #94a3b8;
}

/* CALCULATOR */
.calculator-section {
	padding: 80px 0;
	background: #0E1538;
}

	.calculator-section h3 {
		text-align: center;
		font-family: 'Poppins', sans-serif;
		font-size: 2rem;
		margin-bottom: 10px;
	}

.calculator-box {
	background: #121A45;
	border: 1px solid #334155;
	padding: 40px;
	border-radius: 15px;
	max-width: 800px;
	margin: 0 auto;
}

.calc-row {
	margin-bottom: 30px;
}

	.calc-row label {
		display: block;
		margin-bottom: 15px;
		color: #00B4D8;
		font-weight: 600;
	}

.calc-options {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.calc-btn {
	background: #0A102A;
	border: 1px solid #334155;
	color: #cbd5e1;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
}

	.calc-btn:hover {
		border-color: #00B4D8;
	}

	.calc-btn.active {
		background: #00B4D8;
		color: #0A102A;
		border-color: #00B4D8;
		font-weight: 600;
	}

.calc-total {
	text-align: center;
	border-top: 1px solid #334155;
	padding-top: 30px;
	margin-top: 10px;
}

	.calc-total h2 {
		font-size: 2.5rem;
		color: #fff;
		margin-bottom: 5px;
	}

/* SERVICES & PORTFOLIO CARDS */
.services-page, .portfolio {
	padding: 80px 0;
}

.service-grid, .portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card, .portfolio-card {
	background: #121A45;
	padding: 0;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.05);
	transition: transform 0.3s ease;
	overflow: hidden;
}

.service-card {
	padding: 30px;
}

	.service-card:hover, .portfolio-card:hover {
		transform: translateY(-8px);
		border-color: #00B4D8;
	}

.service-icon {
	font-size: 2rem;
	color: #00B4D8;
	margin-bottom: 15px;
}

.portfolio-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.portfolio-info {
	padding: 25px;
}

.price {
	display: inline-block;
	margin-top: 15px;
	font-weight: bold;
	color: #00B4D8;
}

/* TESTIMONIALS & CLIENTS */
.clients-section {
	padding: 40px 0;
	background: #0f1535;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.clients-grid {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	opacity: 0.6;
}

.client-logo {
	font-size: 1.2rem;
	font-weight: 600;
	color: #cbd5e1;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: 0.3s;
}

	.client-logo:hover {
		opacity: 1;
		color: #fff;
	}

.testimonials-section {
	padding: 100px 0;
	background: #0A102A;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background: #121A45;
	padding: 35px;
	border-radius: 15px;
	border: 1px solid rgba(255,255,255,0.05);
}

	.testimonial-card .stars {
		color: #ffd700;
		margin-bottom: 15px;
	}

.client-profile {
	display: flex;
	align-items: center;
	gap: 15px;
}

	.client-profile img {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		object-fit: cover;
		border: 2px solid #00B4D8;
	}

/* FAT FOOTER */
.fat-footer {
	background: #05091a;
	padding: 80px 0 20px;
	border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 40px;
	margin-bottom: 60px;
}

.footer-col h4 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 1.1rem;
}

.footer-col ul {
	list-style: none;
}

	.footer-col ul li {
		margin-bottom: 10px;
	}

		.footer-col ul li a {
			color: #94a3b8;
			text-decoration: none;
			transition: 0.3s;
		}

			.footer-col ul li a:hover {
				color: #00B4D8;
				padding-left: 5px;
			}

.social-icons {
	display: flex;
	gap: 15px;
}

	.social-icons a {
		color: #fff;
		font-size: 1.2rem;
		transition: 0.3s;
	}

		.social-icons a:hover {
			color: #00B4D8;
		}

.footer-bottom {
	text-align: center;
	border-top: 1px solid rgba(255,255,255,0.05);
	padding-top: 20px;
	color: #64748b;
	font-size: 0.85rem;
}

/* STATS */
.stats-section {
	padding: 60px 0;
	background: #060B22;
	border-top: 1px solid rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	text-align: center;
	gap: 30px;
}

.stat-item h2 {
	font-size: 3rem;
	font-weight: 700;
	color: #00B4D8;
	margin: 0;
}

/* MODALS */
.modal-backdrop, .modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	z-index: 2000;
	display: none;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.case-study-modal, .modal-box {
	background: #121A45;
	border: 1px solid #334155;
	width: 100%;
	max-width: 700px;
	border-radius: 12px;
	padding: 40px;
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
}

.close-case, .modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
}

/* CONTACT FORM */
.contact-form form {
	background: #121A45;
	padding: 30px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.05);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 15px;
	border: 1px solid #334155;
	background: #060B22;
	color: white;
	border-radius: 5px;
	font-family: 'Inter', sans-serif;
}

.contact-form button {
	width: 100%;
	border: none;
	cursor: pointer;
}

/* ANIMATIONS */
.fade-in {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

	.fade-in.show {
		opacity: 1;
		transform: translateY(0);
	}

/* FAQ */
.faq-section {
	padding: 80px 0;
	background: #060B22;
}

.faq-item {
	margin-bottom: 15px;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 8px;
	background: #121A45;
}

.faq-question {
	width: 100%;
	padding: 20px;
	text-align: left;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	padding: 0 20px;
}

	.faq-answer p {
		padding: 20px 0;
		color: #cbd5e1;
	}

/* RESPONSIVE */
@media (max-width: 768px) {
	.hamburger {
		display: block;
	}

	nav {
		display: none;
		width: 100%;
	}

		nav.active {
			display: block;
		}

	.nav-links {
		flex-direction: column;
		text-align: center;
		padding: 20px 0;
		background: #0A102A;
	}

	.hero h2 {
		font-size: 2.5rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-form {
		max-width: 300px;
		margin: 0 auto;
	}

	.social-icons {
		justify-content: center;
	}

	.process-line {
		display: none;
	}

	.stats-grid, .team-grid {
		flex-direction: column;
	}

	.contact-grid, .about-grid {
		grid-template-columns: 1fr;
	}
}
