Horvath Connect
  
  
  

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

body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	color: #222;
	background: #f7f9fb;
}

a {
	text-decoration: none;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

header {
	background: #0d3b66;
	color: white;
	padding: 18px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

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

.logo {
	font-size: 28px;
	font-weight: 700;
}

.nav-links {
	display: flex;
	gap: 24px;
}

.nav-links a {
	color: white;
	font-weight: 500;
	transition: .3s;
}

.nav-links a:hover {
	opacity: .8;
}

.hero {
	background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(13, 59, 102, 0.85)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop') center/cover;
	color: white;
	padding: 120px 0;
	text-align: center;
}

.hero h1 {
	font-size: 54px;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero p {
	font-size: 20px;
	max-width: 750px;
	margin: auto;
	margin-bottom: 35px;
}

.btn {
	display: inline-block;
	background: #2a9d8f;
	color: white;
	padding: 15px 32px;
	border-radius: 10px;
	font-weight: 600;
	transition: .3s;
}

.btn:hover {
	background: #23867a;
	transform: translateY(-2px);
}

section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2 {
	font-size: 40px;
	color: #0d3b66;
	margin-bottom: 10px;
}

.section-title p {
	color: #666;
	max-width: 700px;
	margin: auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 25px;
}

.service-card {
	background: white;
	padding: 35px 25px;
	border-radius: 18px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	text-align: center;
	transition: .3s;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-icon {
	font-size: 42px;
	margin-bottom: 15px;
}

.service-card h3 {
	margin-bottom: 10px;
	color: #0d3b66;
}

.about {
	background: white;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-text h2 {
	font-size: 40px;
	color: #0d3b66;
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 18px;
	color: #555;
}

.why-us {
	background: #eef4f8;
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 25px;
}

.feature-box {
	background: white;
	padding: 30px;
	border-radius: 18px;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-box h3 {
	color: #0d3b66;
	margin-bottom: 10px;
}

.testimonials {
	background: white;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
}

.testimonial {
	background: #f7f9fb;
	padding: 30px;
	border-radius: 18px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.testimonial p {
	margin-bottom: 15px;
	color: #555;
}

.testimonial strong {
	color: #0d3b66;
}

.areas {
	background: #eef4f8;
	text-align: center;
}

.areas-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-top: 30px;
}

.area-pill {
	background: white;
	padding: 12px 20px;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	font-weight: 500;
}

.contact {
	background: #0d3b66;
	color: white;
	text-align: center;
}

.contact h2 {
	font-size: 40px;
	margin-bottom: 15px;
}

.contact p {
	margin-bottom: 30px;
	color: rgba(255,255,255,0.85);
}

.contact-box {
	max-width: 700px;
	margin: auto;
	background: white;
	padding: 40px;
	border-radius: 20px;
	color: #222;
}

.contact-box input,
    .contact-box textarea {
	width: 100%;
	padding: 15px;
	margin-bottom: 18px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-family: inherit;
}

.contact-box button {
	width: 100%;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

footer {
	background: #072540;
	color: white;
	text-align: center;
	padding: 25px 0;
}

@media (max-width: 900px) {
	.about-content {
		grid-template-columns: 1fr;
	}
	
	.hero h1 {
		font-size: 38px;
	}
	
	.nav-links {
		display: none;
	}
}