body{
	font-family: arial;
	background-color: #ccccd2;
	min-height: 100vh;
}

.bg-light{
	background-color: #CFBF9D !important;
	color: #000;
	font-weight: 600;
}
.bg-light i {
	color: #000;
}
.btn {
	font-weight: 500;
	transition: .5s;
}

.btn.btn-primary {
	color: #FFFFFF;
}

.btn-sm-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	font-weight: normal;
}

.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
	margin-right: 30px;
	padding: 25px 0;
	color: #FFFFFF;
	font-size: 15px; 
	text-transform: uppercase;
	outline: none;
	font-weight: 900;
	transition: all 0.2s ease-in-out;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
	color: gold; 
	font-weight: 700;
}

.navbar-nav .nav-link.active {
	color: #DABA5E !important; /* Gold */ 
	border-bottom: 2px solid #DABA5E;
}


@media (max-width: 991.98px) {
	.navbar-light .navbar-nav .nav-link  {
		margin-right: 0;
		padding: 10px 0;
	}

	.navbar-light .navbar-nav {
		border-top: 1px solid #EEEEEE;
	}
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
	height: 75px;
}

.navbar-light .navbar-nav .nav-link {
	color: black;
	font-weight: 500;
}

.navbar-light.sticky-top {
	top: -100px;
	transition: .5s;

	/* Dark Glass Effect */
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);

	border-bottom: 1px solid rgba(212, 175, 55, 0.25);  
}


.btn_request {
	text-transform: uppercase;
	background: #C9A63B;
	color: #000;
	font-weight: 800;
	border: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
}

.btn:focus {
	-webkit-box-shadow: none;
}

.btn_request:hover,
.btn_request:active,
.btn_request:focus {
	background: #000;
	color: #C9A63B;
}


.navbar-brand h2  {
	position: relative;
	line-height: 24px;
	color: #000 !important;
	font-weight: 700;
}
.navbar-brand h2  span {
	display: block;
	font-size: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.brand-slider .slider_item {
	position: relative;
	width: 100%;
	min-height: 85vh;
	padding: 60px;
	display: flex;
	justify-content: space-between;
	gap: 40px;
	background: #000 url('../../assets/img/Screenshot-background.png')no-repeat center 100%; 
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
}

/* TEXT SECTION */
.brand-slider .slider_text {
	flex: 1;
	animation: fadeInUp 1s ease forwards;
}

.brand-slider h1 {
	font-size: 4rem;
	font-weight: 900;
	font-family: Calibri !important;
	text-transform: uppercase;
	line-height: 1.1;
	color: #fff;
}

.brand-slider h1 span {
	color: #d4af37; /* Gold */
}

.brand-slider p {
	font-size: 1.2rem;
	margin: 20px 0;
	opacity: 0.95;
}

/* BUTTON */
.slider_btn {
	background: #d4af37;
	color: #000;
	padding: 14px 36px;
	border-radius: 50px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: 0.3s;
}

.slider_btn:hover {
	background: #b8952f;
}

/* IMAGE */
.slider_img {
	flex: 1;
	text-align: right;
}

.slider_img img {
	width: 100%;
	max-width: 600px;
	border-radius: 22px;
	animation: fadeIn 1.4s ease forwards;
	box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

/* ANIMATIONS */
@keyframes fadeInUp {
	0% {
		opacity: 0;
	transform: translateY(40px);
	}
	100% {
		opacity: 1;
	transform: translateY(0);
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	transform: scale(1.1);
	}
	100% {
		opacity: 1;
	transform: scale(1);
	}
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
	.brand-slider .slider_item {
		flex-direction: column-reverse;
		text-align: center;
		padding: 40px 20px;
	}

	.brand-slider h1 {
		font-size: 2.4rem;
	}

	.slider_img img {
		max-width: 100%;
	}
}

.features-section {
	background: #CFBF9D; /* deep black */
	padding: 30px 0;
}

.feature-box {
	width: 95%;
	padding: 20px;
	margin-bottom: 10px;
	border-radius: 14px;
	background: #0d0d0d;
	border: 1px solid rgba(227, 178, 16, 0.25); /* subtle gold border */
	transition: all .3s ease-in-out;
}

.feature-box:hover {
	border-color: #E3B210; /* bold gold */
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(227, 178, 16, 0.25);
}

.feature-icon {
	font-size: 2rem;
	color: #E3B210; /* Luxury Gold */
}

.feature-title {
	color: #fff;
	font-weight: 600;
	letter-spacing: .3px;
}

.why_grandeur {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100vh;                   /* FULL HEIGHT */
	width: 100%;
	background: #000;                /* Black theme */
	padding: 50px;
	gap: 50px;
	color: #fff;
}

/* IMAGE LEFT */
.why_left {
	flex: 1;
	background: #fff;
	-webkit-border-radius: 0.5em;
}
.why_left img {
	width: 100%;
	height: 85vh;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

/* CONTENT RIGHT */
.why_right {
	flex: 1;
	animation: fadeInUp 1s ease forwards;
}

.why_right h2 {
	font-size: 3rem;
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.why_right h2 span {
	color: #d4af37; /* GOLD */
}

.why_list {
	list-style: none;
	padding: 0;
	font-size: 1.3rem;
	line-height: 2.1rem;
}

.why_list li {
	margin-bottom: 12px;
}

/* Animation */
@keyframes fadeInUp {
	0% {
		opacity: 0;
	transform: translateY(40px);
	}
	100% {
		opacity: 1;
	transform: translateY(0);
	}
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
	.why_grandeur {
		flex-direction: column;
		height: auto;             /* Allow natural height */
		padding: 30px 20px;
		text-align: center;
	}

	.why_left img {
		height: 250px;
		border-radius: 14px;
	}

	.why_right h2 {
		font-size: 2rem;
	}

	.why_list {
		font-size: 1.1rem;
	}
}

.about_block {
	background: #FFFFFF; /* white background */
}

.about_card {
	background: #F9F9F9;
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.06);
	transition: all 0.3s ease;
	border: 1px solid #E7E7E7;
}

.about_card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about_icon {
	font-size: 40px;
	color: #DABA5E; /* gold */
}

.icon_wrap {
	width: 60px;
	height: 60px;
	background: rgba(218,186,94,0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-readmore {
	background-color: #DABA5E;  /* Gold */
	color: #000;                 /* Black text */
	font-weight: 700;
	text-transform: uppercase;
	padding: 12px 28px;
	border-radius: 50px;
	display: inline-block;
	transition: all 0.3s ease;
	border: none;
}

.btn-readmore:hover {
	background-color: #b8952f;   /* Darker gold on hover */
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(218,186,94,0.4);
}


.btn-readmore i {
	margin-left: 6px;
	font-size: 1.2rem;
	vertical-align: middle;
	transition: 0.3s;
}

.btn-readmore:hover i {
	transform: translateX(3px);
}



.target_clients_section {
	background: #FFFFFF; /* WHITE BACKGROUND */
	padding: 80px 0;
}

.target_title {
	color: #000;
	font-size: 2.7rem;
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 40px;
	text-align: center;
}

.target_title i {
	color: #DABA5E;
	margin-right: 10px;
}

/* Client Card Box */
.client_card {
	background: #E7E7E7;
	padding: 35px 20px;
	border-radius: 18px;
	text-align: center;
	transition: .3s;
	border: 3px solid transparent;
	height: 100%;
}

.client_card i {
	font-size: 2.3rem;
	color: #DABA5E; /* GOLD */
	margin-bottom: 12px;
	display: block;
}

.client_card h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #000;
	margin: 0;
}

/* Hover effect */
.client_card:hover {
	border-color: #DABA5E;
	transform: translateY(-6px);
	box-shadow: 0 0 18px rgba(218, 186, 94, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
	.target_title {
		font-size: 2.2rem;
	}
	.client_card {
		padding: 25px 15px;
	}
}


.footer_bg {
	background: linear-gradient(
	rgba(0,0,0,0.85),
	rgba(0,0,0,0.85)
	),
	url('../../assets/img/background-260nw-1919361122.jpg');
	background-size: cover;
	background-position: center;
	color: #E7E7E7;
}

.text-gold {
	color: #DABA5E !important;
}

.footer-links li {
	margin-bottom: 8px;
}

.footer-links a {
	color: #E7E7E7;
	text-decoration: none;
	transition: 0.3s;
}

.footer-links a:hover {
	color: #DABA5E;
	padding-left: 4px;
}

.footer_bg i {
	color: #DABA5E;
	margin-right: 6px;
}
.about_us_section {
	background: #fff;
	color: #000;
}

/* Cards for Mission, Vision, Values */
.about_card {
	background: #F9F9F9;
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.06);
	transition: all 0.3s ease;
	border: 1px solid #E7E7E7;
}

.about_card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Icons */
.about_icon {
	font-size: 40px;
	color: #DABA5E;
}

.icon_wrap {
	width: 60px;
	height: 60px;
	background: rgba(218,186,94,0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Values Icons */
.values_icon {
	font-size: 0.9rem;
	color: #DABA5E;
	margin-right: 6px;
}

.page_header {
	position: relative;
	width: 100%;
	min-height: 400px;
	background: url('../../assets/img/background-260nw-1919361122.jpg') center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
}

.page_header .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6); /* Black overlay for text contrast */
}

.header_content {
	position: relative;
	z-index: 2;
}

.page_header h1 {
	font-size: 3rem;
	color: #DABA5E; /* Gold title */
	text-transform: uppercase;
	letter-spacing: 1px;
}

.page_header p {
	font-size: 1.2rem;
	color: #fff;
}

.btn-header {
	background-color: #DABA5E;
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	padding: 12px 30px;
	border-radius: 50px;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-header:hover {
	background-color: #b8952f;
	color: #fff;
	transform: translateY(-2px);
}
.whatsapp-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: #25D366; /* Official WhatsApp green */
	color: #fff;               /* White icon */
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	z-index: 9999;
	box-shadow: 0 4px 15px rgba(37,211,102,0.5);
	transition: all 0.3s ease;
	cursor: pointer;
}

.whatsapp-btn:hover {
	background-color: #128C7E; /* Darker green on hover */
	transform: translateY(-3px);
}

.text-gold {
	color: #DABA5E !important;
}

/* Contact Info Card */
.contact_info, .contact_form {
	background: #fff;
	border: 1px solid #E7E7E7;
	transition: all 0.3s ease;
}

.contact_info:hover, .contact_form:hover {
	box-shadow: 0 8px 25px rgba(218,186,94,0.2);
	transform: translateY(-3px);
}

/* WhatsApp Button */
.btn-whatsapp {
	background-color: #25D366;
	color: #fff;
	font-weight: 600;
	border-radius: 50px;
	padding: 10px 20px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
}

.btn-whatsapp:hover {
	background-color: #128C7E;
	transform: translateY(-2px);
}

/* Submit Button */
.btn-submit {
	background-color: #DABA5E;
	color: #000;
	font-weight: 700;
	padding: 12px 28px;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	background-color: #b8952f;
	color: #fff;
	transform: translateY(-2px);
}

.text-gold {
	color: #DABA5E !important;
}

/* Service Cards */
.service_card {
	background: #fff;
	border: 1px solid #E7E7E7;
	transition: all 0.3s ease;
}

.service_card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(218,186,94,0.15);
}

/* Icons */
.service_icon {
	font-size: 40px;
	color: #DABA5E;
}

.icon_wrap {
	width: 60px;
	height: 60px;
	background: rgba(218,186,94,0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* List bullets as BI icons */
ul {
	padding-left: 0;
	list-style: none;
}

ul li {
	margin-bottom: 8px;
}

.btn-gold {
	background-color: #DABA5E;
	color: #000;
	font-weight: 700;
	border-radius: 50px;
	padding: 10px 25px;
	transition: all 0.3s ease;
}

.btn-gold:hover {
	background-color: #b8952f;
	color: #fff;
	transform: translateY(-2px);
}

.modal-content {
	border: none;
	overflow: hidden;
}

.modal-header {
	background-color: #fff;
}

.text-gold {
	color: #DABA5E !important;
}

.portfolio_item {
	cursor: pointer;
	transition: transform 0.4s ease;
	width: 100%;
	height: 340px;
	background: #fff;
	overflow: hidden;
}

.portfolio_item:hover {
	transform: scale(1.05);
}

.portfolio_item img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 340px;
}

/* Overlay */
.portfolio_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4); /* semi-transparent overlay */
	backdrop-filter: blur(8px); /* glass effect */
	-webkit-backdrop-filter: blur(8px); /* Safari */
	opacity: 0;
	transition: all 0.4s ease;
	padding: 20px;
}

.portfolio_item:hover .portfolio_overlay {
	opacity: 1;
}
 
/* Overlay text */
.portfolio_overlay h5 {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.portfolio_overlay p {
	font-size: 0.95rem;
}
















/* Position nav buttons */
.brand-slider .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none; /* let only buttons be clickable */
}

.brand-slider .owl-nav .custom-owl-nav {
	font-size: 2.5rem;
	color: #DABA5E; /* Gold */
	background: rgba(0,0,0,0.5); /* Black transparent background */
	border-radius: 50%;
	padding: 12px;
	pointer-events: all;
	transition: all 0.3s ease;
	cursor: pointer;
}

.brand-slider .owl-nav .custom-owl-nav:hover {
	background: #DABA5E; /* Gold on hover */
	color: #000; /* Black icon on hover */
	transform: scale(1.1);
}

/* Remove default owl-nav text buttons */
.brand-slider .owl-nav button {
	background: none;
	border: none;
	outline: none;
}


.scroll-top-btn {
	position: fixed;
	bottom: 120px;
	right: 30px;
	background-color: #DABA5E; /* Gold */
	color: #000;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 1.8rem;
	display: none; /* Hidden by default */
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(218,186,94,0.4);
	transition: all 0.3s ease;
	z-index: 9999;
}

.scroll-top-btn:hover {
	background-color: #b8952f; /* Darker gold */
	color: #fff;
	transform: translateY(-3px);
}


@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;
		transition: .5s;
		opacity: 1;
	}
}
.cookie-consent {
	display: none; /* hidden by default */
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.6); /* semi-transparent black */
	color: #fff;
	padding: 20px 25px;
	border-radius: 10px;
	z-index: 9999;
	width: 600px;
	max-width: 100%;
	text-align: center;

	/* Glass effect */
	backdrop-filter: blur(10px); /* blur background behind the banner */
	-webkit-backdrop-filter: blur(10px); /* for Safari */
	border: 1px solid rgba(255, 255, 255, 0.2); /* subtle border for glass look */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* soft shadow */
}


.cookie-consent p {
	margin-bottom: 15px;
}

.cookie-buttons button {
	margin: 0 5px;
	padding: 8px 20px;
	border: none;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
}

.btn-accept {
	background-color: #DABA5E;
	color: #000;
}

.btn-decline {
	background-color: #555;
	color: #fff;
}


/* Slide up animation */
@keyframes slideUp {
	0% {
		transform: translateX(-50%) translateY(100px);
	opacity: 0;
	}
	100% {
		transform: translateX(-50%) translateY(0);
	opacity: 1;
	}
}
