@charset "UTF-8";

:root {
	--primary-color: #4a6bdf;
	--secondary-color: #6c757d;
	--dark-color: #343a40;
	--light-color: #f8f9fa;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	scroll-behavior: smooth;
}

.navbar {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
	background: linear-gradient(135deg, var(--primary-color) 0%, #6788ff
		100%);
	color: white;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('../images/hero.png') no-repeat center
		center;
	background-size: cover;
	opacity: 0.2;
	z-index: 0;
}

.service-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 10px;
	overflow: hidden;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
	width: 80px;
	height: 80px;
	background-color: rgba(74, 107, 223, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.testimonial-card {
	border-left: 4px solid var(--primary-color);
}

.cta-section {
	background-color: var(--primary-color);
	color: white;
	padding: 80px 0;
	position: relative;
}

footer {
	background-color: var(--dark-color);
	color: white;
	padding: 60px 0 30px;
}

.footer-links {
	text-decoration: none;
	color: white;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: background-color 0.3s ease;
}

.social-icon:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
	color: var(--primary-color);
	font-size: 2rem;
	margin-bottom: 15px;
}

.successMail {
	color: green;
}

.failMail {
	color: red;
}
