:root {
	--primary-navy: #10101e;
	--primary-blue: #3498db;
	--accent-gold: #eea939;
	--gold-hover: #d49a2e;
	--bg-light: #f4f6f9;
	--text-dark: #121212;
	--text-muted: #888888;
	--white: #ffffff;
	--section-padding: 140px;
	--border-radius-lg: 32px;
	--transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	--font-main: 'Outfit', sans-serif;
	--font-heading: 'Exo', sans-serif;
}

body {
	font-family: var(--font-main);
	color: var(--text-dark);
	background-color: var(--white);
	overflow-x: hidden;
	line-height: 1.7;
}

/* Typography Overhaul */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 800;
	color: var(--primary-navy);
	letter-spacing: -0.02em;
}

.editorial-heading {
	font-size: clamp(3rem, 10vw, 6.5rem);
	line-height: 0.9;
	font-weight: 900;
	text-transform: uppercase;
}

.sub-header {
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.4em;
	color: var(--accent-gold);
	display: block;
	margin-bottom: 2rem;
}

.text-gold {
	color: var(--accent-gold) !important;
}

.bg-gold {
	background-color: var(--accent-gold) !important;
}

/* Buttons */
.btn-gold {
	background-color: var(--accent-gold);
	color: white;
	border: none;
	padding: 1.2rem 3rem;
	border-radius: 100px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition-smooth);
	font-size: 0.9rem;
}

.btn-gold:hover {
	background-color: var(--primary-navy);
	color: white;
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(238, 169, 57, 0.25);
}

.noto-sans-bengali {
	font-family: "Noto Sans Bengali", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
}

.light-green {
	color: #90EE90;
}

.midnight-blue {
	color: #2c3e50;
}

.asbestos {
	color: #7f8c8d;
}

.size-1rem {
	font-size: 1rem;
}

.border-bottom-1 {
	border-bottom: 1px solid #95a5a6;
}

/* Mega Menu Refinement */
.mega-menu {
	border-top: 4px solid var(--accent-gold) !important;
	border-radius: 0 0 40px 40px !important;
	transform-origin: top;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: block !important;
	opacity: 0;
	visibility: hidden;
	transform: perspective(1000px) rotateX(-5deg);
	margin-top: 0 !important;
	/* Forces menu to touch navbar */
}

.dropdown:hover .mega-menu {
	opacity: 1;
	visibility: visible;
	transform: perspective(1000px) rotateX(0);
}

.mega-item {
	background: transparent !important;
	padding: 0.8rem 1.2rem !important;
	border-radius: 12px !important;
	transition: var(--transition-smooth);
}

.mega-item:hover {
	background: rgba(16, 16, 30, 0.02) !important;
	color: var(--primary-navy) !important;
	/* Fix: Keep text dark on hover */
	transform: translateX(10px);
}

/* Heading Refinement */
.mega-menu h6 {
	white-space: normal;
	/* Allow natural wrap if needed */
	letter-spacing: 2px !important;
	font-size: 0.75rem !important;
}

/* Nav Link Indication - Enhanced */
.nav-item.dropdown.show>.nav-link {
	color: var(--accent-gold) !important;
}

.nav-item.dropdown.show>.nav-link::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent-gold);
	transform: scaleX(0.8);
	transition: all 0.3s ease;
}

/* Grid breathing room */
.mega-menu .row {
	flex-wrap: wrap !important;
	/* Restore natural wrap */
	overflow: visible !important;
}

.mega-icon-box {
	width: 42px;
	height: 42px;
	background: rgba(238, 169, 57, 0.1);
	color: var(--accent-gold);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	transition: var(--transition-smooth);
}

.mega-item:hover .mega-icon-box {
	background: var(--accent-gold);
	color: #fff;
	transform: scale(1.1) rotate(5deg);
}

.mega-featured-card {
	transition: var(--transition-smooth);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-featured-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px rgba(16, 16, 30, 0.2);
}

.mega-featured-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top right, rgba(238, 169, 57, 0.2), transparent);
	pointer-events: none;
}

@media (min-width: 992px) {
	.border-start-lg {
		border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
	}
}

@media (max-width: 991.98px) {
	.mega-menu {
		position: static;
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
		display: none;
		/* Controlled by bootstrap collapse */
		border-radius: 20px !important;
		margin: 10px 0;
		padding: 1.5rem !important;
		box-shadow: none !important;
		background: #fff !important;
	}
}

.navbar.scrolled .search-form {
	background: rgba(0, 0, 0, 0.05);
	border-color: transparent;
}

.navbar.scrolled .search-field {
	color: var(--primary-navy);
}

/* Search Redesign - High Fidelity */
.search-wrapper {
	position: relative;
	width: 280px;
}

.search-form {
	display: flex;
	align-items: center;
	background: rgba(0, 0, 0, 0.04);
	border-radius: 100px;
	padding: 4px 6px 4px 20px;
	border: 1px solid transparent;
	transition: var(--transition-smooth);
}

.search-field {
	background: none;
	border: none;
	width: 100%;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--primary-navy);
	outline: none;
}

.search-field::placeholder {
	color: var(--text-muted);
}

.search-submit {
	background: var(--primary-navy);
	color: var(--white);
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
	cursor: pointer;
}

.search-form:focus-within {
	background: var(--white);
	border-color: var(--accent-gold);
	box-shadow: 0 10px 20px rgba(238, 169, 57, 0.15);
}

.search-form:focus-within .search-submit {
	background: var(--accent-gold);
}

@media (max-width: 992px) {
	.navbar {
		padding: 1rem;
		top: 0;
		/* Reset offset for mobile where top-bar might hide differently */
		background: var(--primary-navy);
		/* Solid background for mobile menu */
	}

	.search-wrapper {
		width: 100%;
		margin: 15px 0;
	}
}


div#myCarousel {
	position: relative;
}

div#myCarousel::after {
	content: "";
	position: absolute;
	bottom: -118px;
	left: -50%;
	width: 200%;
	height: 55%;
	background-color: transparent;

	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 1503 200' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath fill='rgba(222, 226, 230, 1)' d='M 0 186 C 366.5 186 366.5 101 733 101 L 733 101 L 733 0 L 0 0 Z' stroke-width='0'%3E%3C/path%3E %3Cpath fill='rgba(222,226,230, 1)' d='M 732 101 C 1134 101 1134 0 1536 0 L 1536 0 L 1536 0 L 732 0 Z' stroke-width='0'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
	transform: scaleY(-1);
	transform: rotate(187deg);
}

div#myCarousel {
	position: relative;
	overflow: hidden;
}

.header-heading {
	text-align: center;
}

/* Layout & Bento Grid */
.bento-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 32px;
}

.bento-card {
	position: relative;
	border-radius: var(--border-radius-lg);
	background: var(--white);
	overflow: hidden;
	transition: var(--transition-smooth);
	border: 1px solid rgba(0, 0, 0, 0.05);
	height: 100%;
}

.bento-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.bento-large {
	grid-column: span 8;
}

/* Navigation Refinement */
.navbar {
	padding: 1.5rem 2rem;
	transition: var(--transition-smooth);
	background: transparent;
	top: 41px;
	/* Precise height of Top Bar */
	z-index: 1000;
}

.navbar.scrolled {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	padding: 0.8rem 2rem;
	top: 0 !important;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-small {
	grid-column: span 4;
}

@media (max-width: 992px) {

	.bento-large,
	.bento-small {
		grid-column: span 12;
	}
}

/* Scroll Reveal */
.reveal-text {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-text.visible {
	opacity: 1;
	transform: translateY(0);
}

.watermark {
	position: absolute;
	font-size: 25vw;
	font-weight: 900;
	opacity: 0.03;
	color: var(--primary-navy);
	pointer-events: none;
	line-height: 1;
	z-index: 0;
	white-space: nowrap;
}

.carousel-item.active .carousel-caption {
	display: block;
	position: absolute;
	right: 15%;

	left: -2100px;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	color: #fff;
	text-align: center;

	-webkit-animation: slide 0.5s forwards;
	-webkit-animation-delay: 2s;
	animation: slide 0.5s forwards;
	animation-delay: 2s;
}

@-webkit-keyframes slide {
	100% {
		left: 15%;
	}
}

@keyframes slide {
	100% {
		left: 15%;
	}
}


.parallax {
	/* Set a fixed background image with a parallax effect */
	background-image: url('assets/images/promotion/2023-04-19.jpg');
	background-attachment: fixed;
	/* Ensures the background image is fixed while content scrolls */
	background-size: cover;
	/* Adjust the size to cover the entire section */
	background-position: center;
	/* Center the background image */
	height: 100vh;
	/* Set the height of the section */
	position: relative;
	/* Position the section relative to the rest of the page */
}

.parallax-content {
	position: absolute;
	/* Position the content absolutely within the section */
	top: 50%;
	/* Position the content in the center (vertically) */
	left: 50%;
	/* Position the content in the center (horizontally) */
	transform: translate(-50%, -50%);
	/* Adjust to ensure content is centered */
	color: #a1a1a1;
	/* Ensure text is readable against the background */
	text-align: center;
	/* Center text */
	background-color: #fff;
}


/* BUSINESS JOURNEY */
.journey-timeline {
	position: absolute;
	width: 60%;
	top: 0;
	left: 20%;
	right: auto;
	text-align: center;
	background-color: transparent;
	opacity: 1;
	padding: 20px;
	z-index: 2;
	color: #fff;
	border-bottom: 3px solid #fff;
}


.journey-timeline a {
	display: inline-block;

	text-decoration: none;
	color: #333;
	padding: 10px;
	transition: color 0.3s;

}


.journey-timeline a:hover {
	color: #fff;
}

#journeyCarousel.carousel-indicators {
	display: none;
}

#journeyCarousel>.carousel-inner {
	height: 72vh;
}

.journey-timeline a.active {

	color: #fff;
	font-weight: bold;
	text-shadow: 1px 2px #212529;
}

.journey-timeline .active::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	bottom: -7px;
	margin-left: 13px;
}

#journeyCarousel>.carousel-inner>.carousel-item img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 65vh;
}


.w3-container {
	padding: 0.01em 16px
}

.w3-container:after,
.w3-container:before {
	content: "";
	display: table;
	clear: both
}

.w3-center .w3-bar {
	display: inline-block;
	width: auto
}

.w3-center {
	text-align: center !important
}

.w3-animate-bottom {
	position: absolute;
	bottom: 100px;
	left: 35%;
	right: auto;
	width: 30%;
	animation: animatebottom 0.8s
}

@keyframes animatebottom {
	from {
		bottom: -100px;
		opacity: 0
	}

	to {
		bottom: 100px;
		opacity: 1
	}
}

footer {
	background-color: var(--primary-navy);
	color: var(--white);
	padding: 80px 0 40px;
}

.footer-logo {
	filter: brightness(0) invert(1);
	margin-bottom: 2rem;
}

.footer-heading {
	color: var(--accent-gold);
	font-weight: 800;
	letter-spacing: 2px;
	margin-bottom: 2rem;
	text-transform: uppercase;
	font-size: 0.85rem;
}

.footer-link {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: var(--transition-smooth);
	display: block;
	margin-bottom: 12px;
	font-size: 0.95rem;
}

.footer-link:hover {
	color: var(--accent-gold);
	transform: translateX(5px);
}

.copyright-section {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	margin-top: 60px;
	padding-top: 30px;
}

.copyright-text {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.85rem;
	letter-spacing: 0.5px;
}


div#realEstate::after {
	content: "";
	position: absolute;
	bottom: -118px;
	left: -50%;
	width: 200%;
	height: 55%;
	background-color: transparent;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 1503 200' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath fill='rgba(221, 221, 221, 1)' d='M 0 186 C 366.5 186 366.5 101 733 101 L 733 101 L 733 0 L 0 0 Z' stroke-width='0'%3E%3C/path%3E %3Cpath fill='rgba(221,221,221, 1)' d='M 732 101 C 1134 101 1134 0 1536 0 L 1536 0 L 1536 0 L 732 0 Z' stroke-width='0'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
	transform: scaleY(-1);
	transform: rotate(187deg);
}