/**
 * Services, Channels, Industries, Case Studies, Enterprise, Integrations, CTA
 */

/* Outcomes */
.gt-outcomes .gt-section-heading__title {
	max-width: 522px;
	font-family: var(--gt-font-heading);
	font-size: 40px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.01em;
	text-align: left;
}

.gt-outcomes .gt-section-heading__desc {
	max-width: 640px;
	font-family: var(--gt-font-heading);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.45;
	margin: 0 0 0 auto;
	text-align: left;
}

.gt-outcomes__grid {
	display: grid;
	grid-template-columns: 1.77fr 1fr;
	gap: 24px;
	align-items: stretch;
}

.gt-outcomes__card {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.gt-outcomes__card--dark {
	background: var(--gt-navy-dark);
	min-height: 372px;
	padding: 47px 41px;
	display: flex;
	flex-direction: column;
}

.gt-outcomes__card-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.gt-outcomes__card-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gt-outcomes__card-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 100%;
}

.gt-outcomes__card-title {
	font-family: var(--gt-font-body);
	font-size: 28px;
	font-weight: 600;
	color: var(--gt-white);
	margin-bottom: 12px;
	line-height: 1.25;
}

.gt-outcomes__card-desc {
	font-family: var(--gt-font-body);
	font-size: 18px;
	font-weight: 400;
	color: var(--gt-white);
	line-height: 1.55;
	margin-bottom: 0;
	max-width: 100%;
	text-align: left;
}

.gt-outcomes__stats {
	display: flex;
	align-items: flex-start;
	gap: 48px;
	margin-top: auto;
	padding-top: 32px;
}

.gt-outcomes__stat {
	position: relative;
	padding-left: 20px;
	min-width: 0;
}

.gt-outcomes__stat::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 3px;
	height: 74px;
	background: linear-gradient(180deg, var(--gt-primary) 0%, rgba(255, 147, 0, 0.15) 100%);
	border-radius: 2px;
}

.gt-outcomes__stat-value {
	display: block;
	font-family: var(--gt-font-body);
	font-size: 45px;
	font-weight: 700;
	color: var(--gt-primary);
	line-height: 1;
	letter-spacing: -0.02em;
}

.gt-outcomes__stat-label {
	display: block;
	font-family: var(--gt-font-body);
	font-size: 17px;
	font-weight: 400;
	color: var(--gt-white);
	margin-top: 10px;
	line-height: 1.35;
	text-align: left;
	white-space: nowrap;
}

.gt-outcomes__card--reach {
	background: var(--gt-navy-dark);
	border-radius: 20px;
	padding: 0;
	overflow: hidden;
	min-height: 372px;
	position: relative;
}

.gt-outcomes__reach-video {
	width: 100%;
	height: 100%;
	min-height: 372px;
	object-fit: cover;
	object-position: center;
	display: block;
	opacity: 0;
	visibility: hidden;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	transition: opacity 0.7s ease, visibility 0.7s ease;
}

.gt-outcomes__reach-video.is-loaded {
	opacity: 1;
	visibility: visible;
}

/* Industries */

.gt-industries .gt-section-heading__title {
    max-width: 522px;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-align: left;
}

.gt-industries .gt-section-heading__desc {
    max-width: 640px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.45;
    margin: 0 0 0 auto;
    text-align: left;
}

.gt-industries__tabs {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	gap: 56px;
	width: 100%;
	margin-bottom: 18px;
	padding: 0 24px;
}

.gt-industries__tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	flex: 0 1 auto;
	min-width: 0;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px 4px;
	transition: transform var(--gt-duration) var(--gt-ease);
}

.gt-industries__tab-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	display: block;
	position: relative;
	background: none;
	transition: background var(--gt-duration) var(--gt-ease);
}

.gt-industries__tab-icon img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	/* Inactive fallback: #121348 (used until mask is ready) */
	filter: brightness(0) saturate(100%) invert(11%) sepia(45%) saturate(2000%) hue-rotate(218deg) brightness(0.92);
	transition: filter var(--gt-duration) var(--gt-ease), opacity var(--gt-duration) var(--gt-ease);
}

/* Masked icons: paint with CSS so every tab gets the same brand gradient */
.gt-industries__tab-icon.has-mask {
	background: #121348;
	-webkit-mask: var(--tab-icon-mask) center / contain no-repeat;
	mask: var(--tab-icon-mask) center / contain no-repeat;
}

.gt-industries__tab-icon.has-mask img {
	opacity: 0;
	filter: none;
	pointer-events: none;
}

.gt-industries__tab-label {
	font-family: var(--gt-font-body);
	font-size: 18px;
	color: var(--gt-navy);
	transition: color var(--gt-duration) var(--gt-ease);
	white-space: nowrap;
}

.gt-industries__tab.is-active .gt-industries__tab-icon.has-mask {
	background: linear-gradient(90deg, #FF9300 0%, #F9363D 100%);
}

.gt-industries__tab.is-active .gt-industries__tab-icon:not(.has-mask) img {
	/* Fallback if canvas mask fails: show original asset colors */
	filter: none;
}

.gt-industries__tab.is-active .gt-industries__tab-label {
	background: linear-gradient(to right, var(--gt-primary), var(--gt-accent-red));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: 600;
}

.gt-industries__tab:hover {
	transform: translateY(-2px);
}

.gt-industries__stack {
	position: relative;
	min-height: 520px;
	padding-top: 24px;
	/* Pulls the whole stack (card + its 24px stacked-edge reservation) upward,
	   keeping the internal card-stack geometry in main.js intact.
	   Visible gap under the tab labels = 8px (tab padding-bottom)
	   + this margin + 24px (.gt-industries__panel top) = ~20px. */
	margin-top: -12px;
	perspective: 1200px;
	overflow: visible;
	border-radius: var(--gt-radius-2xl);
}

/* Scroll stage: tabs stay visible on top; cards fit below without clipping */
.gt-industries__stage {
	position: relative;
	width: 100%;
}

.gt-industries--scroll-stack .gt-industries__stage {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: var(--gt-white);
	z-index: 5;
	/* position: relative; */
}

/* Heading sits above icons inside the pinned stage — never scrolls away */
.gt-industries--scroll-stack .gt-section-heading {
	flex-shrink: 0;
	background: var(--gt-white);
	margin-bottom: 12px;
	padding-top: 0;
}

.gt-industries--scroll-stack .gt-industries__tabs {
	position: relative;
	z-index: 60;
	flex-shrink: 0;
	margin-bottom: 12px;
	padding-top: 4px;
	padding-bottom: 8px;
	background: var(--gt-white);
}

.gt-industries--scroll-stack .gt-industries__stack {
	overflow: visible;
	padding-top: 0;
	margin-top: 0;
	flex: 0 0 auto;
	min-height: var(--gt-industry-card-h, 520px);
	height: var(--gt-industry-card-h, 520px);
	border-radius: var(--gt-radius-2xl);
}

.gt-industries--scroll-stack .gt-industries__panel {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: none;
	opacity: 1;
	visibility: visible;
	pointer-events: none;
	transform: none;
	filter: none;
	transform-origin: center center;
	margin: 0;
}

.gt-industries--scroll-stack .gt-industries__panel-inner {
	min-height: 100%;
	max-height: 100%;
	height: 100%;
	isolation: isolate;
}

.gt-industries--scroll-stack .gt-industries__panel.is-stacked {
	transform: none;
	pointer-events: none;
	/* GSAP owns opacity/visibility during card transitions */
}

.gt-industries--scroll-stack .gt-industries__panel.is-active,
.gt-industries--scroll-stack .gt-industries__panel.is-entering {
	filter: none;
}

.gt-industries--scroll-stack .gt-industries__panel.is-active {
	pointer-events: auto;
}

.gt-industries--scroll-stack .gt-industries__panel.is-active .gt-industries__panel-inner,
.gt-industries--scroll-stack .gt-industries__panel.is-entering .gt-industries__panel-inner {
	filter: none !important;
}

.gt-industries--scroll-stack .gt-industries__panel.is-entering {
	animation: none;
}

.gt-industries--scroll-stack .gt-industries__panel.is-active .gt-industries__visual-img,
.gt-industries--scroll-stack .gt-industries__panel.is-active .gt-industries__panel-visual img,
.gt-industries--scroll-stack .gt-industries__panel.is-entering .gt-industries__visual-img,
.gt-industries--scroll-stack .gt-industries__panel.is-entering .gt-industries__panel-visual img,
.gt-industries--scroll-stack .gt-industries__panel.is-entering .gt-industries__panel-left {
	animation: none;
}

/*
 * Visual heights are set per industry below.
 * Do NOT force height:auto here — it blocks custom heights.
 */
.gt-industries--scroll-stack .gt-industries__visual-img,
.gt-industries--scroll-stack .gt-industries__panel-visual img {
	max-height: none;
}

.gt-industries__panel {
	position: absolute;
	top: 24px;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(80px) scale(0.96);
	transform-origin: center center;
	transition:
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.4s ease,
		visibility 0.4s ease,
		filter 0.45s ease;
	z-index: 0;
	will-change: transform, opacity;
}

.gt-industries__panel.is-stacked {
	visibility: visible;
	opacity: calc(1 - (var(--stack-depth, 1) * 0.2));
	pointer-events: none;
	transform:
		translateY(calc(var(--stack-depth, 1) * -22px))
		scale(calc(1 - (var(--stack-depth, 1) * 0.04)));
	filter: brightness(calc(1 - (var(--stack-depth, 1) * 0.12)));
	z-index: calc(10 - var(--stack-depth, 1));
	transition:
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.4s ease,
		filter 0.45s ease;
}

.gt-industries__panel.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
	filter: none;
	z-index: 20;
}

.gt-industries__panel.is-entering {
	animation: gt-card-stack-in 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes gt-card-stack-in {
	0% {
		opacity: 0;
		transform: translateY(100%) scale(0.96);
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.gt-industries__panel,
	.gt-industries__panel.is-entering,
	.gt-industries__panel.is-active .gt-industries__visual-img,
	.gt-industries__panel.is-active .gt-industries__panel-visual img,
	.gt-industries__panel.is-entering .gt-industries__visual-img,
	.gt-industries__panel.is-entering .gt-industries__panel-visual img,
	.gt-industries__panel.is-entering .gt-industries__panel-left {
		animation: none;
		transition: opacity 0.2s ease;
	}
}

.gt-industries__panel-inner1 {
	background: url('../images/industries/biox-card.png') center / 100% 100% no-repeat;
}

.gt-industries__panel-inner2 {
	/* Soft fill only — PNG edge is cropped so it doesn't double with CSS border */
	background-color: #fff;
	background-image: url('../rectangle-254-1.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: calc(100% + 8px) calc(100% + 8px);
}

.gt-industries__panel-inner2 .gt-industries__panel-title,
.gt-industries__panel-inner2 .gt-industries__panel-desc {
	color: #121348;
}

.gt-industries__panel-inner {
	border-radius: var(--gt-radius-2xl);
	padding: 32px 0 0 56px;
	display: block;
	position: relative;
	overflow: hidden;
	min-height: 520px;
	max-height: 520px;
	box-shadow: none;
	height: 100%;
	border: none;
	outline: none;
	--panel-icon-top: 44px;
	--panel-visual-width: min(64%, 720px);
}

.gt-industries__panel-inner.gt-industries__panel-inner2 {
	border: 1px solid #00000033;
	outline: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

.gt-industries__panel-left {
	position: relative;
	z-index: 3;
	max-width: min(42%, 480px);
	padding: 50px 24px 32px 60px;
}

.gt-industries__panel-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(90deg, #FF9300 0%, #F9363D 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.gt-industries__panel-icon img {
	position: static;
	right: auto;
	bottom: auto;
	width: 28px;
	height: 28px;
	object-fit: contain;
	display: block;
	mix-blend-mode: screen;
	transform: none;
}

.gt-industries__panel-content {
	position: relative;
}

.gt-industries__panel-title {
	font-family: var(--gt-font-body);
	font-size: 40px;
	font-weight: 700;
	color: var(--gt-white);
	margin-bottom: 12px;
}

.gt-industries__panel-desc {
	font-family: var(--gt-font-body);
	font-size: 25px;
	font-weight: 300;
	color: var(--gt-white);
	line-height: 1.4;
	max-width: 380px;
	text-align: left;
}

.gt-industries__panel-visual {
	position: absolute;
	inset: 0;
	z-index: 2;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	box-shadow: none;
	pointer-events: none;
	perspective: 1000px;
}

/* Shared base — yellow.ai-style floating visual (img2) */
.gt-industries__panel-visual img,
.gt-industries__visual-img {
	--visual-x: -8px;
	position: absolute;
	right: 100px;
	bottom: 0;
	display: block;
	flex-shrink: 0;
	object-fit: contain;
	object-position: bottom right;
	border-radius: 0;
	background: transparent;
	mix-blend-mode: lighten;
	transform: translate3d(var(--visual-x), 0, 0);
	transform-origin: 70% 100%;
	filter: none;
	will-change: transform, opacity;
}

/* Active img2 — continuous float like yellow.ai overlay cards */
.gt-industries__panel.is-active .gt-industries__visual-img,
.gt-industries__panel.is-active .gt-industries__panel-visual img {
	animation: gt-yellow-visual-float 3.6s ease-in-out infinite;
}

/* Tab change — spring entrance, then keep floating */
.gt-industries__panel.is-entering .gt-industries__visual-img,
.gt-industries__panel.is-entering .gt-industries__panel-visual img {
	animation:
		gt-yellow-visual-in 0.95s cubic-bezier(0.16, 1, 0.3, 1) both,
		gt-yellow-visual-float 3.6s ease-in-out 0.95s infinite;
}

/* Left copy subtly leads, matching yellow.ai stagger */
.gt-industries__panel.is-entering .gt-industries__panel-left {
	animation: gt-yellow-copy-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes gt-yellow-visual-in {
	0% {
		opacity: 0;
		transform: translate3d(calc(var(--visual-x) + 36px), 64px, 0) scale(0.9);
	}
	55% {
		opacity: 1;
	}
	78% {
		transform: translate3d(var(--visual-x), -10px, 0) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: translate3d(var(--visual-x), 0, 0) scale(1);
	}
}

@keyframes gt-yellow-visual-float {
	0%,
	100% {
		transform: translate3d(var(--visual-x), 0, 0);
	}
	50% {
		transform: translate3d(var(--visual-x), -16px, 0);
	}
}

@keyframes gt-yellow-copy-in {
	0% {
		opacity: 0;
		transform: translate3d(0, 24px, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/*
 * Industry visual heights — change `height` on any card below to resize its image.
 * Example: height: 480px;  (larger = taller image, may crop at card bottom)
 */
/* Banking — phone + person composite */
.gt-industries__visual-img--banking,
.gt-industries__panel[data-tab-panel="banking"] .gt-industries__panel-visual img {
	--visual-x: -8px;
	right: 100px;
	bottom: 0;
	width: auto;
	height: 560px;
	max-height: none;
	object-position: bottom right;
}

/* E-Commerce — wider landscape composite */
.gt-industries__visual-img--shopping,
.gt-industries__panel[data-tab-panel="shopping"] .gt-industries__panel-visual img {
	--visual-x: 0px;
	right: 48px;
	bottom: 0;
	width: min(72%, 780px);
	max-width: min(72%, 780px);
	height: 475px;
	max-height: none;
	object-position: bottom right;
}

/* Retail */
.gt-industries__visual-img--retail,
.gt-industries__panel[data-tab-panel="retail"] .gt-industries__panel-visual img {
	--visual-x: -4px;
	right: 88px;
	bottom: 0;
	width: auto;
	height: 590px;
	max-height: none;
	object-position: bottom center;
}

/* Healthcare */
.gt-industries__visual-img--healthcare,
.gt-industries__panel[data-tab-panel="healthcare"] .gt-industries__panel-visual img {
	--visual-x: -12px;
	right: 72px;
	bottom: 0;
	width: auto;
	height: 540px;
	max-height: none;
	object-position: bottom right;
}

/* Education */
.gt-industries__visual-img--education,
.gt-industries__panel[data-tab-panel="education"] .gt-industries__panel-visual img {
	--visual-x: -6px;
	right: 96px;
	bottom: -2px;
	width: auto;
	height: 520px;
	max-height: none;
	object-position: bottom right;
}

/* Travelling */
.gt-industries__visual-img--travelling,
.gt-industries__panel[data-tab-panel="travelling"] .gt-industries__panel-visual img {
	--visual-x: -10px;
	right: 80px;
	bottom: 0;
	width: auto;
	height: 550px;
	max-height: none;
	object-position: bottom right;
}

/* Logistic */
.gt-industries__visual-img--logistic,
.gt-industries__panel[data-tab-panel="logistic"] .gt-industries__panel-visual img {
	--visual-x: -8px;
	right: 92px;
	bottom: 0;
	width: auto;
	height: 550px;
	max-height: none;
	object-position: bottom right;
}

/* stack cards heading fixes */
.gt-industries__heading {
    position: relative;
    z-index: 10;
}

.gt-industries--scroll-stack .gt-industries__stage {
    position: relative;
    z-index: 5;
}

/* Channels */
.gt-channels {
	/* position: relative;
	overflow: visible;
	padding-bottom: 40px;
	/* Allow fan cards to animate without being clipped by ancestors */
	/* clip-path: none; */ 
	margin-bottom: 80px;
}

.gt-channels::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: min(920px, 78vw);
	height: min(920px, 78vw);
	transform: translate(-30%, 34%);
	background: radial-gradient(
		circle at center,
		rgba(254, 231, 206, 0.55) 0%,
		rgba(255, 242, 223, 0.3) 38%,
		rgba(255, 248, 240, 0.08) 52%,
		transparent 68%
	);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.gt-channels .gt-container {
	position: relative;
	z-index: 1;
	overflow: visible;
}

.gt-channels .gt-section-heading__title {
	max-width: 522px;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.01em;
	text-align: left;
}

.gt-channels .gt-section-heading__desc {
	max-width: 640px;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.45;
	margin: 0 0 0 auto;
	text-align: left;
}

.gt-channels .cards-wrapper {
	position: relative;
	width: 100%;
	height: 450px;
	margin : 0;
	perspective: 1500px;
	overflow: visible;
}

.gt-channels .bluebg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--gt-navy-dark);
	color: var(--gt-white);
	font-family: var(--gt-font-body);
	font-size: 22px;
	font-weight: 600;
	padding: 14px 32px;
	border-radius: 999px;
	width: max-content;
	min-height: 50px;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 14px;
}

.gt-channels .blueft {
	color: var(--gt-navy);
	font-family: var(--gt-font-body);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4;
	margin: 0;
}

.gt-channels .card {
	position: absolute;
	width: 290px;
	min-width: 290px;
	max-width: 290px;
	height: 420px;
	min-height: 420px;
	max-height: 420px;
	box-sizing: border-box;
	border-radius: 24px;
	background: var(--gt-white);
	overflow: hidden;
	box-shadow: none;
	border: 2px solid rgba(0, 0, 0, 0.3);
	cursor: pointer;
	transform-origin: center center;
	transition: border 0.25s, box-shadow 0.25s, background 0.25s;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	will-change: transform, left, top;
}

.gt-channels .card::after {
	content: none;
}

.gt-channels .card:hover,
.gt-channels .card:focus-visible {
	border: 2px solid transparent;
	background:
		linear-gradient(var(--gt-white), var(--gt-white)) padding-box,
		linear-gradient(180deg, var(--gt-primary) 0%, var(--gt-accent-red) 100%) border-box;
	background-origin: border-box;
	background-clip: padding-box, border-box;
	box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}

.gt-channels .card.active:not(:hover):not(:focus-visible) {
	border: 2px solid rgba(0, 0, 0, 0.3);
	background: var(--gt-white);
	box-shadow: none;
}

.gt-channels .img {
	width: 100%;
	height: 100%;
	flex: 1 1 auto;
	min-height: 0;
	padding: 0;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.gt-channels .card-1 .img,
.gt-channels .card-2 .img,
.gt-channels .card-4 .img,
.gt-channels .card-5 .img,
.gt-channels .card.active .img {
	position: absolute;
	inset: 0;
	height: 100%;
	max-height: none;
	flex: none;
	overflow: hidden;
	padding: 0;
}

.gt-channels .img-cltele-pic,
.gt-channels .img-rcs-pic,
.gt-channels .img-sms-pic,
.gt-channels .img-whatsapp-pic,
.gt-channels .img-email-pic {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: 0;
	display: block;
	margin: 0;
	transform: none;
}

.gt-channels .content {
	display: none;
}

.gt-channels .card-2 .content p {
	margin-bottom: 0;
}

.gt-channels .content h3 {
	margin-bottom: 0;
}

.gt-channels .content p {
	line-height: 1.4;
	margin-bottom: 0;
	margin-top: 0;
}

.gt-channels .card-1 {
	left: 112.5px;
	top: 70px;
	z-index: 1;
}

.gt-channels .card-2 {
	left: 292.5px;
	top: 35px;
	z-index: 2;
}

.gt-channels .card.active {
	left: 472.5px;
	top: 0;
	z-index: 5;
}

.gt-channels .card-4 {
	left: 652.5px;
	top: 35px;
	z-index: 2;
	width: 290px;
	height: 420px;
}

.gt-channels .card-5 {
	left: 832.5px;
	top: 70px;
	z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
	.gt-channels .card {
		transition: none;
	}
}

/* Case Studies */
.gt-case-studies .gt-section-heading__title {
	max-width: 522px;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.01em;
	text-align: left;
}

.gt-case-studies .gt-section-heading__desc {
	max-width: 640px;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.45;
	margin: 0 0 0 auto;
	text-align: left;
}

.gt-case-studies__nav {
	margin: 0 auto 64px;
	width: min(1280px, 100%);
}

.gt-case-studies__tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	position: relative;
}

.gt-case-studies__tabs::before {
	content: none;
}

.gt-case-studies__tab {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	min-height: 82px;
	padding: 20px 28px 20px 36px;
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 3;
	transition: opacity var(--gt-duration) var(--gt-ease);
}

.gt-case-studies__tab > div {
	text-align: left;
	min-width: 0;
}

.gt-case-studies__tab img {
	width: 41px;
	height: 41px;
	object-fit: contain;
	flex-shrink: 0;
	display: block;
}

.gt-case-studies__tab-logo--dabur {
	transform: none;
	margin-right: 0;
	object-fit: contain;
	object-position: center;
}

.gt-case-studies__tab:not(.is-active) img,
.gt-case-studies__tab:not(.is-active) strong,
.gt-case-studies__tab:not(.is-active) span {
	opacity: 0.45;
}

.gt-case-studies__tab strong {
	display: block;
	font-family: var(--gt-font-body);
	font-size: 20px;
	font-weight: 500;
	color: var(--gt-navy);
	text-align: left;
	white-space: nowrap;
}

.gt-case-studies__tab span {
	font-family: var(--gt-font-body);
	font-size: 13px;
	font-weight: 300;
	color: var(--gt-navy);
	text-align: left;
}

.gt-case-studies__tab + .gt-case-studies__tab {
	border-left: none;
}

.gt-case-studies__tab + .gt-case-studies__tab::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 2px;
	height: 42px;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.22);
	pointer-events: none;
}

.gt-case-studies {
	--gt-case-cycle: 3s;
}

.gt-case-studies__progress {
	height: 3px;
	background: rgba(0, 0, 0, 0.12);
	border-radius: 35px;
	width: 100%;
	position: relative;
}

.gt-case-studies__progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	background: var(--gt-primary);
	border-radius: 35px;
	width: 0;
	transform: scaleX(0);
	transform-origin: left center;
}

.gt-case-studies__progress-bar.is-running {
	animation: gt-case-progress-fill var(--gt-case-cycle, 3s) linear forwards;
}

.gt-case-studies.is-case-paused .gt-case-studies__progress-bar.is-running,
.gt-case-studies.is-case-paused .gt-case-studies__panel.is-entering {
	animation-play-state: paused;
}

@keyframes gt-case-progress-fill {
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}

.gt-case-studies__stack {
	position: relative;
	min-height: 470px;
	height: 470px;
	padding-top: 0;
	perspective: 1200px;
	overflow: visible;
}

.gt-case-studies__panel {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(80px) scale(0.96);
	transform-origin: center center;
	transition:
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.4s ease,
		visibility 0.4s ease,
		filter 0.45s ease;
	z-index: 0;
	will-change: transform, opacity;
}

.gt-case-studies__panel.is-stacked {
	visibility: visible;
	opacity: calc(1 - (var(--stack-depth, 1) * 0.2));
	pointer-events: none;
	transform:
		translateY(calc(var(--stack-depth, 1) * -22px))
		scale(calc(1 - (var(--stack-depth, 1) * 0.04)));
	filter: brightness(calc(1 - (var(--stack-depth, 1) * 0.12)));
	z-index: calc(10 - var(--stack-depth, 1));
	transition:
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.4s ease,
		filter 0.45s ease;
}

.gt-case-studies__panel.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
	filter: none;
	z-index: 20;
}

.gt-case-studies__panel.is-entering {
	/* Short enter motion; progress bar owns the 5s cycle timing */
	animation: gt-card-stack-in 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
	.gt-case-studies__panel,
	.gt-case-studies__panel.is-entering,
	.gt-case-studies__progress-bar.is-running {
		animation: none;
		transition: opacity 0.2s ease;
	}

	.gt-case-studies__progress-bar.is-running {
		transform: scaleX(1);
	}
}

.gt-case-studies__card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) clamp(300px, 34%, 400px);
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: var(--gt-radius-lg);
	overflow: hidden;
	height: 430px;
	min-height: 430px;
	max-height: 430px;
	box-shadow: 0 24px 60px rgba(9, 10, 44, 0.12);
}

.gt-case-studies__card-main {
	background: linear-gradient(90deg, #fdf3e6 0%, #fffaf5 100%);
	padding: 48px 0 0 48px;
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-rows: auto auto 1fr;
	column-gap: 16px;
	height: 100%;
	min-height: 0;
	overflow: hidden;
}

.gt-case-studies__card-header {
	grid-column: 1;
	grid-row: 1;
	position: relative;
	z-index: 1;
}

.gt-case-studies__card-header h3 {
	font-family: var(--gt-font-body);
	font-size: 30px;
	font-weight: 500;
	color: var(--gt-navy);
	white-space: nowrap;
}

.gt-case-studies__card-header span {
	display: block;
	font-size: 17px;
	font-weight: 300;
	color: var(--gt-navy);
	margin-top: 4px;
	text-align: left;
}

.gt-case-studies__card-desc {
	grid-column: 1;
	grid-row: 2;
	font-family: var(--gt-font-body);
	font-size: 15px;
	font-weight: 300;
	line-height: 1.65;
	margin: 14px 0 0;
	max-width: 430px;
	color: var(--gt-navy);
	position: relative;
	z-index: 1;
	text-align: left;
}

.gt-case-studies__card-stats {
	grid-column: 1;
	grid-row: 3;
	display: flex;
	gap: clamp(40px, 5vw, 80px);
	align-self: end;
	margin-top: 24px;
	padding-bottom: 28px;
	position: relative;
	z-index: 1;
}

.gt-case-studies__stat-value {
	display: block;
	font-family: var(--gt-font-body);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.1;
	background: linear-gradient(to bottom, var(--gt-primary), var(--gt-accent-red));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.gt-case-studies__stat-label {
	display: block;
	font-family: var(--gt-font-body);
	font-size: 15px;
	font-weight: 300;
	color: var(--gt-navy);
	margin-top: 4px;
	text-align: left;
}

.gt-case-studies__card-visual-col {
	grid-column: 2;
	grid-row: 1 / 4;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	padding: 0 32px 28px 0;
	position: relative;
	z-index: 2;
	transform: none;
}

.gt-case-studies__card-visual {
	position: relative;
	width: 360px;
	max-width: 360px;
	height: 320px;
	flex-shrink: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.gt-case-studies__card-visual-bg {
	display: none;
}

.gt-case-studies__card-visual img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: auto;
	max-height: 320px;
	object-fit: contain;
	object-position: bottom center;
}

.gt-case-studies__card-visual-col .gt-btn {
	flex-shrink: 0;
	margin-top: auto;
	position: relative;
	z-index: 2;
}

.gt-case-studies__card-quote {
	background: linear-gradient(145deg, #121348 0%, #1a1b5e 55%, #231f6e 100%);
	padding: 36px 36px 48px;
	color: var(--gt-white);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	position: relative;
	overflow: hidden;
}

.gt-case-studies__card-quote::after {
	content: '';
	position: absolute;
	right: -35%;
	bottom: -40%;
	width: min(488px, 95%);
	aspect-ratio: 488 / 464;
	background: linear-gradient(132.18deg, rgba(255, 133, 10, 0.41) 27.94%, rgba(249, 54, 61, 0.55) 108.89%);
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.45;
	pointer-events: none;
	z-index: 0;
}

.gt-case-studies__quote-body {
	flex: 1 1 0;
	min-height: 0;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.gt-case-studies__quote-mark {
	font-size: 50px;
	font-weight: 300;
	line-height: 1;
	opacity: 0.5;
}

.gt-case-studies__quote-mark--close {
	align-self: flex-end;
	margin-top: auto;
	padding-top: 8px;
}

.gt-case-studies__card-quote blockquote {
	font-family: var(--gt-font-body);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.55;
	margin: 10px 0 0;
	padding-right: 8px;
	text-align: left;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
}

.gt-case-studies__card-quote cite {
	flex-shrink: 0;
	margin-top: auto;
	padding-top: 16px;
	padding-bottom: 2px;
	position: relative;
	z-index: 1;
}

.gt-case-studies__card-quote cite strong {
	display: block;
	font-family: var(--gt-font-body);
	font-size: 20px;
	font-weight: 500;
	font-style: normal;
}

.gt-case-studies__card-quote cite span {
	display: block;
	font-family: var(--gt-font-body);
	font-size: 13px;
	font-weight: 300;
	font-style: italic;
	margin-top: 4px;
}

/* Case study cards — unified Tanishq color scheme */
.gt-case-studies__card-visual-bg {
	background: #fee7ce;
}

@keyframes gt-fade-in {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: none; }
}
