/* ===== CSS Variables ===== */
:root {
	--gold: #D8C49B;
	--gold-light: #e2c97e;
	--gold-dark: #a07830;
	--black: #0a0a0a;
	--dark: #111111;
	--dark-2: #1a1a1a;
	--dark-3: #222222;
	--white: #ffffff;
	--off-white: #f5f0e8;
	--gray: #888888;
	--light-gray: #cccccc;
	--font-heading: 'Cormorant Garamond', serif;
	--font-body: 'Montserrat', sans-serif;
	--transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--shadow-gold: 0 0 30px rgba(201, 168, 76, 0.2);
}


html {
	scroll-behavior: smooth !important;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {

	background-color: #fff;
	color: var(--white);
	overflow-x: hidden;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--dark);
}

.pt-100 {
	padding-top: 100px !important;
}

.mt-50 {
	margin-top: 50px;
}

::-webkit-scrollbar-thumb {
	background: var(--gold);
	border-radius: 3px;
}

/* Heading */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: weight;
	font-style: normal;
}

/* Paragraph */
p {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: weight;
	font-style: normal;
	font-size: 18px !important;
}


/* common css start */
/* .container {
  max-width: 82%;
} */

a {
	text-decoration: none;
}

li {
	list-style: none;
}

#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 99999;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Spinner visible banane ke liye strong color */
.spinner {
	width: 60px;
	height: 60px;
	border: 6px solid #c1a36b;
	/* gold */
	border-top: 6px solid #ffffff;
	/* white highlight */
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Body scroll bhi band karo jab tak load ho */
body.loading {
	overflow: hidden;
}

#loader.fade-out {
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease;
}

/* common css end */


/* header css */


.nav-link.active {
	background-color: #c1a36b;
	color: var(--gold) !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
	color: #D8C49B;
	background-color: #36322a;
	width: 100%;
	/* height: 67px; */
	padding: 25px 28px;
	text-align: center;
	align-items: center;
	display: flex;
	justify-content: center;
}

.navbar-brand img {
	width: 230px;
}

li.nav-item {
	padding-left: 50px;
}

.navbar-nav .nav-link {
	color: #fff;
}

header {
	z-index: 9999;
	position: relative;
	border-bottom: 1px solid #80808040;
}

.navbar-expand-lg .navbar-nav {
	flex-direction: row;
	align-items: center;
}

/* header css */


/* hero section */
.hero-slider {
	width: 100%;
	height: 600px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 0;
}

/* .hero-slider::after {
    position: absolute;
    content: "";
    background-color: #000;
    right: 0%;
    left: 0;
    bottom: 0px;
    top: 0px;
    z-index: 9;
    opacity: 0.7;
} */

@media (max-width: 991px) {
	.hero-slider {
		height: 600px;
	}
}

@media (max-width: 767px) {
	.hero-slider {
		height: 500px;
	}
}

.hero-slider .swiper-slide {
	overflow: hidden;
	color: #fff;
}

.mine-text-slider {
	position: relative;
	z-index: 9999;
}

.slide-inner h5 {
	font-size: 27px;
	font-weight: 200;
}

.hero-slider .swiper-container {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.hero-slider .slide-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
	background: transparent;
	width: 55px;
	height: 55px;
	line-height: 53px;
	margin-top: -30px;
	text-align: center;
	border: 2px solid #d4d3d3;
	border-radius: 55px;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

@media (max-width: 767px) {

	.hero-slider .swiper-button-prev,
	.hero-slider .swiper-button-next {
		display: none;
	}
}

.hero-slider .swiper-button-prev {
	left: 25px;
	transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
	font-family: "Font Awesome 5 Free";
	content: "\f060";
	font-size: 15px;
	color: #d4d3d3;
	font-style: normal;
	display: inline-block;
	vertical-align: middle;
	font-weight: 900;
}

.hero-slider .swiper-button-next {
	right: 25px;
	transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-size: 15px;
	color: #d4d3d3;
	font-style: normal;
	display: inline-block;
	vertical-align: middle;
	font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	text-align: left;
	line-height: 12px;
	font-size: 12px;
	color: #000;
	opacity: 0.3;
	background: #fff;
	transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
	opacity: 1;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
	bottom: 30px;
}

@media screen and (min-width: 992px) {

	.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
	.hero-slider .swiper-pagination-custom,
	.hero-slider .swiper-pagination-fraction {
		/*     display: none; */
	}
}

.swiper-pagination {
	text-align: left;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
	bottom: 50px;
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
	left: 50%;
	transform: translateX(-50%);
}

@media (min-width: 767px) {
	.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
		bottom: 30px;

	}
}

/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/


.hero-style {
	margin-top: -75px;
	height: 850px;
	transition: all .4s ease;
}

@media (max-width: 991px) {
	.hero-style {
		height: 600px;
	}
}

@media (max-width: 767px) {
	.hero-style {
		height: 500px;
	}
}

@media screen and (min-width: 992px) {
	.hero-style .container {
		padding-top: 95px;
	}
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
	max-width: 1224px;
	text-align: center;
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

.hero-style .slide-title h2 {
	font-size: 80px;
	font-weight: 500;
	line-height: 1;
	color: var(--gold);
	margin: 0 0 10px;
	text-transform: capitalize;
	transition: all .4s ease;
}

@media (max-width: 1199px) {
	.hero-style .slide-title h2 {
		font-size: 75px;
	}
}

@media (max-width: 991px) {
	.hero-style .slide-title h2 {
		font-size: 50px;
		margin: 0 0 35px;
	}
}

@media (max-width: 767px) {
	.hero-style .slide-title h2 {
		font-size: 35px;
		margin: 0 0 30px;
	}
}

.hero-style .slide-text p {
	opacity: 0.8;
	font-family: Rajdhani;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: normal;
	color: #ffffff;
	margin: 0 0 40px;
	transition: all .4s ease;
}

@media (max-width: 767px) {
	.hero-style .slide-text p {
		font-size: 16px;
		font-size: 1rem;
		font-weight: normal;
		margin: 0 0 30px;
	}
}

.hero-style .slide-btns>a:first-child {
	margin-right: 10px;
}


/*--------------------------------------------------------------
	#button-style
--------------------------------------------------------------*/
.theme-btn,
.theme-btn-s2 {
	background-color: #ffffff;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	color: #2b3b95;
	padding: 9px 32px;
	border: 0;
	border-radius: 3px;
	text-transform: uppercase;
	display: inline-block;
	line-height: initial;
	transition: all .4s ease;
}

a {
	text-decoration: none;
	transition: all 0.2s ease;
}

.theme-btn-s2 {
	background-color: rgba(255, 255, 255, 0.9);
	color: #131e4a;
}

.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
	background-color: #2b3b95;
	color: #fff;
}

.theme-btn-s3 {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: #ffffff;
	text-transform: uppercase;
}

i.fa-chevron-circle-right {
	height: 22px;
	width: 22px;
}

a:hover {
	text-decoration: none;
}

@media (max-width: 991px) {

	.theme-btn,
	.theme-btn-s2,
	.theme-btn-s3 {
		font-size: 13px;
		padding: 15px 25px;
	}
}

@media (max-width: 767px) {

	.theme-btn,
	.theme-btn-s2 {
		padding: 13px 20px;
		font-size: 13px;
	}
}

.line-img {}

.line-img img {
	width: 100px;
	margin: 0 auto;
	justify-content: center;
	text-align: center;
	display: flex;
	padding: 21px 0px;
}

.btn {
	text-decoration: none;
	padding: 12px 10px;
	font-size: 14px;
	letter-spacing: 3px;
	font-weight: 600;
	position: relative;
	display: inline-block;
	overflow: hidden;
	transition: 0.4s;
	z-index: 1;
	border-radius: 0;
}

/* Left Button */
.btn-left {
	background: #cbb89d;
	color: #000;
	margin: 0px 35px;
}

/* Right Button */
.btn-right {
	background: #e5e5e5;
	color: #000;
}

/* Sliding Layer */
.btn::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	/* start from right */
	width: 0%;
	height: 100%;
	background: #000;
	transition: 0.4s ease;
	z-index: -1;
}

/* Hover Effect */
.btn:hover::before {
	width: 100%;
	left: 0;
	right: auto;
}

/* Text Color Change */
.btn:hover {
	color: #fff;
}

/* Bottom Line */
.btn::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 8px;
	width: 60%;
	height: 2px;
	background: currentColor;
	transform: translateX(-50%);
	transition: 0.4s;
}

.mine-text-slider {
	position: relative;
	z-index: 999999;
}

.btn:hover::after {
	width: 90%;
}

/* hero section */


/* footer css */
/* ===== FOOTER MAIN ===== */
.footer-main {
	background: #0a0a0a;
	position: relative;
	overflow: hidden;
	padding: 70px 0 0px;
	border-top: 1px solid #1e1e1e;
}

.footer-main::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(45deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px),
		linear-gradient(-45deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

.footer-main::after {
	content: "";
	position: absolute;
	top: -100px;
	left: -100px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle,
			rgba(201, 168, 76, 0.06) 0%,
			transparent 70%);
	pointer-events: none;
	animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {

	0%,
	100% {
		opacity: 0.5;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.1);
	}
}

/* ===== BRAND ===== */
.brand-name {

	font-size: 2.6rem;
	font-weight: 300;
	letter-spacing: 0.35em;
	color: var(--gold);
	text-transform: uppercase;
	display: inline-block;
	animation: fadeSlideDown 0.8s ease both;
}

.brand-name::after {
	content: "";
	display: block;
	width: 0;
	height: 1px;
	background: linear-gradient(90deg, var(--gold), transparent);
	margin-top: 8px;
	animation: lineExpand 1.2s ease 0.5s forwards;
}

@keyframes lineExpand {
	to {
		width: 100%;
	}
}

.brand-tagline {
	font-size: 16px;
	color: #fff;
	line-height: 2.85;
	margin-top: 18px;
	font-weight: 300;
	letter-spacing: 0.02em;
	max-width: 495px;
	animation: fadeSlideDown 0.8s ease 0.2s both;
}

/* ===== BUTTONS ===== */
.btn-quote {
	border: 1px solid var(--gold);
	color: var(--gold);
	background: transparent;

	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 11px 22px;
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
	transition: color 0.35s ease;
}

.btn-quote::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--gold);
	transform: translateX(-101%);
	transition: transform 0.35s ease;
	z-index: 0;
}

.btn-quote:hover {
	color: #0a0a0a;
}

.btn-quote:hover::before {
	transform: translateX(0);
}

.btn-quote span {
	position: relative;
	z-index: 1;
}

.btn-whatsapp {
	border: 1px solid var(--gold);
	color: #0a0a0a;
	background: var(--gold);

	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 11px 22px;
	text-decoration: none;
	display: inline-block;
	transition:
		background 0.3s ease,
		border-color 0.3s ease,
		transform 0.3s ease;
}

.btn-whatsapp:hover {
	background: #e2c97e;
	border-color: #e2c97e;
	color: #0a0a0a;
	transform: translateY(-2px);
}

.btn-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 28px;
	animation: fadeSlideDown 0.8s ease 0.5s both;
}

/* ===== HEADINGS ===== */
.footer-heading {
	font-size: 26px;
	font-weight: 500;
	/* letter-spacing: 0.2em; */
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 28px;
	position: relative;
	padding-bottom: 14px;
}

/* .footer-heading::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 1px;
        background: var(--gold);
      } */

/* ===== LINKS ===== */
.footer-link {
	display: block;
	font-size: 15px;
	color: #fff;
	text-decoration: none;
	font-weight: 300;
	letter-spacing: 0.05em;
	padding: 0px 0;
	padding-bottom: 35px;
	position: relative;
	transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var(--gold);
	opacity: 0;
	font-size: 0.7rem;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
	transform: translateX(-8px);
}

.footer-link:hover {
	color: #e2c97e;
	padding-left: 18px;
}

.footer-link:hover::before {
	opacity: 1;
	transform: translateX(0);
}

/* ===== CONTACT ===== */
.contact-item {
	display: flex;
	align-items: flex-start;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
	animation: fadeSlideUp 0.6s ease both;
}

.contact-icon {
	width: 34px;
	height: 34px;
	/* border: 1px solid rgba(201, 168, 76, 0.25); */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--gold);
	font-size: 25px;
	transition:
		background 0.3s ease,
		color 0.3s ease,
		border-color 0.3s ease;
}

.contact-item:hover .contact-icon {
	background: var(--gold);
	color: #0a0a0a;
	border-color: var(--gold);
}

.contact-text {
	font-size: 15px;
	color: #ffff;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.5;
}

.contact-text small {
	display: block;
	font-size: 0.7rem;
	color: #8a8a8a;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 2px;
}

/* ===== RESPONSE BADGE ===== */
.response-badge {
	/* display: inline-flex; */
	/* align-items: center; */
	gap: 8px;
	/* background: rgba(201, 168, 76, 0.07); */
	/* border: 1px solid rgba(201, 168, 76, 0.2); */
	padding: 10px 16px;
	/* margin-top: 8px; */
}

/* .response-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
} */

@keyframes pulse {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
	}

	50% {
		box-shadow: 0 0 0 6px rgba(201, 168, 76, 0);
	}
}

.response-text {
	font-size: 15px;
	color: #cbb89d;
	/* letter-spacing: 0.1em; */
	text-transform: capitalize;
}

.response-text strong {
	color: #e2c97e;
	font-weight: 500;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
	background: #f5edd6;
	padding: 16px 0;
}

.footer-bottom-text {
	font-size: 14px;
	color: #000;
	letter-spacing: 0.08em;
	text-align: center;
	font-weight: 500;
	margin: 0;
}

.footer-bottom-text a {
	font-size: 16px;
	color: #000;
	letter-spacing: 0.08em;
	text-align: center;
	font-weight: 500;
	margin: 0;
}

.footer-bottom-text a:hover {
	color: #9a7a2e;
}

.separator {
	color: rgba(90, 82, 66, 0.4);
	margin: 0 12px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeSlideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-col-1 {
	animation: fadeSlideUp 0.7s ease 0.1s both;
}

.animate-col-2 {
	animation: fadeSlideUp 0.7s ease 0.25s both;
}

.animate-col-3 {
	animation: fadeSlideUp 0.7s ease 0.4s both;
}

.footer-hr {
	border: none;
	border-top: 1px solid #1e1e1e;
	margin: 50px 0 0;
}

@media (max-width: 768px) {
	.brand-name {
		font-size: 2rem;
	}

	.btn-row {
		flex-direction: column;
	}
}

.footer-logo img {
	width: 290px;
}

/* footer css */


/* ─────────────────────────────────────
       SECTION
    ───────────────────────────────────── */
.about-section {
	background-color: #ffffff;
	padding: 60px 0;
}

/* ─────────────────────────────────────
       LEFT COLLAGE
    ───────────────────────────────────── */
.collage-wrap {
	position: relative;
	width: 100%;
	height: 400px;
}

/* Big top-left image */
.img-main {
	position: absolute;
	top: 0;
	left: 0;
	width: 576px;
	height: 477px;
	object-fit: cover;
	display: block;
}

/* Small bottom-right image with white border frame */
.img-overlay {
	position: absolute;
	bottom: -167px;
	right: 0;
	width: 390px;
	height: 350px;
	object-fit: cover;
	display: block;
	border: 6px solid #ffffff;
	/* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12); */
	z-index: 2;
}


/* ─────────────────────────────────────
       GOLD VERTICAL DIVIDER
    ───────────────────────────────────── */
.gold-divider {
	position: absolute;
	right: 38px;
	top: 17%;
	transform: translateY(-50%);
	width: 3px;
	height: 34%;
	background-color: #80745A;
}

.gold-divider-1 {
	position: absolute;
	left: 0px;
	bottom: 37px;
	transform: translateY(-50%);
	width: 221px;
	height: 3px;
	background-color: #80745A;
}

/* ─────────────────────────────────────
       RIGHT TEXT CONTENT
    ───────────────────────────────────── */
.content-wrap {
	padding-left: 56px;
	padding-top: 8px;
}

.label-history {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: #5a4a3a;
	display: block;
	margin-bottom: 10px;
}

.main-heading {

	font-size: 46px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.1;
	margin-bottom: 14px;
}

/* small arrow / dash rule under heading */
.heading-dash {
	display: flex;
	align-items: center;
	margin-bottom: 26px;
}

.heading-dash span {
	display: inline-block;
	width: 30px;
	height: 1.5px;
	background-color: #8b7355;
}

.heading-dash i {
	display: inline-block;
	width: 0; 
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 6px solid #8b7355;
	margin-left: 2px;
}

.body-text {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.85;
	color: #000;
	margin-bottom: 29px;
	line-height: 34px;
	/* text-align: justify; */
}

.about-us-text p {
	text-align: justify;
}

/* ─────────────────────────────────────
       CTA BUTTON
    ───────────────────────────────────── */
.btn-about-us {
	position: relative;
	display: inline-block;
	margin-top: 14px;
	padding: 14px 36px;
	background-color: #3b2b1e;
	color: #fff;
	font-size: 14px;
	font-size: 1;
	font-weight: 500;
	letter-spacing: 4.5px;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease, letter-spacing 0.25s ease;
	/* border-bottom: 1px solid #000; */
}

.btn-about-us::after {
	bottom: 3px;
	content: "";
	position: absolute;
	width: 83px;
	height: 1px;
	/* color: #ffff; */
	background: #fff;
	left: 50%;
	transform: translate(-50%, -50%);
}

.btn-about-us:hover {
	background-color: #c9a96e;
	color: #ffffff;
	letter-spacing: 5.5px;
}

/* ─────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────── */
@media (max-width: 991.98px) {
	.collage-wrap {
		height: 320px;
		margin-bottom: 40px;
	}

	.content-wrap {
		padding-left: 12px;
	}

	.gold-divider {
		display: none;
	}

	.gold-divider-1 {
		display: none;
	}

	.main-heading {
		font-size: 36px;
	}
}

@media (max-width: 575.98px) {
	.collage-wrap {
		height: 260px;
	}

	.main-heading {
		font-size: 28px;
	}
}

.heading-dash img {
	width: 100px;
}

.lineimg img {
	margin: 0 auto;
}

/* sercives css */
section.services-section {
	background: #f2ebe0;
	padding: 90px 0px;
}

.ser-img {
	position: relative;
}

.ser-img img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.ser-p {
	position: absolute;
	bottom: 40px;
	left: 30px;
}

.ser-p p {
	font-size: 21px;
	text-transform: uppercase;
	font-weight: 400;
}

.ser-img {
	position: relative;
	overflow: hidden;
	/* border-radius: 14px; */
	cursor: pointer;
}

/* Image */
.ser-img img {
	width: 100%;
	display: block;
	transition: transform 0.6s ease, filter 0.6s ease;
}

/* Soft dark overlay on image (always visible) */
.ser-img::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	transition: 0.5s ease;
	z-index: 1;
}

/* Text container */
.ser-p {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 18px 15px;
	z-index: 2;
}

/* Gradient background behind text */
.ser-p::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	z-index: -1;
}

/* Text styling */
.ser-p p {
	margin: 0;
	color: #fff;
	font-size: 24px !important;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: 0.4s ease;
}

/* Hover Effects */
.ser-img:hover img {
	transform: scale(1.08);
	filter: brightness(0.85);
}

/* Overlay thoda dark ho */
.ser-img:hover::before {
	background: rgba(0, 0, 0, 0.4);
}

/* Text animation */
.ser-img:hover .ser-p p {
	transform: translateY(-6px);
	letter-spacing: 1px;
}

.ser-bottum-tt h5 {
	color: #4D4228;
}

/* sercives css */


/* photo */
.philosophy img {
	position: relative;
	width: 80%;
	z-index: 9;
}

.philosophy::after {
	position: absolute;
	content: "";
	width: 81%;
	height: 535px;
	top: -42px;
	background-color: #f2ebe0;
	left: 38px;
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 38px;
	background: #f9eee1;
	width: 94%;
	padding: 20px;
}

.feature-item {
	border-left: 2px solid #b8965a;
	padding: 10px 14px;
	background: #faf9f7;
}

.feature-item span {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .04em;
	color: #000;
	line-height: 1.5;
	display: block;
}

.dote-img {
	position: absolute;
	right: 47px;
	bottom: -45px;
	z-index: 1;
}

.mine-pad {
	padding-bottom: 100px;
}

.dote-img img {
	width: 148px;
}

/* photo */


/* HISTORY css */
.history-img {
	position: relative;
}

.history-img img {
	width: 100%;
	height: 608px;
	object-fit: cover;
}

.hostr-img-text {
	position: absolute;
	bottom: 30px;
	right: 30px;
	background: #fff;
	padding: 10px 30px;
}

.mineline {
	position: relative;
}

.mineline::after {
	position: absolute;
	content: "";
	width: 3px;
	height: 79px;
	background: #80745A;
	z-index: 9;
	left: -23px;
	top: 0px;
}

.hostr-img-text h5 {
	color: #000;
}

.hostr-img-text p {
	color: #000;
	margin-bottom: 0;
}

/* HISTORY css */


/* ── SECTION ── */
.why-section {
	position: relative;
	background-color: #4D4228;
	padding: 70px 40px 130px;
	text-align: center;
	overflow: hidden;
}

.why-section h2 {
	color: #fff;
}

/* Diamond / crosshatch pattern — exactly like the image */
.why-section {
	position: relative;
	/* important */
}

.why-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url(../img/Mask%20group.png);
	background-size: contain;
	background-repeat: repeat;
	background-position: center;
	pointer-events: none;
	/* z-index: 0; */
	/* opacity: 0.5; */
	/* z-index: 999999; */
	/* overflow: hidden; */
}

.why-section>* {
	position: relative;
	z-index: 1;
}

/* ── EYEBROW ── */
.eyebrow {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: #fff;
	display: block;
	margin-bottom: 10px;
}

/* ── HEADING ── */
.main-heading {
	/* font-size: clamp(2.4rem, 5vw, 3.6rem); */
	font-weight: 500;
	/* color: #ffffff; */
	letter-spacing: 0.06em;
	/* text-transform: uppercase; */
	line-height: 1;
	margin-bottom: 18px;
}

/* ── DIVIDER ── */
.divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: 22px;
}

.div-line {
	width: 44px;
	height: 1px;
	background: rgba(255, 255, 255, 0.4);
}

.div-dot {
	width: 7px;
	height: 7px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	margin: 0 6px;
}

/* ── DESC ── */
.desc {
    /* font-family: 'Jost', sans-serif; */
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin: 0 auto;
    max-width: 100%;
    line-height: 1.85;
}

/* ── CARDS WRAPPER ── */
.cards-wrapper {
	/* background: #eeebe3; */
	padding: 0 32px 60px;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	max-width: 1300px;
	margin: 0 auto;
	transform: translateY(-110px);
}

/* ── SINGLE CARD ── */
.card {
	background: #ffffff;
	padding: 32px 20px 28px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-bottom: 3px solid #5c5435;
	transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
	opacity: 0;
	animation: rise 0.55s ease forwards;
}

.card:nth-child(1) {
	animation-delay: 0.05s;
}

.card:nth-child(2) {
	animation-delay: 0.15s;
}

.card:nth-child(3) {
	animation-delay: 0.25s;
}

.card:nth-child(4) {
	animation-delay: 0.35s;
}

.card:nth-child(5) {
	animation-delay: 0.45s;
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.card {
	height: 250px;
	text-align: center;
	border-radius: 0px;
	transform: translateY(-7px);
	/* border-color: #5c5435; */
	box-shadow: 0 18px 48px rgba(92, 84, 53, 0.14);
}

/* .card:hover {
      transform: translateY(-7px);
      border-color: #5c5435;
      box-shadow: 0 18px 48px rgba(92,84,53,0.14);
    } */

/* ── CARD ICON ── */
.card-icon {
	/* width: 20px; */
	/* height: 36px; */
	margin-bottom: 28px;
	margin: 0 auto;
	/* flex-shrink: 0; */
}

.card-icon svg {
	width: 100%;
	height: 100%;
	stroke: #5c5435;
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.card-icon img {
	width: 40px;
}

/* ── CARD TITLE ── */
.card-title {
	font-size: 14px;
	font-weight: 600;
	color: #000;
	line-height: 1.45;
	min-height: 40px;
	margin-bottom: 18px;
	text-align: center;
	margin: 0 auto;
	padding: 19px 0px;
}

/* ── CARD NUMBER ── */
.card-num {

	font-size: 3rem;
	font-weight: 500;
	color: #5c5435;
	line-height: 1;
	letter-spacing: -0.02em;
	text-align: center;
	margin: 0 auto;
}

/* ── CARD UNDERLINE ── */
.card-line {
	width: 30px;
	height: 2px;
	background: #5c5435;
	opacity: 0.28;
	margin-top: 14px;
}

.dow-1 {
	margin-top: 35px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
	.cards-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 600px) {
	.cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-section {
		padding: 52px 20px 110px;
	}

	.counter-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 0;
	}

	.counter-item {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.counter-item:nth-child(odd) {
		border-right: 1px solid rgba(255, 255, 255, 0.1);
	}

	.counter-item:last-child,
	.counter-item:nth-last-child(2) {
		border-bottom: none;
	}
}


/* Clear & honest css */
.ch-left-img {}

.ch-left-img {
	transform: translateY(-172px);
}

.ch-right-img img {
	width: 100%;
}

.ch-left-img img {
	width: 100%;
}

.clear-honest-all-img {
	position: relative;
	z-index: 1;
}

.clear-honest-all-img::after {
	position: absolute;
	content: "";
	background-image: url(../img/Rectangle4.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 467px;
	top: -124px;
	right: -21px;
	z-index: -1;
}

.dote-img0 {
	position: relative;
}

.dote-img0::after {
	position: absolute;
	content: "";
	background-image: url(../img/Group3.jpeg);
	/* background-size: contain; */
	background-repeat: no-repeat;
	background-position: center;
	width: 90px;
	height: 90px;
	top: -63px;
	right: 216px;
	z-index: -1;
}

.clearn-text {
	width: 84%;
}

/* Clear & honest css */


/* start your css */

/* ── CONTACT SECTION ── */
.contact-section {
	background-color: #f2ebe0;
	padding: 70px 20px 80px;
}

.section-label {

	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: #9e9080;
	margin-bottom: 14px;
}

.section-title {

	font-size: 2.4rem;
	font-weight: 400;
	color: #1a1209;
	margin-bottom: 10px;
}

.title-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 14px 0px;
}

.cout-s {
	border: 1px solid #d7c9a3;
	width: 355px;
	height: 162px;
	background: #fff;
	/* text-align: center; */
	padding: 13px 38px;
	position: absolute;
	bottom: 0px;
}

.cout-s h2 {
	color: #D8C49B;
	font-size: 60px;
}

.cout-s h4 {
	color: #000;
	text-transform: uppercase;
	letter-spacing: 11px;
}

.section-desc {
    font-weight: 500;
    font-size: 14.5px;
    color: #000;
    max-width: 100%;
    /* margin: 0 auto 48px; */
    line-height: 1.8;
}

/* ── CONTACT CARD ── */
.contact-card {
	/* background-color: #f2ebe0;
	max-width: 1000px;
	margin: 0 auto; */
}

.contact-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 320px;
}

/* ── FORM INPUTS ── */
.form-control,
.form-select {
	background-color: transparent;
	border: 1px solid #000;
	border-radius: 0;
	font-size: 0.8rem;
	font-weight: 500;
	color: #000;
	padding: 12px 16px;
	height: auto;
	border-radius: 4px;
}

.form-control::placeholder {
	color: #000;
}

.form-control:focus,
.form-select:focus {
	background-color: #e8ddd0;
	border-color: #c9a96e;
	box-shadow: none;
	color: #3a3228;
}

.phone-group {
	display: flex;
	gap: 0;
}

.phone-prefix {
	background-color: transparent;
	border: 1px solid #000;
	border-right: none;
	padding: 12px 14px;
	font-size: 0.8rem;
	font-weight: 500;
	color: #000;
	white-space: nowrap;
	display: flex;
	align-items: center;
	border-radius: 4px 0px 0px 4px;
}

.phone-group .form-control {
	border-radius: 0px 4px 4px 0px;
	flex: 1;
}

textarea.form-control {
	resize: none;
	min-height: 110px;
}

.btn-submit {
	background-color: #3d3218;
	color: #e8dac4;
	border: none;
	border-radius: 0;

	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 3.5px;
	text-transform: uppercase;
	padding: 13px 36px;
	transition: background 0.25s, color 0.25s;
	cursor: pointer;
}

.btn-submit:hover {
	background-color: #c9a96e;
	color: #1a1209;
}

.form-row-gap {
	row-gap: 14px;
}

.title-divider img {
	width: 83px;
}

.contact-section {
	position: relative;
}

.cont-im {
	position: relative;
}

.cont-img {
	transform: translateY(180px);
	margin-top: 0px;
}

/* 
.cont-img::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 300px;
	background-image: url(../img/cont-img1.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	top: 1%;
	left: 50%;
	transform: translate(-50%, -50%);
} */
/* transform: translateY(-209px); */
/* margin: 0; */

.cont-img h1 {
	color: #D8C49B;
	text-align: center;
	padding: 25px 100px;
	align-items: center;
	display: flex;
	justify-content: center;
	font-weight: 500;
	text-transform: capitalize;
	font-size: 60px;
}

.cont-hed {
	/* position: absolute; */
	/* z-index: 9; */
	/* top: -17%; */
	width: 100%;
	height: 400px;
	text-align: center;
}

.mine-headdddd {
	transform: translate(-50%, -50%);
	position: relative;
	top: 50;
	top: 50%;
	left: 50%;
}

.mine-cont {
	margin-top: 150px;
}

.contact-section {
	position: relative;
	margin-top: 0px;
}

/* start your css */


/* ─── SECTION ─── */
.projects-section {
	padding: 70px 0px 80px;
	background: #ffffff;
	text-align: center;
}

/* ─── LABEL ─── */
.section-label {

	font-weight: 500;
	font-size: 12px;
	letter-spacing: 4px;
	color: #b5a07a;
	text-transform: uppercase;
	margin-bottom: 14px;
}

/* ─── HEADING ─── */
.section-heading {
	font-weight: 500;
	font-size: 42px;
	color: #1a1a1a;
	line-height: 1.2;
	margin-bottom: 18px;
}

/* ─── DIVIDER ─── */
.divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: 18px;
}

.divider-line {
	width: 55px;
	height: 1px;
	background: #b5a07a;
}

.divider-diamond {
	width: 7px;
	height: 7px;
	border: 1px solid #b5a07a;
	transform: rotate(45deg);
	margin: 0 5px;
}

/* ─── ITALIC SUBTITLE ─── */
.section-subtitle {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 17px;
	color: #80745A;
	margin-bottom: 22px;
}

/* ─── DESCRIPTION ─── */
/* .section-desc {
	font-weight: 500;
	font-size: 14.5px;
	color: #000;
	max-width: 920px;
	margin: 0 auto 48px;
	line-height: 1.8;
} */

/* ─── CAROUSEL WRAPPER ─── */
.projects-carousel-wrapper {
	position: relative;
	overflow: hidden;
	padding: 0 10px;
}

/* ─── SLIDE ─── */
.carousel-slide {
	display: flex;
	gap: 14px;
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card {
	flex: 0 0 calc(20% - 11.2px);
	min-width: calc(20% - 11.2px);
	position: relative;
	overflow: hidden;
	border-radius: 3px;
}

.project-card:hover img {
	transform: scale(1.07);
}

/* ─── OVERLAY ─── */
/* .project-card .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.4s ease;
} */

.project-card:hover .overlay {
	opacity: 1;
}

/* ─── NAV DOTS ─── */
.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 36px;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d4c4a4;
	cursor: pointer;
	transition: background 0.3s, transform 0.3s;
	border: none;
	padding: 0;
}

.dot.active {
	background: #b5a07a;
	transform: scale(1.3);
}

/* ─── PREV / NEXT ARROWS ─── */
.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #ddd;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background 0.3s, box-shadow 0.3s;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.carousel-arrow:hover {
	background: #b5a07a;
	border-color: #b5a07a;
}

.carousel-arrow:hover svg {
	stroke: #fff;
}

.carousel-arrow svg {
	stroke: #777;
	transition: stroke 0.3s;
}

.arrow-prev {
	left: -6px;
}

.arrow-next {
	right: -6px;
}


/* Wrapper */
.projects-carousel-wrapper {
	/* padding: 50px; */
}

/* Card Design */
.project-card {
	position: relative;
	overflow: hidden;
	border-radius: 0px;
}

.project-card img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
	transition: 0.4s;
}

/* Overlay */
/* .project-card .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: 0.4s;
} */

.project-card:hover img {
	transform: scale(1.1);
}

.project-card:hover .overlay {
	opacity: 1;
}

/* Dots styling */
.owl-dot span {
	background: #777 !important;
}

.owl-dot.active span {
	background: #fff !important;
}

/* Optional arrows */
.custom-nav {
	text-align: center;
	margin-top: 20px;
}

.custom-nav button {
	padding: 10px 20px;
	border: none;
	margin: 5px;
	cursor: pointer;
	background: #fff;
	border-radius: 6px;
}

.dd {
	margin-top: 40px;
}

.cont-hed a {}


aside.sidebar-area {
	position: sticky;
	top: 10px;
}

.pulse:nth-child(1) {
	-webkit-animation: pulse 2s infinite;
	animation: pulse 2s infinite;
}

.pulse:nth-child(2) {
	-webkit-animation: pulse 2s infinite 0.3s;
	animation: pulse 2s infinite 0.3s;
}

.pulse:nth-child(3) {
	-webkit-animation: pulse 2s infinite 0.3s;
	animation: pulse 2s infinite 0.3s;
}

.whatsapp-info,
.pulse {
	font-family: "Lato", sans-serif;
	display: inline-block;
	color: #fff;
	background: #1ab744;
	position: fixed;
	bottom: 50px;
	right: 50px;
	font-size: 45px;
	text-align: center;
	z-index: 99;
	border-radius: 90%;
	height: 50px;
	width: 50px;
	line-height: 45px;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
		opacity: 0;
	}

	50% {
		opacity: 0.3;
	}

	100% {
		-webkit-transform: scale(2);
		transform: scale(2);
		opacity: 0;
	}
}

.calles:nth-child(1) {
	-webkit-animation: calles 2s infinite;
	animation: calles 2s infinite;
}

.calles:nth-child(2) {
	-webkit-animation: calles 2s infinite;
	animation: calles 2s infinite;
}

.calles:nth-child(2) {
	-webkit-animation: calles 2s infinite;
	animation: calles 2s infinite;
}

.phone-info,
.calles {
	font-family: "Lato", sans-serif;
	display: inline-block;
	color: #fff;
	background: #066de3;
	position: fixed;
	bottom: 50px;
	left: 50px;
	font-size: 45px;
	text-align: center;
	z-index: 99;
	border-radius: 90%;
	height: 50px;
	width: 50px;
	line-height: 45px;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

@keyframes calles {
	0% {
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
		opacity: 0;
	}

	50% {
		opacity: 0.3;
	}

	100% {
		-webkit-transform: scale(2);
		transform: scale(2);
		opacity: 0;
	}
}



/* services pages */
.breadcome-section {
	background-image: url(../img/breadcome.jpg);
	transform: translateY(-80px);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bread-cont {
	text-align: center;
	padding-top: 130px;
}

.bread-cont h1 {
	color: #c8b58f;
}

.bread-cont p {
	margin-bottom: 0;
}

.bread-cont a {
	color: #fff;
}

.bread-cont img {
	padding: 20px 0px;
}

.renovation-section {
	/* padding: 63px 0; */
	position: relative;
	padding-bottom: 70px;
}

/* IMAGE */
.img-box {
	position: relative;
}

.main-img {
	width: 100%;
	height: 450px;
	border-radius: 0px;
	object-fit: cover;
	transform: translateY(-54px);
}

.img-box-1 {
	position: relative;
}

.main-img-1 {
	width: 100%;
	height: 450px;
	border-radius: 0px;
	object-fit: cover;
	transform: translateY(31px);
}

/* OVERLAY LEFT */
.overlay-box {
	position: absolute;
	top: 20%;
	left: 0;
	width: 120px;
	height: 150px;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}

.overlay-box-1 {
	position: absolute;
	top: 40%;
	right: 0;
	width: 120px;
	height: 150px;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}

.number {
	color: #fff;
	font-size: 65px;
	font-weight: 500;
	opacity: 0.4;
}

/* RIGHT CARD */
.content-box {
	padding: 40px 10px;
}

.ser-bg {
	position: relative;
}

.ser-bg::after {
	background: #e9e4dd;
	position: absolute;
	content: "";
	top: 0px;
	right: 0px;
	/* bottom: 0px; */
	width: 74%;
	height: 450px;
	z-index: -1;
}

.ser-bg-1 {
	position: relative;
}

.ser-bg-1::after {
	background: #e9e4dd;
	position: absolute;
	content: "";
	top: 0px;
	left: 0px;
	/* bottom: 0px; */
	width: 74%;
	height: 450px;
	z-index: -1;
}

.content-box h2 {
	font-size: 35px;
	font-weight: 500;
	color: #222;
}

.divider {
	width: 50px;
	height: 2px;
	background: #c2a47e;
	margin: 15px 0;
}

.content-box p {
	color: #000;
	font-weight: 500;
}

.content-box h5 {
	margin-top: 20px;
	font-weight: 500;
	color: #000;
}

/* FEATURES */
ul {
	padding: 0;
}

.features {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 10px;
}

.features span {
	font-size: 14px;
	color: #333;
}

.features span img {
	width: 14px;
}

.features-1 {
	display: block;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 10px;
}

.features-1 ul li {
	font-size: 14px;
	color: #333;
	padding-bottom: 10px;
	font-weight: 500;
}

.features-1 ul li img {
	width: 14px;
	margin-right: 5px;
}

.cot-dd {
	padding: 40px !important;
}

.extar-line {
	display: contents;
}

/* services pages */
.satart-your-sec {
	position: relative;
	z-index: 9;
}

/* header {
  position: sticky;
  top: 0;
  z-index: 999;

  background: rgba(255, 255, 255, 0.7); 
  backdrop-filter: blur(10px);          
  -webkit-backdrop-filter: blur(10px);  

  border-bottom: 1px solid rgba(0,0,0,0.1);
}
header {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
} */

.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: none;
}

#mainHeader.active {
	background: rgba(0, 0, 0, 0.85);
	/* fallback */
}

/* sirf jab support ho tab blur use karo */
@supports (backdrop-filter: blur(5px)) {
	#mainHeader.active {
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
		background: rgba(0, 0, 0, 0.5);
		/* thoda transparent rakho */
	}
}

@media (max-width: 768px) {
	#mainHeader.active {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: rgba(0, 0, 0, 0.9);
	}
}

@media (min-width: 768px) {
	.sticky-section .col-md-3 {
		flex: 0 0 auto;
		width: 21%;
	}
}


/* dd dddddddddddddddddd*/
/* Sticky Section */
/* .sticky-section {
  position: relative;
  height: 450px;
}

.horizontal-wrapper {
  display: flex;
  height: 450px;
}

.panel {
  width: 20%; 
  height: 450px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel img {
  width: 90%;
  height: 400px;
  border-radius: 20px;
}
body {
  overflow-x: hidden;
}

.sticky-section {
  position: relative;
} */

/* .sticky-section {
  height: 450px; 
}

.sticky-box {
  position: sticky;
  top: 0;
  height: 450px;
  overflow: hidden;
}

.scroll-content {
  display: flex;
  align-items: center;   
  height: 100%;
}
.row.flex-nowrap {
  flex-wrap: nowrap !important;
  align-items: center;   
}
.project-card {
  height: 300px;
} */

/* ===== MODERN HORIZONTAL SCROLL SECTION ===== */
.sticky-section {
	position: relative;
	width: 100%;
	/* background: #000; */
	overflow: visible;
	/* Allow ScrollTrigger to handle pinning */
}

.sticky-box {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	/* CRITICAL FIX: prevents horizontal layout from centering completely off-screen */
	overflow: hidden;
	position: relative;
}

	.scroll-content {
		display: flex;
		align-items: center;
		gap: 20px;
		width: max-content;
		will-change: transform;
		padding: 0 20px;
	}

/* Override Bootstrap columns inside sticky section */
.sticky-section .col-md-3,
.sticky-section .col-6 {
	flex: 0 0 auto !important;
	width: auto !important;
	padding: 0 !important;
	margin: 0 !important;
}

.project-card {
	width: 100%;
	/* Safely fits 5 images, accounting for gaps and scrollbars */
	height: 400px;

	/* Fixed height requested by user */
	flex-shrink: 0;
	/* CRITICAL: Prevents flexbox from resizing/squishing cards */
	position: relative;
	overflow: hidden;
	/* border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
	transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1);
	/* background: #111; */
}
.projects-carousel-wrapper {
	padding: 50px 0px;
}


.project-card img {
	width: 100%;
	height: 400px;
	min-height: 400px;
	object-fit: cover;
	display: block;
	transition: transform 1.2s cubic-bezier(0.2, 0, 0.2, 1);
}

.project-card:hover img {
	transform: scale(1.1);
}

/* .project-card .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
	opacity: 0.4;
	transition: opacity 0.5s ease;
	height: 400px;
} */
.full-width-slider {
  width: 100vw;
  margin-left: auto;   /* right align */
}

.projects-carousel-wrapper {
  overflow: hidden;
  position: relative;
}
#carouselWrapper {
  overflow: hidden;
}
.project-card {
  position: relative;
  overflow: hidden;   /* 👈 important */
}

.project-card img {
  width: 100%;
  display: block;
}


.forms-c {
	padding-left: 30px;
}

.owl-carousel .owl-stage {
  display: flex;
}

.owl-carousel .owl-stage-outer {
  overflow: hidden;
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  height: auto;
}
.work-shap {
/* width: 50px; */
    /* height: 2px; */
    /* background: #c2a47e; */
    /* margin: 15px 0; */
}

@media (max-width: 767px) {
  .swiper-slide {
    width: 100% !important;
  }

  .project-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .project-card {
    flex: 0 0 calc(50% - 11.2px);
}
}