@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--icon-color: #322fc5;
	--icon-bg: #e9effe;
	--accent: #ff914d;
	--card-radius: 12px;
	--gap: 20px;
	--main-color: #1c2ac4;
}
body {
	font-family: "Rubik", Helvetica, sans-serif;
}

/* ===== HEADER ===== */
header {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 2000;
	background: linear-gradient(
			rgba(14, 13, 13, 0.45),
			rgba(0, 0, 0, 0.25),
			transparent
		)
		rgb(84, 47, 229);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 80px;
	backdrop-filter: blur(10px);
	transition: box-shadow 0.3s ease;
}
header.scrolled {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* ===== LOGO ===== */
.logo img {
	height: 35px;
	width: auto;
}

/* ===== DESKTOP NAVIGATION ===== */
nav.desktop-links {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-left: auto;
	margin-right: 20px;
}
nav.desktop-links a {
	color: white;
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	line-height: 17px;
	transition: opacity 0.3s ease;
}
nav.desktop-links a:hover {
	opacity: 0.8;
}
.desktop-links span {
	font-weight: 500;
	font-size: 12px;
	color: #fff;
	padding: 3px 8px;
	background-color: red;
	border-radius: 4px;
}
.mobile-post sup {
	font-size: 10px;
	color: #fff;
	background-color: var(--icon-color);
	padding: 3px 5px;
}

/* ===== DROPDOWN (DESKTOP) ===== */
.dropdown {
	position: relative;
}
.dropdown-toggle {
	cursor: pointer;
}
.dropdown-toggle i.fa-caret-down {
	transition: transform 0.3s ease;
}
.dropdown.active .fa-caret-down {
	transform: rotate(180deg);
}
.dropdown-menu {
	position: absolute;
	top: 110%;
	left: 0;
	background: #5539cb;
	border-radius: 10px;
	padding: 10px 0;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: all 0.35s ease;
	z-index: 2100;
	margin-top: 12px;
	width: 180px;
}
.dropdown.active .dropdown-menu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.dropdown-menu a {
	color: #fff;
	padding: 10px 18px;
	display: block;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.3s ease, padding-left 0.3s ease;
}
.dropdown-menu a:hover {
	background: rgba(255, 255, 255, 0.15);
	padding-left: 22px;
}

/* ===== BUTTONS ===== */
.btn {
	background: rgba(255, 255, 255, 0.2);
	padding: 6px 14px;
	border-radius: 8px;
	font-weight: 600;
	color: white;
	text-decoration: none;
	transition: background 0.3s;
}
.btn:hover {
	background: rgba(255, 255, 255, 0.35);
}

/* ===== PROFILE MENU ===== */
.profile-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border-radius: 50px;
	padding: 4px 10px;
	gap: 8px;
	cursor: pointer;
	z-index: 2200;
	position: relative;
}
.profile-menu span {
	font-size: 18px;
	color: var(--icon-color);
}
.avatar {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--icon-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
}

/* ===== SIDEBAR & OVERLAY ===== */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	z-index: 2500;
}
.overlay.active {
	opacity: 1;
	visibility: visible;
}
.sidebar {
	position: fixed;
	top: 0;
	right: -280px;
	width: 260px;
	height: 100%;
	background: #fff;
	box-shadow: -2px 0 6px rgba(0, 0, 0, 0.2);
	transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	z-index: 2600;
}
.sidebar.active {
	right: 0;
}
.sidebar h2 {
	font-size: 18px;
	color: #463379;
	margin-bottom: 10px;
}
.sidebar-person {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sidebar-person img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #463379;
}

.sidebar-person h2 {
	font-size: 17px;
	color: #463379;
	margin: 0;
	font-weight: 600;
}

.login-btn {
	background: linear-gradient(
			rgba(0, 0, 0, 0.45),
			rgba(0, 0, 0, 0.25),
			transparent
		)
		rgb(94, 63, 224);
	color: white;
	padding: 10px;
	text-align: center;
	border-radius: 6px;
	font-weight: bold;
	text-decoration: none;
	transition: background 0.3s;
}
.login-btn:hover {
	background: #463379;
}
.close-btn {
	align-self: flex-end;
	font-size: 22px;
	cursor: pointer;
	color: #333;
}
.sidebar nav {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.desktop-menu {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.desktop-menu a {
	color: #463379;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
}
.desktop-only {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: -5px;
}
.desktop-only a {
	color: #463379;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
}
desktop-only a {
	display: none;
}

.sidebar nav a {
	color: #463379;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* ===== MOBILE DROPDOWN ===== */
.mobile-dropdown {
	display: flex;
	flex-direction: column;
}
.mobile-dropdown button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: none;
	border: none;
	color: #463379;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
}
.mobile-dropdown button .dropdown-label {
	display: flex;
	align-items: center;
	gap: 10px;
}
.mobile-dropdown button i.fa-caret-down {
	transition: transform 0.3s ease;
}
.mobile-dropdown.active button i.fa-caret-down {
	transform: rotate(180deg);
}
.mobile-dropdown-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.4s ease;
	background: #f2f2f2;
	border-radius: 6px;
	margin-top: 5px;
	opacity: 0;
}
.mobile-dropdown.active .mobile-dropdown-content {
	max-height: 200px;
	opacity: 1;
}
.mobile-dropdown-content a {
	display: block;
	padding: 10px 15px;
	color: #463379;
	text-decoration: none;
	font-size: 14px;
	transition: background 0.3s;
}
.mobile-dropdown-content a:hover {
	background: #ddd;
}
/* Hide desktop-only section on mobile */
@media (max-width: 768px) {
	.desktop-only {
		display: none;
	}
}

/* Show desktop-only section on desktop */
@media (min-width: 769px) {
	.desktop-only {
		display: flex;
	}
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
	header {
		padding: 12px 15px;
		justify-content: space-between;
	}
	.logo img {
		height: 25px;
		margin-top: 6px;
	}
	nav.desktop-links {
		display: none;
	}
	.mobile-post {
		display: inline-block;
		font-size: 12px;
		padding: 6px 12px;
		background: rgba(255, 255, 255, 0.25);
		border-radius: 8px;
		color: white;
		text-decoration: none;
	}
}
@media (min-width: 769px) {
	.mobile-post {
		display: none;
	}
	.sidebar nav {
		display: none;
	}
}

/* ===== BODY SPACING ===== */
main {
	margin-top: 110px;
	padding: 20px;
}

/*-----home banner section start-----*/
/* Banner Section */
/* ==============================
   BANNER STYLES
============================== */
/*background: url("../images/vd.png") no-repeat center/cover; */
.banner {
	position: relative;
	width: 100%;
	min-height: 75vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	overflow: hidden;
	text-align: center;
	position: relative;
}

.overlay {
	/* position: absolute; */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
}

.banner-content {
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 700px;
	color: white;
	margin-top: 150px;
}

.banner-content h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.banner-content p {
	margin-bottom: 20px;
	font-size: 1.1rem;
}

/* ==============================
   TABS STYLES
============================== */
/* ==============================
   TABS CONTAINER
============================== */
.tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 2px;
	background-image: linear-gradient(
		rgba(0, 0, 0, 0.235),
		rgba(59, 59, 59, 0.482),
		transparent
	);
	justify-content: flex-start;
	padding: 10px 2px;
	border-radius: 8px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Hide scrollbar (Firefox) */
	white-space: nowrap;
	width: 110%; /* Fixed from 120% for better responsiveness */
	box-sizing: border-box;
}

.tabs::-webkit-scrollbar {
	display: none; /* Hide scrollbar (Chrome, Safari) */
}

/* ==============================
   TAB BUTTONS
============================== */
.tab-btn {
	background: transparent;
	color: hsla(0, 0%, 100%, 0.8);
	border: none;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 18px;
	border-radius: 4px;
	cursor: pointer;
	transition: color 0.2s ease-in-out;
	position: relative;
	text-transform: uppercase;
	flex-shrink: 0;
}

.tab-btn:hover {
	color: #fff;
}

.tab-btn.active {
	color: #fff;
	font-weight: 700;
}

.tab-btn.active::after {
	content: "";
	position: absolute;
	bottom: 4px;
	left: 50%;
	transform: translateX(-50%);
	width: 25px;
	height: 2px;
	background-color: #fff;
	border-radius: 2px;
}

/* ==============================
   SEARCH BOX
============================== */
.search-box {
	background: #fff;
	border-radius: 50px;
	padding: 8px 12px;
	display: flex;
	align-items: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	width: 110%; /* Updated per request */
	max-width: none;
	box-sizing: border-box;
}

.search-box select {
	flex: 1;
	border: none;
	outline: none;
	font-size: 1rem;
	padding: 10px 40px 10px 15px;
	border-radius: 50px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: url("images/down.png") no-repeat right 15px center;
	background-size: 18px;
	cursor: pointer;
}
/* Make optgroup heading text blue */
.search-box select optgroup {
	color: #333;
	font-size: 17px; /* Blue color */
	font-weight: 700; /* Keep headings bold */
}

/* Optional: Make options normal color */
.search-box select optgroup option {
	color: #333;
	font-size: 16px; /* Normal text for cities */
	font-weight: 400;
}

.search-box button {
	background: #00d084;
	border: none;
	padding: 12px 25px;
	color: white;
	font-size: 1rem;
	border-radius: 50px;
	cursor: pointer;
	transition: 0.3s;
}

.search-box button:hover {
	background: #00b06f;
}

/* ==============================
   RESPONSIVE STYLES
============================== */
@media (max-width: 768px) {
	.banner {
		background: url("../images/3601910_67278\ \(1\).jpg") no-repeat center/cover;
	}

	.overlay {
		background: none;
	}

	.tabs {
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		display: flex;
		gap: 6px;
		padding: 10px 8px;
		width: 100%;
	}
	.search-box {
		width: 100%; /* Updated per request */
	}

	.tabs::-webkit-scrollbar {
		display: none;
	}

	.tab-btn {
		flex-shrink: 0;
		padding: 8px 14px;
		font-size: 13px;
	}
}

@media (max-width: 600px) {
	.banner {
		padding: 20px 15px;
		min-height: 80vh;
	}

	.banner-content {
		margin-top: 150px;
	}

	.banner-content h1 {
		font-size: 1.8rem;
	}

	.banner-content p {
		font-size: 1rem;
	}

	.search-box {
		flex-direction: column;
		border-radius: 15px;
	}

	.search-box select {
		width: 100%;
		margin-bottom: 10px;
		border-radius: 10px;
	}

	.search-box button {
		width: 100%;
		border-radius: 10px;
	}
}

@media (max-width: 400px) {
	.tab-btn {
		padding: 8px 10px;
		font-size: 12px;
	}
}

/* -----home banner section end----- */
.housing-section {
	max-width: 1200px;
	margin: auto;
	padding: 40px 20px;
}
.housing-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.housing-header h2 {
	font-size: 26px;
	margin: 0;
	font-weight: 700;
}

.housing-header p {
	margin: 5px 0 0;
	color: #666;
}

.explore-btn {
	border: 1px solid var(--icon-color);
	color: var(--icon-color);
	background: transparent;
	padding: 10px 18px;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.explore-btn:hover {
	background: var(--icon-color);
	color: #fff;
}

/* Desktop Grid */
.housing-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 15px;
	margin-bottom: 20px;
}

.card {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 8px 8px 16px 0 rgba(15, 15, 15, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.card-icon {
	font-size: 2rem; /* instead of width/height */
	margin-bottom: 15px;
	color: var(--icon-color);
	position: relative;
	z-index: 1;
}

/* Half Circle Background */
.icon-bg {
	position: absolute;
	top: -40px;
	left: -40px;
	width: 120px;
	height: 120px;
	background: var(--icon-bg);
	border-radius: 50%;
	z-index: 0;
}

.card-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 15px;
	fill: var(--icon-color);
	position: relative;
	z-index: 1;
}

.card h3 {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 700;
}

.card p {
	margin: 0;
	font-size: 14px;
	color: #666;
}

@media (max-width: 1920px) {
	.mobile-btn {
		display: none;
	}
	.housing-cards {
		grid-template-columns: repeat(6, 1fr);
	}
}

/* Mobile view */
@media (max-width: 768px) {
	.housing-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.housing-section {
		padding: 20px 10px;
		background: url("images/edgebackground.b67c854b.svg") no-repeat center/cover;
	}

	.housing-cards {
		display: flex;
		overflow-x: auto;
		gap: 12px;
		padding: 10px 0;
		scroll-snap-type: x mandatory;
		border-radius: 16px;
		-webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
	}
	.housing-cards::-webkit-scrollbar {
		display: none; /* hide scrollbar */
	}

	.card {
		scroll-snap-align: start;
		min-width: calc(50% - 12px); /* bigger cards on mobile */
		padding: 16px;
	}

	/* Shrink background circle */
	.icon-bg {
		width: 80px;
		height: 80px;
		top: -25px;
		left: -25px;
	}

	/* Shrink icon */
	.card-icon {
		width: 32px;
		height: 32px;
		margin-bottom: 8px;
	}

	/* Shrink text */
	.card h3 {
		font-size: 16px;
	}
	.card p {
		font-size: 13px;
	}

	/* Hide desktop button */
	.housing-header .explore-btn {
		display: none;
	}

	/* Show mobile button under cards */
	.mobile-btn {
		display: block;
		text-align: center;
		margin: 15px auto 0;
	}
}

/*---- slider section start-----*/

.slider-container {
	max-width: 1200px;
	margin: 20px auto;
	padding: 0 20px;
}

.slider-header {
	text-align: left;
	margin-bottom: 20px;
}

.slider-header h2 {
	font-size: 26px;
	margin: 0;
	color: #333;
}

.slider-header p {
	color: #666;
	margin: 5px 0 0;
}

.card-slider-wrapper {
	position: relative;
}

.card-slider {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none; /* Firefox */
}

.card-slider::-webkit-scrollbar {
	display: none; /* Chrome, Safari */
}

.card-show {
	position: relative; /* Required for ::after to position correctly */
	flex: 0 0 calc(48% - 20px); /* 2 cards on desktop */
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	border: 1px solid rgb(229, 229, 229);
	background-color: rgb(255, 255, 255);
	overflow: hidden;
	cursor: pointer;
}

/* Gradient overlay effect */
.card-slider::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 100%;
	pointer-events: none;
	background: linear-gradient(
		to left,
		rgba(255, 255, 255, 0.822),
		rgba(255, 255, 255, 0)
	);
	z-index: 2;
}

.card-show img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.card-content {
	padding: 15px;
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.card-header h3 {
	font-size: 18px;
	margin: 0;
	color: #222;
	flex: 1;
}

.price {
	font-weight: bold;
	font-size: 16px;
	color: #000;
	white-space: nowrap;
}

.card-content p {
	margin: 3px 0;
	font-size: 14px;
	color: #555;
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border: none;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.slider-btn.left {
	left: -20px;
}

.slider-btn.right {
	right: -20px;
}

/* Tablet/Mobile: 3 cards */
@media (max-width: 768px) {
	.card-show {
		flex: 0 0 calc(33.333% - 15px);
	}
	.card-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.price {
		margin: 5px 0 0;
	}
}

/* Extra small: 1 card */
@media (max-width: 480px) {
	.card-show {
		flex: 0 0 calc(100% - 60px); /* Fits exactly with gap */
	}
}

/*===============highlighted project section end=================*/
.slider-section {
	max-width: 1200px;
	margin: 50px auto;
	padding: 0 20px;
}

.slider-header-high {
	margin-bottom: 20px;
}

.slider-header-high h2 {
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

.slider-header-high p {
	color: #777;
	font-size: 14px;
	margin: 5px 0 0;
}

.slider-container-high {
	position: relative;
}

.card-slider {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none; /* Firefox */
}

.card-slider::-webkit-scrollbar {
	display: none; /* Chrome */
}

.card-high {
	flex: 0 0 calc(48% - 20px); /* show 2 cards on desktop */
	/* margin-right: 20px; */
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	cursor: pointer;
}

.card-high img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
}

.card-content-high {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* Title & Builder */
.card-text-top h3 {
	margin: 0;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

.card-text-top p {
	margin: 3px 0 0;
	font-size: 13px;
	color: #ccc;
}

/* Bottom Row: details left + price right */
.card-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: #ccc;
}

.card-bottom .details {
	margin-top: 15px;
	font-size: 14px;
	color: white;
	line-height: 1.3;
}

.card-bottom .price-high {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}

.slider-btn:hover {
	background: #f1f1f1;
}

/* Responsive */
@media (max-width: 768px) {
	.card-high {
		flex: 0 0 calc(100% - 60px); /* Fits exactly with gap */
	}
}

/*====================Trusted developers slider section start=================*/
/*==================== Main Slider Section ====================*/
.slider-section-devlop {
	max-width: 1200px;
	margin: 50px auto;
	padding: 0 20px;
}

.slider-header-devlop {
	margin-bottom: 25px;
}

.slider-header-devlop h2 {
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

.slider-header-devlop p {
	font-size: 15px;
	color: #666;
	margin-top: 8px;
}

.slider-container-devlop {
	position: relative;
	display: flex;
	align-items: center;
}

/* ✨ Gradient overlay effect on right edge */
.slider-container-devlop::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 100%;
	pointer-events: none;
	background: linear-gradient(
		to left,
		rgba(255, 255, 255, 0.822),
		rgba(255, 255, 255, 0)
	);
	z-index: 2;
}

.card-slider-devlop {
	display: flex;
	gap: 20px;
	overflow: hidden;
	scroll-behavior: smooth;
	width: 100%;
	padding: 5px; /* prevent edge clipping */
}

.card-devlop {
	flex: 0 0 calc(31.333% - 13.34px); /* 3 cards on desktop with equal spacing */
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	border: 1px solid rgb(229, 229, 229);
	cursor: pointer;
	position: relative;
}

.card-devlop:hover {
	transform: translateY(-5px);
}

.card-devlop img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.card-content-devlop {
	padding: 15px;
}

.card-text-top-devlop h3 {
	font-size: 18px;
	margin: 0 0 5px;
}

.card-text-top-devlop p {
	font-size: 14px;
	color: #777;
	margin: 0 0 10px;
}

.card-bottom-devlop {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.details-devlop {
	font-size: 14px;
	color: #555;
}

.price-devlop {
	font-size: 16px;
	font-weight: bold;
	color: #000;
}

.slider-btn-devlop {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
	z-index: 10;
}

.slider-btn-devlop:hover {
	background: #f1f1f1;
}

.slider-btn-devlop.left {
	left: -15px;
}

.slider-btn-devlop.right {
	right: -15px;
}

/* Tablet/Mobile: show 2 cards */
@media (max-width: 768px) {
	.card-devlop {
		flex: 0 0 calc(50% - 10px);
	}
	/* .slider-container-devlop::after {
  background: none;
  
} */

	.slider-btn-devlop {
		width: 40px;
		height: 40px;
	}

	.slider-btn-devlop.left {
		left: -10px;
	}

	.slider-btn-devlop.right {
		right: -10px;
	}
}

/* Very small screens: 1 card */
@media (max-width: 480px) {
	.card-devlop {
		flex: 0 0 calc(100% - 60px); /* Fits exactly with gap */
	}

	.slider-btn-devlop {
		width: 35px;
		height: 35px;
	}
}

/*==================== Featured Developers Section ====================*/
/* ===== FEATURED DEVELOPERS SECTION ===== */
/* ===== FEATURED DEVELOPMENT SECTION ===== */
.Feat_Develop-section {
	max-width: 1200px;
	margin: 50px auto;
	padding: 0 20px;
	overflow: hidden;
}
.Feat_Develop-header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.Feat_Develop-section h2 {
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

.Feat_Develop-section p {
	font-size: 15px;
	color: #666;
	margin: 8px 0 20px;
}

/* ===== SLIDER CONTAINER ===== */
.Feat_Develop-slider-container {
	position: relative;
	overflow: visible;
	padding: 0 2px;
}

/* ✨ Gradient overlay (right fade effect) */
.Feat_Develop-slider-container::after {
	content: "";
	position: absolute;
	top: 0;
	right: -20px;
	width: 80px;
	height: 100%;
	pointer-events: none;
	background: linear-gradient(
		to left,
		rgba(255, 255, 255, 0.822),
		rgba(255, 255, 255, 0)
	);
	z-index: 2;
}

.Feat_Develop-slider {
	display: flex;
	transition: transform 0.5s ease;
	gap: 20px;
	padding: 5px;
	align-items: stretch; /* Makes all cards same height */
}

/* ===== CARD STYLE ===== */
.Feat_Develop-card {
	flex: 0 0 calc(31.333% - 13.34px);
	box-sizing: border-box;
	background: #fff;
	border-radius: 8px;
	padding: 16px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	border: solid 1px #e6e6e6;
	border-top: solid 4px var(--icon-color, #007bff);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* ===== CARD HEADER ===== */
.Feat_Develop-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 70px;
}

.Feat_Develop-logo {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border: 1px solid #ddd;
	border-radius: 6px;
}

.Feat_Develop-info {
	flex: 1;
}

.Feat_Develop-info h3 {
	font-size: 16px;
	margin: 0;
	color: #222;
	line-height: 1.4;
	min-height: 40px; /* Ensures consistent title space */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.Feat_Develop-info p {
	font-size: 13px;
	opacity: 0.7;
	margin: 0;
}

/* ===== DESCRIPTION ===== */
.Feat_Develop-desc {
	font-size: 14px;
	opacity: 0.7;
	margin: 10px 0;
	height: 60px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* Limit lines */
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	flex-grow: 1;
}

/* ===== PROJECT TABS ===== */
.Feat_Develop-tabs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.Feat_Develop-tab {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px 8px;
	font-size: 14px;
	font-weight: 500;
	border-bottom: 2px solid transparent;
	transition: 0.3s;
}

.Feat_Develop-tab.active {
	border-color: var(--icon-color, #007bff);
	color: var(--icon-color, #007bff);
	font-weight: 500;
}

/* ===== IMAGE BOX ===== */
.Feat_Develop-image-box {
	margin-top: 10px;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	flex-shrink: 0;
}

.Feat_Develop-main-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
	opacity: 1;
	transition: opacity 0.6s ease;
}

.Feat_Develop-fade-out {
	opacity: 0;
}

/* ===== PROJECT INFO ===== */
.Feat_Develop-project-info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px 15px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
	color: #fff;
	font-size: 14px;
	border-radius: 0 0 8px 8px;
}

.Feat_Develop-project-info strong {
	display: block;
	font-size: 15px;
	margin-bottom: 3px;
}

.Feat_Develop-project-info span {
	display: block;
	font-size: 15px;
	opacity: 0.9;
	margin-bottom: 5px;
}

/* ===== SLIDER BUTTONS ===== */
.slider-btn-develop {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border: none;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	transition: 0.3s;
	z-index: 5;
}

.slider-btn-develop:hover {
	background: var(--icon-color, #007bff);
	color: #fff;
}

.slider-btn-develop.left {
	left: -20px;
}

.slider-btn-develop.right {
	right: -20px;
}
.slider-btn-Featured {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
	z-index: 10;
}

.slider-btn-Featured:hover {
	background: #f1f1f1;
}

.slider-btn-Featured.left {
	left: -15px;
}

.slider-btn-Featured.right {
	right: -15px;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.Feat_Develop-card {
		flex: 0 0 85%;
	}

	.Feat_Develop-slider {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 15px;
		scroll-behavior: smooth;
		padding-bottom: 10px;
	}

	.Feat_Develop-card {
		scroll-snap-align: start;
	}

	.Feat_Develop-slider::-webkit-scrollbar {
		display: none;
	}

	.Feat_Develop-slider {
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.slider-btn-develop {
		width: 36px;
		height: 36px;
	}
}

/*==================plans card section code start====================*/
.pricing-section {
	text-align: center;
	padding: 40px 20px;
	max-width: 1200px;
	margin: auto;
}

.pricing-section h2 {
	font-size: 1.8rem;
	margin-bottom: 15px;
	font-weight: 600;
}

.pricing-section p {
	color: #555;
	margin-bottom: 30px;
}

/* ========= Tabs ========= */
.plan-tabs {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.plan-toggle {
	background: #f1f1f1;
	border: none;
	padding: 10px 25px;
	border-radius: 30px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.plan-toggle.active {
	background: var(--main-color);
	color: white;
	box-shadow: 0 4px 12px rgba(98, 83, 189, 0.3);
}

/* ========= Plan Cards ========= */
/* === Scoped Styles === */
.plan-view {
	max-width: 1200px;
	width: 100%;
	margin: 30px auto;
	padding: 10px 20px;
}

.plan-view .plans-heading {
	font-size: 24px;
	font-weight: 600;
	color: rgb(51, 51, 51);
	margin-bottom: 10px;
}

.plan-view .plans-subheading {
	font-size: 16px;
	color: #666;
	margin-bottom: 40px;
}

/* === Grid layout === */
.plan-view .plans-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	justify-content: center;
}

/* === Card Styles === */
.plan-view .plan-card {
	position: relative;
	color: #fff;
	border-radius: 20px;
	overflow: hidden;
	height: 280px;
	display: flex;
	flex-direction: column;
	background-size: cover;
	background-position: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-view .plan-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.486);
	z-index: 1;
}

.plan-view .plan-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* === Card Content === */
.plan-view .card-body {
	position: relative;
	z-index: 2;
	padding: 40px 20px 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	text-align: center;
}

.plan-view .plan-title {
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.plan-view .plan-desc {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 10px; /* was 70px */
	line-height: 1.3; /* slightly tighter text spacing */
	padding: 0 2px; /* was 0 5px → reduced horizontal padding */
	margin: 0;
}

.plan-view h4 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0;
}

.plan-view p {
	font-size: 1rem;
	margin: 0;
}

/* === Fixed Button Position === */
.plan-view .plan-footer {
	margin-top: auto;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-top: 20px;
}

.plan-view button {
	background: #5338c6;
	border: none;
	padding: 10px 25px;
	color: #fff;
	border-radius: 10px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.plan-view button:hover {
	background: #5338c6;
}

/* === Responsive === */
@media (max-width: 1200px) {
	.plan-view .plans-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.plan-view .plans-container {
		grid-template-columns: repeat(2, 1fr);
	}
	.plan-view .plan-card {
		height: 280px;
	}
}

@media (max-width: 500px) {
	.plan-view .plans-container {
		grid-template-columns: 1fr;
	}
	.plan-view .plan-card {
		height: 230px;
	}
	.plan-view h4 {
		font-size: 1.4rem;
	}
	.plan-view button {
		padding: 8px 18px;
		font-size: 0.9rem;
	}
}

/*======================News and Articles code start=================*/
.news-section {
	max-width: 1200px;
	margin: 20px auto;
	padding: 30px 20px;
	position: relative;
	overflow: hidden;
}

/* Header */
.news-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.news-header h2 {
	font-size: 24px;
	font-weight: 600;
	margin: 0px;
}

.news-header p {
	font-size: 15px;
	color: #666;
	margin: 8px 0 20px;
}

/* SLIDER */
.news-slider {
	position: relative;
	margin-top: 30px;
}

/* ✨ Gradient overlay (right fade effect) */
.news-slider::after {
	content: "";
	position: absolute;
	top: 0;
	right: -20px;
	width: 80px;
	height: 100%;
	pointer-events: none;
	background: linear-gradient(
		to left,
		rgba(255, 255, 255, 0.822),
		rgba(255, 255, 255, 0)
	);
	z-index: 2;
}

.news-cards {
	display: flex;
	gap: 20px;
	transition: transform 0.5s ease;
	will-change: transform;
	cursor: grab;
}

.news-cards:active {
	cursor: grabbing;
}

.news-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: 1px solid rgb(229, 229, 229);
	overflow: hidden;
	flex: 0 0 calc((95% - 40px) / 3);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease;
}

.news-card:hover {
	transform: translateY(-5px);
}

.news-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.news-card-content {
	padding: 15px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.news-card h3 {
	font-size: 1rem;
	margin: 0 0 10px;
	line-height: 1.4;
	min-height: 48px;
}

.news-card p {
	font-size: 0.9rem;
	color: #555;
	margin: 0 0 15px;
	flex-grow: 1;
}

.news-meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	color: #777;
	border-top: 1px solid #eee;
	padding-top: 10px;
}

.prev {
	left: -20px;
}

.next {
	right: -20px;
}

/* Responsive */
@media (max-width: 992px) {
	.news-card {
		flex: 0 0 calc((100% - 20px) / 2);
	}
	.explore-btn {
		display: none;
	}
	/* .news-slider::after {
  background: none; 
} */
}

@media (max-width: 600px) {
	.news-card {
		flex: 0 0 90%;
	}

	.slider-btn {
		width: 40px;
		height: 40px;
	}

	.mobile-btn {
		display: block;
		margin: 20px auto 0;
	}
}

/*======================seller properties code start=================*/
.sell-section {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 10px 20px;
}

.sell-section h2 {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin-bottom: 25px;
}

/* Default Desktop Design */
.sell-box {
	position: relative;
	background: url("../images/property-img.png") no-repeat center / cover;
	background-position: cover;
	border: 1px solid #e6dddd;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	padding: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
	min-height: 90px;
	overflow: hidden;
}

.sell-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.sell-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.sell-content p {
	font-size: 18px;
	color: #111;
	margin-bottom: 20px;
}

.sell-content a {
	display: inline-block;
	text-decoration: none;
	background: transparent;
	color: var(--icon-color, #7b2ff7);
	border: 1px solid var(--icon-color, #7b2ff7);
	padding: 12px 25px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	transition: 0.3s;
}

.sell-content a:hover {
	background: var(--icon-color, #7b2ff7);
	color: #fff;
}

/* Hide the image on desktop */
.sell-image {
	display: none;
}

/* ✅ Mobile Layout */
@media (max-width: 1020px) {
	.sell-box {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		background: #f9f9ff;
		border: 1px solid #e6dddd;
		border-radius: 12px;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
		padding: 25px 20px;
		background-image: none; /* remove bg image */
	}

	.sell-content {
		flex: 1;
		text-align: left;
	}

	.sell-content p {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.sell-content a {
		font-size: 14px;
		padding: 10px 20px;
	}

	/* ✅ Show the image only on mobile */
	.sell-image {
		display: block;
		flex: 0 0 100px;
		margin-left: 15px;
	}

	.sell-image img {
		width: 120%;
		height: auto;
		object-fit: contain;
	}
}

/*======================Newly added properties=================*/
.properties-section {
	max-width: 1200px;
	margin: 50px auto;
	padding: 0 20px;
}
.section-header h2 {
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

.section-header p {
	font-size: 16px;
	color: #666;
	margin: 8px 0 20px;
}

.slider-container-new {
	position: relative;
	overflow: visible;
	padding: 0 2px;
}

/* Show 3 full cards + a peek of the 4th */
.slider {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding-right: 40px; /* space for right fade */
	scroll-snap-type: x mandatory;
	scroll-padding: 20px;
}

.property-card {
	min-width: calc((100% - 60px) / 3); /* 3 visible cards */
	flex-shrink: 0;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: 1px solid rgb(229, 229, 229);
	overflow: hidden;
	transition: transform 0.3s;
	scroll-snap-align: start;
	cursor: pointer;
}

.property-card:hover {
	transform: translateY(-5px);
}
/* Shadow effect on right side */
.slider-container-new::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 100%;
	pointer-events: none;
	background: linear-gradient(
		to left,
		rgba(255, 255, 255, 1),
		rgba(255, 255, 255, 0)
	);
	z-index: 2;
}

/* Hide scrollbar */
.slider::-webkit-scrollbar {
	display: none;
}

.property-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.property-info {
	padding: 15px;
}

.property-info h3 {
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.property-info p {
	font-size: 0.9rem;
	color: #666;
}

.property-info h4 {
	margin: 10px 0;
	font-weight: 600;
}

.contact-btn {
	border: 1px solid var(--icon-color);
	color: var(--icon-color);
	background: transparent;
	padding: 10px 18px;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.contact-btn:hover {
	background: var(--icon-color);
	color: #fff;
}

.slider-btn.right {
	right: 0;
}

/* Responsive behavior */
@media (max-width: 992px) {
	.property-card {
		min-width: calc((100% - 30px) / 2); /* show 2 cards on tablets */
	}
}

@media (max-width: 600px) {
	.property-card {
		min-width: 90%; /* show 1 card with peek */
	}

	.slider-container-new::after {
		width: 50px;
	}
	.slider-btn.right {
		right: -15px;
	}
}

/*======================Recommended sellers start=================*/

/* --- TEXT STYLES --- */
.section-heading-seller {
	font-size: 24px;
	color: #333;
	margin-bottom: 5px;
	margin: 0;
}

.section-subtitle-seller {
	color: #777;
	font-size: 15px;
	margin-bottom: 25px;
}

/* --- MAIN SECTION --- */
.slider-section-seller {
	background: #fff;
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
	position: relative;
}

/* HEADER WITH BUTTON */
.seller-header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.slider-wrapper-seller {
	position: relative;
	padding: 0 2px;
}

/* Gradient Fade */
.slider-wrapper-seller::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 100%;
	pointer-events: none;
	background: linear-gradient(
		to left,
		rgba(255, 255, 255, 0.822),
		rgba(255, 255, 255, 0)
	);
	z-index: 2;
}

/* SLIDER */
.slider-seller {
	display: flex;
	gap: var(--gap);
	scroll-behavior: smooth;
	overflow-x: auto;
	scrollbar-width: none;
}

.slider-seller::-webkit-scrollbar {
	display: none;
}

.slider-seller + .slider-seller {
	margin-top: 20px;
}

/* CARD */
.card-seller {
	background: #fff;
	border: 1px solid #ffb184;
	border-radius: var(--card-radius);
	flex: 0 0 30%;
	min-width: 320px;
	padding: 16px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
	cursor: pointer;
}

.seller-header-seller {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.seller-header-seller img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.seller-name-seller {
	font-weight: 600;
	font-size: 16px;
	color: #222;
	margin-bottom: 3px;
}

.badge-seller {
	display: inline-block;
	background: var(--accent);
	color: #fff;
	font-size: 12px;
	padding: 3px 8px;
	border-radius: 4px;
	margin-top: 2px;
}

.location-seller {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.location-seller ul {
	list-style: none;
	margin: 0;
	padding: 5px 10px;
	background: #ffe7de;
	border-radius: 6px;
	color: #666;
	font-size: 13px;
	display: inline-block;
}

.stats-seller {
	color: #444;
	font-size: 14px;
	margin-top: 8px;
}

/* ARROWS */
.arrow-seller {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border: 1px solid #ddd;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
}

.arrow-seller:hover {
	background: #f5f5f5;
	transform: translateY(-50%) scale(1.05);
}

.arrow-left-seller {
	left: -15px;
}

.arrow-right-seller {
	right: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
	.card-seller {
		flex: 0 0 45%;
	}
}

@media (max-width: 600px) {
	.card-seller {
		flex: 0 0 calc(100% - 60px);
		min-width: 260px;
	}
	.arrow-seller {
		width: 32px;
		height: 32px;
		font-size: 15px;
	}
}

/*======================footer section start=================*/
.footer {
	background-color: #1c1c1c;
	padding: 40px 20px;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1000px;
	margin: auto;
	gap: 30px;
}

/* Left section */
.footer-left {
	flex: 1 1 180px;
}

.footer-logo img {
	width: 180px;
	margin-bottom: 20px;
}

.footer-social h4 {
	margin-top: 20px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	color: #fff;
}

.social-icons {
	margin-top: 10px;
}

.social-icons a {
	color: #ccc;
	font-size: 20px;
	margin-right: 15px;
	transition: color 0.3s;
}

.social-icons a:hover {
	color: #fff;
}

/* Columns */
.footer-columns {
	display: flex;
	flex: 2 1 100px;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-col h4 {
	font-size: 14px;
	letter-spacing: 1px;
	margin-bottom: 15px;
	color: #fff;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 8px;
	position: relative;
}

.footer-col ul li a {
	text-decoration: none;
	color: #bbb;
	font-size: 14px;
	transition: color 0.3s;
}

.footer-col ul li a:hover {
	color: #fff;
}

/* Submenu */
.footer-submenu {
	list-style: none;
	padding-left: 15px;
	margin-top: 8px;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-5px);
	transition: all 0.4s ease;
}

.footer-submenu li {
	margin-bottom: 6px;
}

.footer-submenu a {
	font-size: 13px;
	color: #aaa;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-submenu a:hover {
	color: #fff;
}

/* Arrow styling + animation */
.arrow {
	font-size: 12px;
	margin-left: 6px;
	display: inline-block;
	transition: transform 0.3s ease;
}

.submenu-open .arrow {
	transform: rotate(90deg);
}

.submenu-open .footer-submenu {
	max-height: 100px;
	opacity: 1;
	transform: translateY(0);
}

/* Bottom */
.footer-bottom {
	text-align: center;
	max-width: 1200px;
	margin: 20px auto 0;
	font-size: 13px;
	color: #888;
	border-top: 1px solid #222;
	padding-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		gap: 0px;
	}

	.footer-columns {
		flex-direction: column;
	}

	.footer-bottom {
		text-align: center;
	}
}

/*======================footer tabs section start=================*/

.tab-container {
	width: 100%;
	background-color: #1c1c1c;
	border-bottom: 1px solid #333;
	color: #fff;
	font-family: Arial, sans-serif;
	overflow: hidden;
}

/* ====== TAB HEADER ====== */
.tab-header {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #333;
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
	cursor: grab;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	user-select: none;
}

.tab-header::-webkit-scrollbar {
	display: none;
}

.tab-header.dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.tab-header button {
	flex: 0 0 auto;
	padding: 16px 20px;
	background: transparent;
	color: #bbb;
	border: none;
	cursor: pointer;
	font-size: 16px;
	white-space: nowrap;
	letter-spacing: 0.5px;
	transition: color 0.3s ease, border-bottom 0.3s ease;
}

.tab-header button.active {
	color: #fff;
	border-bottom: 2px solid #fff;
}

.tab-header button:hover {
	color: #fff;
}

/* ====== TAB CONTENT ====== */
.tab-content {
	display: none;
	padding: 30px 20px;
	background-color: #1c1c1c;
	animation: fadeIn 0.3s ease;
}

.tab-content.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tab-content h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
}

.tab-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
}

.tab-columns ul {
	list-style: none;
	padding: 0;
}

.tab-columns ul li {
	margin-bottom: 10px;
}

.tab-columns ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tab-columns ul li a:hover {
	color: #fff;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
	.tab-header {
		overflow-x: auto;
		white-space: nowrap;
		scroll-snap-type: x mandatory;
	}

	.tab-header button {
		flex: 0 0 auto;
		scroll-snap-align: start;
		padding: 14px 16px;
		font-size: 15px;
	}

	.tab-content {
		padding: 20px;
	}

	.tab-columns {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.tab-columns {
		grid-template-columns: 1fr;
	}

	.tab-content h3 {
		font-size: 18px;
	}
}

/*======================top picks section end=================*/

.top-picks {
	max-width: 1200px;
	margin: 10px auto;
	padding: 10px 20px;
	position: relative;
}
.top-picks h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 5px;
}
.top-picks p {
	color: #777;
	margin-bottom: 25px;
}

/* Arrows */
.top-picks .slider-arrow {
	position: absolute;
	top: 65%;
	transform: translateY(-50%);
	background: #fff;
	color: #000;
	border: none;
	border-radius: 50%;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 20px;
	transition: background 0.3s ease;
	z-index: 5;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.top-picks .slider-arrow:hover {
	background: #fcf8f8;
}
.top-picks .slider-arrow.left {
	left: -1px;
}
.top-picks .slider-arrow.right {
	right: -1px;
}

/* Card Slider */
.top-picks .card-slider {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding-bottom: 10px;
	scroll-snap-type: x mandatory;
}
.top-picks .card-slider::-webkit-scrollbar {
	display: none;
}

/* Each Card Wrapper */
.top-picks .card-wrapper {
	min-width: 90%;
	scroll-snap-align: start;
}
.top-picks .card-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 100%;
	pointer-events: none;
	background: linear-gradient(
		to left,
		rgba(255, 255, 255, 0.495),
		rgba(255, 255, 255, 0)
	);
	z-index: 2;
}

/* Thumbnail bar */
.top-picks .thumbnail-bar {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scrollbar-width: none;
	padding: 10px;
	margin-bottom: 15px;
}
.top-picks .thumbnail-bar::-webkit-scrollbar {
	display: none;
}

.top-picks .thumb {
	flex-shrink: 0;
	cursor: pointer;
	border-radius: 10px;
	overflow: hidden;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}
.top-picks .thumb.active {
	border-color: #7c3aed;
	transform: scale(1.05);
}
.top-picks .thumb img {
	width: 110px;
	height: 80px;
	object-fit: cover;
}

/* Card */
.top-picks .card {
	display: flex;
	flex-wrap: wrap;
	background: linear-gradient(135deg, #b9b9ed, #f2b4b9);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	border: 1px solid #e6e6e6;
	transition: all 0.3s ease;
	padding: 20px; /* 🟢 Added padding inside the card */
	gap: 20px; /* 🟢 Adds space between image & info */
}
.top-picks .card:hover {
	transform: translateY(-4px);
}

/* Image Section */
.top-picks .card-image {
	flex: 0.7;
	min-width: 220px;
	border-radius: 15px;
	overflow: hidden;
}

.top-picks .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Info */
.top-picks .card-info {
	flex: 0.3;
	padding: 10px 15px; /* 🟢 Softer inner padding */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.top-picks .card-info h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 4px;
}
.top-picks .card-info a {
	font-size: 0.85rem;
	color: #463aed;
	text-decoration: underline;
	margin-bottom: 10px;
	display: inline-block;
}
.top-picks .property-name,
.top-picks,
.top-picks .details {
	margin-top: 20px;
}
.top-picks .builder {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}
.top-picks .builder img {
	width: 55px;
	height: 55px;
	border-radius: 12px;
	background: #fff;
	object-fit: cover;
}
.top-picks .builder-text h3 {
	font-size: 1rem;
	font-weight: 600;
}
.top-picks .builder-text a {
	font-size: 0.85rem;
	color: #463aed;
	text-decoration: underline;
}
.top-picks .property-name {
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 5px;
}
.top-picks .property-location {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 10px;
}
.top-picks .price {
	font-size: 1.2rem;
	font-weight: 700;
	margin-top: 20px;
}
.top-picks .details {
	font-size: 0.9rem;
	color: #555;
	margin-top: 4px;
}
.top-picks .contact-btn {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 10px;
	background: var(--icon-color);
	color: white;
	font-weight: 600;
	margin-top: 25px;
	cursor: pointer;
	transition: background 0.3s;
}
.top-picks .contact-btn:hover {
	background: #5b21b6;
}

/* Responsive */
@media (max-width: 992px) {
	.top-picks .card {
		flex-direction: column;
	}
	.top-picks .card-wrapper {
		min-width: 100%;
	}
	.top-picks .card-wrapper::after {
		background: none;
	}

	.top-picks .card-image {
		order: 1;
	}
	.top-picks .card-info {
		order: 2;
		padding: 20px;
	}
	.top-picks .card-image img {
		height: 260px;
	}
	.top-picks .slider-arrow.left {
		left: 1px;
	}
	.top-picks .slider-arrow.right {
		right: 1px;
	}
}

/* Footer Bar Container */

/* Footer Bar */
/* Footerbar Styles */
.footerbar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 55px;
	border-top-left-radius: 18px;
	border-top-right-radius: 18px;
	z-index: 100;
}

.footerbar-item {
	flex: 1;
	text-align: center;
	color: #777;
	font-size: 12px;
	text-decoration: none;
	cursor: pointer;
}

.footerbar-item i {
	display: block;
	font-size: 18px;
	margin-bottom: 4px;
}

.footerbar-item.active {
	color: #007bff;
	font-weight: 600;
}

/* Center Button */
.footerbar-center {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.footerbar-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #007bff;
	border: none;
	color: #fff;
	font-size: 26px;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.footerbar-text {
	margin-top: 5px;
	font-size: 12px;
	color: #777;
	text-align: center;
	margin-top: 21px;
}

.footerbar-center-wrap {
	width: 80px;
	text-align: center;
}

/* Hide on desktop */
@media (min-width: 768px) {
	.footerbar {
		display: none;
	}
}

.btn-login {
	display: inline-block;
	padding: 10px 26px;
	background: linear-gradient(135deg, #4a00e0, #8e2de2);
	color: #fff;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-login:hover {
	background: linear-gradient(135deg, #6a00f0, #a32df5);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
