:root {
	--primary: #2c3e50; /* Primary color */
	--secondary: #18bc9c; /* Secondary color */
	--text: #34495e; /* Text color */
	--bg: #ecf0f1; /* Background color */
	--btn-bg: #2c3e50; /* Button background */
	--btn-hover-bg: #18bc9c; /* Button hover background */
	--btn-text: #ffffff; /* Button text */
}

::-webkit-scrollbar {
	display: none;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Noto Sans', sans-serif;
	color: var(--text);
}

li {
	list-style: none;
	cursor: pointer;
}

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

a:hover {
	color: var(--primary);
}

h1 {
	color: var(--primary);
}

/***********
Preloader
************/

.preloader {
	background: #fff url(../assets/preloader.gif) no-repeat center center;
	background-size: 25%;
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 100;
}

.hamburger {
	display: none;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

.bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	transition: all 0.3s ease-in-out;
	background-color: var(--primary);
}

.section-title {
	padding: 10px 0;
}

.main-section {
	background: var(--bg);
}

.navbar.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 11111;
	background: var(--bg);
}

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

.logo {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 30%;
	margin-left: 1%;
}

.logo-text {
	width: 80%;
}

.logo-text h1 {
	font-size: 24px;
	color: var(--primary);
}

.logo-img {
	width: 20%;
}

.logo img {
	width: 100%;
	height: 100%;
	padding: 5%;
}

.nav {
	width: 50%;
	display: flex;
	justify-content: space-between;
	margin-right: 4%;
}

.nav-list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	list-style: none;
}

.nav-list li a {
	font-size: 20px;
	font-weight: 600;
	transition: 0.3s ease;
	color: var(--primary);
}

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

.nav-list .active a {
	color: var(--secondary);
}

.homepage {
	display: flex;
	justify-content: space-between;
	padding: 15px;
}

.carousel-section {
	width: 65%;
	height: 80%;
	margin: 15px 10px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.carousel-inner {
	border-radius: 10px;
}

.carousel {
	width: 100%;
}

.custom-carousel-control-prev,
.custom-carousel-control-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	z-index: 10;
}

.custom-carousel-control-prev {
	left: 10px;
}

.custom-carousel-control-next {
	right: 10px;
}

.custom-prev-icon,
.custom-next-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	text-align: center;
	line-height: 1.5em;
	font-weight: bold;
	background-color: transparent;
	color: var(--primary);
}

.custom-prev-icon:hover,
.custom-next-icon:hover {
	color: var(--secondary);
}

.homepage .about-us {
	width: 30%;
	margin-right: 40px;
	padding: 15px 0;
}

.homepage .about-us h1 {
	font-size: 26px;
	font-weight: 700;
}

.homepage .about-us h1 span {
	color: var(--secondary);
}

.homepage .about-us p {
	color: var(--text);
	margin: 20px 0;
}

.about-btn a {
	background-color: var(--btn-bg);
	color: var(--btn-text);
	padding: 10px 20px;
	border-radius: 4px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.about-btn a:hover {
	background-color: var(--btn-hover-bg);
	color: var(--btn-text);
}

.our-services {
	padding: 2% 5%;
	background: var(--bg);
}

.section-title {
	text-align: center;
	margin-bottom: 2%;
}

.services {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.service-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: calc(25% - 20px);
	margin: 10px;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img {
	height: 200px;
	overflow: hidden;
}

.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.service-card:hover .card-img img {
	transform: scale(1.1);
}

.card-desc {
	padding: 15px;
	flex-grow: 1;
}

.card-desc h4 {
	color: var(--primary);
	margin-bottom: 10px;
}

.card-desc p {
	color: var(--text);
	font-size: 14px;
	line-height: 1.5;
}

.card-btn {
	padding: 0 0 20px 0;
	text-align: center;
}

.card-btn a {
	background-color: var(--btn-bg);
	color: var(--btn-text);
	padding: 10px 20px;
	border-radius: 4px;
	transition: background-color 0.3s ease, color 0.3s ease;
	display: inline-block; /* Ensure proper padding and clickable area */
}

.card-btn a:hover {
	background-color: var(--btn-hover-bg);
	color: var(--btn-text);
}
.our-projects {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px 0;
	background: var(--bg);
}

.swiper-container-wrapper {
	width: 70%;
	position: relative;
	padding: 0 50px;
}

.swiper-container {
	width: 100%;
	overflow: hidden;
}

.swiper-wrapper {
	display: flex;
	align-items: center;
}

.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

.project-card {
	width: 100%;
	max-width: 400px;
	border-radius: 8px;
	margin: 15px 0;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-content {
	padding: 15px;
	text-align: center;
}

.project-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.project-description {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
}

.project-link {
	color: var(--secondary);
	text-decoration: none;
	font-size: 14px;
}

.project-link:hover {
	text-decoration: underline;
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--primary);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	z-index: 10;
	cursor: pointer;
	transition: background-color 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	color: var(--secondary);
}

.swiper-button-next {
	right: 0;
}

.swiper-button-prev {
	left: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 18px;
}

.swiper-pagination {
	position: relative;
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: transparent;
	border: 2px solid var(--secondary);
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: var(--secondary);
}

.about {
	background: var(--bg);
}

.info {
	padding: 30px 0;
}

.info h3 {
	font-size: 36px;
	color: var(--primary);
}

.info h3 {
	overflow: hidden;
	font-weight: 700;
	margin-bottom: 15px;
}

.desc,
.aboutUsImg {
	margin-top: 25px;
}

.info p {
	padding-bottom: 1px;
}

.info h3 span {
	color: var(--secondary);
}

.aboutUsImg {
	display: flex;
	width: 25%; /* Ensure the div takes full width */
	height: 400px; /* Adjust the height as per your design */
	overflow: hidden; /* Hide any overflow content */
	border-radius: 15px; /* Rounded corners */
}

.desc {
	width: 75%;
}

.aboutUsImg img {
	width: 100%; /* Make sure the image fills the entire div */
	height: 100%; /* Ensure the image height matches the div height */
	object-fit: cover; /* Cover the entire area, preserving aspect ratio */
	border-radius: 15px; /* Rounded corners */
}

.our-team {
	background: var(--bg);
	padding: 80px 0;
}

.team-item {
	width: calc(80% / 3);
	padding: 0 15px;
	position: relative;
	margin: 0 auto;
}

.team-item img {
	width: 100%;
	height: 400px;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.team-item:hover img {
	transform: skewY(2deg);
}

.team-item-info {
	background-color: var(--primary);
	border-radius: 8px;
	padding: 10px;
	text-align: center;
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 0;
	transform: translateY(50%);
	transition: all 0.3s ease;
	pointer-events: none;
}

.team-item:hover .team-item-info {
	transform: translateY(-15px);
	background-color: var(--secondary);
}

.team-item-info h3 {
	font-size: 18px;
	text-transform: capitalize;
	margin: 0 0 10px;
	background: transparent;
	color: #ffffff;
}

.team-item-info p {
	text-transform: capitalize;
	transition: all 0.3s ease;
	background: transparent;
	color: #ffffff;
}

.team-item:hover .team-item-info h3,
.team-item:hover .team-item-info p {
	color: var(--primary);
}

.contact-us {
	padding: 50px 0;
	background: var(--bg);
}

.form {
	display: flex;
	justify-content: center;
}

.mb-4 {
	width: 600px;
}

.btn {
	display: flex;
	margin: 0 auto;
	background: var(--primary);
	color: #ffffff;
}

.btn:hover {
	background: var(--secondary);
}

.footer {
	padding-top: 50px;
	background: var(--primary);
	color: #fff;
}

.contact-info {
	display: flex;
	justify-content: center;
}

.contact-details {
	margin-left: 100px;
	width: 35%;
}

.contact-details i {
	color: #ffffff;
}

.contact-details p {
	font-size: 20px;
	color: #ffffff;
}

.contact-details p a {
	color: #ffffff;
	font-size: 16px;
}

.contact-details p img {
	width: 45px;
}

/*********************
Footer Section
*********************/

.social-links {
	margin-top: 10px;
	text-align: center;
}

.social-links .fab {
	height: 40px;
	width: 40px;
	font-size: 20px;
	line-height: 40px;
	border-radius: 10px;
	border: 1px solid #ffffff;
	margin: 40px 5px 0;
	color: #ffffff;
	cursor: pointer;
	transition: 0.5s;
}

.social-links .fab:hover {
	background: #ffffff;
	color: var(--primary);
	transform: translateY(-7px);
}

.social-links p {
	color: #ffffff;
	font-size: 15px;
	margin-top: 20px;
	margin-bottom: 0;
	padding: 10px 0;
}

/********************
Media Query
********************/

@media screen and (max-width: 1440px) {
	.nav {
		width: 65%;
	}

	.homepage .about-us h1 {
		font-size: 18px;
	}

	.homepage .about-us p {
		font-size: 10px;
	}

	.about-btn a {
		padding: 6px 12px;
	}

	.card-img {
		height: 150px;
	}

	.card-desc h4 {
		font-size: 18px;
	}

	.card-desc p {
		font-size: 12px;
	}

	.info h3 {
		font-size: 32px;
	}

	.info p {
		font-size: 15px;
	}

	.contact-row {
		display: flex;
		justify-content: space-between;
	}

	.map {
		width: 250px;
	}

	.contact-details {
		width: 100%;
		text-align: center;
		margin-top: 20px;
		margin-left: 0;
	}
}

@media screen and (max-width: 1024px) {
	.nav {
		width: 60%;
	}

	.carousel-section {
		width: 100%;
		margin: 25px 0;
	}

	.homepage .about-us {
		width: 100%;
		margin-top: 20px;
	}

	.service-card {
		width: calc(33.33% - 20px);
	}

	.team-item {
		width: calc(33.33% - 20px);
	}

	.contact-details {
		width: 60%;
		margin-left: 20%;
	}

	.mb-4 {
		width: 80%;
	}
}

@media screen and (max-width: 768px) {
	.homepage {
		flex-direction: column;
	}

	.carousel-section {
		width: 100%;
		margin: 15px 0;
	}

	.homepage .about-us {
		width: 100%;
		margin-right: 0;
	}

	.service-card {
		width: calc(50% - 20px);
	}

	.team-item {
		width: calc(50% - 20px);
	}

	.contact-details {
		width: 80%;
		margin-left: 10%;
	}

	.mb-4 {
		width: 90%;
	}
}

@media screen and (max-width: 480px) {
	.logo {
		width: 65%;
	}

	.carousel-section {
		width: 100%;
	}

	.homepage .about-us {
		display: none;
	}

	.service-card {
		width: calc(50% - 20px);
	}

	.service-card .card-img,
	.card-image {
		height: 115px;
	}

	.card-desc h4 {
		font-size: 14px;
	}

	.card-desc p {
		font-size: 8px;
		margin-bottom: 0;
	}

	.swiper-container-wrapper {
		width: 100%;
	}

	.project-title {
		font-size: 16px;
	}

	.project-description {
		font-size: 10px;
	}

	.team-item {
		width: 300px;
		height: 275px;
		margin: 40px auto;
	}

	.team-item img {
		height: 275px;
	}

	.team-item-info h3 {
		font-size: 12px;
		margin: 0 0 4px;
	}

	.team-item p {
		font-size: 12px;
		margin-bottom: 0;
	}

	.contact-details {
		width: 100%;
		margin-left: 0;
	}

	.info h3 {
		font-size: 24px;
	}

	.info p {
		font-size: 12px;
	}
}

@media screen and (max-width: 320px) {
	.custom-carousel-control-prev {
		left: -10px;
	}

	.custom-carousel-control-next {
		right: -10px;
	}

	.navbar.sticky {
		width: 320px;
		overflow: hidden;
	}

	.navbar {
		padding: 3%;
	}

	.logo {
		width: 70%;
	}

	.logo-img {
		width: 30%;
	}

	.logo-text {
		margin-top: 8px;
	}

	.logo-text h1 {
		font-size: 15px;
	}

	.hamburger {
		margin: 0 15px;
	}

	.service-card {
		width: 100%;
	}

	.swiper-container-wrapper {
		width: 100%;
	}

	.desc {
		padding: 0 15px;
		width: 100%;
	}

	.aboutUsImg {
		display: none;
	}

	.team-item {
		width: 200px;
		height: 250px;
	}

	.team-item img {
		height: 250px;
	}

	.our-team {
		padding: 20px 0;
	}

	.map,
	.contact-details {
		width: 80% !important;
	}

	.contact-details {
		margin-top: 40px !important;
	}

	.social-links p {
		padding: 10px;
	}

	form {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.contact-row {
		justify-content: center;
	}
}

/* Navigation styles for smaller screens */
@media screen and (max-width: 768px) {
	.aboutUsImg {
		display: none;
	}

	.hamburger {
		display: block;
		margin-right: 25px;
	}

	.team-item {
		margin-bottom: 100px;
	}

	.our-team {
		padding: 0;
	}

	.nav {
		position: fixed;
		left: 100%;
		top: 70px;
		z-index: 11;
		gap: 0;
		flex-direction: column;
		background-color: var(--bg);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
	}

	.nav.active {
		left: 0;
	}

	.nav-list {
		flex-direction: column;
	}

	.nav-list li {
		margin: 16px 0;
	}

	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.contact-details {
		margin-top: 30px;
	}

	.contact-info {
		width: 80%;
		flex-direction: column;
		margin: 0 auto;
	}

	.map,
	.contact-details {
		width: 100%;
		margin-left: 0;
	}

	.map iframe {
		width: 100%;
		height: 250px;
	}
}

/* Larger screen styles */
@media screen and (min-width: 1441px) {
	.homepage .about-us p {
		font-size: 16px;
	}

	.card-desc h4 {
		font-size: 24px;
	}

	.info p {
		font-size: 16px;
	}

	.contact-details {
		width: 40%;
		margin-left: 85px;
	}
}

@media screen and (min-width: 1921px) {
	.homepage .about-us p {
		font-size: 18px;
	}

	.card-desc h4 {
		font-size: 26px;
	}

	.info p {
		font-size: 18px;
	}

	.contact-details {
		width: 30%;
		margin-left: 85px;
	}

	.container {
		max-width: 1800px;
		margin: 0 auto;
	}
}
