/* =====================================================
   TYPOGRAPHY SCALE — CSS VARIABLES
   Ek jagah se sab control hoga
   ===================================================== */
:root {
	/* FONTS */
	--font-heading: "Nocturnal-Light", "Nocturnal", serif;
	--font-body: "GeneralSans-Regular", "GeneralSans", sans-serif;
	--font-ui: "GeneralSans-Medium", "GeneralSans", sans-serif;
	--font-bold-num: "Nocturnal-SemiBold", "Nocturnal", serif;

	/* HEADING SIZES — Desktop */
	--h1: 32px;
	/* Hero slide title */
	--h2: 30px;
	/* Section headings */
	--h3: 18px;
	/* Card headings */
	--h-eyebrow: 11px;
	/* Small uppercase labels above headings */

	/* BODY / PARA */
	--text-body: 16px;
	/* Main paragraphs */
	--text-small: 13px;
	/* Secondary/card body text */
	--text-xs: 11px;
	/* Meta, dates, tiny labels */

	/* BUTTONS */
	--btn-md: 12px;
	/* Primary CTAs */
	--btn-sm: 11px;
	/* Secondary / filter buttons */

	/* LETTER SPACING */
	--ls-heading: 2.5px;
	--ls-eyebrow: 3.5px;
	--ls-btn: 1.8px;

	/* LINE HEIGHT */
	--lh-heading: 1.2;
	--lh-body: 1.65;

	/* COLORS */
	--clr-white: #ffffff;
	--clr-white-dim: rgba(255, 255, 255, 0.75);
	--clr-white-faint: rgba(255, 255, 255, 0.45);
	--clr-overlay-1: rgba(0, 0, 0, 0.85);
	--clr-overlay-2: rgba(0, 0, 0, 0.0)
}

/* ─── MOBILE OVERRIDES ─── */
@media (max-width: 768px) {
	:root {
		--h1: 24px;
		--h2: 20px;
		--h3: 16px;
		--text-body: 14px;
		--text-small: 12px;
	}
}

/* =====================================================
   BASE RESETS
   ===================================================== */
.hero-swiper,
.swiper-slide {
	position: relative;
	overflow: hidden
}

.hero-swiper,
.slide-btn,
.stats-section,
.swiper-slide,
.word-wrap {
	overflow: hidden
}

.signature-heading,
.slide-btn,
.slide-title {
	text-transform: uppercase
}

.diff-img img,
.sig-img-wrap img {
	object-fit: cover;
	will-change: transform
}

.ns-card__btn,
.slide-btn,
.story-btn,
.view-all-btn {
	text-decoration: none
}

.bl-card:hover .bl-card__img img,
.ns-card:hover .ns-card__img img {
	transform: scale(1.05)
}

.bl-arr:hover svg,
.ns-arr svg {
	stroke: #fff
}

.about__name,
.bl-card__btn,
.diff-label span,
.faq-cta-btn,
.fps-btn,
.ns-card__btn,
.sig-drop-item,
.signature-filter,
.slide-btn {
	white-space: nowrap
}

/* =====================================================
   HERO SWIPER
   ===================================================== */
.hero-swiper {
	width: 100%;
	height: 100vh
}

.slide-content,
.slide-image,
.swiper {
	height: 100%;
	width: 100%
}

.slide-image {
	object-fit: cover;
	transform-origin: center center;
	will-change: transform, filter
	transition: opacity 1.2s ease !important;
}

.slide-btn,
.slide-title,
.stats-section .stat-card,
.story-content,
.word {
	will-change: transform, opacity
}

.slide-image.desktop {
	display: block
}

.slide-image.mobile {
	display: none
}

.slide-content::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(to top, rgba(0, 0, 0, .82) 0, rgba(0, 0, 0, .35) 50%, transparent 100%);
	z-index: 1;
	pointer-events: none
}

.slide-content {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: flex-end;
	z-index: 2
}

.slide-content .container {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1280px;
	display: flex;
	padding: 0 50px;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 24px
}

.slide-text {
	display: flex;
	flex-direction: column;
	padding-bottom: 30px;
	gap: 0
}

.word,
.word-wrap {
	display: inline-block
}

/* ── SLIDE TITLE ── */
.slide-title {
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 500;
	line-height: var(--lh-heading);
	letter-spacing: 4px;
	color: #fff;
	margin: 0;
	perspective: 600px
}

/* ── SLIDE SUBTITLE ── */
.slide-subtitle {
	font-family: var(--font-body);
	font-size: var(--text-body);
	color: var(--clr-white-dim);
	line-height: var(--lh-body);
	margin-top: 6px
}

.word-wrap {
	vertical-align: bottom;
	line-height: 1.2
}

/* ── SLIDE BUTTON ── */
.slide-btn {
	font-family: var(--font-ui);
	font-size: var(--btn-md);
	font-weight: 500;
	letter-spacing: var(--ls-btn);
	color: #000;
	display: inline-flex;
	align-items: center;
	gap: 30px;
	padding: 13px 32px;
	border-radius: 100px;
	background: #fff;
	border: 1px solid rgba(255, 251, 251, .18);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	transition: color .35s ease, gap .35s;
	opacity: 0;
	z-index: 1;
}

/* Fill layer */
.slide-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #111;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s ease;
	z-index: -1;
}

.slide-btn::after {
	content: '→';
	font-size: 15px;
	line-height: 1;
	transition: transform .35s;
}

/* Hover */
.slide-btn:hover {
	color: #fff;
	gap: 28px;
}

.slide-btn:hover::before {
	transform: scaleX(1);
}

.slide-btn:hover::after,
.fps-btn:hover .fps-btn-arrow,
.faq-cta-btn:hover .faq-arrow {
	transform: translateX(6px)
}

.slide-progress-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, .7);
	transform-origin: left;
	transform: scaleX(0);
	z-index: 20;
	pointer-events: none
}

.swiper-pagination {
	right: 50px !important;
	left: auto !important;
	top: 52% !important;
	transform: translateY(-50%);
	width: auto !important;
	display: flex;
	flex-direction: column;
	gap: 16px
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 1;
    border-radius: 50%;
    margin: 0 !important;

    /* MAGIC 👇 */
    border: 1.5px solid rgba(0,0,0,0.4); /* outline */
    box-shadow: 0 0 6px rgba(0,0,0,0.3); /* glow */
}

.swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.3);
    border-color: #000;
}

.slider-arrow-btn {
	position: absolute;
	right: 40px;
	top: 45%;
	transform: translateY(calc(-50% + 105px));
	z-index: 10;
	width: 30px;
	height: 30px;
	/*border: 1px solid rgba(255, 255, 255, .5);*/
	border-radius: 50%;
	/*background: 0 0;*/
	cursor: pointer;
	background: rgba(255,255,255,0.5);
    border: 2px solid rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .3s, border-color .3s;
	animation: 2.4s ease-in-out infinite arrowBounce
}

.slider-arrow-btn::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;

    /* visibility boost */
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.6));
	transform: rotate(45deg) translateY(-2px);
	transition: border-color .3s
}

.slider-arrow-btn:hover {
	background: rgba(255, 255, 255, .12);
	border-color: #fff;
	animation: none
}

.slider-arrow-btn:hover::before {
	border-color: #fff
}

@keyframes arrowBounce {

	0%,
	100% {
		transform: translateY(calc(-50% + 105px))
	}

	50% {
		transform: translateY(calc(-50% + 118px))
	}
}

@media (max-width: 768px) {
	.hero-swiper {
		margin-top: 75px;
		height: calc(100vh - 75px)
	}

	.slide-text {
		padding-bottom: 0
	}

	.slide-image.desktop {
		display: none
	}

	.slide-image.mobile {
		display: block
	}

	.slide-content .container {
		padding: 0px 20px 80px;
		gap: 16px;
		display: block;
	}

	.slide-content::before {
		height: 60%;
	}

	.slide-title {
		font-size: 28px;
	}

	.slide-btn {
		padding: 10px 16px;
		gap: 14px
	}

	.swiper-pagination {
		right: 20px !important;
		gap: 10px
	}

	.slider-arrow-btn {
		right: 6px;
		width: 34px;
		height: 34px
	}
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
	background: #fff;
	padding: 80px 0
}

.stats-section .stats-container {
	max-width: 1280px;
	margin: auto;
	padding: 0 50px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 28px
}

.stats-section .stat-card {
	position: relative;
	padding: 40px 28px;
	opacity: 0;
	transform: translateY(50px)
}

.stats-section .stat-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #b8b8b8;
	clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
	z-index: 0;
	transition: background 0.35s ease;
}

.stats-section .stat-card:hover::before {
	background: #8f4555;
}

.stats-section .stat-card::after {
	content: "";
	position: absolute;
	inset: 1px;
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
	z-index: 1
}


.stats-section .stat-card>* {
	position: relative;
	z-index: 2
}

.stats-section .stat-icon img {
	width: 40px;
	margin-bottom: 25px;
	filter: brightness(0) saturate(100%) invert(15%) sepia(35%) saturate(1500%) hue-rotate(320deg)
}

/* ── STAT NUMBER ── */
.stats-section .stat-number {
	font-family: var(--font-bold-num);
	font-size: 42px;
	font-weight: 600;
	color: #020000;
	margin-bottom: 8px;
	line-height: 1
}

.stats-section .stat-number .counter {
	display: inline-block;
	background: linear-gradient(135deg, #020000 0, #6b0000 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text
}

/* ── STAT TEXT ── */
.stats-section .stat-text {
	font-family: var(--font-body);
	font-size: var(--text-body);
	letter-spacing: 0.5px;
	color: #666;
	line-height: 1.4
}

@media (max-width: 992px) {
	.stats-section .stats-container {
		grid-template-columns: repeat(3, 1fr)
	}
}

@media (max-width: 768px) {
	.stats-section {
		padding: 50px 0
	}

	.stats-section .stats-container {
		padding: 0 10px;
		gap: 16px
	}

	.stats-section .stat-card {
		padding: 28px 18px
	}

	.stats-section .stat-icon img {
		margin-bottom: 18px
	}

	.stats-section .stat-number {
		font-size: 30px
	}
}

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

/* =====================================================
   BUILDING DREAMS STORY SECTION
   ===================================================== */
.story-section {
	background: url("/assets/images/frontend/homepage/construction-update-new.webp") center/cover no-repeat fixed;
	padding: 120px 0;
	position: relative
}

.story-section::before {
	content: "";
	position: absolute;
	inset: 0;
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 40%, rgba(255, 255, 255, .7) 85%);
}

.story-container {
	max-width: 1200px;
	margin: auto;
	padding: 0 20px;
	display: flex;
	justify-content: flex-end;
	position: relative;
	z-index: 1
}

.story-content {
	background: #8f4555;
	color: #fff;
	padding: 50px;
	max-width: 480px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
	opacity: 0;
	transform: translateX(80px)
}

/* ── STORY HEADING ── */
.story-content h2 {
	font-family: var(--font-heading);
	font-size: var(--h2);
	font-weight: 400;
	letter-spacing: var(--ls-heading);
	line-height: var(--lh-heading);
	margin-bottom: 16px;
	opacity: 0
}

/* ── STORY PARA ── */
.story-content p {
	font-family: var(--font-body);
	font-size: var(--text-body);
	line-height: var(--lh-body);
	margin-bottom: 28px;
	opacity: 0
}

/* ── STORY BTN ── */
.story-btn {
	font-family: var(--font-ui);
	font-size: var(--btn-md);
	letter-spacing: var(--ls-btn);
	display: inline-flex;
	align-items: center;
	gap: 30px;
	background: #fff;
	color: #111;
	padding: 13px 36px;
	border-radius: 40px;
	font-weight: 500;
	position: relative;
	overflow: hidden;
	transition: gap .3s, transform .3s, color .35s ease;
	opacity: 0;
	z-index: 1;
}

/* Dark fill layer */
.story-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #111;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s ease;
	z-index: -1;
}

/* Hover */
.story-btn:hover {
	gap: 20px;
	transform: translateX(4px);
	color: #fff;
}

.story-btn:hover::before {
	transform: scaleX(1);
}

@media (max-width: 768px) {
	.story-section {
		padding: 80px 0;
		background-attachment: scroll
	}

	.story-container {
		justify-content: center
	}

	.story-content {
		max-width: 100%;
		padding: 35px
	}
}

/* =====================================================
   SIGNATURE DEVELOPMENTS
   ===================================================== */
.signature-section {
	padding: 70px 0 60px;
	background: #fff;
	overflow: visible;
}

.signature-header {
	max-width: 1280px;
	margin: 0 auto 40px;
	padding: 0 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 100;
}

.signature-heading {
	font-family: var(--font-heading);
	font-size: var(--h2);
	font-weight: 400;
	letter-spacing: var(--ls-heading);
	color: #111;
	opacity: 0;
}

.news-slider-wrap,
.sig-filter-wrap {
	position: relative;
}

.signature-filter {
	font-family: var(--font-ui);
	font-size: var(--btn-sm);
	font-weight: 500;
	letter-spacing: var(--ls-btn);
	display: inline-flex;
	gap: 12px;
	align-items: center;
	cursor: pointer;
	opacity: 0;
	border: 1.5px solid #111;
	border-radius: 50px;
	padding: 12px 60px;
	text-transform: uppercase;
	color: #111;
	background: #fff;
	transition: background .3s, color .3s, border-color .3s;
	user-select: none;
}

.signature-filter .filter-arrow {
	font-size: 12px;
	transition: transform .35s;
}

.signature-filter.open {
	background: #111;
	color: #fff;
	border-color: #111;
	border-radius: 22px 22px 0 0;
}

.signature-filter.open .filter-arrow {
	transform: rotate(180deg);
}

.sig-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 100%;
	background: #111;
	border-radius: 0 0 18px 18px;
	list-style: none;
	padding: 6px 0 10px;
	margin: 0;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	pointer-events: none;
	transition: max-height .4s cubic-bezier(.4, 0, .2, 1), opacity .3s;
	z-index: 200;
}

.sig-dropdown.open {
	max-height: 260px;
	opacity: 1;
	margin-top: 10px;
	pointer-events: all;
}

.sig-drop-item {
	font-family: var(--font-ui);
	font-size: var(--btn-sm);
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 11px 28px;
	color: rgba(255, 255, 255, .7);
	cursor: pointer;
	transition: color .2s, padding-left .2s;
}

.sig-drop-item:hover {
	color: #fff;
	padding-left: 34px;
}

.sig-drop-item.active {
	color: #fff;
}

.signature-images {
	max-width: 1400px;
	margin: 0 auto 40px;
	padding: 0 50px;
	/* Removed grid to allow Swiper full width */
	display: block;
}

.sig-img-wrap {
	position: relative;
	overflow: hidden;
	clip-path: inset(0 100% 0 0);
	will-change: clip-path;
	border-radius: 0;
	cursor: pointer;
}

/* ── IMAGE ──
   GSAP controls transform (scale/translate) via inline style.
   We use filter — completely separate property, CSS transition works fine.
── */
.sig-img-wrap img {
	width: 100%;
	height: auto;
	display: block;
	filter: brightness(1) saturate(1);
	transition: filter 0.6s ease;
}

.sig-img-wrap:hover img {
	filter: brightness(1.1) saturate(1.15);
}

/* ── OVERLAY — smooth darken ── */
.sig-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.45) 0%,
			rgba(0, 0, 0, 0.08) 35%,
			rgba(0, 0, 0, 0.00) 100%);
	z-index: 1;
	transition: background 0.6s ease;
}

.sig-img-wrap:hover .sig-img-overlay {
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.72) 0%,
			rgba(0, 0, 0, 0.45) 50%,
			rgba(0, 0, 0, 0.22) 100%);
}

/* ── LABEL — subtle lift on hover ── */
.sig-img-label {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2;
	color: #fff;
	opacity: 0;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.sig-img-wrap:hover .sig-img-label {
	transform: translateY(-5px);
}

.sig-img-label .proj-name {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	display: block;
}

.sig-img-label .proj-location {
	font-family: var(--font-body);
	font-size: var(--text-xs);
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: .8;
	display: block;
	margin-top: 3px;
}

.signature-footer {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 50px;
	display: flex;
	justify-content: center;
}

.view-all-btn {
	font-family: var(--font-ui);
	font-size: var(--btn-sm);
	font-weight: 500;
	letter-spacing: var(--ls-btn);
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	opacity: 0;
	gap: 14px;
	background: #fff;
	color: #111;
	padding: 13px 36px;
	border-radius: 40px;
	border: 1px solid #111;
	position: relative;
	overflow: hidden;
	transition: transform .3s, color .35s ease;
	z-index: 1;
	text-decoration: none;
}

.view-all-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #111;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s ease;
	z-index: -1;
}

.view-all-btn .btn-icon {
	font-size: 12px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform .3s;
}

.view-all-btn:hover {
	color: #fff;
	transform: translateY(-3px);
}

.view-all-btn:hover::before {
	transform: scaleX(1);
}

.view-all-btn:hover .btn-icon {
	transform: translateX(4px);
}

/* =====================================================
   SIGNATURE ARROWS (SEPARATE)
   ===================================================== */

.signature-images {
  position: relative;
}

/* Arrow base */
.sig-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 46px;
  height: 46px;

  border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.25); /* glass base */

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  box-shadow: 0 2px 12px rgba(0, 0, 0, .1);

  transition: all 0.3s ease;
}

/* Position */
.sig-prev {
  left: 5px;
}

.sig-next {
  right: 5px;
}

/* Hover */
.sig-arr:hover {
  background: #111;
  border-color: #111;
  transform: translateY(-50%) scale(1.05);
}

/* Disabled */
.sig-arr.swiper-button-disabled {
  opacity: 0.25;
  pointer-events: none;
}

/* Icon */
.sig-arr svg {
  width: 18px;
  height: 18px;
  stroke: #111;
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s ease;
}

.sig-arr:hover svg {
  stroke: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .sig-prev {
    left: 5px;
  }

  .sig-next {
    right: 5px;
  }
}


/* ── RESPONSIVE ── */
@media (max-width: 992px) {
	.sig-img-wrap img {
		height: 350px;
		object-fit: cover;
	}
}

@media (max-width: 768px) {
	.signature-section {
		padding: 50px 0 50px;
	}

	.signature-header {
		padding: 0 20px;
		margin-bottom: 24px;
	}

	.signature-images {
		padding: 0 20px;
	}

	.sig-swiper .swiper-slide.sig-slide {
		width: 100%;
	}

	.sig-img-wrap img {
		height: 260px;
		object-fit: cover;
	}

	.view-all-btn {
		padding: 13px 30px;
	}
}

@media (max-width: 480px) {
	.signature-heading {
		letter-spacing: 1.5px;
	}

	.sig-img-wrap img {
		height: 210px;
	}

	.view-all-btn {
		justify-content: center;
	}
}

/* =====================================================
   SARVOTTAM DIFFERENCE
   ===================================================== */
/* =====================================================
   SARVOTTAM DIFFERENCE — UPDATED
   ===================================================== */
.difference-section {
	background: #c8d8ea;
	overflow: hidden;
	padding: 0
}

.difference-inner {
	display: flex;
	align-items: stretch;
	min-height: 560px
}

.diff-left-content {
	display: flex;
	flex-direction: column;
	padding: 0 130px
}

.diff-left {
	flex: 0 0 50%;
	max-width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0;
	transform: translateY(30px)
}

/* ── DIFFERENCE HEADING ── */
.diff-heading {
	font-family: var(--font-heading);
	font-size: var(--h2);
	font-weight: 400;
	letter-spacing: var(--ls-heading);
	text-transform: uppercase;
	color: #111;
	margin-bottom: 24px;
	line-height: var(--lh-heading)
}

/* ── DIFFERENCE PARA ── */
.diff-para {
	font-family: var(--font-body);
	font-size: var(--text-body);
	line-height: var(--lh-body);
	color: #333
}

.diff-right {
	flex: 0 0 50%;
	max-width: 50%;
	display: flex;
	align-items: stretch
}

.diff-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	border-left: 2px solid rgba(114, 5, 5, .6);
	overflow: hidden;
	/* ── Reveal from TOP (image upar se aayegi) ── */
	clip-path: inset(0 0 100% 0);
	will-change: clip-path
}

.diff-img {
	flex: 1 1 50%;
	position: relative;
	overflow: hidden
}

.diff-img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transform: scale(1.06)
}

/* ── DEFAULT overlays (col 2, 3, 4) ── */
.diff-img::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none
}

.diff-col:nth-child(2) .diff-img::after,
.diff-col:nth-child(4) .diff-img::after {
	background: linear-gradient(to bottom, rgb(200 216 234), transparent 50%)
}

.diff-col:nth-child(3) .diff-img::after {
	background: linear-gradient(to top, rgb(200 216 234), transparent 50%)
}

/* ── COL 1 — SMOKE from bottom ── */
.diff-col:first-child .diff-img::after {
	background: linear-gradient(to top,
			rgba(200, 216, 234, 0.95) 0%,
			rgba(200, 216, 234, 0.55) 28%,
			rgba(200, 216, 234, 0.12) 55%,
			transparent 80%)
}

/* Extra smoke layer for depth */
.diff-col:first-child .diff-img::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background: radial-gradient(ellipse 120% 60% at 50% 105%,
			rgba(200, 216, 234, 0.7) 0%,
			rgba(200, 216, 234, 0.3) 40%,
			transparent 70%)
}

.diff-label {
	flex: 1 1 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden
}

/* ── DIFF LABELS (vertical) ── */
.diff-label span {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: #1a2035;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	opacity: 0;
	will-change: opacity, transform
}

.diff-col:nth-child(2),
.diff-col:nth-child(4) {
	flex-direction: column-reverse
}

.diff-col:first-child {
	border-left: none
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
	.diff-left-content {
		padding: 0
	}

	.diff-left {
		padding: 60px 40px 60px 50px
	}

	.diff-label span {
		font-size: 18px;
		letter-spacing: 5px
	}
}

@media (max-width: 900px) {
	.difference-inner {
		flex-direction: column;
		min-height: auto
	}

	.diff-left-content {
		padding: 0
	}

	.diff-left {
		flex: none;
		max-width: 100%;
		padding: 55px 36px;
		text-align: center
	}

	.diff-right {
		flex: none;
		max-width: 100%;
		height: 420px
	}

	.diff-label span {
		font-size: 16px;
		letter-spacing: 4px
	}
}

@media (max-width: 600px) {
	.diff-left {
		padding: 45px 22px
	}

	.diff-right {
		height: 320px
	}

	.diff-left-content {
		padding: 0
	}

	.diff-label span {
		font-size: 18px;
		letter-spacing: 3px
	}
}

@media (max-width: 420px) {
	.diff-right {
		height: 260px
	}

	.diff-label span {
		font-size: 18px;
		letter-spacing: 2.5px
	}
}

/* =====================================================
   FIND YOUR PERFECT SPACE
   ===================================================== */
/* =====================================================
   FIND YOUR PERFECT SPACE — UPDATED
   ===================================================== */
.fps-section {
	width: 100%;
	padding-top: 60px;
	background: #fff
}

.fps-header {
	max-width: 1280px;
	margin: 0 auto;
	padding: 60px 50px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px
}

/* ── FPS TITLE ── */
.fps-title {
	font-family: var(--font-heading);
	font-size: var(--h2);
	font-weight: 400;
	letter-spacing: var(--ls-heading);
	color: #1a1a1a;
	opacity: 0;
	transform: translateY(20px);
	animation: .8s cubic-bezier(.4, 0, .2, 1) .2s forwards fadeUp
}

/* ── FPS BTN ── */
.fps-btn {
	font-family: var(--font-ui);
	font-size: var(--btn-md);
	letter-spacing: var(--ls-btn);
	background: transparent;
	color: #111;
	border: 1px solid #111;
	padding: 13px 36px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 28px;
	border-radius: 40px;
	opacity: 0;
	transform: translateY(20px);
	position: relative;
	overflow: hidden;
	transition: gap .3s, color .35s ease;
	animation: .8s cubic-bezier(.4, 0, .2, 1) .4s forwards fadeUp;
	z-index: 1;
}

/* Black fill layer */
.fps-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #111;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s ease;
	z-index: -1;
}

.fps-btn-arrow {
	font-size: 15px;
	display: inline-block;
	transition: transform .3s;
}

/* Hover */
.fps-btn:hover {
	color: #fff;
	gap: 20px;
}

.fps-btn:hover::before {
	transform: scaleX(1);
}

.fps-btn:hover .fps-btn-arrow {
	transform: translateX(4px);
}

/* ── GRID ── */
.fps-grid {
	width: 100%;
	display: flex;
	height: 560px
}

/* ── CARD BASE ── */
.fps-card {
	cursor: pointer;
	flex: 1;
	position: relative;
	overflow: hidden;
	opacity: 0;
	animation: .9s cubic-bezier(.4, 0, .2, 1) forwards cardReveal
}

.fps-card:first-child {
	animation-delay: .3s
}

.fps-card:nth-child(2) {
	animation-delay: .5s
}

.fps-card:nth-child(3) {
	animation-delay: .7s
}

.fps-card:nth-child(4) {
	animation-delay: .9s
}

/* ── BACKGROUND IMAGE ── */
.fps-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--bg);
	background-size: cover;
	background-position: center;
	transition: transform .7s cubic-bezier(.4, 0, .2, 1), filter .55s;
	z-index: 0;
	filter: blur(0px) brightness(1)
}

.fps-card:hover::before {
	transform: scale(1.06);
	filter: blur(4px) brightness(.65)
}

/* ── DEFAULT OVERLAY — har card pe halki dark overlay ── */
.fps-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.32);
	/* default — sabpe dikh rahi hai */
	transition: background .5s
}

.fps-card:hover .fps-overlay {
	background: rgba(0, 0, 0, 0.52)
		/* hover pe thodi aur dark */
}

/* ── CONTENT — bilkul center ── */
.fps-content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* top-bottom perfect center */
	gap: 10px;
	padding: 0 20px;
	/* left-right padding only */
	text-align: center
}

/* ── FPS CARD TITLE ── */
.fps-card-title {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 400;
	letter-spacing: 3px;
	color: #fff;
	transition: letter-spacing .4s, transform .45s cubic-bezier(.4, 0, .2, 1);
	text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.fps-card:hover .fps-card-title {
	letter-spacing: 4.5px;
	transform: translateY(-4px)
}

/* ── LINE — REMOVED (hatadi) ── */
.fps-card-line {
	display: none
}

/* ── FPS CARD TEXT ── */
.fps-card-text {
	font-family: var(--font-body);
	font-size: var(--text-small);
	color: rgba(255, 255, 255, .9);
	line-height: var(--lh-body);
	max-width: 220px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .4s .15s, transform .45s cubic-bezier(.4, 0, .2, 1) .15s
}

.fps-card:hover .fps-card-text {
	opacity: 1;
	transform: translateY(0)
}

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

@keyframes cardReveal {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
	.fps-header {
		padding: 50px 40px 32px
	}

	.fps-grid {
		height: 480px
	}
}

@media (max-width: 768px) {
	.fps-header {
		padding: 36px 24px 24px
	}

	.fps-btn {
		padding: 11px 20px;
		gap: 12px
	}

	.fps-grid {
		flex-wrap: wrap;
		height: auto
	}

	.fps-card {
		flex: 0 0 50%;
		height: 300px
	}

	.fps-card::before {
		filter: blur(3px) brightness(.65)
	}

	/* mobile pe text hamesha visible */
	.fps-card-text {
		opacity: 1;
		transform: translateY(0)
	}
}

@media (max-width: 480px) {
	.fps-header {
		gap: 16px;
		padding: 30px 20px 20px
	}

	.fps-btn {
		align-self: flex-end
	}

	.fps-grid {
		flex-direction: column
	}

	.fps-card {
		flex: none;
		width: 100%;
		height: 240px
	}
}

/* ── TOUCH ACTIVE (mobile tap) ── */
.fps-card.fps-touch-active::before {
	transform: scale(1.06);
	filter: blur(3px) brightness(.6)
}

.fps-card.fps-touch-active .fps-overlay {
	background: rgba(0, 0, 0, .5)
}

.fps-card.fps-touch-active .fps-card-text {
	opacity: 1;
	transform: translateY(0)
}

.fps-card.fps-touch-active .fps-card-title {
	letter-spacing: 4px;
	transform: translateY(-4px)
}

/* =====================================================
   CLIENTS & PARTNERS
   ===================================================== */
.clients-section {
	background: #c8d8ea;
	padding-top: 70px;
	padding-bottom: 40px
}

.clients-section-sec {
	background: #c8d8ea;
	padding-top: 50px;
	padding-bottom: 80px
}

.clients-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center
}

/* ── CLIENTS TITLE ── */
.clients-title {
	font-family: var(--font-heading);
	font-size: var(--h2);
	font-weight: 400;
	letter-spacing: var(--ls-heading);
	color: #111;
	text-transform: uppercase;
	margin-bottom: 50px;
	position: relative
}


.clients-logos,
.clients-logos-new {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px
}

.client-logo,
.client-logo-new {
	opacity: 0;
	transform: translateY(40px) scale(.95);
	will-change: transform, opacity, filter
}

.clients-logos img,
.clients-logos-new img {
	object-fit: contain;
	/* filter: grayscale(100%); */
	opacity: .7;
	transition: .35s;
	cursor: pointer
}

.clients-logos img {
	height: 70px
}

.clients-logos-new img {
	height: 40px
}

.clients-logos img:hover,
.clients-logos-new img:hover {
	/* filter: grayscale(0%); */
	opacity: 1;
	transform: scale(1.05)
}

@media (max-width: 768px) {
	.clients-logos {
		gap: 35px
	}

	.clients-logos img {
		max-height: 40px
	}

	.clients-section {
		padding-top: 50px;
	}

	.clients-section-sec {
		padding-top: 30px;
		padding-bottom: 50px;
	}
}

/* =====================================================
   NEWS SPOTLIGHT
   ===================================================== */
.news-section {
	background: #7d3f4e;
	padding: 70px 0 80px
}

.blog-inner,
.news-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 60px
}

.blog-header,
.news-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px
}

.blog-header-left,
.news-header-left {
	display: flex;
	flex-direction: column;
	gap: 8px
}

/* ── NEWS EYEBROW ── */
.news-eyebrow {
	font-family: var(--font-ui);
	font-size: var(--h-eyebrow);
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6)
}

/* ── NEWS TITLE ── */
.news-title {
	font-family: var(--font-heading);
	font-size: var(--h2);
	font-weight: 400;
	letter-spacing: var(--ls-heading);
	text-transform: uppercase;
	color: #fff;
	margin: 0
}

.newsSwiper {
	overflow: hidden
}

.ns-card {
	background: #f5f3f0;
	display: flex;
	flex-direction: column;
	height: 100%
}

.ns-card__img {
	width: 100%;
	height: 220px;
	background: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--text-xs);
	color: #555;
	flex-shrink: 0;
	overflow: hidden;
	letter-spacing: 2px;
	text-transform: uppercase
}

.ns-card__img img {
	width: 100%;
	height: 100%
}

.bl-card__img img,
.ns-card__img img {
	transition: transform .6s;
	object-fit: cover;
	display: block
}

.ns-card__body {
	padding: 18px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px
}

.ns-card__info {
	display: flex;
	flex-direction: column;
	gap: 4px
}

/* ── NEWS CARD HEADLINE ── */
.ns-card__headline {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #111;
	margin: 0
}

/* ── NEWS CARD DATE ── */
.ns-card__date {
	font-family: var(--font-ui);
	font-size: var(--text-xs);
	letter-spacing: .5px;
	color: #888
}

/* ── NEWS CARD BTN ── */
.ns-card__btn {
	font-family: var(--font-ui);
	font-size: var(--text-xs);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #111;
	border: 1px solid #333;
	padding: 8px 18px;
	border-radius: 50px;
	flex-shrink: 0;
	white-space: nowrap;
	transition: background .3s, color .3s
}

.ns-card__btn:hover {
	background: #111;
	color: #fff
}

.bl-arr,
.ns-arr {
	top: 50%;
	transform: translateY(-50%);
	z-index: 10
}

.ns-arr {
	position: absolute;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .5);
	background: rgba(0, 0, 0, .25);
	backdrop-filter: blur(4px);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .3s, border-color .3s
}

.ns-arr--prev,
.bl-arr--prev {
	left: -30px
}

.ns-arr--next {
	right: -30px
}

.ns-arr:hover {
	background: rgba(255, 255, 255, .2);
	border-color: #fff
}

.ns-arr.swiper-button-disabled {
	opacity: .25;
	pointer-events: none
}

.ns-arr svg {
	width: 18px;
	height: 18px;
	stroke-width: 2;
	fill: none
}

@media (max-width: 1024px) {
	.news-inner {
		padding: 0 40px
	}
}

@media (max-width: 768px) {
	.news-section {
		padding: 50px 0 60px
	}

	.news-inner {
		padding: 0 30px
	}

	.ns-arr {
		width: 36px;
		height: 36px
	}

	.ns-arr--prev {
		left: -18px
	}

	.ns-arr--next {
		right: -18px
	}

	.ns-arr svg {
		width: 14px;
		height: 14px
	}
}

@media (max-width: 480px) {
	.news-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px
	}
}

/* =====================================================
   BLOG SECTION
   ===================================================== */
.about,
.about__layout,
.about__name,
.about__photo,
.about__slider,
.bl-card__img,
.blog-swiper-clip,
.faq-answer,
.faq-image-wrap,
.faq-item {
	overflow: hidden
}

/* =====================================================
   BLOG SECTION — Updated to match News section style
   ===================================================== */

.blog-section {
	background: #fff;
	padding: 70px 0 80px
}

.blog-eyebrow {
	font-family: var(--font-ui);
	font-size: var(--h-eyebrow);
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	color: #999
}

.blog-title {
	font-family: var(--font-heading);
	font-size: var(--h2);
	font-weight: 400;
	letter-spacing: var(--ls-heading);
	text-transform: uppercase;
	color: #111;
	margin: 0
}

/* ── SLIDER WRAP — same pattern as news ── */
.blog-slider-wrap {
	position: relative;
}

.blogSwiper {
	overflow: hidden
}

.blog-swiper-clip {
	margin: 0;
	padding: 0;
	overflow: visible
}

.blogSwiper .swiper-slide {
	transition: none;
	transform: none !important;
	opacity: 1 !important;
	height: auto;
	display: flex
}

.bl-card {
	background: #111;
	display: flex;
	flex-direction: column;
	width: 100%
}

.bl-card__img {
	width: 100%;
	aspect-ratio: 16/10;
	background: #d0d0d0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--text-xs);
	color: #999;
	flex-shrink: 0;
	overflow: hidden
}

.bl-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s
}

.bl-card__body {
	padding: 22px 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1
}

.bl-card__title {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1.4;
	color: #fff;
	margin: 0
}

.bl-card__excerpt {
	font-family: var(--font-body);
	font-size: var(--text-small);
	line-height: var(--lh-body);
	color: #aaa;
	flex: 1
}

.bl-card__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, .08)
}

.bl-card__meta {
	font-family: var(--font-ui);
	font-size: var(--text-xs);
	color: #777;
	line-height: 1.7;
	display: flex;
	flex-direction: column;
	gap: 2px
}

.bl-card__btn {
	font-family: var(--font-ui);
	font-size: var(--text-xs);
	letter-spacing: 1.5px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #111;
	border: none;
	padding: 10px 18px;
	border-radius: 40px;
	cursor: pointer;
	white-space: nowrap;
	transition: background .25s
}

.bl-card__btn:hover {
	background: #e0e0e0
}

/* ── ARROWS — same style/position as news arrows ── */
.bl-arr {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid #ccc;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
	background: #fff;
	display: flex;
	align-items: center;
	cursor: pointer;
	justify-content: center;
	transition: background .3s, border-color .3s
}

.bl-arr--prev {
	left: -30px
}

.bl-arr--next {
	right: -30px
}

.bl-arr:hover {
	background: #111;
	border-color: #111
}

.bl-arr.swiper-button-disabled {
	opacity: .25;
	pointer-events: none
}

.bl-arr svg {
	width: 18px;
	height: 18px;
	stroke: #111;
	stroke-width: 2;
	fill: none;
	transition: stroke .3s
}

.bl-arr:hover svg {
	stroke: #fff
}

/* ── VIEW ALL ── */
.blog-viewall {
	text-align: center;
	margin-top: 50px
}

/* ── BLOG VIEW ALL BTN ── */
.blog-viewall-btn {
	font-family: var(--font-ui);
	font-size: var(--btn-sm);
	letter-spacing: var(--ls-btn);
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	color: #111;
	padding: 15px 48px;
	border-radius: 50px;
	border: 1px solid #111;
	position: relative;
	overflow: hidden;
	transition: color .35s ease, transform .3s;
	z-index: 1;
}

/* Black fill layer */
.blog-viewall-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #111;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s ease;
	z-index: -1;
}

/* Icon */
.blog-viewall-btn svg {
	width: 16px;
	height: 16px;
	stroke: #111;
	stroke-width: 2.5;
	fill: none;
	transition: transform .3s, stroke .35s ease;
}

/* Hover */
.blog-viewall-btn:hover {
	color: #fff;
	transform: translateY(-3px);
}

.blog-viewall-btn:hover::before {
	transform: scaleX(1);
}

.blog-viewall-btn:hover svg {
	stroke: #fff;
	transform: translateX(4px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
	.blog-inner {
		padding: 0 40px
	}
}

@media (max-width: 768px) {
	.blog-section {
		padding: 50px 0 60px
	}

	.blog-inner {
		padding: 0 30px
	}

	.bl-arr {
		width: 36px;
		height: 36px
	}

	.bl-arr--prev {
		left: -18px
	}

	.bl-arr--next {
		right: -18px
	}

	.bl-arr svg {
		width: 14px;
		height: 14px
	}
}

@media (max-width: 480px) {
	.blog-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px
	}

	.blog-viewall-btn {
		padding: 13px 32px
	}
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-image-placeholder,
.faq-image-wrap img {
	height: 600px;
	width: 100%
}

.faq-section {
	background: #c1d3ee;
	padding: 80px 100px;
	display: flex;
	align-items: center
}

.faq-inner {
	max-width: 1280px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	width: 100%;
	padding: 0 50px
}


.faq-image-wrap img {
	object-fit: cover;
	display: block
}

.faq-image-placeholder {
	background: linear-gradient(135deg, #b0c4de 0, #8fadd4 50%, #6d94c8 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-body);
	font-size: var(--text-body);
	letter-spacing: 2px
}

.faq-right {
	display: flex;
	flex-direction: column
}

/* ── FAQ TITLE ── */
.faq-title {
	font-family: var(--font-heading);
	font-size: var(--h2);
	font-weight: 400;
	letter-spacing: var(--ls-heading);
	color: #2c2c2c;
	margin-bottom: 36px;
	line-height: var(--lh-heading)
}

.faq-list {
	border-top: 1px solid #b0bad0
}

.faq-item {
	border-bottom: 1px solid #8f4555;
	transition: background .3s
}

.faq-question {
	width: 100%;
	background: 0 0;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	cursor: pointer;
	text-align: left;
	gap: 16px
}

/* ── FAQ QUESTION TEXT ── */
.faq-question span {
	font-family: var(--font-ui);
	font-size: var(--text-body);
	font-weight: 400;
	color: #2c2c2c;
	line-height: 1.4;
	flex: 1
}

.faq-cta,
.faq-icon {
	display: flex;
	align-items: center
}

.faq-icon {
	justify-content: center;
	transition: .35s;
	flex-shrink: 0;
	background: 0 0
}

.faq-chevron {
	width: 8px;
	height: 8px;
	border-right: 2px solid #444;
	border-bottom: 2px solid #444;
	transform: rotate(45deg);
	transition: transform .35s, border-color .3s
}

.faq-item.open .faq-chevron {
	transform: rotate(-135deg)
}

.faq-question:hover .faq-icon {
	box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.faq-answer {
	max-height: 0;
	transition: max-height .45s cubic-bezier(.4, 0, .2, 1), opacity .35s, padding .35s;
	opacity: 0;
	padding-bottom: 0
}

.faq-item.open .faq-answer {
	max-height: 300px;
	opacity: 1;
	padding-bottom: 18px
}

/* ── FAQ ANSWER TEXT ── */
.faq-answer p {
	font-family: var(--font-body);
	font-size: var(--text-small);
	color: #555;
	line-height: var(--lh-body);
	padding-right: 40px
}

.faq-cta {
	justify-content: space-between;
	margin-top: 36px;
	gap: 20px
}

.about__play,
.faq-cta-btn {
	display: flex;
	align-items: center;
	cursor: pointer
}

/* ── FAQ CTA TEXT ── */
.faq-cta-text {
	font-family: var(--font-ui);
	font-size: var(--text-body);
	color: #2c2c2c;
	font-weight: 600
}

/* ── FAQ CTA BTN ── */
/* ── FAQ CTA BTN ── */
.faq-cta-btn {
	font-family: var(--font-ui);
	font-size: var(--btn-md);
	letter-spacing: var(--ls-btn);
	background: #8b4040;
	color: #fff;
	border: none;
	padding: 13px 36px;
	gap: 16px;
	border-radius: 40px;
	white-space: nowrap;
	min-width: 200px;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	transition: transform .2s, color .35s ease;
	z-index: 1;
}

/* Black fill layer */
.faq-cta-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #000;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s ease;
	z-index: -1;
}

/* Hover */
.faq-cta-btn:hover {
	transform: translateX(3px);
	color: #fff;
}

.faq-cta-btn:hover::before {
	transform: scaleX(1);
}

.faq-arrow {
	transition: transform .3s
}

@media (max-width: 1024px) {
	.faq-section {
		padding: 60px 40px
	}

	.faq-inner {
		gap: 50px
	}
}

@media (max-width: 768px) {
	.faq-section {
		padding: 50px 24px
	}

	.faq-inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 0
	}

	.faq-image-placeholder,
	.faq-image-wrap img {
		height: 320px
	}

	.faq-title {
		margin-bottom: 24px
	}

	.faq-cta {
		flex-direction: column;
		align-items: flex-start
	}

	.faq-answer p {
		padding-right: 0
	}
}

@media (max-width: 480px) {
	.faq-question span {
		font-size: 13px
	}
}

/* =====================================================
   CTA VISIT SECTION
   ===================================================== */
.cta-visit-section {
	position: relative;
	padding-top: 70px;
	padding-bottom: 70px;
	background: url('/assets/images/frontend/homepage/dream-prop-back.png') center/cover no-repeat;
	color: #fff;
	overflow: hidden
}

.cta-visit-overlay {
	position: absolute;
	inset: 0
}

.w-width {
	max-width: 1280px;
	padding: 0 50px
}

.cta-visit-inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px
}

.cta-visit-left {
	max-width: 520px
}

/* ── CTA HEADING ── */
.cta-visit-heading {
	font-family: var(--font-heading);
	font-size: var(--h2);
	font-weight: 400;
	letter-spacing: var(--ls-heading);
	text-transform: uppercase;
	margin-bottom: 16px;
	line-height: var(--lh-heading);
	color: #111
}

/* ── CTA PARA ── */
.cta-visit-text {
	font-family: var(--font-body);
	font-size: var(--text-body);
	line-height: var(--lh-body);
	opacity: .95;
	color: #111
}

.cta-visit-right {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-left: auto
}

/* ── CTA BTN ── */
/* ── CTA VISIT BTN ── */
.cta-visit-btn {
	font-family: var(--font-ui);
	font-size: var(--btn-md);
	letter-spacing: var(--ls-btn);
	padding: 13px 36px;
	text-decoration: none;
	border-radius: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	overflow: hidden;
	transition: transform .3s, color .35s ease;
	z-index: 1;
}

/* Default maroon buttons */
.cta-visit-btn.primary,
.cta-visit-btn.secondary {
	background: #8b4040;
	color: #fff;
}

/* Black fill layer */
.cta-visit-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #000;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s ease;
	z-index: -1;
}

/* Hover */
.cta-visit-btn.primary:hover,
.cta-visit-btn.secondary:hover {
	transform: translateX(4px);
	color: #fff;
}

.cta-visit-btn.primary:hover::before,
.cta-visit-btn.secondary:hover::before {
	transform: scaleX(1);
}

@media (max-width: 992px) {
	.cta-visit-heading {
		font-size: 22px
	}
}

@media (max-width: 768px) {
	.cta-visit-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.cta-visit-inner {
		flex-direction: column;
		align-items: flex-start
	}

	.w-width {
		padding: 0px 20px;
	}

	.cta-visit-right {
		margin-left: 0;

	}

	.cta-visit-inner {
		gap: 30px;
	}
}

/* =====================================================
   ABOUT / TEAM SECTION
   ===================================================== */
.about {
	background: #fff
}

.about__header {
	max-width: 1280px;
	margin: 0 auto;
	padding-top: 70px;
	padding-left: 50px;
	display: flex;
	flex-direction: column;
	gap: 10px
}

/* ── ABOUT EYEBROW ── */
.about__eyebrow,
.about__header-eyebrow {
	font-family: var(--font-ui);
	font-size: var(--h-eyebrow);
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	color: #999
}

/* ── ABOUT HEADER TITLE ── */
.about__header-title {
	font-family: var(--font-heading);
	font-size: var(--h2);
	font-weight: 400;
	letter-spacing: var(--ls-heading);
	text-transform: uppercase;
	color: #111;
	line-height: var(--lh-heading);
	margin: 0
}

.about__layout {
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 570px;
	margin-top: 40px;
	margin-bottom: 40px;
}

.about__slider {
	flex: 1;
	min-width: 0;
	position: relative;
	height: 570px
}

.about__track {
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	gap: 6px;
	will-change: contents
}

.about__card {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	will-change: transform, opacity
}

.about__photo {
	position: relative;
	width: 100%;
	background: #c8c4be;
	height: 210px;
	transition: height .7s cubic-bezier(.25, .46, .45, .94);
	will-change: height;
	overflow: hidden
}

.about__card:last-child .about__photo {
	height: 500px
}

.about__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
	filter: brightness(.5);
	transition: filter .7s, transform .8s;
	will-change: filter, transform
}

.about__card:last-child .about__photo img {
	filter: brightness(1);
	transform: scale(1.03)
}

.about__play {
	position: absolute;
	inset: 0;
	justify-content: center;
	background: 0 0;
	border: none;
	opacity: 0;
	pointer-events: none;
	transition: opacity .35s
}

.about__btn,
.about__play-disc {
	border-radius: 50%;
	display: flex
}

.about__card:last-child .about__play,
.lb.open {
	opacity: 1;
	pointer-events: auto
}

.about__play-disc {
	width: 58px;
	height: 58px;
	background: rgba(255, 255, 255, .92);
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, .22);
	transition: transform .25s, background .25s
}

.about__play:hover .about__play-disc {
	transform: scale(1.1);
	background: #fff
}

.about__play-disc svg {
	width: 16px;
	height: 16px;
	fill: #111;
	margin-left: 3px
}

/* ── ABOUT PERSON NAME ── */
.about__name {
	font-family: var(--font-ui);
	font-size: var(--text-xs);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #111;
	margin-top: 12px;
	opacity: 0;
	transform: translateY(5px);
	transition: opacity .4s .25s, transform .4s .25s;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.about__card:last-child .about__name {
	opacity: 1;
	transform: translateY(0)
}

.about__content {
	width: 600px;
	flex-shrink: 0;
	height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 28px 55px 140px 45px
}

.about__info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 18px
}

.about__btn,
.lb {
	align-items: center
}

/* ── ABOUT HEADING ── */
.about__heading {
	font-family: var(--font-heading);
	font-size: var(--h2);
	font-weight: 400;
	letter-spacing: var(--ls-heading);
	text-transform: uppercase;
	color: #111;
	line-height: var(--lh-heading)
}

/* ── ABOUT TEXT ── */
.about__text {
	font-family: var(--font-body);
	font-size: var(--text-small);
	line-height: var(--lh-body);
	color: #777
}

.about__info.fade-in {
	animation: .45s forwards infoFade
}

@keyframes infoFade {
	from {
		opacity: 0;
		transform: translateY(8px)
	}

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

.about__btn {
	width: 50px;
	height: 50px;
	background: #111;
	border: none;
	cursor: pointer;
	justify-content: center;
	align-self: flex-end;
	flex-shrink: 0;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
	transition: background .3s, transform .2s
}

.about__btn:hover {
	background: #333;
	transform: scale(1.07)
}

.about__btn svg {
	width: 17px;
	height: 17px;
	stroke: #fff;
	stroke-width: 2.2;
	fill: none
}

.about--mobile {
	display: none
}

@media (max-width: 900px) {
	.about--desktop {
		display: none
	}

	.about--mobile {
		display: block;
		padding: 0px 0 30px
	}

	.mob-card {
		display: flex;
		flex-direction: column;
		background: #fff
	}

	.mob-card__img {
		position: relative;
		width: 100%;
		aspect-ratio: 3/4;
		overflow: hidden;
		background: #c8c4be
	}

	.mob-card__img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: top center;
		display: block
	}

	.mob-card__play {
		position: absolute;
		inset: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		background: 0 0;
		border: none;
		cursor: pointer
	}

	.mob-card__play-disc {
		width: 52px;
		height: 52px;
		border-radius: 50%;
		background: rgba(255, 255, 255, .9);
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 6px 24px rgba(0, 0, 0, .2)
	}

	.mob-card__play-disc svg {
		width: 15px;
		height: 15px;
		fill: #111;
		margin-left: 3px
	}

	/* ── MOB CARD NAME ── */
	.mob-card__name {
		font-family: var(--font-ui);
		font-size: var(--text-xs);
		letter-spacing: 2px;
		text-transform: uppercase;
		color: #111;
		margin-top: 10px;
		padding: 0 4px
	}

	.mob-content {
		padding: 28px 24px 0;
		display: flex;
		flex-direction: column;
		gap: 16px
	}

	/* ── MOB EYEBROW ── */
	.mob-eyebrow,
	.mob-header-eyebrow {
		font-family: var(--font-ui);
		font-size: var(--h-eyebrow);
		letter-spacing: var(--ls-eyebrow);
		text-transform: uppercase;
		color: #999
	}

	/* ── MOB INFO HEADING ── */
	.mob-info__heading {
		font-family: var(--font-heading);
		font-size: var(--h2);
		font-weight: 400;
		letter-spacing: var(--ls-heading);
		text-transform: uppercase;
		color: #111;
		line-height: var(--lh-heading)
	}

	/* ── MOB INFO TEXT ── */
	.mob-info__text {
		font-family: var(--font-body);
		font-size: var(--text-small);
		line-height: var(--lh-body);
		color: #777
	}

	.mob-info.fade-in {
		animation: .4s forwards infoFade
	}

	.mob-header {
		padding: 50px 24px 28px;
		display: flex;
		flex-direction: column;
		gap: 8px
	}

	/* ── MOB HEADER TITLE ── */
	.mob-header-title {
		font-family: var(--font-heading);
		font-size: var(--h2);
		font-weight: 400;
		letter-spacing: var(--ls-heading);
		text-transform: uppercase;
		color: #111;
		line-height: var(--lh-heading);
		margin: 0
	}

	.mob-swiper {
		padding: 0 24px !important;
		overflow: hidden
	}

	.mob-swiper .swiper-slide {
		width: 100%
	}
}

@media(max-width:768px) {
	.mob-nav {
		display: none;
	}
}

@media (min-width: 480px) and (max-width: 900px) {
	.mob-swiper .swiper-slide {
		width: 50%
	}

	.mob-nav {
		display: flex;
		justify-content: center;
		margin-top: 28px;
		padding-bottom: 10px
	}

	.mob-next {
		width: 48px;
		height: 48px;
		border-radius: 50%;
		background: #111;
		border: none;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
		transition: background .3s
	}

	.mob-next:hover {
		background: #333
	}

	.mob-next svg {
		width: 16px;
		height: 16px;
		stroke: #fff;
		stroke-width: 2.2;
		fill: none
	}
}

/* =====================================================
   LIGHTBOX
   ===================================================== */
.lb {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, .88);
	display: flex;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px)
}

.lb__box {
	position: relative;
	width: 88%;
	max-width: 860px;
	aspect-ratio: 16/9;
	background: #000;
	box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
	transform: scale(.88) translateY(24px);
	transition: transform .45s cubic-bezier(.4, 0, .2, 1)
}

.lb.open .lb__box {
	transform: scale(1) translateY(0)
}

.lb__box iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block
}

.lb__close {
	position: absolute;
	top: -48px;
	right: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: 0 0;
	border: 1px solid rgba(255, 255, 255, .35);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .25s
}

.lb__close:hover {
	background: rgba(255, 255, 255, .15)
}

.lb__close svg {
	width: 12px;
	height: 12px;
	stroke: #fff;
	stroke-width: 2;
	fill: none
}



