:root {
	--primary: #123456;
	--secondary: #34ab53;
	--accent: #f2f3f4;
	--light: #f8f9fa;
	--dark: #2c3e50;
	--white: #ffffff;
	--gray: #6c757d;
	--shadow: 0 4px 12px rgba(18, 52, 86, 0.15);
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background-color: var(--white);
	color: var(--dark);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
header {
	background-color: var(--white);
	box-shadow: var(--shadow);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	padding:0 0;
}

.logo img {
	padding:0 0;
	width:234px;
	height:60px;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 30px;
}

.nav-links a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	transition: var(--transition);
}

.nav-links a:hover {
	color: var(--secondary);
}

.nav-buttons {
	display: flex;
	gap: 15px;
}

.btn {
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	display: inline-block;
}

.btn-outline {
	border: 2px solid var(--primary);
	color: var(--primary);
	background: transparent;
}

.btn-outline:hover {
	background-color: var(--primary);
	color: var(--white);
}

.btn-primary {
	background-color: var(--secondary);
	color: var(--white);
	border: 2px solid var(--secondary);
}

.btn-primary:hover {
	background-color: #123456;
	border-color: #123456;
	color: var(--white);
}

.mobile-menu {
	display: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--primary);
	background: none;
	border: none;
	padding: 5px;
}

/* Mobile Sidebar */
.mobile-sidebar {
	position: fixed;
	top: 0;
	left: -100%;
	width: 85%;
	max-width: 300px;
	height: 100vh;
	background: var(--white);
	box-shadow: 2px 0 20px rgba(0,0,0,0.15);
	z-index: 1100;
	transition: all 0.4s ease;
	padding: 30px 25px;
	overflow-y: auto;
}

.mobile-sidebar.active {
	left: 0;
}

.mobile-sidebar .logo {
	font-size: 22px;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--accent);
}

.mobile-nav-links {
	list-style: none;
	margin-bottom: 30px;
}

.mobile-nav-links li {
	margin-bottom: 0;
}

.mobile-nav-links a {
	display: block;
	padding: 15px 0;
	color: var(--dark);
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	border-bottom: 1px solid var(--accent);
	transition: var(--transition);
}

.mobile-nav-links a:hover {
	color: var(--secondary);
	padding-left: 10px;
}

.mobile-nav-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 20px;
}

.mobile-nav-buttons .btn {
	text-align: center;
	width: 100%;
	padding: 12px;
	font-size: 15px;
}

.sidebar-close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 28px;
	cursor: pointer;
	color: var(--primary);
	background: none;
	border: none;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: var(--transition);
}

.sidebar-close:hover {
	background-color: var(--accent);
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 1050;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Page Content Styles */
.page-hero {
	padding: 150px 0 80px;
	background: linear-gradient(135deg, var(--accent) 0%, var(--white) 100%);
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(52, 171, 83, 0.1) 0%, rgba(255,255,255,0) 70%);
	border-radius: 50%;
	z-index: 0;
}

.page-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.page-hero-content h1 {
	font-size: 42px;
	color: var(--primary);
	margin-bottom: 20px;
}

.page-hero-content p {
	font-size: 18px;
	color: var(--gray);
	max-width: 700px;
	margin: 0 auto;
}

.breadcrumb {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	list-style: none;
	font-size: 14px;
}

.breadcrumb li {
	margin: 0 5px;
}

.breadcrumb li:not(:last-child)::after {
	content: "›";
	margin-left: 10px;
	color: var(--gray);
}

.breadcrumb a {
	color: var(--primary);
	text-decoration: none;
}

.breadcrumb a:hover {
	color: var(--secondary);
}

.breadcrumb span {
	color: var(--gray);
}

.page-content {
	padding: 80px 0;
}

.page-section {
	margin-bottom: 60px;
}

.page-section:last-child {
	margin-bottom: 0;
}

.page-section h2 {
	font-size: 32px;
	color: var(--primary);
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 15px;
}

.page-section h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background-color: var(--secondary);
}

.page-section p {
	margin-bottom: 20px;
	color: var(--dark);
	line-height: 1.8;
}

.page-section ul, .page-section ol {
	margin-left: 20px;
	margin-bottom: 20px;
}

.page-section li {
	margin-bottom: 10px;
	line-height: 1.6;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.team-member {
	background: var(--white);
	border-radius: 10px;
	padding: 30px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: var(--transition);
}

.team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(18, 52, 86, 0.2);
}

.team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 20px;
	background-color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	color: var(--primary);
}

.team-member h3 {
	font-size: 20px;
	margin-bottom: 5px;
	color: var(--primary);
}

.team-member .position {
	color: var(--secondary);
	font-weight: 600;
	margin-bottom: 15px;
}

.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.contact-card {
	background: var(--white);
	border-radius: 10px;
	padding: 30px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: var(--transition);
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(18, 52, 86, 0.2);
}

.contact-icon {
	width: 70px;
	height: 70px;
	background-color: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 30px;
	color: var(--primary);
}

.contact-card h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: var(--primary);
}

.contact-form {
	background: var(--white);
	border-radius: 10px;
	padding: 40px;
	box-shadow: var(--shadow);
	margin-top: 40px;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--primary);
}

.form-control {
	width: 100%;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: var(--transition);
}

.form-control:focus {
	outline: none;
	border-color: var(--secondary);
	box-shadow: 0 0 0 2px rgba(52, 171, 83, 0.2);
}

textarea.form-control {
	min-height: 150px;
	resize: vertical;
}

/* Footer Styles */
footer {
	background-color: var(--primary);
	color: var(--white);
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3 {
	font-size: 18px;
	margin-bottom: 20px;
	color: #ffffff;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--secondary);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #ccc;
	font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.nav-links, .nav-buttons {
		display: none;
	}
	
	.mobile-menu {
		display: block;
	}
	
	.page-hero {
		padding: 130px 0 60px;
	}
	
	.page-hero-content h1 {
		font-size: 32px;
	}
	
	.page-content {
		padding: 60px 0;
	}
	
	.contact-form {
		padding: 30px 20px;
	}
}
.icon-bar {position: fixed;top: 70%;right:0px;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);z-index:9999;}
.icon-bar a {display: block;text-align: center;padding:6px;transition: all 0.3s ease;}
.icon-bar a:hover {background-color:#f9f8f7; border-radius:50%;}
.facebook {background: transparent;}
.instagram {background: transparent;}
.whatsapp {background:transparent;}
.telephone {background: transparent;}