/* General Reset */
body,
html {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}

/* Navbar Styling */
header {
	background: #000000; /* Dark Blue Background */
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 30px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	position: relative;
	transition: box-shadow 0.3s;
}

.navbar:hover {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.logo a {
	display: flex;
	align-items: center;
}

.logo img {
	max-height: 90px; /* Adjust the height as needed */
	width: auto;
	background-color: #e0e0e0;
}

.nav-links {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav-links li {
	margin: 0 20px;
}

.nav-links a {
	color: rgb(248, 246, 242);
	text-decoration: none;
	font-size: 20px;
	padding: 10px 15px;
	border-radius: 5px;
	position: relative;
	transition: all 0.3s;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-links a::after {
	content: '';
	display: block;
	width: 0;
	height: 3px;
	background: #ffffff;
	transition: width 0.3s;
	position: absolute;
	bottom: 0;
	left: 0;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-links a:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #e0e0e0;
	transform: translateY(-3px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Call Button */
.call-link {
	display: inline-block;
	padding: 10px 20px;
	background: #002e1c;
	color: #ffffff;
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.3s, color 0.3s;
	margin-left: 20px; /* Space between nav items */
}

.call-link:hover {
	background: #003366;
	color: #ffffff;
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.menu-toggle .bar {
	width: 30px;
	height: 4px;
	background-color: #ffffff;
	margin: 5px 0;
	transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		background: #003366;
		z-index: 999;
		position: absolute;
		top: 100px; /* Adjust based on navbar height */
		left: 0;
		text-align: center;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	}

	.nav-links.active {
		display: flex;
	}

	.menu-toggle {
		display: flex;
	}

	.nav-links li {
		margin: 15px 0; /* Adjust margin for mobile */
	}
}

/* ///////////////////// */
/* General Reset */
body,
html {
	background-color: #000000;
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* About Us Section Styling */
.about-us {
	background: #ffffff;
	padding: 50px 0;
	text-align: center;
	overflow: hidden; /* For animation */
}

.about-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
	position: relative;
	opacity: 0;
	transform: translateX(-50%);
	animation: slideIn 1s forwards;
}

.about-text {
	flex: 1;
	padding: 20px;
}

.about-text p {
	font-size: 18px;
	color: #313030;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
}

.about-image {
	flex: 1;
	padding: 20px;
}

.about-image img {
	width: 100%;
	max-width: 500px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgb(32, 32, 32);
}

/* Heading Styles */
.about-us h1 {
	font-size: 36px;
	color: #000000;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.about-us h1::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: rgb(0, 104, 52);
	margin: 10px auto;
	transition: width 0.3s ease;
}

/* Team Section Styling */
.team {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 20px;
}

.team-member {
	background: #29f7a8;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin: 15px;
	padding: 20px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 280px;
}

.team-member img {
	border-radius: 50%;
	width: 120px;
	height: 120px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.team-member h3 {
	font-size: 22px;
	color: #000000;
	margin: 15px 0 5px;
}

.team-member p {
	color: #999;
	font-size: 16px;
}

/* Hover Animations */
.team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.team-member:hover img {
	transform: scale(1.1);
}

/* Animations */
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-100%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.about-content {
		flex-direction: column;
		text-align: center;
	}

	.about-text {
		padding: 0;
	}

	.about-image {
		padding: 20px 0;
	}

	.team {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.about-us h1 {
		font-size: 28px;
	}

	.about-text p {
		font-size: 16px;
	}

	.team-member {
		width: 100%;
		max-width: 300px;
	}

	.team-member h3 {
		font-size: 20px;
	}

	.team-member p {
		font-size: 14px;
	}
}

/* ///// */

body,
html {
	background-color: #000000;
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}

/* Banner Styling */
.banner {
	position: relative;
	width: 100%;
	height: 60vh; /* Adjust the height as needed */
	background: url('images/banner1\ \(1\).jpg') no-repeat center center/cover; /* Background image */
	display: flex;
	align-items: center;
	justify-content: center;
	color: #e2dcdc;
	overflow: hidden;
	margin-top: 50px;
}

/* Black Transparent Overlay */
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* Black with transparency */
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Content Styling */
.content {
	text-align: center;
	z-index: 1;
}

.content h1 {
	font-size: 48px;
	margin: 0;
	/* animation: fadeIn 2s ease-in-out; */
	animation: zoomInOut 2s ease-in infinite;
}

.content p {
	font-size: 24px;
	margin-top: 10px;
	animation: fadeIn 2s ease-in-out infinite; /* Delayed animation */
}

/* Animations */
@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.content h1 {
		font-size: 30px;
	}

	.content p {
		font-size: 14px;
	}
}
/* ................ */

/* General Reset */
body,
html {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	background: #ffffff;
}

/* Services Section Styling */
.services {
	padding: 50px 20px;
	text-align: center;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.services h2 {
	font-size: 36px;
	color: #000000;
	margin-bottom: 40px;
}

/* Card Container */
.card-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

/* Card Styling */
.card {
	width: 320px; /* Increased width */
	height: 400px;
	perspective: 1000px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.card:hover {
	transform: scale(1.05);
	background-color: #000000; /* Light background color on hover */
}

.card-content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	position: relative;
	transition: transform 0.3s ease;
	border: 2px solid transparent;
	border-radius: 10px;
}

/* Animated Border Line */
.card-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 6px solid;
	border-color: transparent;
	border-radius: 10px;
	box-sizing: border-box;
	animation: border-animation 3s infinite linear;
}

/* Keyframes for Animated Border */
@keyframes border-animation {
	0% {
		border-color: #5cecb5;
	}
	25% {
		border-color: #570101;
	}
	50% {
		border-color: #120172;
	}
	75% {
		border-color: #caeb54;
	}
	100% {
		border-color: #ff0280;
	}
}

/* Card Image Styling */
.card-image {
	width: 120px; /* Increased size */
	height: 120px; /* Increased size */
	overflow: hidden;
	border-radius: 50%;
	/* margin-bottom: px; */
	margin-top: 10px;
	border: 4px solid #313030; /* Optional border for better visibility */
	background: #000000;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}

/* Card Info Styling */
.card-info {
	padding: 20px;
	text-align: center;
}

.card-info h3 {
	font-size: 24px;
	color: #003823;
	margin-bottom: 10px;
}

.card-info p {
	font-size: 16px;
	color: #0a0a0a;
	margin-bottom: 20px;
}

.card-info a {
	color: #004126;
	text-decoration: none;
	font-weight: bold;
	border: 2px solid #00532c;
	padding: 10px 20px;
	border-radius: 5px;
	transition: background 0.3s ease, color 0.3s ease;
}

.card-info a:hover {
	background: #ffcc00;
	color: #003366;
}

/* Responsive Design */
@media (max-width: 768px) {
	.card {
		width: 90%;
		max-width: 400px;
	}
}

@media (max-width: 480px) {
	.card {
		width: 100%;
		max-width: 320px;
	}
}
/* .... */
/* Banner2 Section Styling */
/* Banner2 Section Styling */
.banner2 {
	position: relative;
	overflow: hidden;
	background: rgb(0, 0, 0);
	color: #ffffff;
	padding: 80px 20px;
	text-align: center;
	height: 400px; /* Adjust height as needed */
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner2-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/Blue\ White\ Modern\ Online\ Business\ Webinar\ Banner\ Landscape\ \(1\).jpg')
		no-repeat center center;
	background-size: cover;
	filter: brightness(50%); /* Darken the image */
	z-index: 0; /* Overlay behind text */
}

.banner2-content {
	padding-top: 40px;
	position: relative;
	z-index: 1; /* Ensure text is on top of overlay */
	color: hsl(0, 0%, 100%);
	animation: zoomInOut 2s ease-in;
}

.banner2 h1 .banner2 p {
	margin: 0;
	padding: 0;
}

.banner2 h1 {
	font-size: 2.5em;
	font-weight: bold;
	margin-bottom: 10px;
	animation: zoomInOut 5s inherit;
	color: wheat;
}

.banner2 p {
	font-size: 1.2em;
	margin-top: 0;
	animation: zoomInOut 1s ease-in-out;
	color: wheat;
}

/* Keyframes for Text Animations */
@keyframes zoomInOut {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.8;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes fadeInOut {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.banner2 h1 {
		font-size: 2em;
	}

	.banner2 p {
		font-size: 1em;
		padding: 5px;
	}
}

@media (max-width: 480px) {
	.banner2 h1 {
		font-size: 1.5em;
	}

	.banner2 p {
		font-size: 1em;
	}
}
/* ////// */
/* Wedo  */
.wedo {
	padding: 40px 20px;
	background-color: #fdfdfd; /* Light background for contrast */
	text-align: center;
}

.wedo h1 {
	font-size: 2.5em;
	margin-bottom: 20px;
	color: rgb(0, 0, 0);
}

.wedo h2 {
	font-size: 1.8em;
	margin-bottom: 10px;
	color: rgb(0, 75, 46);
}

.wedo p {
	font-size: 1.2em;
	margin-bottom: 40px;
	color: #302e2e;
}

.wedo-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 20px;
}

.card2 {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgb(0, 0, 0);
	overflow: hidden;
	width: 100%;
	max-width: 250px;
	text-align: left;
	position: relative;
}

.card2-image {
	background-size: cover;
	background-position: center;
	height: 150px;
}

.card2-content {
	padding: 20px;
}

.card2-content h3 {
	font-size: 1.5em;
	margin: 0 0 10px;
	color: #1c1d1d;
}

.card2-content p {
	font-size: 1em;
	margin: 0 0 20px;
	color: #2c2828;
}

.card-button {
	display: inline-block;
	padding: 10px 20px;
	background: #002010;
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 1em;
}

.card-button:hover {
	background: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
	.wedo h1 {
		font-size: 2em;
	}

	.wedo h2 {
		font-size: 1.5em;
	}

	.wedo p {
		font-size: 1em;
	}

	.wedo-cards {
		flex-direction: column;
		align-items: center;
	}

	.card2 {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.wedo h1 {
		font-size: 1.5em;
	}

	.wedo h2 {
		font-size: 1.2em;
	}

	.wedo p {
		font-size: 0.9em;
	}

	.card-button {
		padding: 8px 16px;
		font-size: 0.9em;
	}
}

/* Wedo  */
/* FAQ Section Styling */
.faq {
	padding: 50px 20px;
	background: #ffffff;
	color: #000000;
	text-align: center;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq h2 {
	font-size: 36px;
	margin-bottom: 60px;
	color: #000000;
}

.faq-item {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgb(0, 0, 0);
	margin-bottom: 15px;
	overflow: hidden;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	cursor: pointer;
	background: rgb(255, 254, 252);
	color: #000000;
}

.faq-question h3 {
	margin: 0;
	font-size: 18px;
}

.faq-toggle {
	font-size: 24px;
	transition: transform 0.3s ease;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.5s ease, opacity 0.5s ease;
	padding: 0 15px;
	background: #000000;
}

.faq-answer p {
	margin: 0;
	padding: 15px 0;
	color: wheat;
}

/* Responsive Design */
@media (max-width: 768px) {
	.faq h2 {
		font-size: 28px;
	}

	.faq-question h3 {
		font-size: 16px;
	}

	.faq-toggle {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.faq h2 {
		font-size: 24px;
	}

	.faq-question h3 {
		font-size: 14px;
	}

	.faq-toggle {
		font-size: 18px;
	}
}
/* ............... */

/* Contact Section Styling */
.contact {
	padding: 60px 20px;
	background: #000000;
	color: #29f7a8;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact-container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.contact-text,
.contact-form-wrapper {
	flex: 1;
	padding: 20px;
	box-sizing: border-box;
}

.contact-text {
	background: #000000;
	color: #29f7a8;
	border-radius: 8px;
	box-shadow: 0 4px 8px whitesmoke;
	margin-right: 20px;
	animation: fadeInLeft 1s ease-in-out;
}

.contact-form-wrapper {
	background: #000000;
	border-radius: 8px;
	box-shadow: 0 4px 8px whitesmoke;
	animation: fadeInRight 1s ease-in-out;
}

.contact h2 {
	font-size: 36px;
	margin-bottom: 20px;
}

.contact-text p {
	font-size: 18px;
	line-height: 1.5;
}

.contact-form {
	padding: 20px;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	font-size: 16px;
	margin-bottom: 5px;
	color: #29f7a8;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #000000;
	border-radius: 4px;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: #29f7a8;
	outline: none;
}

.send-button {
	background: #6cf5c7;
	color: #000000;
	border: none;
	padding: 15px 20px;
	font-size: 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
	margin-top: 5px;
}

.send-button:hover {
	background: #ffffff;
	transform: scale(1.05);
}

.send-button:active {
	background: #f5f5f5;
}

/* Animations */
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-container {
		flex-direction: column;
	}

	.contact-text,
	.contact-form-wrapper {
		margin-right: 0;
		margin-bottom: 20px;
	}

	.contact h2 {
		font-size: 28px;
	}

	.contact-text p {
		font-size: 16px;
	}

	.send-button {
		font-size: 14px;
		padding: 10px 15px;
	}
}

@media (max-width: 480px) {
	.contact h2 {
		font-size: 24px;
	}

	.contact-text p {
		font-size: 14px;
	}

	.send-button {
		font-size: 12px;
		padding: 8px 12px;
	}
}
/* /////// */

/* Footer Styling */
/* .skills {
	background: #000000;
	color: #fff;
	padding: 40px 20px;
	position: relative;
	overflow: hidden;
}

.skills-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
}

.skills-section {
	flex: 1;
	min-width: 250px;
	margin-right: 20px;
	padding: 20px;
	border-radius: 8px;
	background: #000000;
	box-shadow: 0 4px 8px #29f7a8;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.skills-section:hover {
	transform: translateY(-10px);
	background: #29f7a8;
}

.skills-section h3 {
	font-size: 24px;
	margin-bottom: 20px;
	animation: fadeIn 1s ease-in-out;
}

.skills-section p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.skills-section ul {
	list-style: none;
	padding: 0;
}

.skills-section ul li {
	margin-bottom: 10px;
}

.skills-section ul li a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.skills-section ul li a:hover {
	color: #ffcc00;
}

.skills-link {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 15px;
	background: #ffcc00;
	color: #003366;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.3s ease, color 0.3s ease;
}

.skills-link:hover {
	background: #003366;
	color: #fff;
}

/* Animations */
/* @keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
} */

/* Responsive Design */
/* @media (max-width: 768px) {
	.skills-container {
		flex-direction: column;
		align-items: center;
	}

	.skills-section {
		margin-right: 0;
		margin-bottom: 20px;
		width: 100%;
		max-width: 500px;
	}

	.skills-section h3 {
		font-size: 20px;
	}

	.skills-section p,
	.skills-section ul li a {
		font-size: 14px;
	}

	.skills-link {
		font-size: 14px;
		padding: 8px 12px;
	}
}

@media (max-width: 480px) {
	.skills-section h3 {
		font-size: 18px;
	}

	.skills-section p,
	.skills-section ul li a {
		font-size: 12px;
	}

	.skills-link {
		font-size: 12px;
		padding: 6px 10px;
	} */
/* }....... */
/* .....  */
.skills2 {
	background: #ffffff; /* Light background for the skills section */
	color: #000000;
	padding: 40px 20px;
	position: relative;
	overflow: hidden;
}

.skills2-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
}

.skills2-item {
	flex: 1;
	min-width: 250px;
	margin-right: 20px;
	padding: 20px;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 4px 8px #003521;
	text-align: center;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.skills2-item:hover {
	transform: translateY(-10px);
	background: #b5cac0; /* Or any other color */
}

.skills2-icon {
	font-size: 40px;
	color: #006935;
	margin-bottom: 20px;
}

.skills2-heading {
	font-size: 24px;
	margin-bottom: 10px;
	color: #050505;
}

.skills2-paragraph {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
	color: #000000;
}

.skills2-progress {
	background: #030303;
	border-radius: 5px;
	overflow: hidden;
}

.skills2-progress-bar {
	background: #000000;
	color: #ffffff;
	padding: 5px;
	border-radius: 5px;
	text-align: center;
	font-size: 16px;
	width: 0; /* This will be set dynamically in HTML */
	transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
	.skills2-container {
		flex-direction: column;
		align-items: center;
	}

	.skills2-item {
		margin-right: 20px;
		margin-bottom: 20px;
		width: 100%;
		max-width: 500px;
	}

	.skills2-heading {
		font-size: 20px;
	}

	.skills2-paragraph {
		font-size: 14px;
	}

	.skills2-progress-bar {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.skills2-heading {
		font-size: 18px;
	}

	.skills2-paragraph {
		font-size: 12px;
	}

	.skills2-progress-bar {
		font-size: 12px;
		padding: 4px;
	}
}
/* ............... */

/* General Styling */
body,
html {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}

/* Footer Styling */
/* Footer Section Styling */
.footer {
	background: #000000;
	color: #fff;
	padding: 40px 20px;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.footer-section {
	flex: 1;
	min-width: 200px;
	margin-right: 20px;
	padding: 20px;
	border-radius: 8px;
	/* Box shadow will be applied only to the About Us section */
}

/* Specific box shadow for the About Us section in the footer */
.footer-section.about {
	box-shadow: 0 4px 8px #29f7a8;
}

.footer-section h3 {
	font-size: 24px;
	color: #29f7a8;
	margin-bottom: 15px;
	text-align: center; /* Center the heading text */
}

.footer-section p {
	font-size: 16px;
	line-height: 1.6;
	text-align: center; /* Center the paragraph text */
}

.footer-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center; /* Center the list items */
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section ul li a {
	color: #fff;
	transition: color 0.3s;
	display: inline-block; /* Make links block elements for better alignment */
}

.footer-section ul li a:hover {
	color: #29f7a8;
}

.footer-section a {
	color: #29f7a8;
	text-decoration: none;
}

.footer-section a:hover {
	text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
	text-align: center;
	border-top: 1px solid #4d4a4a;

	padding-top: 20px;
}

.footer-logo img {
	max-height: 100px;
	width: auto;
	margin-bottom: 10px;
	background-color: #e0e0e0;
}

.footer-bottom p {
	margin: 10px 0;
	font-size: 14px;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 10px;
}

.social-icon {
	color: #fff;
	font-size: 24px;
	transition: color 0.3s;
}

.social-icon:hover {
	color: #29f7a8;
}

/* Responsive Design */
@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
	}

	.footer-section {
		margin-right: 0;
		margin-bottom: 20px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.footer-section h3 {
		font-size: 20px;
	}

	.footer-section p,
	.footer-section ul li a {
		font-size: 14px;
	}

	.footer-bottom p {
		font-size: 12px;
	}

	.social-icons .social-icon {
		font-size: 20px;
	}
}

/* About Page ....  */
/* Base styles */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* About Page Banner */
.about-page-banner {
	background: url('images/Aboutbanner\ \(1\).jpg') no-repeat center
		center/cover;
	height: 300px; /* Adjust height as needed */
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 20px;
}

.about-page-banner-content {
	max-width: 600px;
	color: rgb(255, 255, 255);
}

.about-page-heading {
	font-size: 2.5em;
	margin: 0;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 2s forwards;
	color: #ffffff;
}

/* About Page Content */
.about-page-content {
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
	gap: 20px;
}

.about-page-column {
	flex: 1;
}

.about-page-image-column {
	flex: 1;
}

.about-page-image {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	opacity: 0;
	transform: translateX(-20px);
	animation: fadeInRight 1.5s forwards;
}

.about-page-text-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-page-text-column .about-page-heading {
	font-size: 2em;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 1.5s forwards;
	color: #002e1c;
}

.about-page-paragraph {
	font-size: 1.1em;
	line-height: 1.6;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 1.5s 0.5s forwards;
	color: #464747;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.about-page-content {
		flex-direction: column;
	}
}

/* .............. */

/* About Page Secure Section */
.about-page-secure {
	display: flex;
	align-items: center;
	justify-content: center;
	background: url('images/How-to-Choose-a-Home-Security-System_Featured-1.jpg')
		no-repeat center center/cover;
	padding: 40px 20px;
	position: relative;
	color: white;
	overflow: hidden;
}

.about-page-secure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* Dark overlay */
	z-index: 1;
}

.about-page-secure-content,
.about-page-secure-image {
	position: relative;
	z-index: 2;
}

.about-page-secure-content {
	flex: 1;
	max-width: 600px;
	padding: 20px;
}

.about-page-secure-heading {
	font-size: 1.5em;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 1.5s forwards;
}

.about-page-secure-subheading {
	font-size: 2.5em;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 2s forwards;
	color: #36eea4;
}

.about-page-secure-paragraph {
	font-size: 1.1em;
	line-height: 1.6;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 2.5s forwards;
}

/* Responsive Design */
.about-page-secure {
	flex-direction: column;
	text-align: center;
}

.about-page-secure-image {
	margin-top: 20px;
}

.about-page-secure-image img {
	max-width: 100%;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 1.5s 1s forwards;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	.about-page-secure {
		flex-direction: column;
	}
}

/* ............ */

/* About Page Choose Us Section */
.about-page-choose-us {
	display: flex;
	justify-content: space-between;
	padding: 40px 20px;
	background-color: #ffffff;
}

.about-page-choose-us-column {
	flex: 1;
	margin: 0 10px;
}

.about-page-choose-us-info {
	flex: 2;
}

.about-page-choose-us-heading {
	font-size: 2.5em;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 2s forwards;
	color: rgb(0, 0, 0);
}

.about-page-choose-us-subheading {
	font-size: 1.5em;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 2s 0.5s forwards;
	color: rgb(43, 42, 42);
}

.about-page-choose-us-paragraph {
	font-size: 1.1em;
	line-height: 1.6;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 2s 1s forwards;
	color: #00442a;
}

.about-page-choose-us-image {
	text-align: center;
}

.about-page-insurance-image {
	max-width: 100%;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 2s 1s forwards;
}

.about-page-insurance-paragraph {
	font-size: 1.1em;
	margin-top: 10px;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 2s 1.5s forwards;
	color: rgb(0, 0, 0);
}

.about-page-choose-us-bullets {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.about-page-bullets {
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-page-bullets li {
	font-size: 1.1em;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 2s 2s forwards;
	display: flex;
	align-items: center;
}

.about-page-bullets li i {
	margin-right: 10px;
	font-size: 1.2em;
	color: #00472c;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.about-page-choose-us {
		flex-direction: column;
		text-align: center;
	}

	.about-page-choose-us-column {
		margin-bottom: 20px;
	}
}

/* About Page Skills Section */
.about-page-skills {
	padding: 40px 20px;
	background-color: #ffffff;
}

.about-page-skills-content {
	text-align: center;
	margin-bottom: 40px;
	color: #003523;
}

.about-page-skills-subheading {
	font-size: 2em;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 2s forwards;
	color: #004229;
}

.about-page-skills-paragraph {
	font-size: 1.1em;
	line-height: 1.6;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 2s 0.5s forwards;
	color: rgb(0, 92, 64);
}

.about-page-skills-bars {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	color: #050505;
	box-shadow: 0 2px 8px #000000;
	padding: 20px;
}

.about-page-skill-bar {
	flex: 1;
	max-width: 30%;
	margin: 0 10px;
	text-align: center;
}

.about-page-skill-bar i {
	font-size: 3em;
	color: #0a0909;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 2s 1s forwards;
}

.about-page-skill-bar h4 {
	font-size: 1.5em;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 2s 1.5s forwards;
}

.bar-container {
	background: #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	height: 20px;
	margin-bottom: 10px;
}

.bar {
	background: #00502f;
	height: 100%;
	transition: width 1s ease;
}

.percentage {
	font-size: 1.2em;
	color: #005e32;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 2s 2s forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
	.about-page-skills-bars {
		flex-direction: column;
	}

	.about-page-skill-bar {
		max-width: 100%;
		margin-bottom: 20px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ................. */

/* Basic Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Styling for services-page banner */
.services-page-banner {
	background: url('images/Services-banner\ \(1\).jpg') no-repeat center
		center/cover;
	height: 300px; /* Adjust height as needed */
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.services-page-banner .banner-content {
	max-width: 1200px; /* Max width for larger screens */
	width: 100%; /* Full width for smaller screens */
	margin: 0 auto; /* Center horizontally */
}

.services-page-banner h1 {
	font-size: 2rem; /* Font size for heading */
	text-align: left; /* Align text to the left */
}

/* Responsive styles */

/* For tablets and larger screens */
@media (min-width: 600px) {
	.services-page-banner {
		height: 200px; /* Adjust height for larger screens */
	}

	.services-page-banner h1 {
		font-size: 2.5rem; /* Increase font size for larger screens */
	}
}

/* For laptops and larger screens */
@media (min-width: 992px) {
	.services-page-banner {
		height: 250px; /* Adjust height for even larger screens */
	}

	.services-page-banner h1 {
		font-size: 3rem; /* Further increase font size for larger screens */
	}
}

/* .................. */

/* Basic Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Styling for new two-columns section */
.new-section.two-columns {
	display: flex; /* Flexbox for layout */
	flex-wrap: wrap; /* Allow wrapping */
	padding: 2rem 1rem; /* Padding around the section */
	gap: 1rem; /* Space between columns */
}

.new-section.two-columns .column {
	flex: 1; /* Flex-grow for equal width */
	padding: 1rem; /* Padding inside columns */
}

.new-section.two-columns .column-left h3 {
	font-size: 2rem; /* Font size for h3 */
	margin-bottom: 0.5rem; /* Space below the h3 tag */
	color: rgb(5, 5, 5);
	animation: zoomInOut 5s inherit;
}

.new-section.two-columns .column-left h1 {
	font-size: 1.75rem; /* Font size for h1 */
	margin-bottom: 1rem; /* Space below the h1 tag */
	color: #00573a;
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 1.5s 0.5s forwards;
}

.new-section.two-columns .column-right p {
	font-size: 1rem; /* Font size for paragraph */
	line-height: 1.6; /* Line height for readability */
	color: rgb(22, 22, 22);
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 1.5s 0.5s forwards;
}

/* Responsive styles */

/* For tablets and larger screens */
@media (min-width: 600px) {
	.new-section.two-columns .column-left h1 {
		font-size: 2rem; /* Increase font size for h1 */
	}

	.new-section.two-columns .column-right p {
		font-size: 1.1rem; /* Increase font size for paragraph */
	}
}

/* For laptops and larger screens */
@media (min-width: 992px) {
	.new-section.two-columns .column-left h1 {
		font-size: 2.5rem; /* Further increase font size for h1 */
	}

	.new-section.two-columns .column-right p {
		font-size: 1.2rem; /* Further increase font size for paragraph */
	}
}

/* ........................ */

/* Basic Reset */
/* Basic Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Overview Section Styling */
.overview-section {
	display: flex; /* Flexbox for layout */
	flex-wrap: wrap; /* Allow wrapping */
	padding: 2rem 1rem; /* Padding around the section */
	gap: 1rem; /* Space between columns */
	background-color: #ffffff;
}

.overview-section .column {
	padding: 1rem; /* Padding inside columns */
}

.overview-section .column-left {
	flex: 1 1 40%; /* Less width for the left column */
}

.overview-section .column-right {
	flex: 1 1 60%; /* More width for the right column */
}

.overview-section .column-left h3 {
	font-size: 1.75rem; /* Font size for h3 */
	margin-bottom: 1rem; /* Space below the h3 tag */
	animation: fadeIn 2s ease-in-out; /* Fade-in animation */
	color: rgb(0, 0, 0);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.overview-section .services-boxes {
	display: flex; /* Flexbox for box layout */
	gap: 1rem; /* Space between boxes */
	flex-wrap: wrap; /* Allow wrapping */
}

.overview-section .services-box {
	flex: 1; /* Flex-grow for equal width */
	min-width: 250px; /* Minimum width for each box */
	/* Border around the box */
	border-radius: 8px; /* Rounded corners */
	padding: 1rem; /* Padding inside the box */
	background: #000000; /* Light background color */
	box-shadow: 0 4px 8px #92f1ce;
	transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

.overview-section .services-box:hover {
	transform: translateY(-10px); /* Move box up on hover */
	box-shadow: 0 4px 8px wheat; /* Add shadow on hover */
}

.overview-section .services-box ul {
	list-style: none; /* Remove bullet points */
	padding: 0;
}

.overview-section .services-box ul li {
	font-size: 1rem; /* Font size for list items */
	margin-bottom: 0.5rem; /* Space below each list item */
	display: flex; /* Flexbox for icon and text */
	align-items: center;
	animation: fadeIn 2s ease-in-out; /* Fade-in animation */
	animation-delay: 0.5s; /* Delay for staggered effect */
	color: wheat;
}

.overview-section .services-box ul li:nth-child(odd) {
	animation-delay: 1s; /* Staggered delay for odd items */
}

.overview-section .services-box ul li i {
	margin-right: 0.5rem; /* Space between icon and text */
	color: wheat;
}

.overview-section .column-right h2 {
	font-size: 2rem; /* Font size for h2 */
	margin-bottom: 1rem; /* Space below the h2 tag */
	animation: fadeIn 2s ease-in-out; /* Fade-in animation */
	color: rgb(0, 0, 0);
}

.overview-section .column-right p {
	font-size: 1rem; /* Font size for paragraph */
	line-height: 1.6; /* Line height for readability */
	margin-bottom: 1rem; /* Space below paragraph */
	animation: fadeIn 2s ease-in-out; /* Fade-in animation */
	animation-delay: 1s; /* Delay for staggered effect */
	color: rgb(46, 46, 46);
}

.overview-section .images {
	display: flex; /* Flexbox for image layout */
	gap: 1rem; /* Space between images */
	margin-bottom: 1rem; /* Space below images */
}

.overview-section .images img {
	width: 20%; /* Responsive image width */
	max-width: 20%; /* Max width for images */
	height: auto; /* Maintain aspect ratio */
	border-radius: 8px; /* Rounded corners */
	animation: fadeIn 2s ease-in-out; /* Fade-in animation */
	animation-delay: 1.5s; /* Delay for staggered effect */
	margin-left: 40px;
}

.overview-section .bullets {
	display: flex; /* Flexbox for bullet points layout */
	gap: 1rem; /* Space between bullet lists */
	margin-bottom: 1rem; /* Space below bullet points */
}

.overview-section .bullet-list {
	flex: 1; /* Flex-grow for equal width */
	color: rgb(0, 56, 42);
}

.overview-section .bullet-list div {
	font-size: 1rem; /* Font size for bullet points */
	margin-bottom: 0.5rem; /* Space below each bullet point */
	display: flex; /* Flexbox for icon and text */
	align-items: center;
	animation: fadeIn 2s ease-in-out; /* Fade-in animation */
	animation-delay: 1s; /* Delay for staggered effect */
}

.overview-section .bullet-list div i {
	margin-right: 0.5rem; /* Space between icon and text */
	color: rgb(0, 0, 0);
}

.overview-section .contact {
	text-align: center; /* Center align text */
	margin-top: 1rem; /* Space above contact section */
	background-color: #003827;
}

.overview-section .contact h3 {
	font-size: 1.5rem; /* Font size for h3 */
	margin-bottom: 1rem; /* Space below the h3 tag */
	animation: fadeIn 2s ease-in-out; /* Fade-in animation */
}

.overview-section .contact p {
	font-size: 1rem; /* Font size for paragraph */
	margin-bottom: 1rem; /* Space below paragraph */
	animation: fadeIn 2s ease-in-out; /* Fade-in animation */
	animation-delay: 1s; /* Delay for staggered effect */
	color: #ffffff;
}

.overview-section .contact .btn {
	display: inline-block; /* Inline-block button */
	padding: 0.75rem 1.5rem; /* Button padding */
	background-color: #ffffff; /* Button background color */
	color: #000000; /* Button text color */
	text-decoration: none; /* Remove underline */
	border-radius: 5px; /* Rounded corners */
	font-size: 1rem; /* Font size for button */
	transition: background-color 0.3s ease; /* Smooth transition for hover effect */
	margin-left: 20px;
}

.overview-section .contact .btn:hover {
	background-color: #6af7df; /* Darker background color on hover */
}

/* Responsive styles */

/* For tablets and larger screens */
@media (min-width: 600px) {
	.overview-section .column-left h3 {
		font-size: 2rem; /* Increase font size for h3 */
	}

	.overview-section .column-left .services-box ul li {
		font-size: 1.1rem; /* Increase font size for list items */
	}

	.overview-section .column-right h2 {
		font-size: 2.25rem; /* Increase font size for h2 */
	}

	.overview-section .column-right p {
		font-size: 1.1rem; /* Increase font size for paragraph */
	}
}

/* For laptops and larger screens */
@media (min-width: 992px) {
	.overview-section .column-left h3 {
		font-size: 2.25rem; /* Further increase font size for h3 */
	}

	.overview-section .column-left .services-box ul li {
		font-size: 1.2rem; /* Further increase font size for list items */
	}

	.overview-section .column-right h2 {
		font-size: 2.5rem; /* Further increase font size for h2 */
	}

	.overview-section .column-right p {
		font-size: 1.2rem; /* Further increase font size for paragraph */
	}
}

/* .............................................. */

/* Basic Reset */
/* Basic Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* FAQ Page Banner Section */
.faq-page-banner {
	display: flex; /* Flexbox for layout */
	align-items: center; /* Center content vertically */
	justify-content: center; /* Center content horizontally */
	height: 300px; /* Set height of the banner */
	background: url('images/contact-banner\ \(2\)\ \(1\).jpg') no-repeat center
		center; /* Background image */
	background-size: cover; /* Cover the whole banner */
	color: #fff; /* Text color */
	padding: 1rem; /* Padding around the content */
	position: relative; /* For potential positioning of additional elements */
	text-align: center; /* Center align text */
}

.faq-page-banner-content {
	animation: slideInLeft 1s ease-out; /* Slide-in animation */
}

.faq-page-banner h1 {
	font-size: 2rem; /* Font size for the heading */
	margin: 0; /* Remove default margin */
	font-weight: bold; /* Bold text */
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Text shadow for better readability */
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Responsive Styles */
@media (max-width: 768px) {
	.faq-page-banner {
		height: 120px; /* Adjust height for smaller screens */
	}

	.faq-page-banner h1 {
		font-size: 1.5rem; /* Adjust font size for smaller screens */
	}
}

@media (max-width: 480px) {
	.faq-page-banner {
		height: 100px; /* Further adjust height for very small screens */
	}

	.faq-page-banner h1 {
		font-size: 1.2rem; /* Further adjust font size for very small screens */
	}
}

/* ................... */
/* Basic reset */
body,
h1,
h2,
h3,
p,
form,
input,
textarea,
button {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
}

.contact-page-banner {
	background: url('images/contact-banner\ \(3\)\ \(1\).jpg') no-repeat center
		center/cover;
	height: 300px;
	position: relative;
	text-align: center;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-page-banner-text {
	font-size: 2.5em;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	animation: slideInLeft 1s ease-out;
}

.contact-page-info-form {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px;
	background: url('') no-repeat center center/cover; /* Add background image if needed */
}

.contact-page-info,
.contact-page-form {
	flex: 1 1 45%; /* Adjusted for better responsiveness */
	background-color: rgba(
		255,
		255,
		255,
		0.9
	); /* Semi-transparent background */
	border-radius: 8px;
	padding: 40px;
	box-shadow: 0 8px 10px rgba(0, 78, 48, 0.1);
}

.contact-page-info h1 {
	font-size: 1.8em; /* Increased font size for better visibility */
	margin-bottom: 20px;
	color: black;
	animation: slideInLeft 1s ease-out;
}

.contact-page-info p {
	margin-bottom: 20px;
	color: rgb(63, 62, 62);
	animation: slideInLeft 1s ease-out;
}

.contact-page-info-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.contact-page-info-item i {
	font-size: 1.5em;
	margin-right: 10px;
	color: #003326;
}

.contact-page-social-media {
	margin-top: 40px;
}

.contact-page-social-media h3 {
	margin-bottom: 10px;
	animation: slideInLeft 1s ease-out;
}

.contact-page-social-media a {
	font-size: 2em; /* Adjusted size for better visibility */
	color: #004720;
	margin-right: 10px;
	transition: color 0.3s;
}

.contact-page-social-media a:hover {
	color: #004879;
}

.contact-page-form h3 {
	font-size: 2.5em; /* Reduced for consistency */
	margin-bottom: 10px;
	color: #000000;
	animation: slideInLeft 1s ease-out;
}

.contact-page-form h1 {
	font-size: 1.5em; /* Reduced for consistency */
	margin-bottom: 15px;
	color: #004720;
	animation: slideInLeft 1s ease-out;
}

.contact-page-form p {
	margin-bottom: 20px;
	animation: slideInLeft 1s ease-out;
}

.form-field {
	margin-bottom: 20px;
}

.form-field label {
	display: block;
	font-size: 1em;
	color: rgb(0, 0, 0);
	margin-bottom: 5px;
}

.form-field input,
.form-field textarea,
.form-field .select {
	width: 100%;
	padding: 15px;
	border: 2px solid #000000;
	border-radius: 5px;
	background: rgba(250, 249, 249, 0.966); /* Transparent background */
	box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.1);
	font-size: 1em;
	font-family: Arial, sans-serif;
	margin-top: 5px; /* Space between label and input/textarea */
}

button {
	background-color: #007e43;
	color: #fff;
	border: none;
	padding: 12px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1em;
	transition: background-color 0.3s;
}

button:hover {
	background-color: #032f35;
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-page-info,
	.contact-page-form {
		flex: 1 1 100%; /* Full width on smaller screens */
	}
}

@media (max-width: 480px) {
	.contact-page-info h1,
	.contact-page-form h1 {
		font-size: 1.2em; /* Smaller font size for very small screens */
	}

	.contact-page-info-item i,
	.contact-page-social-media a {
		font-size: 1.5em; /* Adjusted size for icons */
	}
}
