@charset "utf-8";
/* CSS Document */
:root {
	--primary-blue: #6fa8dc;
	--soft-blue: #a4c8f0;
	--deep-blue: #3f6ea5;
	--background: #f7f9fc;
	--cream: #ffffff;
	--text-dark: #2f2f2f;
	--light-gray: #e6edf5;
}
body{
	font-family: 'Georgia', serif;
	font-size: 18px;
	background: var(--background);
	color: var(--text-dark);
	margin: 0;
}

.logo{
	width: 200px;
	
}
.container{
	width: 90%;
	max-width: 1200px;
	margin: auto;
	padding: 2rem;
}
section{
	padding: 4rem 0;
	background: var(--cream);
}
section:nth-child(even){
	background: var(--light-gray);
}
h2{
	text-align: center;
	color: var(--deep-blue);
	margin-bottom: 1rem;
}
.card-grid{
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card{
	background: var(--soft-blue);
	padding: 1.8rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	transition: 0.3s ease;
}
.hero{
	text-align: center;
	padding: 5rem 1rem;
	background: var(--soft-blue);
	color: var(--cream);
}
.hero h1{
	font-size: 2.8rem;
	margin-bottom: 1rem;
	color: var(--deep-blue);
}
.hero p{
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}
.btn{
	display: inline-block;
	padding: 14px 24px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	transition: 0.3s ease;
	width: center;
	font-size: 18px;
}
.btn-primary{
	background-color: var(--primary-blue);
	color: white;
}
.btn-primary:hover{
	background: var(--deep-blue);
}
form input, form textarea {
	width: 100%;
	padding: 1rem;
	margin: 0.5rem 0;
	border: 1px solid var(--light-gray);
	border-radius: 10px;
	background: var(--soft-blue);
}
footer{
	text-align: center;
	padding: 1rem;
	background: var(--deep-blue);
	color: white
}
.facebook{
	width: 50px;
}
.phone{
	width: 30px;
}
p{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.mail{
	width: 30px;
}
.location{
	width: 30px;
}
.dc{
	width: 375px;
	border-radius: 10px;
}
.team {
	padding: 80px 20px;
	text-align: center;
	background: var(--background);
}
.team h2{
	margin-bottom: 15px;
}
.team-intro{
	max-width: 600px;
	margin: 0 auto 50px auto;
	font-size: 18px;
	line-height: 1.6;
}
.team-member{
	transition: 0.3s ease;
}
.team-member img{
	width: 180px;
	height: 180px;
	object-fit: cover;
	border-radius: 50%;
	border: 6px solid var(--soft-blue);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	margin-bottom: 20px;
	transition: 0.3s ease;
}
.team-member:hover img{
	transform: scale(1.05);
}
.team-member h3{
	margin-bottom: 5px;
	font-weight: 600;
}
.team-member p{
	color: #666;
	font-size: 15px;
}
#services .btn{
	display: block;
	width: fit-content;
	margin: 40px auto 0;
	text-align: center;
}
.navbar{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 40px;
	background: linear-gradient(to right, #5fa8d3, #87c4e8);
}
.nav-links{
	list-style: none;
	display: flex;
	gap: 30px;
}
.nav-links li a{
	text-decoration: none;
	color: white;
	font-weight: 500;
	transition: 0.3s ease;
}
.nav-links li a:hover{
	opacity: 0.7;
}
.site-header{
	position: relative;
}
.about-slider{
	padding: 80px 20px;
	text-align: center;
}
.slide{
	display: none;
}
.slider{
	position: relative;
	max-width: 900px;
	margin: 40px auto 0;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.slide img{
	width: 100%;
	height: 450px;
	object-fit: cover;
}
.slide.active{
	display: block;
}
.prev, .next{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--soft-blue);
	color: white;
	border: none;
	padding: 12px 18px;
	font-size: 20px;
	cursor: pointer;
	border-radius: 50%;
	opacity: 0.9;
}
.prev:hover, .next:hover{
	opacity: 1;
}
.prev{
	left: 15px;
}
.next{
	right: 15px;
}
p1{
	text-decoration: underline;
	text-decoration-style: solid;
	font-weight: 700;
	font-size: 13px;
	
}
.header-middle{
	text-align: center;
	font-size: 15px;
	font-weight: 660;
}
.header-middle h2{
	color: white;
}
@media (max-width: 768px){
	.header-container{
		flex-direction: column;
		text-align: center;
	}
	.nav-links{
		flex-direction: column;
		gap: 15px;
		padding: 10px 0;
		align-items: center;
	}
	.card-grid{
		grid-template-columns: 1fr;
	}
	.container{
		padding: 20px;
	}
	img{
	max-width: 100%;
	height: auto;
	display: block;
	}
	.navbar{
		flex-direction: column;
		gap: 10px;
	}
}
