/* ================================================================
   Tabbed Section – Matches Screenshot Design
   ================================================================ */

.tabbed-section {
	padding: 80px 0;
	background-color: #ffffff;
}

/* Tag line above heading */
.ts-tag-line {
	display: inline-block;
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 11px;
	font-weight: 800;
	color: #F5C400;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 10px;
}

/* Main section heading */
.ts-main-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 42px;
	font-weight: 800;
	color: #111111;
	line-height: 1.15;
	margin: 0 0 48px 0;
	text-align: left;
}

/* ----------------------------------------------------------------
   Layout: wrapper = flex row
   Left  (tabs-nav)     → 30% fixed width, vertical stack
   Right (tabs-content) → fills remaining space
   ---------------------------------------------------------------- */
.tabs-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 48px;
}

/* ----------------------------------------------------------------
   LEFT – Tab Navigation
   ---------------------------------------------------------------- */
.tabs-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 0 0 260px;
	width: 260px;
}

.tab-nav-item {
	background: #F5F6F8;
	border: 2px solid #F5F6F8;
	border-radius: 8px;
	padding: 18px 22px;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	align-items: flex-start;
}

.tab-nav-item:hover {
	background: #ECEEF2;
	border-color: #ddd;
}

.tab-nav-item.active {
	background: #111111;
	border-color: #111111;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Title inside nav item – only this shows */
.tab-nav-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #111111;
	line-height: 1.4;
	transition: color 0.25s ease;
}

.tab-nav-item.active .tab-nav-title {
	color: #ffffff;
}

/* ----------------------------------------------------------------
   RIGHT – Tab Content
   ---------------------------------------------------------------- */
.tabs-content {
	flex: 1;
	min-width: 0;
}

.tab-content {
	display: none;
	opacity: 0;
}

.tab-content.active {
	display: flex;
	opacity: 1;
	gap: 36px;
	align-items: flex-start;
	animation: tsFadeIn 0.35s ease-out forwards;
}

/* Image column (hidden if no image set) */
.tab-image {
	flex: 0 0 auto;
	width: 200px;
}

.tab-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.10);
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.tab-image img:hover {
	transform: scale(1.02);
}

/* Body: sub-heading + points list */
.tab-body {
	flex: 1;
	min-width: 0;
}

/* Sub Heading – shown above the points in content area */
.tab-sub-heading {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #111111;
	margin: 0 0 18px 0;
	line-height: 1.5;
	padding-bottom: 12px;
	border-bottom: 2px solid #F5C400;
	display: inline-block;
}

/* Checkmark point list */
.tab-points {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.point-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: 'Gilroy-Medium', sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: #222222;
}

/* Yellow circle checkmark icon */
.point-item::before {
	content: "";
	display: inline-flex;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='none' stroke='%23F5C400' stroke-width='2'/%3E%3Cpath d='M7 12.5l3.5 3.5 6.5-7' fill='none' stroke='%23F5C400' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}

/* ----------------------------------------------------------------
   Animation
   ---------------------------------------------------------------- */
@keyframes tsFadeIn {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
	.ts-main-title { font-size: 34px; }
	.tabs-nav { flex: 0 0 220px; width: 220px; }
	.tab-image { width: 170px; }
}

@media (max-width: 768px) {
	.tabbed-section { padding: 50px 0; }
	.ts-main-title { font-size: 26px; margin-bottom: 28px; }

	.tabs-wrapper {
		flex-direction: column;
		gap: 20px;
	}

	/* Horizontal scrollable tab nav on mobile */
	.tabs-nav {
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
		flex: none;
		gap: 8px;
	}

	.tab-nav-item {
		flex: 1 1 calc(50% - 8px);
		padding: 12px 16px;
	}

	.tab-nav-title { font-size: 13px; }

	.tab-content.active {
		flex-direction: column;
		gap: 20px;
	}

	.tab-image { width: 100%; }
}

@media (max-width: 480px) {
	.tab-nav-item { flex: 1 1 100%; }
	.point-item { font-size: 14px; }
	.ts-main-title { font-size: 22px; }
}

/* ----------------------------------------------------------------
   Accordion Tab Section Styling (2-Column Grid Accordion)
   ---------------------------------------------------------------- */
.accordion-tab-section {
	padding: 80px 0;
	background-color: #ffffff;
}

/* Tag line above heading */
.ats-tag-line {
	display: inline-block;
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 11px;
	font-weight: 800;
	color: #F5C400;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 10px;
}

/* Main section heading */
.ats-main-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 42px;
	font-weight: 800;
	color: #111111;
	line-height: 1.2;
	margin: 0 0 48px 0;
	text-align: left;
	max-width: 800px;
}

/* Grid layout: 2 columns on desktop */
.accordion-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 50px;
	row-gap: 0;
	align-items: start;
}

/* Accordion Item wrapper */
.accordion-item {
	border-bottom: 1px solid #EAEAEA;
	padding: 12px 0;
}

/* Header container */
.accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	padding: 14px 0;
	user-select: none;
}

.accordion-title-area {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* Flag style */
.accordion-flag {
	width: 32px;
	height: 22px;
	object-fit: cover;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}

/* Accordion Title text */
.accordion-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #111111;
	transition: color 0.25s ease;
}

.accordion-item:hover .accordion-title {
	color: #F5C400;
}

/* Accordion Expand indicator (+) */
.accordion-icon {
	font-size: 20px;
	font-weight: 600;
	color: #111111;
	line-height: 1;
	display: inline-block;
	transition: transform 0.25s ease;
}

/* Collapsible Content drawer */
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.accordion-body {
	padding: 8px 0 20px 48px; /* aligns descriptions nicely next to text, past the flag width */
}

/* Blocks of heading & description inside drawer */
.accordion-block {
	margin-bottom: 20px;
}

.accordion-block:last-child {
	margin-bottom: 0;
}

.accordion-block-heading {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 16px;
	font-weight: 800; /* bold text */
	color: #111111;
	margin: 0 0 6px 0;
	line-height: 1.4;
}

.accordion-block-desc {
	font-family: 'Gilroy-Medium', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #555555;
	margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.ats-main-title { font-size: 34px; margin-bottom: 36px; }
	.accordion-grid { column-gap: 30px; }
}

@media (max-width: 768px) {
	.accordion-tab-section { padding: 50px 0; }
	.ats-main-title { font-size: 28px; margin-bottom: 24px; }
	
	/* Stack in 1 column on tablet and mobile */
	.accordion-grid {
		grid-template-columns: 1fr;
		column-gap: 0;
	}
	
	.accordion-body {
		padding-left: 0; /* Align left on smaller screens to save horizontal space */
	}
}

@media (max-width: 480px) {
	.ats-main-title { font-size: 22px; }
	.accordion-title { font-size: 15px; }
	.accordion-block-heading { font-size: 15px; }
}

/* ================================================================
   About Us Hero Section Styling
   ================================================================ */
.about-hero-section {
	padding: 80px 0 60px;
	background-color: #ffffff;
}

.about-hero-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
	gap: 40px;
}

.about-hero-title-wrap {
	flex: 0 0 auto;
}

.about-hero-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 72px;
	line-height: 1.0;
	margin: 0;
	font-weight: 800;
	text-transform: capitalize;
}

.about-hero-title .title-bold {
	color: #111111;
}

.about-hero-title .title-outline {
	color: transparent;
	-webkit-text-stroke: 2px #111111;
	margin-left: 5px;
}

.about-hero-meta-wrap {
	flex: 1;
	display: flex;
	align-items: flex-start;
	gap: 30px;
	max-width: 600px;
}

.about-hero-divider {
	width: 1px;
	height: 80px;
	background-color: #E2E8F0;
	flex-shrink: 0;
}

.about-hero-meta-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.about-hero-subheading {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #111111;
	margin: 0;
}

.about-hero-desc {
	font-family: 'Gilroy-Medium', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #555555;
	margin: 0;
}

/* Banner container relative */
.about-hero-banner-container {
	position: relative;
	width: 100%;
}

.about-hero-banner {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 24px;
}

.about-banner-img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
	border-radius: 24px;
}

.about-banner-placeholder {
	width: 100%;
	height: 500px;
	background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
	border-radius: 24px;
}

/* Overlay card with custom cutout curves */
.about-hero-card {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

/* Title Container (Taller, Left side) */
.about-hero-card-title-container {
	background: #ffffff;
	padding: 24px 30px 4px 30px;
	border-top-right-radius: 24px;
	position: relative;
	z-index: 2;
}

/* Inverted radius top-left of title (curves image inwards) */
.about-hero-card-title-container::before {
	content: "";
	position: absolute;
	top: -24px;
	left: 0;
	width: 24px;
	height: 24px;
	background: transparent;
	border-bottom-left-radius: 24px;
	box-shadow: 0 12px 0 0 #ffffff;
	pointer-events: none;
}

/* Inverted radius bottom-right of title (curves image inwards) */
.about-hero-card-title-container::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: -24px;
	width: 24px;
	height: 24px;
	background: transparent;
	border-bottom-left-radius: 24px;
	box-shadow: 0 12px 0 0 #ffffff;
	pointer-events: none;
}

/* Description Container (Wider, sits below title) */
.about-hero-card-desc-container {
	background: #ffffff;
	padding: 8px 45px 30px 30px;
	max-width: 580px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px; /* Align with banner roundness */
	position: relative;
	z-index: 1;
	margin-top: -1px; /* seamless join */
}

/* Inverted radius bottom-right of description */
.about-hero-card-desc-container::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: -24px;
	width: 24px;
	height: 24px;
	background: transparent;
	border-bottom-left-radius: 24px;
	box-shadow: 0 12px 0 0 #ffffff;
	pointer-events: none;
}

.about-card-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: #111111;
	margin: 0;
}

.about-card-desc {
	font-family: 'Gilroy-Medium', sans-serif;
	font-size: 13.5px;
	line-height: 1.6;
	color: #555555;
	margin: 0;
}

/* Responsive design */
@media (max-width: 991px) {
	.about-hero-title { font-size: 56px; }
	.about-banner-img, .about-banner-placeholder { height: 420px; }
	
	.about-hero-card-title-container { padding: 20px 25px 4px 25px; border-top-right-radius: 20px; }
	.about-hero-card-title-container::before { top: -20px; width: 20px; height: 20px; border-bottom-left-radius: 20px; box-shadow: 0 10px 0 0 #ffffff; }
	.about-hero-card-title-container::after { right: -20px; width: 20px; height: 20px; border-bottom-left-radius: 20px; box-shadow: 0 10px 0 0 #ffffff; }
	
	.about-hero-card-desc-container { padding: 4px 35px 25px 25px; max-width: 480px; border-top-right-radius: 20px; border-bottom-left-radius: 20px; }
	.about-hero-card-desc-container::before { right: -20px; width: 20px; height: 20px; border-bottom-left-radius: 20px; box-shadow: 0 10px 0 0 #ffffff; }
}

@media (max-width: 768px) {
	.about-hero-section { padding: 50px 0; }
	.about-hero-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
	.about-hero-divider { display: none; }
	.about-hero-meta-wrap { padding-left: 0; }
	.about-hero-title { font-size: 48px; }
	
	/* On mobile, card is shown below the image instead of absolute overlapping to fit text nicely */
	.about-hero-banner { overflow: visible; }
	.about-hero-card {
		position: relative;
		left: auto;
		bottom: auto;
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		background: transparent;
		display: block;
	}
	.about-hero-card-title-container, .about-hero-card-desc-container {
		background: transparent;
		padding: 15px 0 0 0;
		max-width: 100%;
		border-radius: 0;
	}
	.about-hero-card-title-container::before, 
	.about-hero-card-title-container::after, 
	.about-hero-card-desc-container::before { 
		display: none; 
	}
	
	.about-banner-img, .about-banner-placeholder { height: 300px; }
}

/* ================================================================
   Vision & Mission Section Styling
   ================================================================ */
.vision-mission-section {
	padding: 100px 0 140px;
	background-color: #ffffff;
}

.vm-tag-line {
	display: inline-block;
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 11px;
	font-weight: 800;
	color: #F5C400;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 10px;
}

.vm-main-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 42px;
	font-weight: 800;
	color: #111111;
	line-height: 1.2;
	margin: 0 0 60px 0;
}

/* Grid Layout: 2 columns */
.vision-mission-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 50px;
	row-gap: 80px;
	align-items: start;
}

/* Custom Card Wrapper */
.vm-card {
	position: relative;
	background: #F8F9FA;
	border-radius: 16px;
	padding: 55px 35px 35px 35px;
	border: 1px solid #ECEFF1;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Shift the second card (Mission) down slightly - Desktop Only */
@media (min-width: 769px) {
	.vm-card.shifted-card {
		transform: translateY(50px);
	}
	.vm-card.shifted-card:hover {
		transform: translateY(45px);
	}
}

/* Image Badge overlapping from top-left of card */
.vm-badge-image-wrap {
	position: absolute;
	top: -28px;
	left: 30px;
}

/* The actual uploaded badge image */
.vm-header-image {
	display: block;
	height: 56px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}

/* Fallback if no image uploaded: text badge */
.vm-badge-fallback {
	background: linear-gradient(135deg, #FFD000 0%, #FFA800 100%);
	padding: 12px 28px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	box-shadow: 0 8px 20px rgba(255, 168, 0, 0.25);
}

.vm-badge-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 19px;
	font-weight: 800;
	color: #111111;
	line-height: 1;
}

/* Description Text inside card */
.vm-desc {
	font-family: 'Gilroy-Medium', sans-serif;
	font-size: 14.5px;
	line-height: 1.65;
	color: #444444;
	margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.vm-main-title { font-size: 34px; }
	.vm-card { padding: 48px 30px 30px 30px; }
	.vm-badge-image-wrap { top: -24px; left: 20px; }
	.vm-header-image { height: 48px; }
	.vm-badge-title { font-size: 17px; }
}

@media (max-width: 768px) {
	.vision-mission-section { padding: 60px 0 80px; }
	.vm-main-title { font-size: 28px; margin-bottom: 50px; }
	
	/* Stack cards vertically */
	.vision-mission-grid {
		grid-template-columns: 1fr;
		row-gap: 50px;
	}
}

@media (max-width: 480px) {
	.vm-main-title { font-size: 22px; }
	.vm-desc { font-size: 13.5px; }
}

/* ================================================================
   Values Grid Section (Dark bg, Left content + Right staggered cards)
   ================================================================ */
.values-grid-section {
	position: relative;
	background-color: #111111;
	padding: 90px 0 100px;
	overflow: hidden;
}

/* Decorative yellow squares - top right */
.vg-decor {
	position: absolute;
	top: 40px;
	right: 40px;
	display: flex;
	gap: 8px;
	z-index: 1;
}

.vg-sq {
	display: block;
	background: #F5C400;
}

.vg-sq-1 { width: 18px; height: 18px; }
.vg-sq-2 { width: 18px; height: 18px; }
.vg-sq-3 {
	width: 18px;
	height: 18px;
	position: absolute;
	top: 26px;
	right: 0;
}

/* Main inner flex row */
.vg-inner {
	display: flex;
	align-items: flex-start;
	gap: 60px;
}

/* ── Left text block ── */
.vg-left {
	flex: 0 0 300px;
	max-width: 300px;
}

.vg-tag-line {
	display: inline-block;
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 11px;
	font-weight: 800;
	color: #F5C400;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 14px;
}

.vg-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 38px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	margin: 0 0 24px 0;
}

.vg-description {
	font-family: 'Gilroy-Medium', sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #aaaaaa;
	margin: 0;
}

/* ── Right: 2-col cards area ── */
.vg-right {
	flex: 1;
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

/* Each column */
.vg-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Right column: shifted down on desktop */
.vg-col-right {
	margin-top: 50px;
}

/* Individual card */
.vg-card {
	background: #1E1E1E;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	border: 1px solid #2a2a2a;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.vg-card:hover {
	background: #252525;
	border-color: #F5C400;
}

/* Icon box */
.vg-card-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: #2a2a2a;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.vg-card-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}

.vg-icon-placeholder {
	background: #1a1a1a;
}

/* Card text */
.vg-card-body {
	flex: 1;
	min-width: 0;
}

.vg-card-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 6px 0;
	line-height: 1.3;
}

.vg-card-desc {
	font-family: 'Gilroy-Medium', sans-serif;
	font-size: 13px;
	line-height: 1.6;
	color: #888888;
	margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
	.vg-title { font-size: 32px; }
	.vg-left { flex: 0 0 260px; max-width: 260px; }
	.vg-inner { gap: 40px; }
}

@media (max-width: 991px) {
	.vg-left { flex: 0 0 220px; max-width: 220px; }
	.vg-title { font-size: 28px; }
	.vg-inner { gap: 30px; }
	.vg-col-right { margin-top: 40px; }
}

@media (max-width: 768px) {
	.values-grid-section { padding: 60px 0 70px; }
	
	/* Stack everything vertically on mobile */
	.vg-inner {
		flex-direction: column;
		gap: 40px;
	}
	
	.vg-left {
		flex: none;
		max-width: 100%;
	}
	
	.vg-right {
		width: 100%;
	}

	/* Remove the desktop offset on mobile */
	.vg-col-right {
		margin-top: 0;
	}
	
	.vg-title { font-size: 26px; }
	.vg-decor { top: 20px; right: 20px; }
}

@media (max-width: 480px) {
	/* Single column on small phones */
	.vg-right {
		flex-direction: column;
	}
	
	.vg-title { font-size: 22px; }
	.vg-card-title { font-size: 14px; }
	.vg-card-desc { font-size: 12.5px; }
}

/* ================================================================
   Image Content Stat Section (Figma Layout)
   Left: 3D Image | Right: Content + Bottom Row (Stat Box & Small Image)
   ================================================================ */
.ics-section {
	background: #ffffff;
	padding: 80px 0;
	overflow: hidden;
}

.ics-inner {
	display: flex;
	align-items: center;
	gap: 60px;
}

/* ── Left Column ── */
.ics-left-col {
	flex: 0 0 45%;
	max-width: 45%;
}

.ics-main-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.ics-main-img-ph {
	width: 100%;
	padding-bottom: 80%;
	background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
	border-radius: 24px;
}

/* ── Right Column ── */
.ics-right-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Text Block */
.ics-text-block {
	margin-bottom: 40px;
}

.ics-tag-line {
	display: inline-block;
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 11px;
	font-weight: 800;
	color: #F5C400;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 12px;
}

.ics-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 38px;
	font-weight: 800;
	color: #111111;
	line-height: 1.2;
	margin: 0 0 20px 0;
}

.ics-description {
	font-family: 'Gilroy-Medium', sans-serif;
	font-size: 14.5px;
	line-height: 1.7;
	color: #555555;
	margin: 0;
}
.ics-description p {
	margin: 0 0 15px 0;
}
.ics-description p:last-child {
	margin-bottom: 0;
}

/* Bottom Row */
.ics-bottom-row {
	display: flex;
	align-items: stretch;
	gap: 24px;
}

/* Stat Box */
.ics-stat-box {
	flex: 0 0 180px;
	background: #F8F8F8;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 30px 20px;
}

.ics-stat-number {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 48px;
	font-weight: 800;
	color: #F5C400;
	line-height: 1;
	margin-bottom: 8px;
}

.ics-stat-label {
	font-family: 'Gilroy-Medium', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #111111;
	line-height: 1.3;
}

/* Right Small Image */
.ics-small-img-wrapper {
	flex: 1;
	border-radius: 16px;
	overflow: hidden;
}

.ics-small-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 160px;
}

.ics-small-img-ph {
	width: 100%;
	height: 100%;
	min-height: 160px;
	background: linear-gradient(135deg, #d0d0d0, #e8e8e8);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
	.ics-title { font-size: 32px; }
	.ics-inner { gap: 40px; }
	.ics-stat-number { font-size: 40px; }
}

@media (max-width: 991px) {
	.ics-inner {
		flex-direction: column;
		text-align: center;
		gap: 50px;
	}
	.ics-left-col {
		flex: none;
		max-width: 80%;
		margin: 0 auto;
	}
	.ics-right-col {
		width: 100%;
	}
	.ics-bottom-row {
		justify-content: center;
		text-align: left; /* Keep left alignment inside stat/img */
	}
	.ics-small-img-wrapper {
		flex: 0 0 300px;
	}
}

@media (max-width: 768px) {
	.ics-section { padding: 60px 0; }
	.ics-left-col { max-width: 100%; }
	.ics-title { font-size: 28px; }
	.ics-bottom-row {
		flex-direction: column;
		align-items: center;
	}
	.ics-stat-box {
		flex: none;
		width: 100%;
		max-width: 300px;
	}
	.ics-small-img-wrapper {
		flex: none;
		width: 100%;
		max-width: 300px;
		height: 200px;
	}
}

@media (max-width: 480px) {
	.ics-title { font-size: 24px; }
	.ics-stat-number { font-size: 36px; }
}

/* ================================================================
   Center Image Features Section (Layout 27)
   ================================================================ */
.cifs-section {
	background: #F7F7F7;
	padding: 90px 0;
	overflow: hidden;
}

.cifs-header {
	margin-bottom: 60px;
}

.cifs-tag-line {
	display: block;
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 11px;
	font-weight: 800;
	color: #F5C400;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 12px;
}

.cifs-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 38px;
	font-weight: 800;
	color: #111111;
	line-height: 1.2;
	margin: 0;
}

.cifs-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

/* Columns */
.cifs-features-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.cifs-center-col {
	flex: 0 0 35%;
	max-width: 35%;
	text-align: center;
}

.cifs-center-image {
	width: 100%;
	height: auto;
	max-height: 600px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.cifs-center-ph {
	width: 100%;
	height: 400px;
	background: #e0e0e0;
	border-radius: 20px;
}

/* Feature Item */
.cifs-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.cifs-item-left {
	text-align: right;
}

.cifs-item-right {
	text-align: left;
}

/* Icon */
.cifs-feature-icon {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
}

.cifs-feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.cifs-icon-ph {
	width: 100%;
	height: 100%;
	background: #FFD000;
	border-radius: 8px;
}

/* Text */
.cifs-feature-text {
	flex: 1;
}

.cifs-feature-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #111111;
	margin: 0 0 8px 0;
}

.cifs-feature-desc {
	font-family: 'Gilroy-Medium', sans-serif;
	font-size: 13px;
	line-height: 1.6;
	color: #666666;
	margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
	.cifs-center-col { flex: 0 0 40%; max-width: 40%; }
}

@media (max-width: 991px) {
	.cifs-body {
		flex-direction: column;
		gap: 60px;
	}
	.cifs-center-col {
		flex: none;
		max-width: 80%;
		order: -1; /* Center image on top */
	}
	.cifs-features-col {
		width: 100%;
		gap: 40px;
	}
	/* Adjust left items to be left-aligned on mobile */
	.cifs-item-left {
		flex-direction: row-reverse;
		text-align: left;
	}
}

@media (max-width: 768px) {
	.cifs-section { padding: 60px 0; }
	.cifs-title { font-size: 28px; }
}

@media (max-width: 480px) {
	.cifs-title { font-size: 24px; }
	.cifs-feature-title { font-size: 15px; }
}

/* ================================================================
   Journey List Section (Layout 28)
   ================================================================ */
.jls-section {
	background: #ffffff;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.jls-container {
	position: relative;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 40px;
}

.jls-inner {
	display: flex;
	align-items: flex-start;
	gap: 60px;
}

/* ── Left Column ── */
.jls-left-col {
	flex: 0 0 42%;
	max-width: 42%;
}

.jls-header {
	margin-bottom: 40px;
}

.jls-tag-line {
	display: inline-block;
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 11px;
	font-weight: 800;
	color: #F5C400;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 12px;
}

.jls-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 38px;
	font-weight: 800;
	color: #111111;
	line-height: 1.2;
	margin: 0;
}

.jls-image-wrap {
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.jls-left-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 20px;
}

.jls-img-ph {
	width: 100%;
	padding-bottom: 60%;
	background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
	border-radius: 20px;
	background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.03) 20px, rgba(0,0,0,0.03) 40px);
}

/* ── Right Column ── */
.jls-right-col {
	flex: 1;
	padding-right: 60px;
}

.jls-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.jls-list-item {
	display: flex;
	align-items: flex-start;
	gap: 30px;
}

.jls-item-num {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 56px;
	font-weight: 700;
	color: #FFF2B2; /* Light yellow */
	line-height: 0.8;
	flex-shrink: 0;
}

.jls-item-content {
	flex: 1;
}

.jls-item-title {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 15px;
	font-weight: 800;
	color: #111111;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 10px 0;
}

.jls-item-desc {
	font-family: 'Gilroy-Medium', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #777777;
	margin: 0;
}

/* ── Watermark Text ── */
.jls-watermark {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	user-select: none;
}

.jls-watermark span {
	font-family: 'Gilroy-SemiBold', sans-serif;
	font-size: 70px;
	font-weight: 800;
	color: #F6F6F6; /* Very subtle text */
	text-transform: uppercase;
	letter-spacing: 0.05em;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
	.jls-watermark span { font-size: 50px; }
	.jls-right-col { padding-right: 40px; }
	.jls-inner { gap: 40px; }
}

@media (max-width: 991px) {
	.jls-inner { flex-direction: column; }
	.jls-left-col { max-width: 100%; width: 100%; }
	.jls-watermark { display: none; }
	.jls-right-col { padding-right: 0; width: 100%; }
	.jls-list { gap: 30px; }
}

@media (max-width: 768px) {
	.jls-section { padding: 60px 0; }
	.jls-title { font-size: 32px; }
	.jls-item-num { font-size: 48px; }
}

@media (max-width: 480px) {
	.jls-title { font-size: 26px; }
	.jls-list-item { gap: 20px; }
	.jls-item-num { font-size: 40px; }
	.jls-item-title { font-size: 14px; }
}

