﻿body {
	font-family: 'Poppins', sans-serif;
}


.btn-custom-primary, .btn-custom-secondary {
	display: inline-block; /* Ensure buttons are visible */
}

.btn-custom-primary {
	background-color: #5ca962; /* green background */
	color: white; /* white text */
	padding: 12px 30px;
	font-size: 1rem;
	border-radius: 5px;
	border: none;
	transition: all 0.3s ease;
}

	.btn-custom-primary:hover {
		background-color: #5ca962;
		box-shadow: 0 5px 15px #5ca962; /* hover shadow */
		color: white;
	}

.btn-custom-secondary {
	/* background-color: white; */
	color: #333; /* dark text */
	padding: 12px 30px;
	font-size: 1rem;
	border: 2px solid #333; /* dark border */
	border-radius: 5px;
	transition: all 0.3s ease;
}

	.btn-custom-secondary:hover {
		background-color: #333;
		color: white;
		box-shadow: 0 5px 15px rgba(51, 51, 51, 0.5); /* hover shadow */
	}


.third-btn {
	background: #5CA962;
	color: white;
	padding: 14px 30px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	width: auto;
	margin: 0 auto;
	display: block;
	user-select: none;
}

	.third-btn[disabled] {
		opacity: 0.8;
		pointer-events: none;
		cursor: default;
	}

	.third-btn:not([disabled]):hover {
		background: #4a8a4f;
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(92, 169, 98, 0.3);
	}


#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f5f5f5;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease-out;
}

.loader h1 {
	font-size: 64px;
	font-weight: bold;
	line-height: 1.2;
	background: linear-gradient( to right, #5CA962 20%, #1a538d 50%, #5CA962 80% );
	background-size: 200% auto;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	animation: shine 4s linear infinite, pulse 1.5s ease-in-out infinite;
}


@keyframes slideInLeft {
	from {
		transform: translateX(-50px);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}


@keyframes shine {
	0% {
		background-position: 0% center;
	}

	50% {
		background-position: 100% center;
	}

	100% {
		background-position: 0% center;
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes rotate {
	0% {
		transform: rotate(0deg) scale(1);
	}

	50% {
		transform: rotate(180deg) scale(1.2);
	}

	100% {
		transform: rotate(360deg) scale(1);
	}
}

.loader {
	text-align: center;
}

.logo-loader {
	width: 500px;
	height: auto;
	animation: pulse 1.5s ease-in-out infinite;
}

.loader p {
	color: #5CA962;
	font-size: 18px;
	font-weight: 500;
	margin-top: 20px;
	animation: fade 1.5s ease-in-out infinite;
}


@keyframes fade {
	0%, 100% {
		opacity: 0.3;
	}

	50% {
		opacity: 1;
	}
}


.navbar {
	background: white;
	padding: 0 35px;
	max-width: 100%;
	margin: 0 auto;
	min-height: 80px;
}

.navbar-brand img {
	height: 80px;
	width: auto;
	max-height: 80px;
	transition: height 0.3s ease;
}

.navbar-brand {
	margin-left: 0; /* Remove extra space on the left */
	padding-left: 0; /* Adds a slight padding from the edge */
}

.navbar-toggler {
	padding: 4px 8px;
	margin-right: 15px;
	align-self: center; /* Center align the toggle button */
}

.nav-item {
	margin: 0 60px;
}

.nav-link {
	color: black;
	font-weight: bold;
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
}

	.nav-link i {
		color: #5CA962;
		font-size: 1.5rem;
		display: none;
		font-weight: 900; /* Added font weight */
		-webkit-text-stroke: 0.5px #5CA962;
	}

	.nav-link.active::after {
		content: "";
		position: absolute;
		width: 100%;
		height: 4px;
		background: green;
		left: 0;
		bottom: 0px;
		transition: width 0.6s ease;
	}

.phone {
	font-weight: bold;
	color: rgb(0, 0, 0);
	padding-right: 20px;
	display: flex;
	align-items: center;
	position: relative; /* Keeps it properly placed */
	margin-left: auto; /* Pushes the phone number to the right */
	text-align: right; /* Aligns the text to the right edge */
	padding-right: 10px; /* Adds some space to prevent it from touching the edge */
}

	.phone::before {
		content: "";
		display: inline-block;
		height: 24px;
		width: 1px;
		background-color: #DAD8D8;
		margin-right: 100px;
		vertical-align: middle;
	}


.header-content {
	max-width: 600px;
	text-align: left;
	position: relative;
	z-index: 2;
	margin-left: 50px; /* Add spacing from the left edge */
	animation: slideInLeft 1.5s ease-out; /* Slide-in animation */
	animation-fill-mode: forwards; /* Stop animation after it completes */
}

	.header-content h1 {
		font-size: 4.5rem; /* Increase font size */
		font-weight: bold;
		line-height: 1.2;
		margin-bottom: 20px;
		background: linear-gradient( to right, #5CA962 20%, #1a538d 50%, #5CA962 80% );
		background-size: 200% auto;
		color: transparent;
		-webkit-background-clip: text;
		background-clip: text;
		animation: shine 4s linear infinite; /* Same style as other section headers */
	}

	.header-content p {
		font-size: 1.2rem;
		color: #808080;
		margin-bottom: 30px;
		line-height: 1.6;
		animation: slideInLeft 1.5s ease-out 0.3s;
	}

#iconphone {
	color: #5CA962;
	padding-right: 20px;
	-webkit-text-stroke: 1px #5CA962;
}

.container {
	padding-left: 0; /* Remove extra padding on the left */
	padding-right: 0; /* Remove extra padding on the right */
}

/* Responsive Navigation Styles */
@media (max-width: 1750px) {
	.nav-item {
		margin: 0 20px;
	}

	.nav-link {
		font-size: 14px;
		padding: 8px 8px;
	}
}

@media (max-width: 1400px) {
	.nav-item {
		margin: 0 20px;
	}

	.nav-link {
		font-size: 11px;
		padding: 8px 12px;
	}

	.phone {
		font-size: 11px;
	}
}

/* Footer Section */
#footer {
	background: #1a2332;
	color: white;
	padding: 40px 20px;
	margin: 0; /* Remove margin */
	text-align: left; /* Change from center to left */
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	text-align: left; /* Ensure container is left-aligned */
}

.footer-section {
	flex: 1 1 calc(33.333% - 20px);
	min-width: 250px;
	text-align: left; /* Explicit left alignment for each section */
}

	.footer-section h3 {
		font-size: 18px;
		margin-bottom: 15px;
		color: #5CA962;
	}

	.footer-section p, .footer-section ul {
		font-size: 14px;
		line-height: 1.6;
		color: #ccc;
	}

	.footer-section ul {
		list-style: none;
		padding: 0;
	}

		.footer-section ul li {
			margin-bottom: 10px;
		}

			.footer-section ul li i {
				margin-right: 10px;
				color: #5CA962;
			}

.footer-bottom {
	margin-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	font-size: 14px;
	color: #ccc;
	text-align: center; /* Keep copyright text centered */
}

/* Comprehensive Responsive Design System */


/* QHD/2K (1440p) */
@media (max-width: 2159px) {

	.container {
		max-width: 1400px;
	}

	.header-content h1 {
		font-size: 4.5rem;
	}

	.navbar-brand img {
		height: 60px;
	}
}

/* Large Desktop (1200p) */
@media (max-width: 1439px) {
	.container {
		max-width: 1140px;
	}

	.nav-item {
		margin: 0 20px;
	}

	.navbar-brand img {
		height: 55px;
	}
}

/* Desktop (1080p) */
@media (max-width: 1199px) {
	.container {
		max-width: 960px;
	}

	.header-content h1 {
		font-size: 4rem;
	}

	.nav-item {
		margin: 0 15px;
	}

	.navbar-brand img {
		height: 55px;
	}
}

/* Tablet Landscape */
@media (max-width: 991px) {
	.container {
		max-width: 720px;
	}

	.header-content {
		margin-left: 10px;
		padding: 10px;
	}

		.header-content h1 {
			margin-bottom: 10px;
		}

		.header-content > p {
			margin-bottom: 15px;
		}

	.phone {
		display: none;
	}

	.header-content > p {
		display: none;
	}

	.navbar-brand img {
		height: 55px;
	}
}

/* Tablet Portrait */
@media (max-width: 767px) {
	.container {
		max-width: 540px;
		padding: 0 15px;
	}

	.header-content h1 {
		font-size: 3rem;
	}

	.footer-container {
		display: grid;
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.navbar-brand img {
		height: 50px;
	}
}

/* Mobile Landscape */
@media (max-width: 575px) {
	.header-content {
		margin-left: 0px;
		padding: 5px;
	}

		.header-content > p {
			margin-bottom: 10px;
		}

	.footer-section {
		padding: 0 15px;
	}

	.navbar-brand img {
		height: 45px;
	}
}

/* Mobile Portrait */
@media (max-width: 374px) {
	.header-content h1 {
		font-size: 2.5rem;
	}

	.navbar-brand img {
		height: 40px;
	}
}
