@font-face {
	font-family: "futura";
	src: url("../font/futura.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "midland";
	src: url("../font/midland.otf") format("opentype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "arista";
	src: url("../font/arista.otf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "pagnol";
	src: url("../font/pagnol.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "spline";
	src: url("../font/spline.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

/********** Template CSS **********/

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}

/*** Button ***/
.btn {
	font-family: 'Anton', sans-serif;
	text-transform: uppercase;
	transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
	color: #FFFFFF;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}

.theme-btn {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	background: var(--bs-secondary);
	color: #000;
	padding: 10px 20px;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.4s ease;
}

.theme-btn-icon {
	transform: rotate(45deg);
	transition: transform 0.4s ease;
}

.theme-btn:hover {
	color: var(--bs-primary);
}

.theme-btn:hover .theme-btn-icon {
	transform: rotate(90deg);
}

/*** Navbar ***/
.navbar.sticky-top {
	top: -100px;
	transition: 0.5s;
}

.navbar .navbar-brand,
.navbar .navbar-phone {
	height: 70px;
}

.navbar .navbar-nav .nav-link {
	margin-right: 30px;
	padding: 25px 0;
	color: var(--bs-dark);
	outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}

	.navbar .navbar-nav {
		border-top: 1px solid #eeeeee;
	}
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		border: none;
		margin-top: 0;
		top: 150%;
		opacity: 0;
		visibility: hidden;
		transition: 0.5s;
	}

	.navbar .nav-item:hover .dropdown-menu {
		top: 100%;
		visibility: visible;
		transition: 0.5s;
		opacity: 1;
	}
}

.btnmenu {
	background: var(--bs-primary);
	color: #fff !important;
	border-radius: 30px;
	padding: 10px 25px !important;
	margin: 15px 0 15px 0;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 767px) {
	.btnmenu {
		width: 100px;
		flex: none;
	}
}

.navbar .navbar-nav .btnmenu:hover,
.navbar .navbar-nav .btnmenu.active {
	color: #fff !important;
}

.logoclass {
	width: 190px;
}

/*** Header ***/
.owl-carousel-inner {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	background: rgba(0, 0, 0, 0.4);
}

.page-header {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
}

.page-header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.page-header .page-header-inner {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
	.page-header {
	height: 250px;
	}
}

@media (min-width: 1920px) {
    .page-header {
        height: 800px;
    }
}

/*** Scrolling ***/
.scrolling {
	white-space: nowrap;
}

.scrolling-text {
	display: inline-block;
	animation: scroll-left 20s linear infinite;
	font-size: 20px;
	font-family: "Raleway", sans-serif;
	font-weight: 700;
}

.scrolling-text:hover {
	animation-play-state: paused;
}

.scrolling-text span {
	display: inline-block;
	margin-right: 30px;
}

.scrolling-text span i {
	color: var(--bs-white);
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.scrolling-text {
	display: flex;
	align-items: center;
	white-space: nowrap;
	gap: 60px;
	/* spacing between items */
}

.scrolling-text span {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
}

/* Dot between items */
.scrolling-text span::after {
	content: "•";
	position: absolute;
	right: -35px;
	font-size: 22px;
	font-weight: bold;
}

/* Remove dot from last item */
.scrolling-text span:last-child::after {
	display: none;
}

/*** Testimonial ***/

.testimonial-carousel .owl-nav {
	position: absolute;
	width: 150px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
	transition: .5s;
	z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
	margin: 15px;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bs-primary);
	border: 2px solid var(--bs-primary);
	border-radius: 50px;
	transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
	color: var(--bs-dark);
}

.testimonial-carousel .owl-item .testimonial-text {
	margin-bottom: 30px;
	margin-top: 40px;
	box-shadow: 0 0 45px rgba(0, 0, 0, .08);
	transform: scale(.8);
	transition: .5s;
	border-radius: 10px;
}

.testimonial-carousel .owl-item.center .testimonial-text {
	transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
	.container.contact {
		max-width: 100% !important;
	}

	.contact-text {
		padding-left: calc(((100% - 960px) / 2) + 0.75rem);
	}
}

@media (min-width: 1200px) {
	.contact-text {
		padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
	}
}

@media (min-width: 1400px) {
	.contact-text {
		padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
	}
}

.contact-form .help-block ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/* ==================================
   Footer
================================== */


.footer-contact i {
	color: var(--bs-primary);
	width: 15px;
	margin-top: 5px;
}

/* Social Icons */

.footer-social {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: var(--bs-primary);
	color: #fff !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 5px;
	transition: 0.3s;
}

.footer-social:hover {
	transform: translateY(-2px);
	color: #fff !important;
}

/* ==================================
   Responsive
================================== */

@media (max-width: 991px) {}

@media (max-width: 767px) {}

/*new css */

/*modal form start*/
/* MODAL BACKDROP */
.modal.custom-enquiry-modal .modal-content {
	background: var(--bs-primary);
	border: none;
}

.modal-backdrop.show {
	background: rgba(0, 0, 0, 0.9);
}

/* BOX */
.enquiry-box {
	background: rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(12px);
	border-radius: 20px;
	padding: 40px;
	position: relative;
}

/* CLOSE */
.custom-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	font-size: 28px;
	color: #fff;
	cursor: pointer;
}

/* TEXT */
.enquiry-box h2 {
	color: #fff;
}

.enquiry-box p {
	color: #ddd;
}

/* INPUTS */
.enquiry-box input,
.enquiry-box select {
	width: 100%;
	padding: 14px 16px;
	border-radius: 10px;
	border: none;
	font-size: 15px;
}

.enquiry-box select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border-radius: 10px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    box-sizing: border-box;
}

.enquiry-box input:focus,
.enquiry-box select:focus {
	outline: none;
}

/*modal form end*/

/* ================================
   FLOAT ICONS – DESKTOP ONLY
   ================================ */

.enquiebtn {
	position: fixed;
	top: 200px;
	right: 10px;
	z-index: 999;
}

.enquiebtn ul {
	position: relative;
	padding-left: 0;
	margin-bottom: 0;
}

.enquiebtn ul li {
	background-color: var(--bs-secondary);
	list-style-type: none;
	border-radius: 50px;
	margin: 10px 0;
	padding: 0;
	position: relative;
	overflow: hidden;
	/* keeps text inside pill */
	transition: all 0.6s ease;
}

/* hover slide (KEY BEHAVIOR) */
.enquiebtn ul li:hover {
	margin-left: -130px;
	cursor: pointer;
}

/* link */
.enquiebtn ul li a {
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 10px;
	position: relative;
}

/* icon wrapper */
.enquiebtn ul li a .img {
	position: relative;
	z-index: 1;
	transition: all 0.6s ease;
}

/* gold circle behind icon */
.enquiebtn ul li a .img::before {
	position: absolute;
	content: "";
	height: 150%;
	width: 150%;
	top: 50%;
	width: 10px;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: -1;
	display: none;
	transition: all 0.6s ease;
}

/* text INSIDE pill */
.enquiebtn ul li a p {
	position: absolute;
	left: 55px;
	color: var(--bs-primary);
	opacity: 0;
	white-space: nowrap;
	transition: all 0.2s ease;
}

/* hover text reveal */
.enquiebtn ul li:hover a p {
	opacity: 1;
	left: 55px;
	transition-delay: 0.2s;
}

/* hover icon rotation */
.enquiebtn ul li:hover a .img {
	transform: rotate(-360deg);
}

/* show gold circle on hover */
.enquiebtn ul li:hover a .img::before {
	display: block;
}

/**/
.section-title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
}

.section-title-wrap::before,
.section-title-wrap::after {
	content: "";
	width: 180px;
	height: 10px;
	/* adjust to your image height */
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.section-title-wrap::before {
	background-image: url("../img/lineright.png");
}

.section-title-wrap::after {
	background-image: url("../img/lineleft.png");
}

.section-title {
	background: var(--bs-secondary);
	color: #000;
	padding: 10px 24px;
	border-radius: 30px;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.section-title-wrap {
		gap: 15px;
	}

	.section-title-wrap::before,
	.section-title-wrap::after {
		width: 70px;
	}

	.section-title {
		padding: 8px 18px;
	}
}

/**/

/*home video start*/
.video-wrapper {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.video-wrapper video {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}

/*home video end*/

/*home ongoing section*/

.project-divider {
	width: 1px;
	height: 180px;
	background: #e7d4c7;
	transition: .4s;
	flex-shrink: 0;
}

.row:hover .project-divider {
	height: 250px;
	background: var(--bs-primary);
}

@media (max-width: 991.98px) {
	.project-divider {
		display: none;
	}
}

/*ongoing home end*/


/* Why Choose Us */

.feature-card {
	overflow: hidden;
	height: 350px;
}

.feature-card * {
	transition: .5s ease;
}

.feature-thumb img {
	width: 100%;
	display: block;
}

.feature-content {
	padding-top: 15px;
}

.feature-description {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
}

/* Hover */

.feature-card:hover .feature-thumb img {
	transform: translateY(-120px);
}

.feature-card:hover .feature-content {
	margin-top: -100px;
}

.feature-card:hover .feature-description {
	opacity: 1;
	max-height: 180px;
}

@media (max-width: 767px) {

.feature-card {
	height: 400px;
}

}

/**/

.cta-section {
	background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('../img/cta.jpg') center center / cover no-repeat;
	padding: 200px 0;
}

.cta-indra {
	background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('../img/indrasukh/indracta.webp') center center / cover no-repeat;
	padding: 250px 0;
}


.cta-indra2 {
	background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('../img/indrasukh/indracta2.webp') center center / cover no-repeat;
	padding: 250px 0;
}


.upload-box {
	border: 2px dashed #d9d9d9;
	border-radius: 12px;
	cursor: pointer;
	transition: all .3s ease;
}

.upload-box:hover {
	border-color: #4A3F99;
}

.blog-card img {
	/*aspect-ratio: 1 / 1;*/
	object-fit: cover;
}

/**/
.divider-fade {
	position: relative;
}

.divider-fade::after {
	content: "";
	position: absolute;
	top: 0px;
	right: 0;
	width: 1px;
	height: 100%;
	background: linear-gradient(to bottom, transparent, #333, transparent);
}

.divider-horizontal {
	position: relative;
}

.divider-horizontal::after {
	content: "";
	position: absolute;
	bottom: -11px;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent, #333, transparent);
}

@media (max-width: 768px) {
	.divider-fade::after {
		display: none;
	}
}

/**/

/*project page hover start*/
.hover-gallery {
	height: 350px;
	gap: 6px;
}

.gallery-card {
	flex: 1;
	cursor: pointer;
	overflow: hidden;
	transition: flex .6s ease;
}

.gallery-card:hover {
	flex: 4;
}

.gallery-card img {
	object-fit: cover;
}

.gallery-title {
	opacity: 0;
	transition: .3s ease;
	z-index: 2;
}

.gallery-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
	opacity: 0;
	transition: .3s ease;
}

.gallery-card:hover .gallery-title,
.gallery-card:hover::after {
	opacity: 1;
}

@media (max-width: 991.98px) {
	.hover-gallery {
		flex-direction: column;
		height: auto;
	}

	.gallery-card {
		height: 300px;
	}

	.gallery-card:hover {
		flex: 1;
	}

	.gallery-title,
	.gallery-card::after {
		opacity: 1;
	}
}

/**/
/**/
.connectivity-box {
	background: var(--bs-secondary);
	border-radius: 12px;
	padding: 12px 20px;
	margin-bottom: 12px;
}

.distance {
	font-size: 2rem;
	color: var(--bs-primary);
	line-height: 1;
}

.accordion-button:not(.collapsed) {
	background: transparent;
	color: inherit;
}

.accordion-button::after {
	background-size: 1rem;
}

.accordion-item {
	border-bottom: 1px solid #d8d8d8;
}

/**/
/*** Floor ***/
.floor-carousel .owl-nav {
	margin-top: 20px;
	display: flex;
	justify-content: center;
}

.floor-carousel .owl-nav .owl-prev,
.floor-carousel .owl-nav .owl-next {
	margin: 15px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bs-primary);
	border: 2px solid var(--bs-primary);
	border-radius: 50px;
	transition: .5s;
}

.floor-carousel .owl-nav .owl-prev:hover,
.floor-carousel .owl-nav .owl-next:hover {
	color: var(--bs-primary);
	background: var(--bs-secondary);
	border: 2px solid var(--bs-secondary);
}

/**/

/*** gallery ***/
.gallery-item {
	position: relative;
	display: block;
}

/*gallery end*/


/* Image Dropdown */

/*.project-dropdown .dropdown-menu {
    width: 250px;
    overflow: hidden;
}

.project-menu-item {
    position: relative;
    display: block;
    height: 90px;
    overflow: hidden;
    text-decoration: none;
}

.project-menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.project-menu-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 1;
}

.project-menu-item span {
    position: absolute;
    left: 30px;
    bottom: 25px;
    z-index: 2;
    color: #fff;
}

.project-menu-item:hover img {
    transform: scale(1.08);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }
}*/
/*old menu type end*/

/* ===== NAVBAR ===== */

.custom-nav {
	background: #fff;
	border-bottom: 1px solid #eee;
}

/* LINKS */

.custom-nav-link {
	text-decoration: none;
	color: var(--bs-primary);
	transition: .3s;
}

.custom-nav-link:hover {
	opacity: .7;
}

/* ===== MENU BUTTON ===== */

.custom-menu-btn {
	width: 45px;
	height: 42px;
	border: 0px solid #000;
	border-radius: 50%;
	background: transparent;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	cursor: pointer;
}

.custom-menu-btn span {
	width: 18px;
	height: 2px;
	background: #000;
	margin: 0 auto;
	transition: .3s;
}

/* ===== OVERLAY ===== */

.custom-menu-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-40px);
	transition: .5s ease;
	z-index: 9999;
}

.custom-menu-overlay.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* ===== LEFT SIDE ===== */

.custom-menu-left {
	width: 50%;
	padding: 80px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background: #fff url('../img/bg.png') center center no-repeat;
	background-size: cover;
	overflow-y: auto;
}

/* ===== LOGO ===== */

.custom-menu-logo img {
	max-width: 220px;
}

/* ===== STAGGER ANIMATION ===== */

.custom-menu-left>a,
.custom-menu-group {
	opacity: 0;
	transform: translateY(20px);
}

.custom-menu-overlay.active .custom-menu-left>a,
.custom-menu-overlay.active .custom-menu-group {
	opacity: 1;
	transform: translateY(0);
	transition: .5s ease;
	font-size: 18px;
}

/* ===== LINKS ===== */

.custom-menu-left>a {
	text-decoration: none;
	color: var(--bs-primary);
	font-weight: 400;
	margin-bottom: 12px;
}

.custom-menu-left a,
.custom-menu-group span {
	position: relative;
	padding-left: 18px;
}

.custom-menu-left a::before,
.custom-menu-group span::before {
	content: "→";
	position: absolute;
	left: -2px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: var(--bs-primary);
}

.custom-menu-social a::before {
	content: none !important;
}

/* ===== GROUPS ===== */

.custom-menu-group {
	margin-bottom: 5px;
}

.custom-menu-group span {
	display: block;
	font-weight: 400;
	letter-spacing: 1px;
	margin-bottom: 6px;
	color: var(--bs-primary);
	font-size: 18px;
	cursor: pointer;
	transition: .3s;
}

.custom-menu-group:hover span {
	letter-spacing: 2px;
}

/* ===== SUBMENU ===== */

.custom-menu-group a {
	display: block;
	margin-left: 20px;
	text-decoration: none;
	color: #666;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(10px);
	transition: .3s ease;
}

.custom-menu-group:hover a {
	max-height: 40px;
	opacity: 1;
	transform: translateY(0);
}

.custom-menu-group:hover a:nth-child(2) {
	transition-delay: .05s;
}

.custom-menu-group:hover a:nth-child(3) {
	transition-delay: .1s;
}

.custom-menu-group:hover a:nth-child(4) {
	transition-delay: .15s;
}

/* ===== RIGHT IMAGE ===== */

.custom-menu-right {
	width: 50%;
	height: 100%;
}

.custom-menu-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===== CLOSE BUTTON ===== */

.custom-menu-close {
	position: absolute;
	top: 30px;
	right: 40px;
	width: 46px;
	height: 46px;
	border: 1px solid #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	font-size: 18px;
}

/* ===== MOBILE ===== */

@media (max-width: 991.98px) {

	.custom-menu-overlay {
		flex-direction: column;
	}

	.custom-menu-right {
		display: none;
	}

	.custom-menu-left {
		width: 100%;
		padding: 70px 25px 40px;
	}

	.custom-menu-logo {
		margin-bottom: 40px !important;
	}

	.custom-menu-logo img {
		max-width: 180px;
	}

	/* SHOW ALL SUBMENUS ON MOBILE */

	.custom-menu-group a {
		max-height: none;
		opacity: 1;
		transform: none;
	}

	.custom-menu-left>a {
		font-size: 20px;
	}

	.custom-menu-group span {
		font-size: 16px;
	}

	.custom-menu-group a {
		font-size: 14px;
	}

	.custom-menu-close {
		top: 20px;
		right: 20px;
	}

	.custom-nav-link {
		display: none;
	}
	
	p.spacemob {
    padding-bottom: 20px;
    }
    
    .custom-menu-close {
	border: 1px solid #000;
	color: #000;
    }
    .logoclass {
    width: 150px;
    }
}

/* ===== SOCIAL ICONS ===== */
.custom-menu-social {
	display: flex;
	gap: 15px;
	margin-top: 40px;
}

/* ICON WRAPPER */
.social-icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: var(--bs-primary);
	color: #fff;
	padding-left: 0px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	text-decoration: none;
	transition: 0.3s ease;
}

/* HOVER */
.social-icon:hover {
	color: #fff;
	transform: translateY(-3px);
}

.footer-bg {
	background: url('../img/footerbg.webp') center center no-repeat;
	background-size: cover;
}

.bg {
	background: url('../img/bg.png') center center no-repeat;
	background-size: cover;
}

.bg2 {
	background: url('../img/bg2.png') center bottom no-repeat;
	background-size: cover;
}

.bg3 {
	background: url('../img/bg3.png') center bottom no-repeat;
	background-size: contain;
    background-position: center;
    background-attachment: fixed;
}

.project-card img{
    transition: all 0.4s ease;
}

.project-card:hover img{
    box-shadow: 0 0 20px #221e1fa1;
}