@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

:root {
	--theme_color1: #BA9976;
	/* --theme_color2: #fff8af; */
	--body_font: "Poppins", sans-serif;
	--heading_font: "Cormorant Garamond", serif;
	--h1: 40px;
}

body {
	font-family: var(--body_font);
	background: #efe8dd;
	line-height: 28px;
}



img {
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading_font)
}

.main_heading {
	font-size: var(--h1);
	font-weight: 500;
	color: var(--theme_color1);
	font-family: var(--heading_font);
	margin-bottom: 20px;
	text-transform: uppercase;
	color: #8b663e !important;
}

.section_padding {
	padding-block: 70px;
}

.container {
	position: relative;
}

.parallax_banner {
	overflow: hidden;
}

/* ------------------------------------------------------------------- */

/* -- Header section full code -- */

.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	color: #fff;
	transition: all 0.5s ease;
	height: 100px;
	background-image: linear-gradient(to bottom, rgb(31 25 20 / 20%), rgb(31 25 20 / 0%));
	backdrop-filter: blur(10px);
}

.header.active {
	transform: translateY(0);
	background: #000;
	box-shadow: 0 0 20px 0 rgb(0 0 0 / 25%);
}

.header.shifted {
	transform: translateY(-100%);
}

/* .header.active .menu_btn span {
    color: #000;
}

.header.active .menu_lines,
.header.active .menu_lines::before,
.header.active .menu_lines::after {
    background: #000000;
} */

/* LEFT MENU */
.header .menu_btn {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.header .menu_btn span {
	font-size: 16px;
	letter-spacing: 2px;
}

.header .menu_lines {
	width: 17px;
	height: 1px;
	background: #fff;
	position: relative;
}

.header .menu_lines::before,
.header .menu_lines::after {
	content: "";
	position: absolute;
	width: 25px;
	height: 1px;
	background: #fff;
	left: 0;
}

.header .menu_lines::before {
	top: -6px;
}

.header .menu_lines::after {
	top: 6px;
}

.header .head_contact {
	padding: 8px 17px;
	background: var(--theme_color1);
	color: #ffffff;
	font-size: 14px;
	letter-spacing: 0.4px;
	border-radius: 50px;
}

.header .head_contact i {
	margin-right: 2px;
}

/* CENTER LOGO */
.header .logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 28px;
	letter-spacing: 6px;
	top: 0;
}

.header .logo img {
	width: 166px;
	margin-top: 15px;
	border: 2px solid #fafafa;
	padding: 5px;
}

/* -- side menu code --*/

.hamburger_menu_fix_bg {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000000a1;
	z-index: 999;
	transition: all 0.8s cubic-bezier(0.35, 0.28, 0, 1.1);
	transform: translateX(-100%);
	opacity: 0;
}

.hamburger_menu_fix_bg.active {
	transform: translateX(0%);
	opacity: 1;
}

.mobile_menu {
	position: relative;
	height: 100%;
}

.hamburger_menu .menu_close {
	/* position: absolute; */
	right: 20px;
	top: 20px;
	width: 45px;
	height: 45px;
	background: #f1f1f1;
	text-align: center;
	color: #000;
	font-size: 20px;
	line-height: 45px;
	cursor: pointer;
	z-index: 99;
}

.hamburger_menu {
	position: fixed;
	z-index: 999;
	width: 28%;
	height: 100%;
	background: #FFF;
	padding: 23px 14px 0 20px;
	transition: all 0.8s cubic-bezier(0.35, 0.28, 0, 1.1);
	transform: translateX(-100%);
}

.hamburger_menu.active {
	transform: translateX(0);
}

.mobile-menu-section .menu_logo {
	width: 180px;
	/* position: absolute; */
	left: 20px;
	top: 20px;
	z-index: 999;
}

.mobile_menu .level1 {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile_menu .level1>li>a {
	font-size: 17px;
	font-weight: 500;
}

.mobile_menu .level1>li>a:hover,
.mobile_menu .level2>li>a:hover {
	color: var(--theme_color1);
}

.mobile_menu .level1>li {
	margin-bottom: 15px;
	transform: translateX(-50px);
	opacity: 0;
	transition: all 0.5s ease;
}

.mobile_menu .level1>li:nth-child(1) {
	transition-delay: 0.3s;
}

.mobile_menu .level1>li:nth-child(2) {
	transition-delay: 0.4s;
}

.mobile_menu .level1>li:nth-child(3) {
	transition-delay: 0.5s;
}

.mobile_menu .level1>li:nth-child(4) {
	transition-delay: 0.6s;
}

.mobile_menu .level1>li:nth-child(5) {
	transition-delay: 0.7s;
}

.mobile_menu .level1>li:nth-child(6) {
	transition-delay: 0.8s;
}

.mobile_menu .level1>li:nth-child(7) {
	transition-delay: 0.9s;
}

.mobile_menu .level1>li:nth-child(8) {
	transition-delay: 1s;
}

.mobile_menu .level1>li:nth-child(9) {
	transition-delay: 1.1s;
}

.mobile_menu .level1>li:nth-child(10) {
	transition-delay: 1.2s;
}

.mobile_menu .level1>li:nth-child(11) {
	transition-delay: 1.3s;
}

.hamburger_menu.active .mobile_menu .level1>li {
	opacity: 1;
	transform: translateX(0);
}


.mobile_menu ul.level2>li>a {
	font-size: 14px;
	color: #666;
}

.mobile_menu ul.level2 {
	display: flex;
	list-style: none;
	padding-left: 18px;
	gap: 0 24px;
	margin-top: 2px;
}

.mobile_menu ul.level2>li:after {
	content: '';
	height: 12px;
	width: 1px;
	background: #6e6e6e;
	position: absolute;
	right: -13px;
	top: 6px;
	transform: rotate(15deg);
}

.mobile_menu ul.level2>li {
	position: relative;
}

.mobile_menu ul.level2>li:last-child:after {
	display: none;
}

.mobile_menu .header_social {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 0 10px;
	bottom: 0;
}

.mobile_menu .header_social li a {
	width: 30px;
	height: 30px;
	background: var(--theme_color1);
	display: block;
	color: #FFF;
	text-align: center;
	line-height: 30px;
	border-radius: 50px;
	font-size: 12px;
}

.mobile_menu .header_social li {
	transform: translateY(50px);
	opacity: 0;
	transition: all 0.5s ease;
}

.mobile_menu .header_social li:nth-child(1) {
	transition-delay: 1.1s;
}

.mobile_menu .header_social li:nth-child(2) {
	transition-delay: 1.2s;
}

.mobile_menu .header_social li:nth-child(3) {
	transition-delay: 1.3s;
}

.mobile_menu .header_social li:nth-child(4) {
	transition-delay: 1.4s;
}

.mobile_menu .header_social li:nth-child(5) {
	transition-delay: 1.5s;
}

.mobile_menu .header_social li:nth-child(6) {
	transition-delay: 1.6s;
}

.hamburger_menu.active .header_social li {
	opacity: 1;
	transform: translateX(0);
}

/* -- Header section code End -- */



.fixed_enquire_now {
	position: fixed;
	right: -11px;
	top: 50%;
	z-index: 99;
	background: #003334;
	padding: 8px 21px;
	transform: rotate(-90deg) translateY(100%);
	font-weight: 500;
	border-radius: 5px 5px 0 0;
	cursor: pointer;
	color: #FFF;
}

/* hero - start */
.hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

/* VIDEO */
.hero video {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* DARK OVERLAY */
/* .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
} */

/* CENTER TEXT */
.hero_text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
}

.hero_text h1 {
	font-size: 40px;
	font-weight: 300;
	letter-spacing: 2px;
}

/* hero - end */


/* about - start */

/* SECTION */
.nw-about-section {
	background: #f4f5ff;
	padding-top: 0 !important;
}

/* LEFT IMAGE */
.nw-about-visual {
	position: relative;
	height: 100%;
	min-height: 420px;
	/* border-radius: 20px; */
	overflow: hidden;
}

.nw-about-visual img {
	width: 100%;
	/* height: 100%; */
	object-fit: cover;
	/* transition: transform 6s ease; */
	height: 720px;
}

.nw-about-visual:hover img {
	transform: scale(1.1);
}

.nw-about-content {
	margin-left: 80px;
}

/* FLOATING STATS */
.nw-stat-box {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: hsl(225, 79%, 28%);
	color: #fff;
	padding: 15px 20px;
	border-radius: 12px;
}

.nw-stat-box h4 {
	margin: 0;
}

/* RIGHT */
.nw-about-tag {
	color: var(--theme_color1);
	font-weight: 500;
	letter-spacing: 1px;
}

.nw-about-title {
	font-size: 2.6rem;
	color: var(--theme_color1);
}

/* ICON CARDS */
.nw-highlight-card {
	background: #fff;
	border-radius: 14px;
	padding: 18px;
	transition: 0.3s;
	height: 100%;
	border: 1px solid #eee;
	display: flex;
	gap: 12px;
}

.nw-highlight-card i {
	font-size: 26px;
	color: var(--theme_color1);
}

.nw-highlight-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.nw-about-text {
	font-size: 14px;
	color: #555;
}

/* CTA */
.nw-about-btn {
	background: var(--theme_color1);
	color: #fff;
	padding: 12px 26px;
	border-radius: 50px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: 0.3s;
}

.nw-about-btn:hover {
	background: #2d2d75;
}

/* RESPONSIVE */
@media(max-width: 991px) {
	.nw-about-title {
		font-size: 2rem;
	}
}

/* about - end */

/* company status - start */

.nw-status-section {
	background-color: #f4f5ff;
	padding: 70px 0;
}

.nx-stat-card {
	border-radius: 15px;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

/* .nx-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--theme_color1), #FFF8AF);
    transform: scaleX(0);
    transition: transform 0.4s ease;
} */

/* .nx-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 43, 127, 0.15);
}

.nx-stat-card:hover::after {
    transform: scaleX(1);
} */

.nx-icon-box {
	width: 70px;
	height: 70px;
	background: rgba(15, 43, 127, 0.05);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 28px;
	color: var(--theme_color1);
	transition: 0.3s;
}

.nx-stat-card:hover .nx-icon-box {
	background: var(--theme_color1);
	color: #fff;
	transform: rotateY(360deg);
}

.nw-status-section h3 {
	font-weight: 800;
	font-size: 50px;
	color: var(--theme_color1);
	margin-bottom: 25px;
	line-height: 1;
}




.nx-counter-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
	color: #666;
	text-align: center;
}

@media (max-width: 768px) {
	.nx-counter-num {
		font-size: 2rem;
	}

	.nw-status-section {
		padding: 50px 0;
	}
}

/* company status - end */


/* projects - start */

.nw-section-title {
	color: var(--theme_color1);
	font-weight: 800;
	letter-spacing: 1px;
	position: relative;
	display: inline-block;
	margin-bottom: 40px;
}

/* Custom Tabs */
.nw-nav-pills .nav-link {
	color: var(--theme_color1);
	border: 1px solid var(--theme_color1);
	border-radius: 50px;
	padding: 7px 27px;
	font-weight: 400;
	transition: all 0.3s ease;
	margin: 0 10px;
	font-size: 15px;
}

.nw-nav-pills .nav-link.active {
	background-color: var(--theme_color1);
	color: #fff;
	box-shadow: 0 4px 15px rgba(15, 43, 127, 0.3);
}

/* Project Cards */
.nw-card {
	border: none;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	height: 500px;
	transition: transform 0.4s ease;
}

.nw-card:hover {
	transform: translateY(-10px);
}

.nw-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.nw-card:hover .nw-card-img {
	transform: scale(1.1);
}

.nw-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(15, 43, 127, 0.95));
	padding: 30px 20px;
	color: #fff;
	backdrop-filter: blur(2px);
}

.nw-badge {
	background-color: #159246;
	color: white;
	padding: 5px 15px;
	border-radius: 4px;
	font-size: 0.8rem;
	text-transform: uppercase;
	margin-bottom: 10px;
	display: inline-block;
}

.nw-cta-link {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 15px;
}

.nw-cta-link i {
	transition: transform 0.3s ease;
}

.nw-cta-link:hover i {
	transform: translateX(5px);
}

/* projects - end */


/* events - start */

.events-section {

	background: #f4f5ff;

}

/* events - end */


/* disclaimer popup - start */

.nw-disclaimer-backdrop {
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(8px);
	padding: 20px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	display: none;
}

.nw_disclaimer_backdrop_inside {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.nw-glass-card {
	background: rgba(255, 255, 255, 0.98);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	max-width: 750px;
	width: 100%;
	overflow: hidden;
	animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.95);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.nw-card-header {
	background: var(--theme_color1);
	padding: 15px 32px 20px 33px;
	color: white;
	text-align: center;
	position: relative;
}

.nw-card-header h2 {
	font-size: 19px;
}

.nw-brand-icon {
	font-size: 28px;
	margin-bottom: 0.5rem;
	display: block;
}

.nw-card-header p {
	font-size: 13px;
}

.nw-scroll-area ul {
	padding: 0;
	list-style: none;
}

.nw-scroll-area ul li {
	margin-bottom: 5px;
}

.nw-scroll-area {
	max-height: 400px;
	overflow-y: auto;
	padding: 30px;
	background: #fff;
	color: #444;
	line-height: 1.8;
	font-size: 0.92rem;
	scrollbar-width: thin;
	scrollbar-color: var(--theme_color1) #eee;
}

.nw-scroll-area p,
.nw-scroll-area ul li {
	font-size: 13px;
	line-height: 20px;
}

.nw-scroll-area::-webkit-scrollbar {
	width: 6px;
}

.nw-scroll-area::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.nw-scroll-area::-webkit-scrollbar-thumb {
	background: var(--theme_color1);
	border-radius: 10px;
}

.nw-card-footer {
	padding: 12px;
	background: #f8fafc;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: center;
}

.btn-nw-agree {
	background: var(--theme_color1);
	color: white;
	padding: 7px 35px;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: none;
	box-shadow: 0 15px 30px rgba(111, 78, 55, 0.3);
	font-size: 13px;
}

.btn-nw-agree:active {

	background: var(--theme_color1) !important;
	color: #fff !important;

}

.btn-nw-agree:focus {

	background: var(--theme_color1);

}


.btn-nw-agree:hover {
	background: var(--theme_color1);
	transform: translateY(-2px);
	box-shadow: 0 15px 30px rgba(111, 78, 55, 0.3);
	color: #fff;
}

.nw-alert-box {
	background: rgba(15, 43, 127, 0.05);
	border-left: 4px solid var(--theme_color1);
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 0 8px 8px 0;
	font-size: 13px;
}

/* Fade out animation */
.nw-fade-out {
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}


/* home - end */




/* --- about us section --- */

.abt_section h2 {
	margin: 0 0 50px;
	max-width: 66%;
	/* background: url(../images/double-border-line.jpg) repeat-x left bottom; */
	font-size: 30px;
	color: #4a4a4a;
	line-height: 47px;
	font-weight: 400;
}

.abt_section .main_heading {
	margin-bottom: 25px;
}

.abt_section .content {
	width: 50%;
	float: left;
	margin: 0 0 65px;
	text-align: left;
	color: #222222;
	line-height: 28px;
}

.abt_section .knowmore {
	width: 43%;
	float: right;
	text-align: left;
	font-size: 14px;
	color: #222222;
	line-height: 22px;
}

.abt_section .knowmore a span {
	color: var(--theme_color1);
	font-weight: 600;
}

.abt_section .knowmore a {
	color: #222222;
}

.abt_section .knowmore a span::before {
	content: "";
	width: 45px;
	height: 45px;
	float: left;
	margin-right: 20px;
	background: #ffffff url(../images/knowmore-icon.png) no-repeat left top;
	border: 1px solid #ececec;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.abt_section .knowmore a:hover span::before {
	background: var(--theme_color1) url(../images/knowmore-icon.png) no-repeat left bottom;
	border: 1px solid var(--theme_color1);
}

.abt_section ul.counterList {
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 100%;
	display: flex;
	text-align: left;
}

.abt_section ul.counterList li {
	width: auto;
	display: inline-block;
	vertical-align: middle;
	margin-right: 40px;
	text-align: center;
	font-size: 14px;
	color: #222222;
	line-height: 20px;
}

.abt_section ul.counterList li span {
	width: auto;
	display: inline-block;
	margin: 0 0 12px;
	text-align: center;
	font-size: 48px;
	color: var(--theme_color1);
	line-height: 48px;
	font-weight: 600;
}

.abt_section ul.counterList li span.long {
	min-width: 125px;
}

.abt_section ul.counterList li {
	width: auto;
	display: inline-block;
	vertical-align: middle;
	margin-right: 40px;
	text-align: center;
	font-size: 14px;
	color: #222222;
	line-height: 20px;
}

.abt_section {
	padding: 90px 0 120px;
	position: relative;
	overflow: hidden;
}

.abt_section .abt_bg {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	height: 100%;
}

.abt_section .abt_bg img {
	height: 100%;
	width: auto;
	opacity: 0.2;
}




/* -- project section -- */

.project_card {
	position: relative;
}

.project_card .pro_overlay {
	position: absolute;
	bottom: 30px;
	left: 30px;
	background: #ffffffcf;
	width: calc(100% - 60px);
	text-align: center;
	padding: 20px;
	backdrop-filter: blur(2px);
}

.project_card .pro_overlay h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--theme_color1);
}

.project_card .pro_overlay p {
	font-size: 15px;
	line-height: 22px;
}

.project_card .pro_overlay span.link {
	font-size: 14px;
	font-weight: 500;
}


.video-foreground {
	overflow: hidden;
	aspect-ratio: 16 / 9;
	padding-bottom: 56.25%;
	position: relative;
	height: 0;
	max-width: 100%;
}

.video-foreground iframe {
	object-fit: cover;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}




/* ---- Testimonial Section  ------ */

.theme_btn {
	background: var(--theme_color1);
	color: #fff;
	padding: 12px 26px;
	border-radius: 50px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: 0.3s;
}

.theme_btn.small {
	padding: 8px 20px;
	font-size: 15px;
}

.title_sect {
	margin-bottom: 40px;
	align-items: flex-end;
}

.title_sect :last-child {
	margin-bottom: 0;
}

.text-right {
	text-align: right !important;
}

.testimonial_section {
	padding: 70px 0;
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.testimonial_section .container {
	position: relative;
	z-index: 2;
}

.bg {
	background-image: url('../images/bg.jpg');
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
}

.testimonial_section:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: #0e0e0ed6;
	height: 100%;
	z-index: 1;
}

.testimonial_section .title_sect {
	margin-bottom: 90px;
}

.testimonial_section .main_heading {
	color: #FFF;
}

.testimonail_card {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.testimonail_card:before {
	content: '';
	background: linear-gradient(transparent 0px, rgb(0, 0, 0, 0.8) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.testimonial_section h4 {
	line-height: 30px;
	font-size: 20px;
	font-weight: 300;
	margin: 10px 20px 0 0;
	color: #FFF;
	font-family: var(--body_font);
}

.testimonail_card .content {
	position: absolute;
	bottom: 20px;
	left: 20px;
	width: auto;
	display: flex;
	align-items: center;
	gap: 0 18px;
}

.testimonail_card .content p {
	width: auto;
	margin: 0;
	color: #FFF;
	font-size: 16px;
}

.testimonail_card .content p span {
	display: block;
	font-size: 11px;
	letter-spacing: 1px;
}

.testimonail_card img {
	border-radius: 15px;
	height: 280px;
	object-fit: cover;
}

.pulsating-play-btn {
	width: 50px;
	height: 50px;
	display: block;
	position: relative;
	background: radial-gradient(#BA9976 50%, color-mix(in srgb, rgb(255 255 255) 25%, transparent) 52%);
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
}

.pulsating-play-btn::before {
	content: "";
	position: absolute;
	width: 110%;
	height: 110%;
	opacity: 1;
	top: -5%;
	left: -5%;
	animation: 2s ease 0s infinite normal none running pulsate-play-btn;
	border-radius: 50%;
	border-width: 5px;
	border-style: solid;
	border-color: color-mix(in srgb, rgb(255 255 255) 70%, transparent);
	border-image: initial;
	background: rgb(255 255 255 / 0%);
}

.pulsating-play-btn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0px;
	height: 0px;
	z-index: 100;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 10px solid rgb(255 255 255);
	transition: 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 10px solid #FFF;
	z-index: 200;
	animation: none;
	border-radius: 0;
}

.pulsating-play-btn:hover:after {
	border-left: 15px solid var(--theme_color1);
	transform: scale(20);
}

@keyframes pulsate-play-btn {
	0% {
		transform: scale(.6, .6);
		opacity: 1
	}

	100% {
		transform: scale(1, 1);
		opacity: 0
	}
}

/* --- Blogs section -- */
/* .blogs_section {
    padding-top: 0;
} */

.filter_wrap {
	display: flex;
	justify-content: right;
	gap: 0 20px;
}

.filter_wrap select {
	width: 160px;
	background-color: transparent;
	background-image: url('../images/icons/down.png');
	padding: 0 15px 0 20px;
	height: 45px;
	border-radius: 50px;
	outline: none;
	appearance: none;
	background-size: 22px;
	background-repeat: no-repeat;
	background-position: right 11px center;
	cursor: pointer;
}

.blogs_section .title_sect {
	margin-bottom: 50px;
}

.blogs_section .main_heading {
	margin-bottom: 20px;
}

.blog_content {
	margin-right: 50px;
}

.blog_content .theme_btn {
	margin-top: 20px;
}

.blog_content h2 {
	margin-top: 20px;
}

.blog_card {
	padding: 30px;
	border-radius: 8px;
	transition: all 0.5s ease;
	border: 1px solid #CCC;
}


.blog_slider .owl-item .blog_card {
	opacity: 0.4;
	margin: 18px 0;
}

.blog_slider .owl-item.active .blog_card {
	opacity: 1;
}

.blog_slider .owl-item.active.center .blog_card {
	/* box-shadow: 0 0 15px 0 #00000059;  */
	background: var(--theme_color1);
}

.blog_slider .owl-item.active.center .blog_card .date {
	background: #FFF;
	color: var(--theme_color1);
	padding: 7px 18px;
}

.blog_slider .owl-item.active.center .blog_card h4 {
	color: #FFF;
}

.blog_slider .owl-item.active.center .blog_card .content .readmore {
	color: #FFF;
}

.blog_card .image img {
	display: block;
	border-radius: 10px;
	height: 280px;
	object-fit: cover;
	width: 100%;
}

/* .blog_card .image img {
    display: block;
    border-radius: 10px;
} */

.blog_card .image {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 20px;
	position: relative;
}

.rera-btn {
	background: var(--theme_color1);
	display: inline-block;
	border-radius: 20px;
	font-size: 15px;
	font-weight: 500;
	padding: 3px 13px;
	letter-spacing: 1px;
	position: relative;
	left: 0;
	margin-top: 30px;
	color: #FFF;
	transition: all 0.2s ease;
}

.blog_card .content h4 {
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 10px;
	font-family: var(--body_font);
	line-height: 1.3;
}

.blog_card .content .readmore {
	font-weight: 500;
	color: #000;
	font-size: 14px;
}

.blog_card .content .readmore i {
	transition: all 0.5s ease;
	margin-left: 2px;
}

.blog_card:hover .content .readmore i {
	margin-left: 5px;
	color: var(--theme_color1);
}

.blog_slider .owl-nav button.owl-prev,
.blog_slider .owl-nav button.owl-next {
	width: 20%;
	color: #FFF;
	position: absolute;
	top: 0;
	border-radius: 50%;
	height: 100%;
}

.blog_slider .owl-nav button.owl-prev i,
.blog_slider .owl-nav button.owl-next i {
	width: 45px;
	height: 45px;
	background: var(--theme_color1);
	color: #FFF;
	position: absolute;
	top: 43%;
	border-radius: 50%;
	line-height: 45px;
}

.blog_slider .owl-nav button.owl-prev {
	left: 0;
}

.blog_slider .owl-nav button.owl-next {
	right: 0;
}

.blogs_section .container-fluid {
	padding: 0;
}



ul.blog_pagination {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: center;
	margin-top: 30px;
	margin-bottom: 0;
	gap: 15px;
}

ul.blog_pagination li a {
	display: block;
	width: 32px;
	border: 1px solid #CCC;
	text-align: center;
	font-size: 15px;
	padding: 4px 0;
	transition: all 0.5s ease;
	border-radius: 4px;
}

ul.blog_pagination li:first-child a,
ul.blog_pagination li:last-child a {
	width: auto;
	padding: 4px 20px;
	border-radius: 4px;
	letter-spacing: 2px;
}

ul.blog_pagination li a:hover,
ul.blog_pagination li a.active {
	background: var(--theme_color1);
	border-color: var(--theme_color1);
	color: #FFF;
}

/* --- events section --- */

.event_card {
	border-radius: 5px;
	overflow: hidden;
	transition: all 0.5s ease;
	box-shadow: 0 0 0 0 rgb(0 0 0 / 33%);
	position: relative;
}

.event_card:hover {
	box-shadow: 5px 8px 15px 0 rgb(0 0 0 / 20%);
}

.event_card h4 {
	font-size: 20px;
	font-weight: 400;
	color: #FFF;
	line-height: 23px;
	margin-bottom: 22px;
}

.event_card .content {
	padding: 40px;
	position: absolute;
	width: 100%;
	bottom: 0;
	height: 100%;
	background: linear-gradient(transparent 0px, rgb(0, 0, 0) 100%);
	display: flex;
	flex-direction: column;
	justify-content: end;
	transition: all 0.5s ease;
}

.event_card:hover .content {
	padding-bottom: 40px;
}

.event_card .content .event_knowmore {
	font-size: 14px;
	color: #FFF;
	letter-spacing: 0.25px;
}

.event_card .image {
	position: relative;
	overflow: hidden;
}

.event_card .event_date {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--theme_color1);
	text-align: center;
	padding: 5px 18px;
	font-weight: 500;
	font-size: 13px;
	z-index: 9;
	border-radius: 50px;
}


/* -- awards -- */

.awards_section {
	position: relative;
	display: flex;
	align-items: center;
	z-index: 2;
}

.awards_section .container {
	position: relative;
}

.awards_section .title_sect {
	text-align: center;
	margin-bottom: 40px;
}

.awards_section .awards_card {
	text-align: center;
	position: relative;
	padding-inline: 0;
	min-height: 140px;
	margin-inline: 0;
}

.awards_section .awards_card_row {
	gap: 30px 0;
}

.awards_section .awards_card h4 {
	color: var(--theme_color1);
	font-size: 40px;
	line-height: 1.2;
	letter-spacing: 1.5px;
	text-align: center;
	font-weight: 700;
	margin-bottom: 10px;
}

.awards_section .awards_card p {
	margin: 0;
	font-size: 15px;
}




/* -- parallax -- */
.parallax {
	position: relative;
	overflow: hidden;
}

.parallax img {
	width: 100%;
}

.parallax img {
	background-size: cover !important;
	object-fit: cover;
	object-position: center;
}


/* -- other page design start -- */


/* -- Breadcrumb section -- */
.breadcrumb_section {
	position: relative;
}

.breadcrumb_section .overlay {
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

.breadcrumb_section .overlay h1 {
	color: #FFF;
	font-size: 56px;
}

.breadcrumb_section .mn_c_ln {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

.breadcrumb_section .mn_c_ln::after,
.breadcrumb_section .mn_c_ln::before {
	content: '';
	width: 1px;
	height: 100px;
	background: rgba(255, 255, 255, .2);
	left: 50%;
	margin-left: 1px;
	bottom: 0;
	position: absolute;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.breadcrumb_section .mn_c_ln::after {
	will-change: transform;
	width: 1px;
	background: #fff;
	-webkit-animation-name: b;
	animation-name: b;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: cubic-bezier(.77, 0, .175, 1);
	animation-timing-function: cubic-bezier(.77, 0, .175, 1);
}

@keyframes b {
	0% {
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
		-webkit-transform: scaleY(1);
		transform: scaleY(1)
	}

	50% {
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
		-webkit-transform: scaleY(0);
		transform: scaleY(0)
	}

	50.0001% {
		-webkit-transform-origin: 50% 0;
		transform-origin: 50% 0;
		-webkit-transform: scaleY(0);
		transform: scaleY(0)
	}

	to {
		-webkit-transform-origin: 50% 0;
		transform-origin: 50% 0;
		-webkit-transform: scaleY(1);
		transform: scaleY(1)
	}
}


.breadcrumb_section .smooth_scroll {
	width: 45px;
	display: flex;
	height: 45px;
	position: absolute;
	bottom: 90px;
	left: 50%;
	transform: translateX(-50%);
	justify-content: center;
}

.chevron_wrap {
	width: 24px;
	height: 24px;
	position: relative;
}

.chevron_wrap .chevron {
	position: absolute;
	width: 28px;
	height: 2px;
	opacity: 0;
	transform: scale3d(0.5, 0.5, 0.5);
	animation: move 3s ease-out infinite;
}

.chevron_wrap .chevron:first-child {
	animation: move 3s ease-out 1s infinite;
}

.chevron_wrap .chevron:nth-child(2) {
	animation: move 3s ease-out 2s infinite;
}

.chevron_wrap .chevron:before,
.chevron_wrap .chevron:after {
	content: ' ';
	position: absolute;
	top: 0;
	height: 100%;
	width: 51%;
	background: #fff;
}

.chevron_wrap .chevron:before {
	left: 0;
	transform: skew(0deg, 30deg);
}

.chevron_wrap .chevron:after {
	right: 0;
	width: 50%;
	transform: skew(0deg, -30deg);
}

@keyframes move {
	25% {
		opacity: 1;

	}

	33% {
		opacity: 1;
		transform: translateY(30px);
	}

	67% {
		opacity: 1;
		transform: translateY(40px);
	}

	100% {
		opacity: 0;
		transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
	}
}

@keyframes pulse {
	to {
		opacity: 1;
	}
}



.small_breadcrumb_section {
	padding: 115px 0 15px;
	background: #0000000f;
}

.small_breadcrumb_section ul {
	display: flex;
	list-style: none;
	flex-wrap: wrap;
	gap: 0 32px;
	margin: 0;
	padding: 0;
}

.small_breadcrumb_section ul li a {
	font-size: 13px;
	color: #000;
	letter-spacing: 0.2px;
	transition: all 0.5s ease;
}

.small_breadcrumb_section ul li:not(:last-child):after {
	content: '';
	position: absolute;
	top: 9px;
	right: -18px;
	height: 15px;
	background: #000000;
	width: 1px;
	transform: rotate(20deg);
	opacity: 0.5;
}

.small_breadcrumb_section ul li {
	position: relative;
}

.small_breadcrumb_section ul li a:hover,
.small_breadcrumb_section ul li a.active {
	color: var(--theme_color1);
}



.breadcrumb_section ul {
	display: flex;
	list-style: none;
	flex-wrap: wrap;
	gap: 0 30px;
	margin: 20px 0 0 0;
	padding: 0;
	justify-content: center;
}

.breadcrumb_section ul li a {
	font-size: 13px;
	color: #ffffff;
	letter-spacing: 0.2px;
	transition: all 0.5s ease;
}

.breadcrumb_section ul li:not(:last-child):after {
	content: '';
	position: absolute;
	top: 8px;
	right: -17px;
	height: 11px;
	background: #ffffff;
	width: 1px;
	transform: rotate(15deg);
	opacity: 1;
}

.breadcrumb_section ul li {
	position: relative;
}

.breadcrumb_section ul li a:hover,
.breadcrumb_section ul li a.active {
	color: #FFF;
}

/* -- about us in about us page -- */
.abt_section.about_us_pg {
	padding: 90px 0;
}

.abt_section.about_us_pg .content {
	width: 57%;
}

.abt_section.about_us_pg .abt_bg {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	height: 76%;
}

.abt_section.about_us_pg .row {
	align-items: center;
	gap: 60px 0;
}

.abt_section.about_us_pg h2 {
	padding-bottom: 0;
	max-width: 100%;
	margin-bottom: 30px;

}

.abt_section.about_us_pg ul.counterList {
	justify-content: space-around;
}

/* sustainability section */
section.sustainability_section {
	padding: 0 35px;
	overflow: hidden;
}

.sustainabilityCompWrap {
	display: flex;
	width: 100%;
	align-items: flex-start;
	height: 92vh;
	overflow: hidden;
	border-radius: 20px;
}

.sustainabilityCompWrap .subcard:after {
	position: absolute;
	z-index: 1;
	height: 70%;
	width: 100%;
	content: " ";
	bottom: 0;
	background: linear-gradient(to bottom, transparent 0, #000 100%);
	opacity: .8;
}

.sustainabilityCompWrap .subcard {
	width: 150px;
	height: 100vh;
	overflow: hidden;
	transition: width .5s ease;
	cursor: pointer;
	border-radius: 0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
	background-color: #fff;
	position: relative;
	background-size: cover;
	background-position: center;
}

.sustainabilityCompWrap .subcard:not(.active) {
	transform: scale(1);
	position: relative;
}

.sustainabilityCompWrap .subcard.active {
	width: 100%;
	height: 100%;
	transform-origin: top;
}

.sustainabilityCompWrap .subcard.active:hover {
	width: 100%;
}

.sustainabilityCompWrap .subcard.active {
	transform: scale(1);
}

.sustainabilityCompWrap .subcard:hover {
	width: 250px;
}

.card-heading {
	bottom: 60px;
	position: absolute;
	font-weight: 250;
	font-size: 1.8rem;
	left: 0;
	background: rgba(0, 0, 0, .4);
	color: #fff;
	height: auto;
	width: auto;
	padding: 25px 10px 25px 10px;
	opacity: 0;
	writing-mode: tb-rl;
	transform: rotate(-180deg);
	z-index: 2;
}

.sustainabilityCompWrap .subcard:not(.active) .card-heading {
	transition: opacity .4s ease-in;
	transition-delay: .2s;
	opacity: 1;
}

.subcard.active .sustainabilityBoxWrap {
	transition: opacity .6s ease-in;
	transition-delay: .5s;
	opacity: 1;
}

.sustainabilityBoxWrap {
	position: absolute;
	bottom: 60px;
	left: 5.1%;
	display: flex;
	opacity: 0;
	z-index: 2;
	align-items: center;
}

.sustainabilityBox1 {
	color: #fff;
	font-size: 57px;
	font-weight: 600;
	display: inline-block;
	line-height: 75px;
	border-right: .5px solid #fff;
	padding-right: 50px;
	text-transform: uppercase;
}

.sustainabilityBox2 {
	background: rgba(0, 0, 0, .4);
	padding: 20px 20px;
	margin-left: 5.6%;
	width: auto;
	max-width: 50%;
}

.sustainabilityBox2 h4 {
	font-size: 15px;
	color: #fff !important;
	font-weight: 300;
	text-transform: capitalize;
	margin-bottom: 25px;
	line-height: 24px;
	font-family: var(--body_font);
	letter-spacing: 1px;
}


/* -- cmd message -- */

.cmd_message_section_inside {
	background: var(--theme_color1);
}


/* contact us - start */

/* ===== SECTION ===== */
.nw-contact-section {
	/* padding: 80px 0; */
	background: linear-gradient(135deg, #f5f7ff, #ffffff);
}

/* ===== HEADING ===== */
.nw-contact-heading {
	text-align: center;
}

/* ===== CARD COMMON ===== */
.nw-card {
	border-radius: 20px;
	padding: 30px;
}

/* ===== LEFT CARD ===== */
.nw-contact-info {
	background: rgba(15, 43, 127, 0.08);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(15, 43, 127, 0.1);
	height: 100%;
	transition: 0.3s;
}

.nw-contact-info:hover {
	transform: translateY(-5px);
}

/* ===== INFO ITEMS ===== */
.nw-info-item {
	margin-bottom: 12px;
}

.nw-info-item i {
	color: var(--theme_color1);
	font-size: 20px;
	margin-right: 10px;
}

/* ===== FORM CARD ===== */
.nw-form-card {
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ===== INPUT GROUP ===== */
.nw-input-group {
	border-radius: 10px;
	overflow: hidden;
}

.nw-input-group .input-group-text {
	background: #fff;
	border: 1px solid #ddd;
	border-right: none;
	color: var(--theme_color1);
	border-radius: 10px 0 0 10px
}

.nw-input {
	border-radius: 0 10px 10px 0 !important;
	border-left: none;
	padding: 12px;
}

.nw-input:focus {
	box-shadow: none;
	border-color: var(--theme_color1);
}

/* ===== TEXTAREA FIX ===== */
textarea.nw-input {
	border-left: 1px solid #ddd;
	border-radius: 10px !important;
}

/* ===== BUTTON ===== */
.nw-submit-btn {
	background: var(--theme_color1);
	color: #fff;
	border-radius: 10px;
	padding: 12px;
	font-weight: 600;
	transition: 0.3s;
}

.nw-submit-btn:hover {
	background: #091a52;
	color: #000;
}

/* ===== WHATSAPP CTA ===== */
.nw-whatsapp {
	text-align: center;
	margin-top: 15px;
	font-size: 14px;
}

.nw-whatsapp a {
	color: var(--theme_color1);
	font-weight: 600;
	text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.nw-contact-section {
		padding: 50px 15px;
	}
}

.nw-contact-section .office-ad {

	margin-bottom: 12px;

}

.nw-contact-section .reg-office {

	margin-bottom: 30px;

}

.nw-contact-section .contact-top-txt {

	margin-bottom: 50px;

}

.nw-contact-section h2 {

	margin-bottom: 15px;

}

.nw-contact-section .contact-sub-btn:active {

	background: #091a52;

}

.nw-contact-section .contact-sub-btn:focus {

	background: #091a52;

}

/* contact us - end */




/* NRI corner - start */

body {
	overflow-x: hidden;
}

.nw-nri-section {
	padding: 120px 0;
	position: relative;
}

.nw-shape-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: #dadada;
	clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
	z-index: -1;
}

.nw-img-box {
	position: relative;
	padding: 40px;
}

.nw-main-img {
	width: 100%;
	border-radius: 100px 30px 100px 30px;
	box-shadow: 0 15px 30px rgba(111, 78, 55, 0.3);
	transition: all 0.5s ease;
}

.nw-overlay-card {
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--theme_color1);
	color: white;
	padding: 30px;
	border-radius: 30px;
	max-width: 280px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.nw-pre-title {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #808080;
	margin-bottom: 15px;
	display: block;

}

.nw-display-title {
	font-size: clamp(3rem, 6vw, 4.5rem);
	font-weight: 900;
	color: var(--theme_color1);
	line-height: 1;
	margin-bottom: 40px;
}

.nw-glass-text {
	font-size: 16px;
	line-height: 1.9;
	color: #555;
	padding: 40px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	border-radius: 0 50px 50px 50px;
	border-left: 6px solid var(--theme_color1);
	margin-bottom: 50px;
}

.nw-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	padding: 30px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: 0.3s;
}

.nw-feature-item:hover {
	transform: translateY(-10px);
}

.nw-icon-circle {
	width: 70px;
	height: 70px;
	background: #f0f4ff;
	color: var(--theme_color1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	flex-shrink: 0;
}

@media (max-width: 991px) {
	.nw-shape-bg {
		display: none;
	}

	.nw-img-box {
		margin-bottom: 80px;
	}

	.nw-display-title {
		font-size: 3rem;
	}
}

.nw-nri-section .corner-txt {

	color: transparent;
	-webkit-text-stroke: 1.5px var(--theme_color1);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.nw-nri-section .invest-head {

	font-weight: 600;

}

.nw-nri-section .nri-img {

	height: 617px;

}



/* NRI corner - end */


/* FAQ - start */

.nw-faq-card {
	border: 1px solid #e9ecef;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 15px 30px rgba(111, 78, 55, 0.3);
	margin-bottom: 1.25rem;
	transition: all 0.3s ease;
	overflow: hidden;
}

.nw-faq-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(15, 43, 127, 0.12);
}

.nw-accordion-btn {
	font-weight: 600;
	color: var(--theme_color1) !important;
	padding: 20px;
	background: #fff !important;
	border: none !important;
	display: flex;
	align-items: center;
	text-align: left;
}

.nw-accordion-btn:not(.collapsed) {
	background: #dadada !important;
	box-shadow: none;
}

.nw-icon-box {
	width: 40px;
	height: 40px;
	background: #f4f7ff;
	color: var(--theme_color1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
}

.nw-accordion-body {
	padding: 25px 30px 30px 75px;
	color: #555;
	line-height: 1.7;
	font-size: 0.95rem;
	border-top: 1px solid #e9ecef;
}

.category-label {
	margin-bottom: 25px;
	display: flex;
	align-items: center;
}

.category-label::after {
	display: none;
	content: "";
	height: 2px;
	flex-grow: 1;
	background: #e9ecef;
	margin-left: 20px;
}

.nri-faq-section .nw-faq-card {

	border-top: 1px solid #dadadada;

}

.nri-faq-section .accordion-header {

	font-family: var(--body_font);

}

/* FAQ - end */


/* ad campeign - start */

.ad-campeign-section .blog_card .content h4 {

	margin-top: 10px;

}

.ad-campeign-section .blog_card .date {

	right: 10px;
	left: auto;

}

.blog_card .date {
	font-weight: 500;
	background: var(--theme_color1);
	display: inline-block;
	border-radius: 20px;
	font-size: 12px;
	padding: 3px 13px;
	letter-spacing: 1px;
	position: relative;
	left: 0;
	margin-top: 30px;
	color: #FFF;
}

.ad-campeign-section .readmore.paper-name {

	color: #5f5f5f;

}

.ad-campeign-section .readmore.paper-name i {

	margin-left: 0 !important;
	color: #5f5f5f !important;
	margin-right: 4px;

}

.ad-campeign-section .main_heading {

	margin-bottom: 40px;

}

.ad-campeign-section h4 {

	font-size: 20px !important;
	font-weight: 600 !important;
	color: var(--theme_color1);
	overflow: hidden;
	position: relative;
}

.ad-campeign-section .blog_card {

	box-shadow: 0 15px 30px rgba(111, 78, 55, 0.3);
}

/* ad campeign - end */

.vertical {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.vertical .ver_panel {
	position: absolute;
	width: calc(100% - 70px);
	height: calc(100vh - 70px);
	top: 35px;
	left: 35px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 20px;
}

.vertical .panel1 {
	z-index: 1;
}

.vertical .panel2 {
	z-index: 2;
}

.vertical .panel3 {
	z-index: 3;
}

.vertical .panel4 {
	z-index: 4;
}

.vertical .panel5 {
	z-index: 5;
}


.project_long_card {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-image: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 10%), rgb(0 0 0 / 45%), hsl(0deg 0% 0% / 85%));
	display: flex;
	align-items: end;
	padding: 50px;
}

.project_long_card .long_card_row {
	align-items: end;
}

.project_long_card img {
	display: block;
	height: 100px;
	margin-bottom: 20px;
}

.project_long_card h3 {
	color: #FFF;
	font-size: 40px;
	font-weight: 300;
	border-bottom: 2px solid #ffffff66;
	display: inline-block;
	margin-bottom: 20px;
	padding-bottom: 10px;
}

.project_long_card p {
	color: #FFF;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 300;
	width: 500px;
	max-width: 100%;
	margin-bottom: 20px;
}

.project_long_card .theme_button {
	float: right;
}

.project_long_card .tag1 {
	font-size: 14px;
	color: #ffffff;
	display: inline-block;
	background: #ffffff38;
	padding: 7px 20px;
	letter-spacing: 1px;
	backdrop-filter: blur(9px);
	font-weight: 400;
}

.theme_button {
	background: #FFF;
	display: inline-block;
	padding: 8px 20px;
	position: relative;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	overflow: hidden;
}

.theme_button:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: var(--theme_color1);
	transform: translateX(-100%);
	transition: all 0.5s ease;
	border-radius: 50px;
}

.theme_button:hover:before {
	transform: translateX(100%);
}

.theme_button i {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
	margin-top: -1px;
	transition: all 0.5s ease;
	transition-delay: 0.2s;
}

.theme_button span {
	position: relative;
	z-index: 1;
	display: inline-block;
	width: 100%;
	padding-right: 10px;
	transition: all 0.5s ease;
}

.theme_button:hover span {
	padding-right: 5px;
	padding-left: 5px;
}

.theme_button:hover i {
	right: -20px;
}


/* -- event new section -- */

.event_card_new {
	margin-top: 30px;
	transition: all 0.5s ease;
	opacity: 0.2;
}

.event_card_new .content {
	padding: 18px;
	transition: all 0.5s ease;
	opacity: 0;
	visibility: hidden;
	text-align: center;
}

.owl-item.active .event_card_new {
	opacity: 1;
}

.owl-item.active.center .event_card_new {
	margin-top: 0;
}

.owl-item.active.center .event_card_new .content {
	opacity: 1;
	visibility: visible;
}

.owl-item.active.center .event_card_new .content h3 {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 9px;
}

.owl-item.active.center .event_card_new .content p {
	display: block;
	font-size: 15px;
	font-family: var(--body_font);
	font-weight: 400;
	margin-bottom: 0;
}

.event_card_new .content h4 {
	font-size: 18px;
	margin: 0 0 20px 0;
	font-weight: 600;
}

.event_card_new .content .event_date {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 15px;
	letter-spacing: 1px;
}

.event_card_new .image {
	border: 1px solid rgb(0 0 0 / 10%);
}

.event_card_new .image img {
	transition: all 0.5s ease;
	transform: scale(0.92);
}

.event_card_new:hover .image img {
	transform: scale(1);
}

.event_card_new .event_knowmore {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	color: var(--theme_color1);
	transition: all 0.5s ease;
}

.event_card_new:hover .event_knowmore {
	color: #000;
}

.event_slider .owl-dots {
	display: flex;
	justify-content: center;
	width: 25%;
	margin: auto;
}

.event_slider .owl-dots button.owl-dot {
	width: 100%;
	height: 3px;
	background: #CCC;
}

.event_slider .owl-dots button.owl-dot.active {
	background: var(--theme_color1);
}

.event_card_new .image .glightbox {
	position: absolute;
	z-index: 10;
	top: 40%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	box-sizing: content-box;
	display: block;
	width: 70px;
	height: 70px;
}


/* ---- our clients section --- */

/* .our_client_section {
    background: #e6ddce;
} */
.our_client_section .main_heading {
	margin-bottom: 40px !important;
}

.our_client_section .client_logo_box {
	background: #6f553721;
	border-radius: 8px;
	text-align: center;
	padding: 25px 16px;
	position: relative;
	overflow: hidden;
}

.our_client_section .client_logo_box span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--theme_color1);
	color: #FFF;
	font-size: 15px;
	letter-spacing: 2px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease;
}

.our_client_section .client_logo_box:hover span {
	opacity: 1;
	visibility: visible;
}

.our_client_section .client_logo_box img {
	display: inline-block;
	width: 170px;
	max-width: 100%;
}


/* press coverage - start */

.press-coverage-section .main_heading {
	margin-bottom: 40px;
}

.press_coverage_row {
	gap: 25px 0;
}

.press_coverage {
	background: #FFF;
	padding: 20px 40px;
	box-shadow: 0 10px 30px rgba(111, 78, 55, 0.05);
	border-radius: 50px;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.press_coverage:hover {
	transform: scale(1.02);
	box-shadow: rgba(111, 78, 55, 0.12) 0px 30px 60px;
}

.press_coverage .title {
	margin-bottom: 0;
	font-family: var(--body_font);
	font-size: 18px !important;
	font-weight: 500 !important;
}

.press_coverage p {
	margin: 0;
	font-size: 15px;
}

.press_coverage span.auther {
	font-size: 17px;
	font-weight: 500;
}

.press_coverage span.auther img {
	max-height: 42px;
	max-width: 140px;
	display: block;
}

.press_coverage span.readmore {
	float: right;
	text-transform: capitalize;
	font-size: 13px;
	font-weight: 400;
	background: var(--theme_color1);
	color: #FFF;
	padding: 4px 15px;
	border-radius: 50px;
	transition: all 0.5s ease;
}

.press_coverage:hover span.readmore {
	background: #000;
}

.press_coverage span.date {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 13px;
	letter-spacing: 1px;
	font-weight: 600;
	color: #000;
}




/* press coverge - end */


/* -- add campaign -- */

.campaign_card_row {
	gap: 30px 0;
}

.campaign_card {
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.5s ease;
}

.campaign_card:hover {
	transform: scale(1.02);
	box-shadow: rgba(111, 78, 55, 0.12) 0px 30px 60px;
}

.campaign_card h4 {
	text-align: center;
	font-family: var(--body_font);
	font-size: 20px;
}

.campaign_card .content p {
	text-align: center;
	font-size: 15px;
	letter-spacing: 1px;
	color: #000;
	margin-bottom: 5px;
}

.campaign_card .content {
	padding: 16px 10px;
	border-top: 0;
	background: #BA99761f;
}

/* -- founder -- */
.founder_mgs_section {
	position: relative;
	margin-bottom: 50px;
	padding-top: 100px;
}

.founder_mgs_section .parallax_mg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
}

.founder_mgs_section:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom, rgb(31 25 20 / 0%), rgb(31 25 20 / 0%), rgb(239 232 221 / 28%), rgb(239 232 221));
	z-index: 1;
	backdrop-filter: blur(3px);
}

.founder_mgs_section .container {
	position: relative;
	z-index: 2;
}

.founder_mgs_section .container .row {
	background: #00000061;
	backdrop-filter: blur(10px);
	align-items: end;
	border-radius: 10px;
	overflow: hidden;
}

.founder_mgs_section .image {
	padding: 43px 0 0px;
	overflow: hidden;
	width: 85%;
	margin: auto;
}

.founder_mgs_section .image img {
	display: block;
}

.founder_mgs_section .content {
	padding: 45px;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.founder_mgs_section .content :last-child {
	margin-bottom: 0;
}

.founder_mgs_section .content h4 {
	color: #FFF;
	font-size: 30px;
}

.founder_mgs_section .content h5 {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 4px;
	border-bottom: 1px dashed #ffffff8c;
	padding-bottom: 21px;
	color: #FFF;
	font-family: var(--body_font);
	font-weight: 400;
	margin-bottom: 24px;
}

.founder_mgs_section .content p.big {
	font-size: 20px;
	text-align: left;
	line-height: 32px;
	font-weight: 300;
}

.founder_mgs_section .content p {
	color: #FFF;
	font-weight: 200;
	letter-spacing: 1px;
	font-size: 15px;
	line-height: 24px;
}


/* ------------ Gallery ---------- */
.l-amenities-section {
	background: transparent !important;
}

.l-amenities-section {
	/* border-bottom: 1px solid #dadada !important;
    border-top: 1px solid #dadada !important; */
}

.l-amenities-card {
	background: transparent !important;
	border-radius: 14px;
	padding: 28px 22px;
	width: 227px;
	text-align: center;
	box-shadow: none !important;
	transition: all .35s ease;
	border: 1px solid #CCC !important;
}

.l-amenities-grid {
	max-width: 100% !important;
}

.gallery_section {}

.gallery_section .main_heading {
	margin-bottom: 40px;
}

.gallery_section .owl-item.active.center .panel {
	transform: scale(1);
	opacity: 1;
}

.gallery_section .owl-item .panel {
	transform: scale(0.85);
	transition: all 0.5s ease;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	opacity: 0.5;

}

.gallery_section .owl-item .panel span.image_caption {
	position: absolute;
	right: 15px;
	bottom: 15px;
	background: #000000a8;
	color: #FFF;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 400;
	padding: 9px 13px;
	border-radius: 50px;
	line-height: 1;
}

.gallery_section .owl-nav button {
	position: absolute;
	top: 40%;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: hsla(30, 53%, 64%, 0.5) !important;
	font-size: 24px;
	transition: all 0.5s ease;
	color: #FFF !important;
}

.gallery_section .owl-nav button.owl-prev {
	left: 25px;
}

.gallery_section .owl-nav button.owl-next {
	right: 25px;
}

.gallery_section .owl-nav button:hover {
	background: #BA9976a1 !important;
}

/* ---- */
.project_menu ul {
	list-style: none;
	display: flex;
	justify-content: center;
	padding: 0;
	gap: 0 20px;
	margin: 0;
}

.project_menu {
	position: relative;
	z-index: 99;
}

.project_menu ul li a {
	border: 1px solid var(--theme_color1);
	display: block;
	padding: 3px 25px;
	border-radius: 50px;
	letter-spacing: 0.5px;
	font-size: 15px;
}

.project_menu ul li a.active,
.project_menu ul li a:hover {
	background: var(--theme_color1);
	color: #FFF;
}

.project_menu .project_menu_inside {
	transition: all 0.5s ease;
	padding: 20px 0;
}

.project_menu.shifted .project_menu_inside {
	margin-top: 100px !important;
}

.project_menu.menu_fixed .project_menu_inside {
	background: #FFF;
	z-index: 999;
	position: relative;
}

/* ---- */

/* .spf-section,
.price-plan-section {
    border-top: 1px solid #dadada;
} */

/* .profile-layout-section,
.lux-floorplan-section,
.location-map-section {
    border-top: 1px solid #dadada;
} */

.lux-floorplan-section,
.location-map-section {
	background: transparent !important;
}

.spf-section .owl-stage-outer {
	padding-top: 0 !important;
}


.googleMap iframe {
	width: 100%;
	height: 450px;
	display: block;
	border-radius: 20px;
	margin-bottom: 70px;
	border: 5px solid #d4d3d2;
	box-shadow: 0 12px 25px 0 #0000001a;
}

/* --- our journey page --  */
.journey_top_section .image {
	border-radius: 13px;
}

.journey_content {
	margin-left: 50px;
}

.journey_content ul {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 0 40px;
	margin-top: 40px;
}

.journey_content ul li {
	display: flex;
	align-items: center;
	gap: 0 15px;
}

.journey_content ul li p {
	margin: 0;
	line-height: 1.2;
	text-transform: capitalize;
	letter-spacing: 0.4px;
}

.journey_content ul li span {
	font-size: 30px;
	font-weight: 600;
	color: var(--theme_color1);
}

.journey_content ul li img {
	width: 52px;
	margin-right: 5px;
}

.journey_section .main_heading {
	margin-bottom: 40px;
}

.journey_wrap .hero {
	text-align: center;
	margin-bottom: 80px
}

.journey_wrap .hero h1 {
	font-size: 52px;
	margin-bottom: 10px
}

.journey_wrap .hero p {
	opacity: .7;
	max-width: 700px;
	margin: auto;
	line-height: 1.6
}

.journey_wrap .timeline {
	position: relative;
	padding: 40px 0
}

.journey_wrap .line {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background: linear-gradient(var(--theme_color1), var(--theme_color1))
}

.journey_wrap .item {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 60px 0
}

.journey_wrap .item.left .card {
	margin-right: 80px
}

.journey_wrap .item.right {
	flex-direction: row-reverse
}

.journey_wrap .item.right .card {
	margin-left: 80px
}

.journey_wrap .side {
	width: 46%
}

.journey_wrap .card {
	background: #ffffffcc;
	border: 1px solid rgba(255, 255, 255, .06);
	padding: 40px;
	border-radius: 18px;
	backdrop-filter: blur(6px);
	box-shadow: 0 10px 20px rgb(0 0 0 / 11%);
}

.journey_wrap .tag {
	font-size: 40px;
	letter-spacing: 2px;
	color: var(--theme_color1);
	margin-bottom: 15px;
	line-height: 1;
	font-weight: 700;
}

.journey_wrap .card p {
	font-size: 26px;
	font-weight: 200;
	line-height: 1.4;
	margin-bottom: 0;
}

.journey_wrap .dot {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #BA9976;
	box-shadow: 0 0 0 8px #BA99763d;
}

.journey_wrap .date {
	display: inline-block;
	background: rgba(255, 255, 255, .04);
	padding: 12px 18px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .08)
}

@media(max-width:900px) {
	.journey_wrap .line {
		left: 20px
	}

	.journey_wrap .item,
	.journey_wrap .item.right {
		flex-direction: column;
		align-items: flex-start
	}

	.journey_wrap .side {
		width: 100%
	}

	.journey_wrap .item .card {
		margin: 20px 0 0 45px !important
	}

	.journey_wrap .dot {
		left: 20px;
		top: 20px;
		transform: translate(-50%, 0)
	}

	.journey_wrap .date {
		margin-left: 45px
	}

	.journey_wrap .hero h1 {
		font-size: 38px
	}
}



/* ------------- */
.awardNew_section .main_heading {
	margin-bottom: 20px;
}

.awards_card_row {
	gap: 30px 0;
}

.awards_card {
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.5s ease;
	height: 100%;
	background: #FFF;
}

.awards_card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px 0 #00000063;
}

.awards_card .content {
	padding: 26px;
	position: relative;
	padding-right: 90px;
}

.awards_card .content img {
	height: 76px;
	position: absolute;
	right: 6px;
	top: 27px;
	opacity: 0.5;
	filter: brightness(0.5);
}

.awards_card .content span {
	font-size: 33px;
	font-weight: 700;
	margin-bottom: 8px;
	display: block;
	line-height: 1;
	color: var(--theme_color1);
}

.awards_card .content h4 {
	margin: 0;
	font-weight: 800;
	font-size: 22px;
}

.campaign_card .image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

/* Gallery CSS(vs) */  
.gallery_section .owl-carousel .owl-item img {

	max-width: 960px;
	height: 500px;
	max-height: 500px;
	object-fit: cover;

}


.small_breadcrumb_section.project-pg-small-brdcrmb {

	padding-top: 15px !important;

}


.home-projects-section .res-com{ 

background: #e5e5e5;
color: #000;
	
}

/* lenis - start */

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  scroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* lenis - end */


@media (max-width: 1199px) {

	.gallery_section .owl-carousel .owl-item img {

		max-width: 595px;
		max-height: 297px;
		object-fit: cover;

	}

}

@media (max-width: 991px) {

	.gallery_section .owl-carousel .owl-item img {

		max-width: 595px;
		height: 214px;
		max-height: 297px;
		object-fit: cover;

	}

}

@media (max-width: 767px) {

	.gallery_section .owl-carousel .owl-item img {

		max-width: auto;
		height: 162px;
		max-height: auto;
		object-fit: cover;

	}

	 .small_breadcrumb_section.project-pg-small-brdcrmb { 

padding-top: 15px !important;

  }

}