body {
	font-family: "Outfit", sans-serif;
	font-weight: 300;
	background: #f7f8f9;
}

.navbar {
	transition: all 0.3s ease-in-out;
}

.dropdown-menu {
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.dropdown-menu.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.navbar-box {
	padding: 0;
	border-radius: 30px;
	-webkit-box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.1);
	box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.1);
	width: 95%;
	background: #ffffffc9;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
	transition: all 0.3s ease-in-out;
}

.navbar-fixed {
	position: fixed !important;
	top: 0 !important;
	width: 100% !important;
	left: 0 !important;
	border-radius: 0;
	background: linear-gradient(to right, #d4d6f9 10%, #1f2692 40%);
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	transform: unset;
}

.navbar-brand img {
	width: 120px;
}
.navbar-fixed .navbar-brand img {
	width: 100px;
}
a.nav-link {
	text-transform: uppercase;
	font-weight: 400;
	color: #211f5f;
}
.navbar-fixed a.nav-link {
	color: #ffffff;
}
.w3-content{
	position: relative;
}
.w3-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 80%; /* Adjust width as needed */
	height: 100%;
	background: linear-gradient(to right, rgba(0, 0, 139, 0.8), rgba(0, 0, 139, 0));
	pointer-events: none; /* Allows clicks to pass through */
	z-index: 1;
}
.swiper-img{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.swiper-img img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Ensure the image fills the container */
}

.swiper-img::before {
	content: "";
	position: absolute;
	bottom: 0; /* Start from the bottom */
	left: 0;
	width: 100%; /* Cover the full width */
	height: 100%; /* Cover full height */
	/* background: linear-gradient(to top, rgba(0, 0, 139, 0.8), rgba(0, 0, 139, 0));*/
	pointer-events: none; /* Allows clicks to pass through */
	z-index: 1;
}
/* Notice Section */
.scrolling-container {
	width: 100%; /* Full width */
	overflow: hidden; /* Hide overflow */
	white-space: nowrap; /* Prevent line breaks */
	position: relative; /* Position for absolute child */
	background: #e3edf3;
	padding: 10px;
	box-shadow: 0px 0px 6px 1px #3d7c61;
}


.scrolling-content {
	display: inline-block; /* Inline block for horizontal layout */
	animation: scroll 10s linear infinite; /* Animation for scrolling */
}
.scrolling-content a {
	font-size: 20px;
	text-align: center;
	text-decoration: none;
	color: #315137;
	font-weight: 400;
	margin-right: 50px;
}

span.material-symbols-outlined {
	font-size: 23px;
	font-weight: 200;
	vertical-align: sub;
	display: inline-block;
}
.scrolling-content:hover{
	animation-play-state: paused;
}

@keyframes scroll {
	0% {
		transform: translateX(10%); /* Start within the visible area */
	}
	100% {
		transform: translateX(-100%); /* End at left */
	}
}

section.land-project-details {
	background: white;
	padding: 25px 20px 40px 20px;
	font-size: 17px;
}
.project-header {
	font-size: 20px;
	padding-bottom: 20px;
	border-bottom: 1px #b8b8b8 solid;
	margin-bottom: 30px;
}
/* Project Card Styles */
.single-project-item {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	margin-bottom: 20px;
}
.company-history {
	text-align: center;
}
.company-history img{
	width: 300px;
	display: block;
	margin: 0 auto;
}
.company-history article {
	font-size: 20px;
}
a.dropdown-item {
	text-transform: uppercase;
	padding: 10px 15px;
}
.photos img {
	margin-bottom: 20px;
}
.lb-dataContainer {
	background: white;
}
.lb-caption {
	color: #4711a6;
	font-weight: 400 !important;
}
.mission-vision {
	padding: 60px 20px;
	background-color: #ffffff;
	font-family: 'Segoe UI', sans-serif;
}
.section-header h2 {
	font-size: 32px;
	margin-bottom: 10px;
	color: #2c3e50;
}

.section-header p {
	font-size: 16px;
	color: #666;
	margin-bottom: 40px;
}

.title {
	font-size: 24px;
	color: #34495e;
	margin-bottom: 20px;
}
.card-box {
	background: #7175c0;
	padding: 30px 25px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	margin-bottom: 30px;
	transition: transform 0.3s ease;
}

.card-box:hover {
	transform: translateY(-4px);
}

.card-box h2 {
	font-size: 23px;
	color: #e4effd;
	margin-bottom: 20px;
	font-weight: 900;
}

.card-box p {
	font-size: 16px;
	line-height: 1.7;
	color: #ffffff;
	margin-bottom: 15px;
}

.card-box ul {
	list-style: none;
	padding-left: 0;
	margin-top: 10px;
}

.card-box ul li {
	padding-left: 26px;
	position: relative;
	margin-bottom: 12px;
	color: #fff8ed;
}

.card-box ul li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	color: #a8ffcd;
	font-size: 16px;
}

@media (max-width: 767px) {
	.card-box {
		padding: 25px 20px;
	}

	.card-box h2 {
		font-size: 24px;
	}
}

.video_container{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 40px;
}
.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.video_container .video-title{
	display: flex;
	flex-direction: column;
	justify-content: stretch;
}

/* Blog Item */
.single-blog {
	padding: 30px;
	break-inside: avoid; /* Prevent breaking inside columns */
}
.single-blog a{
	text-decoration: none;
}
span.time {
	margin-left: 15px;
}
.single-blog img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 20px;
}
.read-more {
	color: #ff450a;
}
.blog-content {
	font-size: 16px;
}
.social-buttons img {
	width: 25px;
	margin-right: 20px;
}
.post-thumbnail img{
	width: 100%;
	border-radius: 20px;
}
.post-thumbnail{
	position: relative;
}
.post-thumbnail .overlay, .post-image .overlay{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 139, 0.8), rgba(0, 0, 139, 0));
	z-index: 1;
	opacity: 0.7;
	transition: opacity 0.3s ease-in-out;
	border-radius: 20px;
}
.post-image {
	position: relative;
}
.post-image img{
	width: 100%;
	border-radius: 20px;
}
h2.sub-title.sub-title-small {
	font-size: 20px;
	text-align: center;
}
.leaflet-marker-icon {
	width: 40px !important;
	height: 40px !important;
}
.address span {
	font-size: 20px;
	line-height: 50px;
}
.startCapital {
	font-weight: 900;
	font-size: 40px;
	padding: 3px;
	color: #211f5f;
}
.sticky-form {
	margin-top: 50px;
}
.sticky-form form{
	padding: 20px;
	background: white;
}
.sticky-form .form-group {
	margin-bottom: 5px;
}
label.error {
	color: #ef4444;
	font-size: 14px;
}
footer {
	background-color: #d4d6f9 !important;
}
.more-blog a {
	text-decoration: none;
	margin-bottom: 20px;
	display: block;
}
.published {
	margin-top: 20px;
	color: #333775;
}
.title h1 {
	font-size: 25px;
}


.single-project-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
.single-project-item .thumb {
	position: relative;
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.single-project-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease-in-out;
}

.single-project-item:hover img {
	transform: scale(1.05);
}

/* Gradient Overlay */
.single-project-item .overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 139, 0.8), rgba(0, 0, 139, 0));
	z-index: 1;
	opacity: 0.7;
	transition: opacity 0.3s ease-in-out;
}

.single-project-item:hover .overlay {
	opacity: 0.5;
}

/* Project Details */
.project-details {
	padding: 20px;
	text-align: center;
	background: #fff;
	position: relative;
	z-index: 2;
}

.project-details h5 {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 10px;
	color: #333;
}

.project-details p {
	font-size: 14px;
	color: #666;
}
.property-location{
	min-height: 60px;
}
.swiper-slide a{
	text-decoration: none;
}
.team-animation{
	margin-top: 50px;
	width: 70%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.slide-content {
	position: absolute;
	top: 32%;
	z-index: 12;
	left: 60px;
}
.slide-content h2 {
	font-weight: 900;
	color: white;
	font-size: 40px;
}
.slide-content p {
	color: #e8e1ff;
	font-size: 30px;
	letter-spacing: 3px;
	background: #17246e8a;
	padding: 0px 20px;
}
.slide-content span {
	color: #ffe0c9;
	font-weight: 400;
	line-height: 25px;
	font-size: 21px;
}
.common-head {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	position: relative;
	background: none; /* Remove the background from this */
	height: 300px;
	overflow: hidden;
}

.common-head::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/page-head.png) no-repeat center center;
	background-size: cover;
	filter: blur(2px);
	z-index: -2; /* Push the blurred image further back */
}

.common-head::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 139, 0.8), rgba(0, 0, 139, 0));
	z-index: -1; /* Keep gradient above the blurred image but behind the content */
}
.common-head .section-title {
	padding-top: 140px;
}
.common-head .section-title h1 {
	font-weight: 900;
	font-size: 30px;
	color: white;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.common-head .section-title a{
	text-decoration: none;
	color: white;
	font-size: 18px;
}
.common-head .section-title span {
	display: flex;
	align-items: center;
	justify-content: center; /* Center align horizontally (optional) */
	gap: 5px; /* Adjust spacing between items */
	color: white;
}

.page-header-icon {
	font-size: 18px; /* Adjust icon size if needed */
	vertical-align: middle;
}


.footer-copyright{
	background: #2e2b92;
}
.footer-container{
	padding-top: 50px;
	padding-bottom: 50px;
}
.social a {
	background: #33b17694;
	display: inline-block;
	border-radius: 50%;
	margin-right: 5px;
	padding: 5px;
}
.social img {
	width: 25px;
}
.navbar-fixed .navbar-nav .nav-link.active, .navbar-fixed .navbar-nav .show > .nav-link {
	color: #b9a7ef !important;
	font-weight: 700;
}

.navbar-nav .nav-link.active, .navbar-nav .show > .nav-link {
	color: #294541 !important;
	font-weight: 700;
}

.nav-link:focus, .nav-link:hover {
	color: #95a8e8 !important;
}

.swiper-container {
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	position: relative;
	padding: 0px 10px 40px 10px;
}
.swiper-pagination {
	bottom: 0 !important;
}

.swiper-slide {
	display: flex;
	justify-content: center;
}

.swiper-wrapper {
	transition-timing-function: ease-in-out !important;
}

.swiper-slide .card {
	border-radius: 0px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out;
}
img.card-img-top {
	border-radius: 0;
}


.swiper-slide .card:hover {
	cursor: pointer;
}

.swiper-button-prev,
.swiper-button-next {
	display: none;
}

section {
	margin-top: 50px;
	margin-bottom: 30px;
}

.heading {
	text-transform: uppercase;
	font-weight: 900;
	color: #3d22af;
	font-size: 25px;
}


.about-us {
	position: relative;
	min-height: 400px;
	background-color: #335fb15c;
	padding: 15px 0;
}

.team-section {
	background-color: #3d22af73;
	padding: 15px 0;
}

.about-us .about-content {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
}

.about-us .about-content .about-text {
	position: relative;
	height: 100%;
	width: 100%;
	padding: 100px 25px;
	z-index: 10;
}

.about-us .about-content .about-text .p {
	font-size: 45px;
	color: #ffffff;
	font-weight: 700;
	display: inline-block;
	width: 60px;
	height: 60px;
	background-color: #211f5f;
	border-radius: 50%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.about-us .about-primary {
	font-weight: 900;
	color: #ff6112;
	font-size: 40px;
}

/* Hero Section */
.hero {
	padding: 50px 0;
}



.advantage-box {
	text-align: center;
	padding: 20px;
	transition: transform 0.3s ease-in-out;
}

.advantage-box:hover {
	transform: translateY(-10px);
}
.advantages h5 {
	font-family: 'Poppins';
	width: 70%;
	margin: 0 auto;
	font-weight: 300;
	line-height: 30px;
}
.advantage-box p {
	font-size: 18px;
}

.why-choose-us {
	padding: 80px 0;
}
.choose-box {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	background: #fff;
}
.choose-box:hover {
	transform: translateY(-5px);
	box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}
.choose-box img {
	width: 80px;
	height: 80px;
}
.why-choose-us p {
	font-size: 18px;
	color: #6d6d6d;
}

.btn{
	border-radius: 0px;
}
.btn-primary {
	background: #3d22af !important;
	border: #3d22af;
}
.btn-primary:hover {
	background: #634ebb !important;
	border: #634ebb;
}



p.abt-content {
	font-size: 20px;
	font-weight: 200;
}
.about-us .about-content .ptrn-leaf {
	position: absolute;
	right: 5%;
	top: 20%;
	z-index: 1;
	width: 90px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.about-us .about-content .ptrn-leaf img {
	position: relative;
	width: 50%;
}

.about-us .img-container {
	height: 100%;
	width: 100%;
	background: url(images/ptrn-circle-shaow.png) no-repeat center;
	background-size: 80%;
	text-align: center;
	position: relative;
}

.about-us .img-container img {
	width: 90%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.team-section {
	text-align: center;
	padding: 50px 0;
}
.team-card {
	background: white;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	margin-top: 100px;
}
.team-card:hover {
	transform: translateY(-5px);
}
.team-card img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #7b74c8;
	margin-top: -100px;
}
.team-card h5 {
	margin-top: 15px;
	font-weight: bold;
	text-transform: uppercase;
}
.team-card span {
	font-size: 16px;
	color: #248d5c;
	text-transform: uppercase;
	margin-bottom: 10px;
	display: block;
}
.team-card p {
	font-size: 16px;
	color: #6c757d;
}
.social-icons a {
	color: #0d1b2a;
	margin: 0 10px;
	font-size: 18px;
	transition: 0.3s;
}
.social-icons a:hover {
	color: #1e90ff;
}
.join-area .inner-container .sing-in {
	padding: 35px;
	height: 100%;
	width: 50%;
}
.join-area .inner-container .sing-in .form-container {
	padding: 20px;
	background-color: #ffffffe3;
}
.join-area .inner-container .sing-in .form-container img {
	width: 120px;
	margin: 0 auto;
}
.join-area {
	margin-top: 150px;
}
.join-area .inner-container .sing-in .form-container .form-title {
	text-align: center;
	font-size: 25px;
	padding: 10px 0;
}
.join-area .inner-container .sing-in .form-container .form-title .hrLine {
	width: 20%;
	height: 4px;
	margin: 10px auto;
	background-color: #211f5f;
}
.form-group {
	display: block;
	margin-bottom: 15px;
}
.form-group label {
	margin-bottom: 5px;
}
.mbl-show{
	display: none;
}
.why-choose-us img {
	width: 100%;
}

@media (max-width: 768px) {
	body {
		font-size: 14px;
	}

	.navbar-brand img {
		width: 80px;
	}
	.navbar-box{
		top: 5px;
	}
	.navbar-toggler {
		background: #adb4c4;
	}
	img.mySlides{
		width: 150% !important;
	}
	.slide-content h2 {
		font-size: 20px;
	}
	.slide-content {
		top: 25%;
		left: 25px;
	}
	.slide-content p {
		font-size: 18px;
		padding: 0px 10px;
	}
	.slide-content span {
		line-height: 20px;
		font-size: 14px;
		width: 75%;
		display: inline-block;
	}
	.heading {
		font-size: 20px;
	}
	.about-us .img-container img {
		width: 60%;
		position: unset;
		top: unset;
		left: unset;
		-webkit-transform: unset;
		transform: unset;
		padding-top: 100px;
	}
	.team-animation {
		margin-top: 50px;
		width: 70%;
		position: unset;
		top: unset;
		left: unset;
		-webkit-transform: unset;
		transform: unset;
	}
	.navbar-collapse {
		background: #ffffff;
		padding-left: 15px;
	}
	.navbar-fixed .navbar-collapse {
		background: #1f2692;
		padding-left: 15px;
	}
	.common-head .section-title h1 {
		font-size: 20px;
	}
	.common-head {
		height: 240px;
	}
	.common-head .section-title {
		padding-top: 80px;
	}
	hr.bg-white {
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.land-project-details .btn {
		margin-bottom: 10px;
	}
	h2.sub-title {
		font-size: 20px;
	}
	.mbl-hide{
		display: none;
	}
	.mbl-show{
		display: block;
	}
	.w3-content {
		width: 100%;
		overflow: hidden;
	}
	.navbar-fixed .navbar-brand img {
		width: 80px;
	}
	.join-area {
		margin-top: 60px;
	}
	.join-area .inner-container .sing-in {
		padding: 25px;
		height: 100%;
		width: 100%;
	}
}
