/*
Theme Name: Whitetops Global
Theme URI: https://whitetopsglobal.com
Author: Whitetops Global
Author URI: https://whitetopsglobal.com
Description: Executive custom theme for Whitetops Global - Designed for strategic advisory, corporate restructuring, and global expansion led by Govind Shahi.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: whitetops-global
*/

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
:root {
	--primary-sage: #1c442a;
	--primary-sage-light: #4e7a63;
	--stat-green: #558165;
	--text-dark: #282828;
	--text-white: #e9e9e7;
	--text-white-muted: rgba(233, 233, 231, 0.72);
	--container_width: 100%;
	--container_left_space: calc((100% - var(--container_width)) / 2);
	--transition: ease all 300ms;
}

@media (min-width: 768px) and (max-width: 991px) {
	:root {
		--container_width: 750px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	:root {
		--container_width: 970px;
	}
}

@media (min-width: 1200px) {
	:root {
		--container_width: 1170px;
	}
}

@media (min-width: 1401px) {
	:root {
		--container_width: 1310px;
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Lenis Smooth Scroll Setup */
html.lenis, html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-smooth iframe {
	pointer-events: none;
}

html {
	overflow-x: hidden;
}

body {
	margin: 0;
	overflow-x: hidden;
	font-family: 'Inter', sans-serif;
}

img {
	max-width: 100%;
	display: block;
}

.container-fluid,
.container {
	width: 100%;
	position: relative;
	padding-left: 15px;
	padding-right: 15px;
}

.container {
	margin: 0 auto;
	width: var(--container_width);
}

::-webkit-scrollbar {
	width: 5px;
	height: 3px;
	background: #e9e9e7;
}
@media only screen and (max-width: 767px) {
	::-webkit-scrollbar {
		height: 0;
		background: transparent;
	}
}

/* Track */
::-webkit-scrollbar-track {
	border-radius: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #1c442a;
	border-radius: 3px;
}


.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	padding: 30px 0;
	background-color: transparent;
	transition: var(--transition);
}

.site-header.scrolled {
	position: fixed;
	padding: 18px 0;
	background-color: rgba(4, 20, 11, 0.92);
	backdrop-filter: blur(6px);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-logo {
	display: block;
	flex-shrink: 0;
	line-height: 0;
}

.site-logo img {
	width: 117px;
	height: 56px;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu .menu-item a {
	display: block;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: var(--text-white);
	text-decoration: none;
	opacity: 0.9;
	transition: opacity 0.2s ease;
	white-space: nowrap;
}

.primary-menu .menu-item a:hover {
	opacity: 1;
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	flex-shrink: 0;
}

.mobile-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--text-white);
	transition: var(--transition);
}

@media (max-width: 991px) {
	.mobile-toggle {
		display: flex;
	}

	.primary-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 8px 15px 16px;
		background-color: rgba(4, 20, 11, 0.97);
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		transition: var(--transition);
	}

	.primary-menu.active {
		max-height: 400px;
		opacity: 1;
		visibility: visible;
	}

	.primary-menu .menu-item {
		width: 100%;
	}

	.primary-menu .menu-item a {
		padding: 12px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
	position: relative;
	min-height: 865px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: #04140b;
	color: var(--text-white);
}

.hero-bg-overlay {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.hero-section .container {
	position: relative;
	z-index: 1;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	max-width: 788px;
	padding: 96px 0;
}

.hero-headline {
	margin: 0 0 24px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 500;
	font-size: clamp(40px, 6vw, 88px);
	line-height: 1.1;
	color: var(--text-white);
}

@media screen and (max-width: 767px) {
	.hero-headline {
		font-size: 32px;
	}
}

.hero-subtitle {
	margin: 0 0 40px;
	max-width: 447px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.3;
	color: var(--text-white);
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	width: 100%;
}

.cta-primary {
	background-color: var(--primary-sage);
	border: 1px solid var(--primary-sage);
	color: #fff;
}

.cta-primary:hover {
	background-color: #fff;
	border-color: #fff;
	color: var(--primary-sage);
}

.cta-secondary {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.cta-secondary:hover {
	background-color: #fff;
	border-color: #fff;
	color: var(--primary-sage);
}

.cta-green {
	background-color: transparent;
	border: 1px solid var(--primary-sage);
	color: var(--primary-sage);
}

.cta-green:hover {
	background-color: var(--primary-sage);
	border-color: var(--primary-sage);
	color: #fff;
}

@media (max-width: 767px) {
	.hero-section {
		min-height: 640px;
	}

	.hero-content {
		padding: 64px 0;
	}

	.hero-subtitle {
		max-width: 100%;
		font-size: 18px;
	}
}

/* ==========================================================================
   ABOUT / WHAT WE DO SECTION
   ========================================================================== */
.about-section {
	background-color: #fff;
	padding: 120px 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 32px;
}

.about-label {
	margin: 0;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: var(--primary-sage);
}

.about-content {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.about-text {
	max-width: 1016px;
}

.about-text p {
	margin: 0 0 24px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.5;
	color: var(--text-dark);
}

@media screen and (max-width: 767px) {
	.about-text p {
		font-size: 18px;
	}
}

.about-text p:last-child {
	margin-bottom: 0;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.stat-item {
	padding-left: 32px;
	border-left: 1px solid #d9d9d9;
}

.stat-item:first-child {
	padding-left: 0;
	border-left: none;
}

.stat-number {
	display: block;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 86px;
	line-height: 1;
	color: var(--stat-green);
}

.stat-label {
	margin: 16px 0 0;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.5;
	color: var(--text-dark);
}

@media (max-width: 900px) {
	.about-grid {
		grid-template-columns: 1fr;
	}

	.about-stats {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.stat-item {
		padding-left: 0;
		border-left: none;
		padding-top: 24px;
		border-top: 1px solid #d9d9d9;
	}

	.stat-item:first-child {
		padding-top: 0;
		border-top: none;
	}
}

/* ==========================================================================
   FOUNDER SECTION
   ========================================================================== */
.founder-section {
	background-color: var(--text-dark);
	color: var(--text-white);
	padding: 70px 0 120px;
	overflow: hidden;
}

.founder-grid {
	display: grid;
	grid-template-columns: 580px 1fr;
	gap: 41px;
	align-items: end;
}

.founder-left {
	position: relative;
	width: 100%;
}

.founder-headline {
	position: relative;
	z-index: 3;
	margin: 0;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 300;
	font-size: clamp(38px, 5.7vw, 86px);
	line-height: 1.206;
	letter-spacing: -0.01em;
	color: #e9e9e7;
	pointer-events: none;
}

.founder-headline .headline-line {
	display: block;
	white-space: nowrap;
}

.founder-photo {
	position: relative;
	z-index: 1;
	margin-left: 156px;
	/* Matches Figma: image top edge sits ~31% into the last headline
	   line's line-box, so only the descenders are slightly covered. */
	margin-top: calc(-0.35 * clamp(38px, 5.7vw, 86px));
}

.founder-photo img {
	width: 100%;
	max-width: 600px;
	aspect-ratio: 600 / 787;
	height: auto;
	border-radius: 6px;
	display: block;
	object-fit: cover;
	will-change: transform;
}

.founder-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 75px;
	max-width: 546px;
}

.founder-bio {
	margin-bottom: 40px;
}

.founder-bio p {
	margin: 0 0 24px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.5;
	color: #e9e9e7;
	opacity: 0.9;
}

.founder-bio p:last-child {
	margin-bottom: 0;
}

.founder-quote {
	display: block;
	font-weight: 600;
	font-size: 22px;
	opacity: 1;
}

.founder-person {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 16px;
}

.founder-linkedin {
	display: block;
	width: 43px;
	height: 43px;
	flex-shrink: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.founder-linkedin:hover {
	opacity: 0.85;
	transform: translateY(-1px);
}

.founder-linkedin img {
	width: 100%;
	height: 100%;
	display: block;
}

.founder-person-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.founder-name {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.3;
	color: #ffffff;
	opacity: 0.9;
}

.founder-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.3;
	color: rgba(233, 233, 231, 0.6);
}

@media (max-width: 1200px) {
	.founder-grid {
		grid-template-columns: 520px 1fr;
		gap: 40px;
	}
	.founder-photo {
		margin-left: 100px;
	}
	.founder-photo img {
		max-width: 400px;
	}
	.founder-content {
		margin-top: 60px;
	}
}

@media (max-width: 991px) {
	.founder-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.founder-headline {
		font-size: clamp(32px, 6vw, 52px);
	}

	.founder-headline .headline-line {
		white-space: normal;
	}

	.founder-photo {
		margin-left: 0;
		margin-top: 24px;
	}

	.founder-photo img {
		max-width: 100%;
	}

	.founder-content {
		margin-top: 0;
		max-width: 100%;
	}
}

/* ---- Meet our team ---- */
.team-block {
	margin-top: 116px;
}

.team-headline {
	margin: 0 0 42px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 300;
	font-size: clamp(32px, 4vw, 60px);
	line-height: 1.1;
	color: #ffffff;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 42px;
}

.team-member {
	display: flex;
	flex-direction: column;
}

.team-photo {
	position: relative;
	width: 100%;
	aspect-ratio: 292 / 327;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 24px;
	background-color: var(--stat-green);
}

.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.team-photo-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-start;
	width: 100%;
	height: 100%;
	padding: 24px;
	background-color: var(--stat-green);
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

.team-photo:hover .team-photo-overlay {
	transform: translateY(0);
}

.team-photo-bio {
	margin: 0;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: #ffffff;
	opacity: 0.92;
}

.team-name {
	display: block;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.3;
	color: #ffffff;
	opacity: 0.9;
	margin-bottom: 4px;
}

.team-title {
	display: block;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
	.team-block {
		margin-top: 70px;
	}

	.team-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
}

@media (max-width: 575px) {
	.team-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
	background-color: #f1f0ec;
	padding: 120px 0 0;
}

.services-headline {
	margin: 0 0 57px;
	max-width: 830px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: clamp(32px, 5vw, 60px);
	line-height: 1.1;
	color: var(--text-dark);
}

.services-grid {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.services-row {
	display: grid;
	gap: 32px;
}

.services-row.row-a {
	grid-template-columns: 3fr 4fr 3fr;
}

.services-row.row-b {
	grid-template-columns: 4fr 3fr 3fr;
}

.service-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 436px;
	padding: 40px 32px;
	background-color: rgba(255, 255, 255, 0.8);
	transition: background-color 0.35s ease;
}

.service-card:hover {
	background-color: rgba(85, 129, 101, 0.8);
}

.service-icon {
	position: relative;
	display: block;
	width: 64px;
	height: 64px;
}

.service-icon img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left top;
}

.service-icon-hover {
	opacity: 0;
}

.service-card:hover .service-icon-default {
	opacity: 0;
}

.service-card:hover .service-icon-hover {
	opacity: 1;
}

.service-body {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.service-title {
	margin: 0;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 32px;
	line-height: 1.3;
	color: var(--text-dark);
	transition: color 0.35s ease;
}

@media screen and (max-width: 767px) {
	.service-title {
		font-size: 24px;
	}
}

.service-text {
	margin: 0;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	color: var(--text-dark);
	opacity: 0.8;
	transition: color 0.35s ease;
}

.service-card:hover .service-title,
.service-card:hover .service-text {
	color: #fff;
}

@media (max-width: 900px) {
	.services-row.row-a,
	.services-row.row-b {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 0;
		gap: 40px;
	}
}

/* ==========================================================================
   APEX AWARDS SECTION
   ========================================================================== */
.apex-awards-section {
	background-color: #f1f0ec;
	padding: 120px 0;
}

.apex-awards-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 64px;
	align-items: center;
}

.apex-awards-headline {
	margin: 0 0 24px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: clamp(32px, 5vw, 60px);
	line-height: 1.1;
	color: var(--text-dark);
}

.apex-awards-text {
	margin: 0 0 48px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.5;
	color: var(--text-dark);
}

@media screen and (max-width: 767px) {
	.apex-awards-text {
		font-size: 18px;
	}
}

.apex-awards-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0px 64px;
}

.apex-awards-meta-item {
	margin: 0;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 2;
	color: var(--text-dark);
}

.apex-awards-meta-label {
	font-weight: 600;
}

.apex-awards-cta {
	display: inline-block;
	margin-top: 40px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: var(--primary-sage);
	text-decoration: underline;
	text-underline-offset: 8px;
}

.apex-awards-image {
	display: flex;
	justify-content: center;
}

.apex-awards-image img {
	width: 100%;
	max-width: 403px;
	height: auto;
}

@media (max-width: 900px) {
	.apex-awards-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.apex-awards-image {
		order: -1;
	}
}

/* ==========================================================================
   STORIES OF IMPACT SECTION
   ========================================================================== */
.impact-section {
	background-color: var(--text-dark);
	padding: 100px 0 120px;
}

.impact-headline {
	margin: 0 0 65px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: clamp(32px, 5vw, 60px);
	line-height: 1.1;
	color: #fff;
}

.impact-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.impact-swiper-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.impact-swiper {
	width: 100%;
	overflow: visible;
}

.impact-swiper .swiper-slide {
	height: auto;
	display: flex;
}

.impact-swiper .swiper-slide .impact-card {
	width: 100%;
	height: 100%;
}

.impact-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-height: 275px;
	padding: 20px 24px 26px;
	background-color: #fff;
	border-bottom: 6px solid var(--stat-green);
}

.impact-card-logos {
	display: flex;
	align-items: center;
	gap: 28px;
}

.impact-card-logo {
	max-width: 112px;
	max-height: 67px;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* Two logos share the row, so cap each one tighter. */
.impact-card-logos--multi .impact-card-logo {
	max-width: 86px;
	max-height: 50px;
}

.impact-card-text {
	margin: 0;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	color: var(--text-dark);
}

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

@media (max-width: 560px) {
	.impact-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
	background-color: #fff;
	padding: 120px 0 100px;
	overflow: hidden;
}

.testimonials-swiper-wrap {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-left: calc((100vw - var(--container_width)) / 2 + 15px);
}

@media (max-width: 1200px) {
	.testimonials-swiper-wrap {
		padding-left: 20px;
	}
}

.testimonials-swiper {
	width: 100%;
	overflow: visible;
}

.testimonials-swiper .swiper-wrapper {
	align-items: stretch;
}

.testimonial-card {
	display: flex;
	flex-direction: column;
	width: calc((var(--container_width) - 96px) / 3);
	height: auto;
	flex-shrink: 0;
}

@media (max-width: 1023px) {
	.testimonial-card {
		width: calc((var(--container_width) - 32px) / 2);
	}
}

@media (max-width: 767px) {
	.testimonial-card {
		width: 300px;
		max-width: 82vw;
	}
}

.testimonial-text {
	flex: 1 0 auto;
}

.testimonial-quote-icon {
	width: 42px;
	height: 42px;
	margin-bottom: 20px;
}

.testimonial-text {
	margin: 0 0 24px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	color: var(--text-dark);
}

.testimonial-cite {
	display: flex;
	flex-direction: column;
}

.testimonial-name {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: var(--text-dark);
}

.testimonial-role {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #717171;
}

.testimonials-pagination {
	display: flex;
	align-items: center;
	gap: 8px;
	width: fit-content !important;
	margin: 32px auto;
}

.testimonials-pagination .swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background-color: var(--stat-green);
	opacity: 0.2;
	margin: 0;
	transition: var(--transition);
}

.testimonials-pagination .swiper-pagination-bullet-active {
	width: 20px;
	height: 6px;
	border-radius: 6px;
	background-color: var(--primary-sage);
	opacity: 1;
}

@media (max-width: 560px) {
	.testimonial-card {
		width: 280px;
	}
}

/* ==========================================================================
   CLIENT LOGOS SECTION
   ========================================================================== */
.clients-logos-section {
	/* background-color: #f5f5f4; */
	/* padding-top: 70px; */
	/* padding-bottom: 64px; */
}

.clients-logos-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.client-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	padding: 0 24px;
	border-right: 1px solid rgba(40, 40, 40, 0.12);
}

.client-logo:last-child {
	border-right: none;
}

.client-logo img {
	max-width: 100%;
	height: auto;
}

@media (max-width: 900px) {
	.clients-logos-row {
		justify-content: center;
	}

	.client-logo {
		flex: 0 1 auto;
		width: 50%;
		border-right: none;
		padding: 16px 24px;
	}
}

/* ==========================================================================
   GLOBAL OFFICES SECTION
   ========================================================================== */
.global-offices-section {
	/* background-color: #f0f0ee; */
	padding: 120px 0 0;
}

.global-offices-headline {
	margin: 0 0 56px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: clamp(32px, 5vw, 60px);
	line-height: 1.1;
	color: var(--text-dark);
}

.global-offices-map {
	position: relative;
	width: 100%;
}

.global-offices-map svg {
	width: 100%;
	height: auto;
	display: block;
	overflow: visible;
}

/* Location Pills inside SVG - Initial Hidden & Offset State */
.map-location-pill {
	opacity: 0;
	transform: translateY(16px) scale(0.85);
	transform-box: fill-box;
	transform-origin: center;
	transition: opacity 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
	            transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
	cursor: pointer;
}

/* Hover Effect on Pills */
.map-location-pill:hover {
	transform: translateY(-3px) scale(1.06) !important;
	transition: transform 0.25s ease-out !important;
}

/* Pin Circle Heartbeat Pulse Animation */
@keyframes pinPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.4);
		opacity: 0.8;
	}
}

.map-location-pill .pill-pin-dot {
	transform-box: fill-box;
	transform-origin: center;
}

#global-offices.is-visible .map-location-pill .pill-pin-dot,
#global-offices[data-scroll="in"] .map-location-pill .pill-pin-dot {
	animation: pinPulse 2.4s ease-in-out infinite;
}

/* Sequence Order Delays when #global-offices comes into Viewport */
/* 1. Mumbai */
#global-offices.is-visible .map-location-pill.location-mumbai,
#global-offices[data-scroll="in"] .map-location-pill.location-mumbai {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition-delay: 0.6s;
}

/* 2. London */
#global-offices.is-visible .map-location-pill.location-london,
#global-offices[data-scroll="in"] .map-location-pill.location-london {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition-delay: 1.1s;
}

/* 3. Dubai */
#global-offices.is-visible .map-location-pill.location-dubai,
#global-offices[data-scroll="in"] .map-location-pill.location-dubai {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition-delay: 1.6s;
}

/* 4. Singapore */
#global-offices.is-visible .map-location-pill.location-singapore,
#global-offices[data-scroll="in"] .map-location-pill.location-singapore {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition-delay: 2.1s;
}

/* 5. New York */
#global-offices.is-visible .map-location-pill.location-newyork,
#global-offices[data-scroll="in"] .map-location-pill.location-newyork {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition-delay: 2.6s;
}

@media (max-width: 900px) {
	.global-offices-section {
		padding: 64px 0;
	}

	.global-offices-headline {
		margin-bottom: 40px;
	}

	.map-pin-dot {
		width: 6px;
		height: 6px;
	}

	.map-pin-label {
		padding: 4px 10px;
		font-size: 11px;
	}
}

@media (max-width: 560px) {
	.map-pin-label {
		padding: 3px 8px;
		font-size: 9px;
	}
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
	padding: 100px 0 120px;
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
	gap: 109px;
}

.contact-heading {
	margin: 0 0 24px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: clamp(32px, 5vw, 60px);
	line-height: 1.1;
	color: var(--text-dark);
}

.contact-description {
	margin: 0 0 64px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	color: var(--text-dark);
	max-width: 494px;
}

.contact-company-name {
	margin: 0 0 24px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.3;
	color: var(--text-dark);
}

.contact-detail {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.3;
	color: var(--text-dark);
}

.contact-detail a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.contact-detail a:hover {
	text-decoration: underline;
	opacity: 0.85;
}

.contact-detail-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.contact-form-wrap {
	display: flex;
	flex-direction: column;
}

.contact-form {
	display: flex;
	flex-direction: column;
}

.contact-form[hidden] {
	display: none;
}

.contact-form-thankyou {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
	min-height: 320px;
	text-align: left;
}

.contact-form-thankyou[hidden] {
	display: none;
}

.contact-form-thankyou-title {
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 28px;
	line-height: 1.2;
	color: var(--text-dark);
}

.contact-form-thankyou-text {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-dark);
	opacity: 0.75;
	max-width: 380px;
}

.form-field {
	position: relative;
	padding-top: 28px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(40, 40, 40, 0.2);
}

.form-field label {
	display: block;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: var(--text-dark);
	opacity: 0.7;
}

.form-field input,
.form-field select,
.form-field textarea {
	display: block;
	width: 100%;
	border: 0;
	background: transparent;
	padding: 0;
	margin: 0;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
	color: var(--text-dark);
	outline: none;
}

.form-field select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("assets/images/chevron-down.svg");
	background-repeat: no-repeat;
	background-size: 13.5px 8.9px;
	background-position: right 4px center;
	cursor: pointer;
}

.form-field select option {
	padding: 10px 14px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 15px;
	background-color: #ffffff;
	color: #282828;
}

.form-field textarea {
	resize: none;
}

.form-field-select {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 4px;
}

.form-field-select label {
	flex-shrink: 0;
	cursor: pointer;
}

.form-field-select select {
	flex: 1;
	width: auto;
	min-width: 0;
	padding-left: 22px;
}

/* Custom Select Dropdown UI */
.custom-select-wrapper {
	position: relative;
	flex: 1;
	min-width: 0;
}

.custom-select-trigger {
	display: inline-flex;
	align-items: center;
	width: 100%;
	min-height: 24px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 16px;
	line-height: 1.2;
	color: var(--text-dark);
	cursor: pointer;
	padding-left: 22px;
	background: url("assets/images/chevron-down.svg") no-repeat left 2px center / 13.5px 8.9px;
	user-select: none;
}

.form-field-select.has-selection label {
	display: none;
}

.form-field-select.has-selection .custom-select-trigger {
	padding-left: 0;
	padding-right: 22px;
	background-position: right 2px center;
}

.custom-select-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 280px;
	width: max-content;
	max-width: calc(100vw - 32px);
	background-color: #ffffff;
	border: 1px solid rgba(40, 40, 40, 0.12);
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	padding: 6px 0;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	max-height: 255px;
	overflow-y: auto;
}

.custom-select-menu::-webkit-scrollbar {
	width: 5px;
}

.custom-select-menu::-webkit-scrollbar-track {
	background: transparent;
}

.custom-select-menu::-webkit-scrollbar-thumb {
	background: rgba(40, 40, 40, 0.2);
	border-radius: 4px;
}

.custom-select-menu::-webkit-scrollbar-thumb:hover {
	background: rgba(40, 40, 40, 0.4);
}

.custom-select-wrapper.open .custom-select-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.custom-select-option {
	padding: 10px 16px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 15px;
	line-height: 1.3;
	color: var(--text-dark);
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.custom-select-option:hover,
.custom-select-option.is-highlighted {
	background-color: rgba(28, 68, 42, 0.08);
	color: var(--primary-sage);
}

.custom-select-option.is-selected {
	background-color: var(--primary-sage);
	color: #ffffff;
	font-weight: 500;
}

.form-field-textarea {
	padding-bottom: 40px;
}

.btn-outline-sage {
	align-self: flex-start;
	margin-top: 61px;
	background-color: transparent;
	border: 1px solid var(--primary-sage);
	color: var(--primary-sage);
}

.btn-outline-sage:hover {
	background-color: var(--primary-sage);
	color: #fff;
}

@media (max-width: 900px) {
	.contact-section {
		padding: 64px 0;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.contact-description {
		margin-bottom: 40px;
	}
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
	background-color: var(--text-dark);
	color: #fff;
	padding: 47px 0;
}

.footer-bottom {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 24px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-info {
	display: flex;
	align-items: center;
	gap: 14.5px;
}

.footer-copy,
.footer-address {
	margin: 0;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	white-space: nowrap;
}

@media (max-width: 700px) {
	.footer-copy,
	.footer-address {
		white-space: normal;
		overflow-wrap: break-word;
	}
}

.footer-divider {
	width: 1px;
	height: 26px;
	background-color: rgba(255, 255, 255, 0.3);
	flex-shrink: 0;
}

.footer-social {
	display: flex;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	margin-left: 22px;
}

.footer-social img {
	width: 100%;
	height: 100%;
}

.footer-madeby-link {
	display: flex;
	margin-left: auto;
	flex-shrink: 0;
}

.footer-madeby {
	width: 90px;
	height: auto;
}

@media (max-width: 700px) {
	.site-footer {
		padding: 32px 0;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.footer-info {
		flex-wrap: wrap;
		row-gap: 10px;
		min-width: 0;
		width: 100%;
	}

	.footer-copy,
	.footer-address {
		min-width: 0;
	}

	.footer-copy,
	.footer-address {
		font-size: 14px;
		line-height: 22px;
	}

	.footer-social {
		margin-left: 0;
	}

	.footer-madeby-link {
		margin-left: 0;
	}
}

/* ==========================================================================
   GLOBAL ANIMATIONS (FADE IN UP)
   ========================================================================== */
.fadeInUp,
.fade-in-up {
	opacity: 0;
	transform: translateY(60px);
	transition:
		opacity 0.7s ease-out,
		transform 0.7s ease-out;

	&[data-scroll="in"] {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUp[data-scroll="in"],
.fadeInUp.is-visible,
.fade-in-up[data-scroll="in"],
.fade-in-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.fadeInUp,
	.fade-in-up {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top-btn {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: rgba(28, 68, 42, 0.88);
	color: var(--text-white);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
}

.back-to-top-btn.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.back-to-top-btn:hover {
	background-color: var(--primary-sage-light);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.4);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
	transform: translateY(-3px);
}

.back-to-top-btn:active {
	transform: translateY(0);
}

@media (max-width: 767px) {
	.back-to-top-btn {
		bottom: 20px;
		right: 20px;
		width: 42px;
		height: 42px;
	}
}




