﻿
:root {
	--primary: #0d6efd;
	--secondary: #0b5ed7;
	--dark: #0f172a;
	--light: #f8fafc;
	--muted: #64748b;
	--accent: #e6f2ff;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	color: #1f2937;
	background-color: #ffffff;
}

.navbar {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar-brand img {
	height: 42px;
	width: auto;
	object-fit: contain;
}

.hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	background: linear-gradient(rgba(15, 23, 42, 0.72), rgba(13, 110, 253, 0.55)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
	color: #fff;
}

	.hero .badge {
		background-color: rgba(255, 255, 255, 0.15);
		border: 1px solid rgba(255, 255, 255, 0.2);
		backdrop-filter: blur(4px);
	}

.hero-logo {
	max-width: 180px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.95);
	padding: 10px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.section-padding {
	padding: 80px 0;
}

.section-title {
	font-weight: 700;
	color: var(--dark);
}

.section-subtitle {
	color: var(--muted);
	max-width: 700px;
	margin: 0 auto;
}

.service-card,
.testimonial-card,
.contact-card,
.about-card {
	border: 0;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	height: 100%;
}

	.service-card:hover,
	.testimonial-card:hover,
	.contact-card:hover,
	.about-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
	}

.service-icon,
.info-icon,
.social-icon {
	width: 64px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--accent);
	color: var(--primary);
	font-size: 1.4rem;
}

.about-image,
.contact-side-image {
	width: 100%;
	border-radius: 18px;
	object-fit: cover;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.stats-box {
	background: #fff;
	border-radius: 16px;
	padding: 18px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	text-align: center;
}

	.stats-box h3 {
		color: var(--primary);
		font-weight: 800;
		margin-bottom: 4px;
	}

.testimonial-stars {
	color: #f59e0b;
}

.contact-section {
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.form-control,
.form-select {
	border-radius: 12px;
	padding: 0.9rem 1rem;
}

	.form-control:focus,
	.form-select:focus {
		border-color: #86b7fe;
		box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
	}

.btn-primary {
	padding: 0.85rem 1.3rem;
	border-radius: 12px;
	font-weight: 600;
}

.btn-outline-light,
.btn-light {
	border-radius: 12px;
	font-weight: 600;
}

.bg-soft {
	background-color: #f8fbff;
}

footer {
	background: var(--dark);
	color: rgba(255, 255, 255, 0.9);
}

	footer a {
		color: rgba(255, 255, 255, 0.9);
		text-decoration: none;
	}

		footer a:hover {
			color: #ffffff;
		}

.footer-social a {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	margin-left: 8px;
}

	.footer-social a:hover {
		background: rgba(255, 255, 255, 0.16);
	}

@media (max-width: 767.98px) {
	.hero {
		min-height: 78vh;
		text-align: center;
	}

	.hero-logo {
		margin: 0 auto 1rem;
	}
}


