/* Contact Section */
.contact-section {
	padding: 64px 5vw 32px 5vw;
	background: #fff;
}
.contact-content {
	display: flex;
	align-items: flex-start;
	gap: 48px;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contact-info {
	flex: 1 1 340px;
	max-width: 500px;
	text-align: left;
}
.contact-info h1 {
	font-size: 38px;
	font-weight: 800;
	margin-bottom: 18px;
}
.contact-info ul {
	margin-bottom: 10px;
	padding-left: 18px;
}
.contact-info li {
	font-size: 16px;
	margin-bottom: 8px;
	color: #232b36;
	list-style: disc inside;
}
.contact-form {
	flex: 1 1 340px;
	max-width: 400px;
	background: #f7f9fa;
	border-radius: 18px;
	box-shadow: 0 2px 16px rgba(0,0,0,0.06);
	padding: 32px 28px;
}
.contact-form form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.contact-form input,
.contact-form textarea {
	padding: 12px;
	border-radius: 8px;
	border: 1px solid #d0d6e0;
	font-size: 16px;
	resize: vertical;
}
.contact-form textarea {
	min-height: 100px;
}
.contact-form button {
	background: #c6f36b;
	color: #232b36;
	padding: 12px 32px;
	border-radius: 10px;
	font-weight: bold;
	border: none;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(123,225,108,0.12);
	transition: background 0.2s;
}
.contact-form button:hover {
	background: #7be16c;
}
@media (max-width: 900px) {
	.contact-content {
		flex-direction: column;
		gap: 32px;
	}
}
/* Services Section (dedicated page) */
.services-section {
	padding: 24px 5vw 24px 5vw;
	background: #fff;
	text-align: center;
}
.services-section h1 {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 8px;
}
.services-section .services-desc {
	font-size: 20px;
	color: #232b36;
	margin-bottom: 38px;
}
/* Professional Header & Footer Enhancements */
.main-header {
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.03);
	position: sticky;
	top: 0;
	z-index: 100;
}
.header-content {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 18px 5vw;
		gap: 310px;
}
.logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.main-nav a {
	color: #232b36;
	text-decoration: none;
	margin: 0 18px;
	font-weight: 500;
	font-size: 17px;
	transition: color 0.2s;
}
.main-nav a:hover, .main-nav .btn-contact:hover {
	color: #7be16c;
}
.main-nav .btn-contact {
	background: #c6f36b;
	color: #232b36;
	padding: 8px 28px;
	border-radius: 10px;
	font-weight: bold;
	box-shadow: 0 2px 8px rgba(123,225,108,0.12);
	margin-left: 18px;
	transition: background 0.2s;
}
.main-nav .btn-contact:hover {
	background: #7be16c;
}
.main-footer {
	background: linear-gradient(90deg, #1a7bb7 0%, #7be16c 100%);
	color: #fff;
	padding: 48px 5vw 0 5vw;
	margin-top: 48px;
}
.main-footer .footer-main {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	justify-content: space-between;
	margin-bottom: 32px;
}
.main-footer .footer-logo {
	max-width: 340px;
}
.main-footer .logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.main-footer .logo-svg {
	width: 38px;
	height: 38px;
	font-size: 22px;
	margin-right: 8px;
}
.main-footer .logo-text {
	font-size: 20px;
	font-weight: 600;
}
.main-footer .footer-desc {
	font-size: 16px;
	margin: 18px 0 18px 0;
}
.main-footer .footer-social a {
	color: #fff;
	margin-right: 16px;
	font-size: 20px;
	text-decoration: none;
}
.main-footer .footer-links {
	display: flex;
	gap: 48px;
}
.main-footer .footer-links h4 {
	font-size: 18px;
	margin-bottom: 10px;
}
.main-footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.main-footer .footer-links li {
	font-size: 15px;
	margin-bottom: 8px;
	color: #e0e0e0;
}
.main-footer .footer-links a {
	color: #e0e0e0;
	text-decoration: none;
	transition: color 0.2s;
}
.main-footer .footer-links a:hover {
	color: #7be16c;
}
.main-footer .footer-bottom {
	border-top: 1px solid #3a4250;
	padding: 18px 0;
	text-align: center;
	font-size: 15px;
	color: #b0b8c1;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
}
.main-footer .footer-bottom a {
	color: #b0b8c1;
	text-decoration: none;
	margin: 0 8px;
	transition: color 0.2s;
}
.main-footer .footer-bottom a:hover {
	color: #7be16c;
}
@media (max-width: 900px) {
	.main-header .header-content {
		padding-left: 3vw;
		padding-right: 3vw;
	}
	.main-footer, .main-footer .footer-main {
		padding-left: 3vw;
		padding-right: 3vw;
		flex-direction: column;
		gap: 32px;
	}
}
/* About Us Section */
.about-section {
	padding: 32px 5vw 32px 5vw;
	background: #fff;
}
.about-content {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 18px;
	flex-wrap: wrap;
}
.about-text {
	flex: 1 1 380px;
	max-width: 480px;
	text-align: left;
	font-size: 18px;
	line-height: 1.7;
	padding: 12px 0 12px 0;
}
.about-text h1 {
	font-size: 38px;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 12px;
}
.about-text h2 {
	font-size: 22px;
	font-weight: 700;
	margin-top: 24px;
	margin-bottom: 10px;
}
.about-text ul {
	margin-bottom: 10px;
	padding-left: 18px;
}
.about-text li {
	font-size: 16px;
	margin-bottom: 8px;
	color: #232b36;
	list-style: disc inside;
}
.about-image {
	flex: 1 1 220px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-image img {
	max-width: 320px;
	border-radius: 24px;
	box-shadow: 0 2px 16px rgba(123,225,108,0.10);
}
@media (max-width: 900px) {
	.about-content {
		flex-direction: column;
		gap: 32px;
		align-items: flex-start;
	}
	.about-image {
		justify-content: flex-start;
	}
}
/* Styles for ESET Healthcare Project */
/* ESET Healthcare Styles */
body {
	margin: 0;
	font-family: 'Inter', 'Segoe UI', 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
	background: #f7f9fa;
	color: #222;
}
.top-bar {
	background: linear-gradient(90deg, #1a7bb7 0%, #7be16c 100%);
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 5vw;
	font-size: 15px;
}
.top-contact span {
	margin-right: 32px;
	display: inline-block;
}
.top-social a {
	color: #fff;
	margin-left: 16px;
	font-size: 18px;
	text-decoration: none;
}
header {
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 5vw;
	box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.logo {
	display: flex;
	align-items: center;
}
.logo-circle {
	background: linear-gradient(135deg, #7be16c, #5ad1e6);
	color: #fff;
	font-weight: bold;
	font-size: 28px;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
}
.logo-text {
	font-size: 24px;
	font-weight: 600;
	color: #232b36;
}
nav a {
	color: #232b36;
	text-decoration: none;
	margin: 0 18px;
	font-weight: 500;
	font-size: 17px;
	transition: color 0.2s;
}
nav a:hover {
	color: #7be16c;
}
.btn-contact {
	background: #c6f36b;
	color: #232b36;
	padding: 8px 28px;
	border-radius: 10px;
	font-weight: bold;
	box-shadow: 0 2px 8px rgba(123,225,108,0.12);
	margin-left: 18px;
	transition: background 0.2s;
}
.btn-contact:hover {
	background: #7be16c;
}
.hero {
	position: relative;
	height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e3f6fc 0%, #c6f36b 100%);
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
	opacity: 0.3;
}
.hero-overlay {
	position: relative;
	z-index: 2;
	color: #1a2633;
	text-align: left;
	max-width: 600px;
	margin-left: 5vw;
}
.hero-overlay h1 {
	font-size: 54px;
	font-weight: 800;
	margin-bottom: 12px;
	line-height: 1.1;
	color: #1a2633;
}
.hero-overlay .highlight {
	color: #7be16c;
	font-size: 54px;
	font-weight: 800;
}
.hero-overlay p {
	font-size: 20px;
	margin-bottom: 32px;
	color: #232b36;
}
.hero-buttons {
	display: flex;
	gap: 18px;
}
.btn-green {
	background: #c6f36b;
	color: #232b36;
	padding: 12px 32px;
	border-radius: 10px;
	font-weight: bold;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(123,225,108,0.12);
	transition: background 0.2s;
}
.btn-green:hover {
	background: #7be16c;
}
.btn-outline {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	padding: 12px 32px;
	border-radius: 10px;
	font-weight: bold;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
	background: #fff;
	color: #232b36;
}
.services {
	padding: 64px 5vw 32px 5vw;
	background: #fff;
	text-align: center;
}
.services h2 {
	font-size: 38px;
	font-weight: 800;
	margin-bottom: 8px;
}
.services-desc {
	font-size: 20px;
	color: #232b36;
	margin-bottom: 38px;
}
.services-cards {
	display: flex;
	gap: 32px;
	justify-content: flex-start;
	flex-wrap: nowrap;
	overflow-x: auto;
}
.service-card {
	background: #f7f9fa;
	border-radius: 18px;
	box-shadow: 0 2px 16px rgba(0,0,0,0.06);
	padding: 32px 28px;
	min-width: 320px;
	max-width: 370px;
	text-align: left;
	flex: 0 0 auto;
}
.service-icon {
	background: linear-gradient(135deg, #7be16c, #5ad1e6);
	width: 54px;
	height: 54px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #fff;
	margin-bottom: 18px;
}
.service-card h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
}
.service-card p {
	font-size: 16px;
	margin-bottom: 18px;
}
.service-card ul {
	padding-left: 18px;
	margin: 0;
}
.service-card li {
	font-size: 15px;
	margin-bottom: 8px;
	color: #232b36;
	list-style: disc inside;
}
footer {
	background: #232b36;
	color: #fff;
	padding: 48px 5vw 0 5vw;
	margin-top: 48px;
}
.footer-main {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	justify-content: space-between;
	margin-bottom: 32px;
}
.footer-logo {
	max-width: 340px;
}
.footer-logo .logo-circle {
	width: 38px;
	height: 38px;
	font-size: 22px;
	margin-right: 8px;
}
.footer-logo .logo-text {
	font-size: 20px;
	font-weight: 600;
}
.footer-logo p {
	font-size: 16px;
	margin: 18px 0 18px 0;
}
.footer-social a {
	color: #fff;
	margin-right: 16px;
	font-size: 20px;
	text-decoration: none;
}
.footer-links {
	display: flex;
	gap: 48px;
}
.footer-links h4 {
	font-size: 18px;
	margin-bottom: 10px;
}
.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-links li {
	font-size: 15px;
	margin-bottom: 8px;
	color: #e0e0e0;
}
.footer-links i {
	margin-right: 8px;
}
.footer-bottom {
	border-top: 1px solid #3a4250;
	padding: 18px 0;
	text-align: center;
	font-size: 15px;
	color: #b0b8c1;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
}
@media (max-width: 900px) {
	.services-cards {
		flex-wrap: nowrap;
		overflow-x: auto;
		align-items: stretch;
	}
	.service-card {
		min-width: 320px;
		max-width: 370px;
		flex: 0 0 auto;
	}
	.footer-main {
		flex-direction: column;
		gap: 32px;
	}
	header, .top-bar, .services, footer {
		padding-left: 3vw;
		padding-right: 3vw;
	}
}
@media (max-width: 600px) {
	.hero-overlay h1, .hero-overlay .highlight {
		font-size: 32px;
	}
	.services h2 {
		font-size: 26px;
	}
	.service-card {
		padding: 18px 10px;
	}
}
/* Icon font (simple) */
.icon-phone:before { content: '\260E'; }
.icon-mail:before { content: '\2709'; }
.icon-location:before { content: '\1F4CD'; }
.icon-facebook:before { content: '\f09a'; font-family: 'FontAwesome'; }
.icon-twitter:before { content: '\f099'; font-family: 'FontAwesome'; }
.icon-instagram:before { content: '\f16d'; font-family: 'FontAwesome'; }
.icon-linkedin:before { content: '\f0e1'; font-family: 'FontAwesome'; }
.icon-code:before { content: '<>' }
.icon-group:before { content: '\1F465'; }
