@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


/* =====================================================
   RESET & BASE STYLES
   ===================================================== */

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

:root {
	--glass-bg: rgba(255, 255, 255, 0.1);
	--glass-border: rgba(186, 186, 186, 0.35);
	--glass-blur: blur(22px);
	--nav-bg: rgba(255, 255, 255, 0.96);
	--ibdic-blue-1: #0A40A1;
	--ibdic-blue-2: #1D6DD0;
	--ibdic-sky: #EDFAFF;
	--ibdic-white: #FEFEFE;
}

html {
	scroll-behavior: auto;
}

body {
	font-family: "Manrope", sans-serif;
	overflow-x: hidden;
}

/* =====================================================
   CONTAINER & SECTION STYLES
   ===================================================== */

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 64px;
}

section {
	padding: 60px 0px;
	position: relative;
	overflow: hidden;
}

/* =====================================================
   NAVBAR STYLES
   ===================================================== */

.navbar {
	position: fixed;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
	max-width: 1400px;
	background: #f3f2ef;
	border-radius: 20px;
	padding: 16px 24px;
	height: 77px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1000;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.nav-side-wrapper {
	display: flex;
	justify-self: center;
	align-items: center;
}

.nav-mobile-btn-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin: 0px 4px;
}

.nav-mobile-btn-wrapper button {
	display: none;

}


.mute-btn-nav.blue {
	border-radius: 50%;
	padding: 10px;
	border: 1px solid #1D6DD0;
	/* display: flex; */
	align-items: center;
	justify-content: center;
}



.mute-btn-nav img {
	width: 17px;
	height: 17px;
}

.nav-center {
	display: flex;
	gap: 32px;
	align-items: center;
}

.nav-item {
	position: relative;
	cursor: pointer;
}

.nav-item>a {
	text-decoration: none;
	color: #1d6dd0;
	font-size: 12px;
	font-weight: 500;
}

.dropwrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: -8px ;
}

.dropwrap>a {
	text-decoration: none;
	color: #1d6dd0;
	font-size: 12px;
	font-weight: 500;
}

.dropdown {
	position: absolute;
	top: 68px;
	left: 50%;
	transform: translateX(-50%);
	width: 378px;
	background: #f3f2ef;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	padding: 16px;
	display: none;
}

.dropdown.show {
	display: block;
}

.dropdown-item {
	font-size: 12px;
	font-weight: 500;
	color: #1d6dd0;
	text-decoration: none;
}

.dropdown a{
	margin-bottom: 20px;
	display: block;
}


.dropdown-item p {
	font-weight: 500;
	font-size: 12px;
	color: #1d6dd0;
}

.dropdown-item span {
	font-weight: 400;
	font-size: 12px;
	color: #73a1db;
	margin-top: 4px;
}

.nav-actions {
	display: flex;
	gap: 12px;
	padding: 8px 12px;
}

.login {
	border: 1px solid #1d6dd0;
	font-size: 12px;
	background: #fff;
	color: #1d6dd0;
	padding: 8px 12px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
}

.contact {
	background: #1d6dd0;
	font-size: 12px;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 999px;
	font-weight: 500;
}

.menu-toggle {
	display: none;
	font-size: 28px;
	cursor: pointer;
	justify-content: center;
	align-items: center;
}

/* =====================================================
   STAGE WRAP & HERO SECTIONS
   ===================================================== */

#stageWrap {
	position: relative;
	width: 100%;
	height: 100vh;
}

#hero {
	position: absolute;
	inset: 0;
	height: 100vh;
	overflow: hidden;
	z-index: 10;
	will-change: opacity;
}

#nextSection {
	position: relative;
	width: 100%;
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(160deg,
			rgba(0, 0, 0, 0.25) 0%,
			rgba(0, 0, 0, 0.10) 40%,
			rgba(0, 0, 0, 0.40) 100%);
}

body.loading {
	overflow: hidden;
}

/* =====================================================
   CONTENT CARD STYLES
   ===================================================== */

.cards-container {
	position: relative;
	bottom: 0;
	height: 100%;
	left: 60px;
	width: 100%;
	max-width: 533px;
	z-index: 10;
}

.content-card {
	position: absolute;
	width: 100%;
	bottom: 0;
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 8px 48px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
	opacity: 0;
	transform: translateY(32px) scale(0.96);
	filter: blur(8px);
	pointer-events: none;
	transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.content-card.active {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
	pointer-events: auto;
}

.slide-title {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	line-height: 32px;
	letter-spacing: -0.5px;
	margin-bottom: 24px;
}

.slide-body {
	font-size: 15px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.85);
	line-height: 24px;
}

.slide-tag {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(37, 99, 235, 0.28);
	border: 1px solid rgba(96, 165, 250, 0.35);
	color: #93c5fd;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 50px;
	width: fit-content;
}

.slide-tag::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #60a5fa;
}

/* =====================================================
   DOTS RAIL STYLES
   ===================================================== */

.dots-rail {
	position: absolute;
	right: 44px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 24px;
	z-index: 10;
	align-items: center;
}

.dot-wrap {
	position: relative;
	width: 36px;
	height: 36px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dot-outer {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.28);
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition:
		background 0.3s,
		box-shadow 0.3s;
}

.dot-wrap.done .dot-outer {
	background: rgba(255, 255, 255, 0.9);
}

.dot-wrap.active .dot-outer {
	background: #fff;
}

.dot-ring {
	position: absolute;
	inset: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid transparent;
	z-index: 1;
	transition: border-color 0.3s;
}

.dot-wrap.active .dot-ring {
	border-color: rgba(255, 255, 255, 0.18);
}

.dot-fill {
	position: absolute;
	inset: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.25s;
	background: conic-gradient(rgba(255, 255, 255, 0.85) 0%, transparent 0%);
	-webkit-mask: radial-gradient(circle,
			transparent 16px,
			black 17px,
			black 1px,
			transparent 18px);
	mask: radial-gradient(circle,
			transparent 16px,
			black 17px,
			black 1px,
			transparent 18px);
}

.dot-wrap.active .dot-fill {
	opacity: 1;
}

/* =====================================================
   HERO CONTROLS STYLES
   ===================================================== */

.hero-controls {
	position: absolute;
	bottom: 32px;
	right: 44px;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 10;
}

.ctrl-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
	border: 1px solid var(--glass-border);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition:
		transform 0.2s,
		background 0.2s;
	font-size: 18px;
}

.ctrl-btn:hover {
	transform: scale(1.1);
	background: rgba(255, 255, 255, 0.18);
}

.skip-btn {
	height: 42px;
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
	border: 1px solid var(--glass-border);
	color: #cecece;
	border-radius: 50px;
	font-family: "Manrope", sans-serif;
	padding: 0 22px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition:
		transform 0.2s,
		background 0.2s;
}

.skip-btn:hover {
	transform: scale(1.04);
	background: rgba(255, 255, 255, 0.18);
}

/* =====================================================
   SCROLL HINT STYLES
   ===================================================== */

.scroll-hint {
	position: absolute;
	bottom: 38px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 10;
	transition: opacity 0.5s;
}

.scroll-hint span {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.scroll-hint-mouse {
	width: 22px;
	height: 34px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-radius: 11px;
	position: relative;
	overflow: hidden;
}

.scroll-hint-mouse::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	height: 7px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 2px;
	animation: scrollBob 1.6s ease-in-out infinite;
}

@keyframes scrollBob {

	0%,
	100% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}

	50% {
		opacity: 0.3;
		transform: translateX(-50%) translateY(8px);
	}
}

/* =====================================================
   NEXT SECTION (SECOND HERO) STYLES
   ===================================================== */

#nextSection {
	opacity: 1;
	transform: none;
	overflow: hidden;
}

.second-hero-section {
	position: relative;
	width: 100%;
	min-height: 120vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: #000;
}

.video-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	object-fit: cover;
}

.video-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.5) 0%,
			rgba(0, 0, 0, 0.32) 45%,
			rgba(0, 0, 0, 0.75) 100%);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 10;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 177px 24px;
	text-align: center;
	z-index: 11;
}

.hero-title {
	font-size: 48px;
	font-weight: 600;
	color: #fff;
	line-height: 60px;
	max-width: 720px;
	margin-bottom: 32px;
}

.hero-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
}

.btn-primary {
	height: 46px;
	padding: 0 28px;
	background: #1d6dd0;
	border: none;
	border-radius: 50px;
	color: #fff;
	font-family: "Manrope", sans-serif;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	box-shadow: 0 4px 22px rgba(37, 99, 235, 0.48);
	transition:
		background 0.2s,
		transform 0.15s;
	letter-spacing: 0.1px;
}

.btn-primary:hover {
	transform: translateY(-1px);
}

.btn-secondary {
	height: 46px;
	padding: 0 28px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	color: #fff;
	font-family: "Manrope", sans-serif;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition:
		background 0.2s,
		transform 0.15s;
}

.btn-secondary:hover {
	transform: translateY(-1px);
}

.mute-btn {
	position: absolute;
	bottom: 25vh;
	right: 40px;
	z-index: 12;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.mute-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* =====================================================
   AWARDS BAR STYLES
   ===================================================== */

.awards-wrap {
	position: absolute;
	width: 100%;
	top: 110vh;
	z-index: 20;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.awards-wrap .swiper-slide {
	flex-shrink: 1 !important;
}

.award-pagination {
	display: none;
}

.awards-bar {
	position: absolute;
	width: 100%;
	min-height: 145px;
	max-width: 1194px;
	background: #0a40a1;
	border-radius: 18px;
	display: flex;
	align-items: stretch;
	padding: 0px 80px;
}

.awards-bar .swiper-slide {
	max-width: fit-content;
}

.awards-bar .swiper-wrapper {
	justify-content: space-around;
}

.award-item {
	flex: 1;
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 28px 14px;
	max-width: 256px;
}

.award-laurel {
	font-size: 20px;
	opacity: 0.55;
	flex-shrink: 0;
	align-self: flex-start;
}

.award-text {
	text-align: center;
	align-self: center;
}

.award-title {
	font-size: 14px;
	font-weight: 700;
	color: rgba(254, 254, 254, 1);
	line-height: 1.35;
	letter-spacing: 0.2px;
}

.award-sub {
	font-size: 12px;
	color: rgba(254, 254, 254, 1);
	opacity: 0.5;
	margin-top: 16px;
	font-weight: 400;
	line-height: 1.4;
}

/* =====================================================
   PUZZLE SECTION STYLES
   ===================================================== */
/* 
section.puzzle {
	padding: 60px 0;
	overflow: hidden;
	position: relative;
}

.puzzle-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.puzzle-top,
.puzzle-bottom {
	display: flex;
}

.piece {
	margin: -7px;
}

.puzzle-bottom {
	align-items: end;
	margin-top: -17px;
}

.puzzle-mid {
	display: flex;
	margin-top: -15px;
}

.puzzle-left,
.puzzle-right {
	display: flex;
	flex-direction: column;
}

.puzzle-left-top,
.puzzle-left-bottom,
.puzzle-right-top,
.puzzle-right-bottom {
	display: flex;
}

.piece.p8 {
	margin-top: -6px;
	margin-left: -6px;
}

.piece.p7 {
	margin-top: -6px;
}

.piece.p9 {
	margin-top: -21px;
}

.piece.p10 {
	margin-top: -9px;
	margin-left: -6px;
}

.centerpiece {
	margin: -7px;
	z-index: 10;
}

.piece.p11 {
	margin-top: -6px;
	margin-left: -7px;
}

.piece.p12 {
	margin-top: 6px;
	margin-left: -6px;
}

.piece.p13 {
	margin-top: -9px;
	margin-left: -7px;
}

.piece.p14 {
	margin-top: -20px;
	margin-left: -6px;
}

.piece.p20 {
	margin-left: -4px;
}

.piece-big {
	margin-left: -21px;
	margin-top: -7px;
} */

.h100 {
	height: 260px;
}



/* ============================================ */
/* DESKTOP VERSION */
/* ============================================ */

.desktop-version {
  display: grid;
  grid-template-columns: repeat(6, auto);
  grid-template-rows: repeat(4, auto);
  gap: 0;
  width: fit-content;
  margin: 0 auto;
}

.desktop-version .puzzle-grid-item {
  display: flex;
  margin: -13px;
  position: relative;
}

.desktop-version .puzzle-grid-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
}

/* Center piece: 9th child spans 2x2 */
.desktop-version .puzzle-grid-item:nth-child(9) {
  grid-column: span 2;
  grid-row: span 2;
  z-index: 3;
}

/* Desktop GIF overlay */
.desktop-version .gif-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.desktop-version .gif-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 280px;
  max-height: 100%;
}


/* ============================================ */
/* MOBILE VERSION */
/* ============================================ */

.mobile-version {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: repeat(6, auto);
  width: fit-content;
  padding-top: 50px;
  margin: 0 auto;
}

.mobile-version .puzzle-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -9px;
  position: relative;
}

.mobile-version .puzzle-grid-item img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
}

/* Mobile spans */
.mobile-version .puzzle-grid-item:nth-child(6) {
  grid-column: span 2;
}

.mobile-version .puzzle-grid-item:nth-child(9) {
  grid-column: span 2;
  position: relative;
  z-index: -1;
}

.mobile-version .puzzle-grid-item:nth-child(12) {
  grid-column: span 2;
}

/* Mobile GIF overlay */
.mobile-version .gif-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.mobile-version .gif-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 140px;
  max-height: 100%;
}

/* Desktop */
@media screen and (min-width: 769px) {
  .desktop-version {
    display: grid;
  }
  .mobile-version {
    display: none;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .desktop-version {
    display: none;
  }
  .mobile-version {
    display: grid;
  }
}

/* =====================================================
   STACKING CARDS SECTION STYLES
   ===================================================== */

.cool-shape-wrapper {
	position: absolute;
	top: 50px;
	right: 0;
}

.eyebrow.white {
	color: var(--ibdic-white);
}

.eyebrow.white::after {
	background: var(--ibdic-white);
}

.collab-header.white h2 {
	color: #FFF;
}

section.solutions {
	background-color: var(--ibdic-blue-1);
	padding: 120px 0px 160px;
}

/* Sticky scroll rig */
.sticky-wrapper {
	position: relative;
}

.cards-stack {
	position: relative;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.card-scene {
	width: 100%;
	will-change: transform;
	transform-origin: top center;
	perspective: 1100px;
	padding-bottom: 100px;
	max-width: 1100px !important;
}

/* YOUR ORIGINAL CSS — UNCHANGED */
.solution-card {
	background: #FFF;
	border-radius: 24px;
	overflow: hidden;
	padding: 28px 44px 44px 44px;
	display: flex;
	flex-direction: column;
	gap: 48px;
	position: relative;
	box-shadow: 0 2px 8px rgba(10, 36, 99, 0.07), 0 8px 32px rgba(10, 36, 99, 0.10);
}

.solution-card .top .left h3 {
	font-size: 24px;
	font-weight: 700;
	font-size: 24px;
	line-height: 24px;
	color: #0A40A1;

}

.solution-card .bottom .right {
	width: 100%;
	max-width: 250px;
}

.solution-card .bottom .right img {
	height: 100%;
	width: 100%;
}

.top,
.bottom {
	display: flex;
	justify-content: space-between;
}

.left h2 {
	font-weight: 500;
	font-size: 32px;
	color: var(--ibdic-blue-1);
}

.left li {
	font-weight: 400;
	font-size: 14px;
	color: var(--ibdic-blue-2);
	line-height: 100%;
}

.right h2 {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: var(--ibdic-blue-1);
}

.explore {
	padding: 16px 24px;
	border: none;
	border-radius: 32px;
	background: var(--ibdic-blue-2);
	color: var(--ibdic-white);
	font-weight: 500;
	font-size: 12px;
	cursor: pointer;
}

.explore:hover {
	background: #1348a8;
}

.features-list {
	margin-top: 24px;
	margin-bottom: 48px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 20px;
	list-style: none;
}

.features-list li {
	display: flex;
	align-items: center;
	gap: 11px;
	font-weight: 400;
	font-size: 14px;
	color: var(--ibdic-blue-2);
}

.features-list li img.icon {
	width: 18px;
	height: 18px;
}

.solution-card video {
	max-width: 250px;
	max-height: 250px;
}

/* =====================================================
   SEARCH SECTION STYLES
   ===================================================== */

section.search-section {
	min-height: 700px;
	background-color: aliceblue;
	z-index: 0;
	padding: 100px 0 0;
	margin: 0px 0px 60px;
}

.video-background {
	z-index: -1;
}

.video-background video {
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 65%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.search-section-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.search-wrapper {
	position: relative;
	margin-bottom: 24px;
	text-align: center;
}

.ai-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 56px;
	font-size: 40px;
	font-weight: 500;
	color: var(--ibdic-blue-1);
}

.input-group {
	position: relative;
	width: 100%;
	min-width: 974px;
}

#ai-input {
	width: 100%;
	border-radius: 50px;
	border: 1px solid #ddd;
	background: #FFFFFF;
	position: relative;
	z-index: 1;
	font-size: 1.1rem;
	outline: none;
	font-weight: 400;
}

#ai-input:not(:placeholder-shown)+.placeholder-overlay .search-left {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
}

.placeholder-overlay {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	color: #BDCBE6;
	font-size: 20px;
	pointer-events: none;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	padding: 0 32px;
	font-weight: 400;
}

.search-left {
	display: flex;
	justify-content: center;
	align-items: center;
}

.text-rotator {
	height: 1.6rem;
	overflow: hidden;
	margin-left: 6px;
}

.text-rotator ul {
	animation: rotateText 9s infinite ease-in-out;
	font-weight: 400;
	font-size: 20px;
}

.text-rotator li {
	display: flex;
	align-items: center;
	white-space: nowrap;
	height: 1.5rem;
}

@keyframes rotateText {

	0%,
	25% {
		transform: translateY(0);
	}

	33%,
	58% {
		transform: translateY(-1.5rem);
	}

	66%,
	91% {
		transform: translateY(-3rem);
	}

	100% {
		transform: translateY(0);
	}
}

.search-right {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 12px 0;
	gap: 12px;
}

/* Desktop view - normal layout (no scrolling) */
.suggestion-grid {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 821px;
	margin: 0 auto;
}

.chip-flex {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.chip {
	background-color: var(--ibdic-blue-2);
	color: white;
	border: none;
	padding: 10px 21px;
	border-radius: 25px;
	font-size: 14px;
	cursor: pointer;
	font-weight: 400;
	white-space: nowrap;
	transition: transform 0.2s ease;
}

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

.chip:active {
	transform: scale(0.96);
}

.ai-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 40px;
}

.ai-header h2 {
	color: var(--ibdic-blue-1);
	font-size: 2.5rem;
	font-weight: 500;
}

.search-wrapper input {
	width: 100%;
	padding: 20px 35px;
	border-radius: 50px;
	border: 1px solid #ddd;
	font-size: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	font-weight: 400;
}

.search-icons {
	position: absolute;
	gap: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: green;
}

/* =====================================================
   COLLABORATION SECTION STYLES
   ===================================================== */

.collab-header {
	margin-bottom: 40px;
}

.eyebrow {
	color: var(--ibdic-blue-1);
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	position: relative;
}

.eyebrow::after {
	content: "";
	display: block;
	position: absolute;
	width: 100vw;
	top: 10px;
	left: calc(100% + 6px);
	height: 0.1ch;
	background: var(--ibdic-blue-1);
}

.collab-header h2 {
	color: var(--ibdic-blue-1);
	font-size: 40px;
	max-width: 760px;
	line-height: 60px;
	margin-top: 40px;
	font-weight: 500;
}

h2.btn-side-header {
	text-wrap: balance;
}

.collab-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 280px;
	gap: 24px 22px;
}

.grid-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banks-block {
	grid-row: span 2;
}

.professionals-block {
	grid-column: span 2;
}

.regulators-block {
	grid-column: span 2;
}

.global-block {
	grid-column: span 2;
}

.label-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
	z-index: 1;
}

.label-overlay h3 {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

.label-overlay p {
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	margin-top: 10px;
	line-height: 1.45;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.6s ease, transform 0.3s ease;
	height: 0;
	line-height: 2.1;
}

.explore-solution-btn {
	position: absolute;
	font-size: 14px;
	top: 24px;
	right: 24px;
	/* display: flex; */
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 32px;
	color: #0D1E4C;
	gap: 8px;
	display: none;
}

.grid-item:hover .explore-solution-btn {
	display: flex;
}

.grid-item:hover .animation-p {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	height: auto;
}

/* =====================================================
   CUSTOMERS SECTION STYLES
   ===================================================== */
.rp-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;

}

.rp-card {
	position: relative;
	color: var(--ibdic-white);
	background-color: #0A40A1;
	flex: 1;
	height: 696px;
	border-radius: 20px;
	border: 1px solid #0A40A12B;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
}

.rp-gif {
	position: absolute;
	top: -100px;
	left: 30%;
	width: 100%;
	max-height: 100%;
	object-fit: cover;
	opacity: 14%;
}

.rp-gif img {
	width: 100%;
	height: 100%;
}

.rp-card h3 {
	font-size: 24px;
	font-weight: 600;
	margin: 24px 0px 28px
}

.rp-card p {
	font-size: 20px;
	font-weight: 300;
	line-height: 28px;
}

/* =====================================================
   CUSTOMERS SECTION STYLES
   ===================================================== */

.marquee-container {
	width: 100%;
}

.geek-flex {
	display: flex;
	width: max-content;
	gap: 130px;
	padding-right: 130px;
	animation: marqueeMove 30s linear infinite;
	will-change: transform;
	transform: translate3d(0, 0, 0);
	max-height: 67px;
	align-items: center;
}

.geek1 {
	flex-shrink: 0;
}

.geek-flex:hover {
	animation-play-state: paused;
}

.geek1 img {
	width: auto;
	display: block;
	transition: 0.3s ease;
}

@keyframes marqueeMove {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* =====================================================
   INFRASTRUCTURE SECTION STYLES
   ===================================================== */

section.infrastructure {
	margin: 60px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-blend-mode: soft-light;
	background-color: rgba(6, 62, 132, 1);
}

.infra-content {
	position: relative;
	padding: 0px 0px 24px
}

.top-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--ibdic-white);
	margin-bottom: 150px;
}

.public-infra {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.4;
}

.public-infra p {
	margin: 0;
}

.ndi-logo img {
	height: 90px;
	width: auto;
}

.bottom-row {
	display: flex;
	justify-content: flex-start;
}

.intro-group {
	max-width: 704px;
}

.intro-group span {
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	color: var(--ibdic-white);
	display: block;
}

.main-title {
	font-size: 40px;
	font-weight: 600;
	color: var(--ibdic-white);
	margin: 10px 0 24px 0;
	line-height: 52px;
}

.description {
	font-weight: 400;
	font-size: 20px;
	color: var(--ibdic-white);
	line-height: 32px;
	margin: 0;
}

/* =====================================================
   INSIGHTS SECTION STYLES
   ===================================================== */

.insights-section {
	padding: 80px 0px;
}

.slider-controls-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.slider-controls img {
	background: #EEF4FF;
	padding: 22px 25px;
	border-radius: 100%;
	cursor: pointer;
}

.slider-controls {
	display: flex;
	flex-direction: row;
	gap: 15px;
}

/* Style navigation buttons when disabled (at start/end) */
.swiper-button-disabled {
	opacity: 0.5 !important;
	cursor: not-allowed !important;
	pointer-events: none;
}


.insight-prev.swiper-button-disabled,
.insight-next.swiper-button-disabled,
.news-prev.swiper-button-disabled,
.news-next.swiper-button-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}


.insight-prev,
.insight-next {
	transition: opacity 0.3s ease;
}

.insight-cards-cont {
	width: 100%;
	display: flex;
	gap: 25px;
	align-items: stretch;
	background: transparent;
}

.insight-card {
	flex: 1;
	min-width: 300px;
	position: relative;
	background-color: var(--ibdic-blue-1);
	border-radius: 25px;
	background-repeat: no-repeat;
	background-position: bottom right;
	display: flex;
	flex-direction: column;
}

.insight-coolshape-wrapper {
	position: absolute;
	right: -20%;
	bottom: -10%;
	max-width: 400px;
	height: 400px;
	overflow: hidden;
	opacity: 14%;
}

.insight-coolshape-wrapper img {
	width: 100%;
	height: 100%;
}


.insight-coolshape-wrapper {}

.insight-card:nth-child(1) {
	background-image: url('/assests/images/geometric-fig-card1.svg');
}

.insight-card:nth-child(3) {
	background-color: var(--ibdic-blue-1);
	background-image: url('/assests/images/geometric-fig-card2.svg');
}

.insight-card-content {
	padding: 40px;
	color: var(--ibdic-white);
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.insight-card-top {
	margin-bottom: 44px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 16px;
	font-weight: 400;
}

.insight-card-top span {
	background: #1D6DD080;
	padding: 10px 24px;
	border-radius: 24px;
}

.insight-card-mid {
	font-weight: 400;
	margin-bottom: 100px;
}

.insight-card-mid h2 {
	font-weight: 400;
	font-size: 36px;
}

.insight-card-bottom span {
	margin-right: 5px;
}

/* =====================================================
   NEWS & UPDATES SECTION STYLES
   ===================================================== */

.news-img {
	max-width: 1238px;
	max-height: 577px;
	border-radius: 24px;
}

.news-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-content {
	max-width: 943px;
	margin-top: 34px;
}

.news-content h2 {
	font-weight: 500;
	font-size: 32px;
	line-height: 40px;
	color: var(--ibdic-blue-1);
	margin-bottom: 10px;
}

.news-content p {
	font-family: Manrope;
	font-weight: 300;
	font-size: 20px;
	color: var(--ibdic-blue-1);
}

.news-swiper .swiper-wrapper {
	margin-bottom: 82px;
}

.news-pagination {
	position: static;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.news-pagination .swiper-pagination-bullet {
	width: 46px;
	height: 2px;
	border-radius: 5px;
	background: #d0d0d0;
	opacity: 1;
	margin: 0 !important;
	transition: all 0.4s ease;
}

.news-pagination .swiper-pagination-bullet-active {
	width: 46px;
	height: 4px;
	background: #0A40A1;
}

/* =====================================================
   FAQS SECTION STYLES
   ===================================================== */

.container9 {
	background-color: #EFE8E3;
	padding: 350px 0 100px 0;
}

.talk-to-us {
	background-color: #f5f2f0;
	border: 1px solid #b0a9a9;
	border-radius: 8px;
	max-width: 940px;
	margin: 40px auto;
	height: 90px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.talk-logo {
	position: absolute;
}

.inner-talk {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 40px;
	position: relative;
	z-index: 2;
}

.inner-talk h2 {
	font-size: 18px;
	font-weight: 400;
	color: #000;
	margin: 0;
}

.talk-btn {
	width: auto !important;
	min-width: 180px;
	height: 50px;
	padding: 0 30px;
}

.accordion {
	background: transparent;
	border-bottom: 2px solid #EEEEEE;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(30px);
	animation-fill-mode: both;
}

@keyframes reveal-up {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.accordion__question {
	padding: 24px 0;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
	color: var(--ibdic-blue-1);
	font-weight: 400;
	font-size: 20px;
}

.accordion__question p {
	font-size: 18px;
	font-weight: 400;
	font-size: 20px;
}

.icon-plus {
	width: 20px;
	height: 20px;
	transition: transform 0.5s ease;
	flex-shrink: 0;
}

.accordion.active .icon-plus {
	transform: rotate(180deg);
}

.icon-plus line {
	stroke: #000;
	stroke-width: 2;
	stroke-linecap: round;
}

.accordion__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion.active .accordion__answer {
	max-height: 400px;
}

.answer-content {
	padding: 0 0 24px 24px;
	color: var(--ibdic-blue-1);
	max-width: 90%;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
}

.btn-view-more {
	background: none;
	border: 1px solid #1D6DD0;
	padding: 17px 24px;
	border-radius: 40px;
	color: #1D6DD0;
	margin-top: 40px;
	cursor: pointer;
}

.layout .accordion:nth-child(n+9) {
	display: none;
}

.layout.show-all .accordion:nth-child(n+9) {
	display: block;
}

/* =====================================================
   FOOTER SECTION STYLES
   ===================================================== */

.footer {
	background-color: var(--ibdic-blue-1);
}

.footer-content {
	padding: 74px 0 140px 0;
}

.footer-top {
	display: flex;
	margin-bottom: 80px;
	justify-content: space-between;
	gap: 61px;
}

.footer-col h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--ibdic-white);
	white-space: nowrap;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col li {
	margin-bottom: 12px;
}

.footer-col a {
	text-decoration: none;
	color: #EBEBEB;
	transition: color 0.3s;
	font-weight: 500;
	font-size: 14px;
}

.footer-col a:hover {
	color: #fff;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

.footer-col {
	max-width: 150px;
}

.social-icons {
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
	max-width: 24px;
	max-height: 24px;
}

.email-input-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	border-bottom: 1px solid var(--ibdic-white);
	padding-bottom: 24px;
	margin-top: 22px;
}

.email-input-group input {
	background: transparent;
	border: none;
	outline: none;
	color: var(--ibdic-white);
	font-size: 18px;
	font-weight: 300;
}

.email-input-group button {
	background: transparent;
	border: none;
	color: var(--ibdic-white);
	font-size: 24px;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	display: flex;
	align-items: center;
	transition: transform 0.3s ease;
}

.email-input-group button:hover {
	transform: translateX(5px);
}

.signup-cont p {
	font-weight: 700;
	font-size: 16px;
	color: var(--ibdic-white);
}

.copyright {
	font-weight: 300;
	font-size: 14px;
	color: var(--ibdic-white);
}

.footer-logos {
	display: flex;
	align-items: center;
	gap: 50px;
	margin-bottom: 20px;
}

.email-input-group input::placeholder {
 color: #fff;
 opacity: 95%;
 font-weight: 400;
}

/* spinner code Loader styles */
#initialLoader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease;
}

.loader-content {
	text-align: center;
	color: white;
	font-family: sans-serif;
}

.spinner {
	width: 48px;
	height: 48px;
	border: 4px solid rgba(255, 255, 255, 0.3);
	border-top-color: white;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin: 0 auto 1rem;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Block scrolling while loader is active */
body.loading {
	overflow: hidden;
	height: 100vh;
}

/* =====================================================
   MEDIA QUERIES (MOBILE RESPONSIVE)
   ===================================================== */

@media (max-width: 768px) {

	/* ===== SECTION & CONTAINER ===== */
	section {
		padding: 50px 0px;
	}

	.infra-content {
		padding: 0px 0px 24px;
	}

	.container {
		padding: 0 24px;
	}

	/* ===== NAVBAR MOBILE ===== */
	.menu-toggle {
		display: flex;
	}

	.btn-primary {
		padding: 0px 16px;
		text-wrap: nowrap;
	}

	.btn-secondary {
		padding: 0px 16px;
		text-wrap: nowrap;
	}

	.nav-side-wrapper {}

	.nav-mobile-btn-wrapper {
		position: fixed;
		align-items: center;
		justify-content: center;
		top: 25px;
		right: 5px;
		gap: 24px;
		margin: 0px 16px;
	}

	.nav-center,
	.nav-actions {
		display: none;
		flex-direction: column;
		width: 100%;
		margin-top: 16px;
		gap: 16px;
	}

	.navbar.active .nav-center,
	.navbar.active .nav-actions {
		display: flex;
	}

	.navbar {
		flex-wrap: wrap;
		align-items: flex-start;
		width: 100%;
		top: 0px;
		border-radius: 0 0 16px 16px;
	}

	.mute-btn-nav.blue {
		max-width: 32px;
		max-height: 32px;
	}

	.dropdown {
		position: static;
		width: 100%;
		margin-top: 10px;
		box-shadow: none;
		border: 1px solid #eee;
	}

	/* ===== TYPOGRAPHY & TEXT ===== */
	.ai-title {
		font-weight: 500;
		font-size: 24px;
		line-height: 24px;
	}

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

	.left,
	.text-rotator li {
		font-weight: 500;
		font-size: 14px;
	}

	.text-rotator {
		margin: 0;
	}

	.eyebrow {
		font-weight: 400;
		font-size: 14px;
	}

	.collab-header h2 {
		font-weight: 600;
		font-size: 24px;
		margin-top: 24px;
		line-height: 34px;
		text-wrap: balance;
	}

	.collab-header {
		margin-bottom: 27px;
	}

	/* ===== INFRASTRUCTURE SECTION MOBILE ===== */
	.infra-content .top-row {
		flex-direction: row;
		justify-content: space-between;
	}

	.public-infra {
		font-weight: 700;
		font-size: 10px;
	}

	.intro-group span {
		font-weight: 400;
		font-size: 10px;
	}

	.main-title {
		font-weight: 600;
		font-size: 24px;
		line-height: 30px;
	}

	.description {
		font-weight: 400;
		font-size: 14px;
		line-height: 24px;
	}

	section.infrastructure {
		padding: 0px;
	}

	/* ===== FAQS SECTION MOBILE ===== */
	.accordion__question p {
		font-weight: 400;
		font-size: 14px;
	}

	.btn-view-more {
		padding: 16px 17px;
		margin-top: 24px;
	}

	.accordion__question {
		padding: 18px 0;
	}

	.icon-plus {
		margin-left: 18px;
	}

	/* ===== FOOTER MOBILE ===== */
	.footer {
		margin-top: 100px;
	}

	.footer-top {
		flex-direction: column;
		gap: 0px;
	}

	.footer-col h4 {
		font-weight: 700;
		font-size: 16px;
		margin-bottom: 16px;
	}

	.footer-col {
		max-width: 100%;
		margin-bottom: 56px;
	}

	.signup-cont p {
		font-weight: 700;
		font-size: 16px;
	}

	.footer-bottom {
		flex-direction: column;
	}

	.logos-copyright-cont {
		margin-top: 100px;
	}

	.footer-content {
		padding-bottom: 37px;
	}

	/* ===== SEARCH SECTION MOBILE ===== */
	.search-wrapper input {
		padding: 16px 32px;
	}

	.search-left {
		font-weight: 500;
		font-size: 14px;
		flex-direction: column;
		align-items: flex-start;
	}

	section.solutions {
		padding: 32px 0px 100px;
	}

	/* ===== NEWS SECTION MOBILE ===== */
	.news-content h2 {
		font-weight: 700;
		font-size: 24px;
		line-height: 32px;
	}

	.news-content p {
		font-weight: 500;
		font-size: 14px;
		line-height: 28px;
	}

	.news-content {
		margin-top: 29px;
	}

	.news-img img {
		min-height: 354px;
		border-radius: 16px;
	}

	.news .swiper {
		padding-bottom: 60px;
	}

	.news-pagination {
		justify-content: center;
	}

	/* ===== LOGOS & COPYRIGHT ===== */
	.ibdic-logo-footer {
		max-width: 182px;
		max-height: 81px;
	}

	.ndi-logo-footer {
		max-width: 85px;
		max-height: 55px;
	}

	.copyright {
		font-weight: 400;
		font-size: 12px;
	}

	.ndi-logo img {
		width: 64px;
		height: 40px;
	}

	/* ===== SOLUTION CARDS MOBILE ===== */
	.solution-card {
		padding: 22px 20px 28px 20px;
		gap: 24px;
	}

	.solution-card .left h2 {
		font-size: 24px;
		line-height: 1.4;
	}

	.solution-card .left img {
		width: 80px;
	}

	.solution-card .right h2 {
		font-size: 12px;
		line-height: 1.2;
		text-align: end;
		max-width: 140px;
		text-wrap: pretty;
	}

	.solution-card .top .left h3 {
		font-size: 16px;
		line-height: 1.3;
	}

	.solution-card .bottom {
		flex-direction: column-reverse;
		gap: 0px;
	}

	.solution-card .bottom .right {
		align-self: center;
		max-width: 124px;
	}

	.features-list {
		grid-template-columns: 1fr;
		margin-bottom: 24px;
	}

	/* ===== SUGGESTION GRID & CHIPS (HORIZONTAL SCROLL) ===== */
	.suggestion-grid {
		gap: 0px;
		width: 100%;
	}

	.chip-flex {
		flex-wrap: nowrap;
		overflow-x: auto;
		justify-content: flex-start;
		overflow-y: hidden;
		gap: 12px;
		padding: 8px 24px;
		margin: 0 -24px;
		width: calc(100% + 48px);
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	/* Hide scrollbar for Chrome/Safari */
	.chip-flex::-webkit-scrollbar {
		display: none;
	}

	.chip-flex .chip {
		flex-shrink: 0;
		scroll-snap-align: start;
		padding: 14px 24px;
	}

	/* ===== COLLABORATION GRID (HORIZONTAL SCROLL) ===== */
	.collab-grid {
		gap: 20px 14px;
		grid-template-columns: repeat(4, 1fr);
		overflow-x: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
		margin: 0px -25px;
		padding: 0px 24px;
	}

	.collab-grid::-webkit-scrollbar {
		display: none;
	}

	.grid-item {
		min-width: 300px;
	}

	.label-overlay p {
		line-height: 1.6;
	}

	/* Grid item span overrides */
	.banks-block {
		grid-row: span 1;
	}

	.fintechs-block {
		grid-row: span 2;
	}

	.professionals-block {
		grid-column: span 1;
	}

	.global-block {
		grid-column: span 1;
	}

	/* Grid item order for mobile */
	.banks-block {
		order: 1;
	}

	.msmes-block {
		order: 2;
	}

	.corporates-block {
		order: 3;
	}

	.fintechs-block {
		order: 4;
	}

	.ecosystems-block {
		order: 5;
	}

	.professionals-block {
		order: 6;
	}

	.regulators-block {
		order: 7;
	}

	.global-block {
		order: 8;
	}

	.label-overlay h3 {
		font-size: 16px;
		font-weight: 700;
		line-height: 22px;
	}

	/* ===== INSIGHTS SLIDER MOBILE ===== */
	.swiper.insight-swiper {
		overflow: initial;
		padding: 0;
		margin: 0;
		z-index: 1;
		display: block;
		width: calc(100% - 50px);
	}

	.insight-card-top span {
		padding: 4px 12px;
	}

	.insight-card-content {
		padding: 33px 48px 55px 20px;
	}

	.insight-card-mid h2 {
		font-weight: 500;
		font-size: 24px;
	}

	.insight-card-top {
		margin-bottom: 118px;
	}

	.insight-card-mid {
		margin-bottom: 70px;
	}

	.insight-card-bottom span {
		font-weight: 400;
		font-size: 16px;
	}

	.insight-card-bottom {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}

	.insight-card-bottom span:nth-child(2) {
		display: none;
	}

	.insights-wrapper .slider-controls {
		display: none;
	}

	.slider-controls {
		display: none;
	}

	/* rp section */
	.rp-wrapper {
		gap: 16px;
		justify-content: flex-start;
		overflow-x: auto;
		padding: 0px 24px;
		margin: 0px -24px;
		scrollbar-width: none;
	}

	.rp-card {
		flex-shrink: 0 !important;
		flex: initial;
		max-width: 320px;
		height: 500px;
		padding: 24px;
	}

	.rp-content img {
		max-width: 100%;
	}

	.rp-card h3 {
		font-size: 20px;
	}

	.rp-card p {
		font-size: 16px;
	}

	/* ===== AWARDS SECTION MOBILE ===== */
	.awards-wrap {
		width: 95%;
		position: absolute;
		top: 110vh !important;
		z-index: 2;
		left: 50%;
		transform: translateX(-50%);
	}

	.awards-bar {
		padding: 24px 0px !important;
	}

	.awards-wrap .swiper-slide {
		width: 100% !important;
		flex-shrink: 0 !important;
		max-width: none;
		justify-content: center;
		align-items: center;
		display: flex;
	}

	.award-item {
		padding: 0;
		margin-bottom: 10px;
	}

	.award-pagination {
		position: static !important;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 10px;
	}

	.awards-bar .swiper-pagination-bullet {
		background: #ccc;
		opacity: 0.5;
		transition: all 0.3s ease;
	}

	.awards-bar .swiper-pagination-bullet-active {
		background: #fff;
		opacity: 1;
		transform: scale(1.2);
	}

	/* ===== INPUT GROUP MOBILE ===== */
	.input-group {
		position: relative;
		max-width: 100%;
		min-width: 350px;
	}

	#ai-input {
		max-width: 100%;
		padding: 24px 32px;
	}

	/* ===== HERO SECTION MOBILE ===== */
	#hero {
		height: 100vh;
	}

	.hero-title {
		font-size: 32px;
		max-width: 720px;
		margin-bottom: 32px;
		line-height: 40px;
	}

	.hero-content {
		padding: 150px 24px 0px;
	}

	.mute-btn {
		display: none;
	}

	/* ===== PUZZLE SECTION MOBILE ===== */
	.h100 {
		height: 260px;
	}

	/* ===== CARDS CONTAINER MOBILE ===== */
	.cards-container {
		left: 0px;
	}

	.content-card {
		bottom: 174px;
		left: 50%;
		transform: translateX(-50%) !important;
		max-width: 354px;
	}

	.slide-title {
		font-size: 16px;
		color: #fff;
		line-height: 26px;
	}

	.slide-body {
		font-size: 14px;
		line-height: 20px;
	}

	/* ===== DOTS RAIL MOBILE (HORIZONTAL) ===== */
	.dots-rail {
		flex-direction: row;
		right: 50%;
		transform: translateX(50%);
		bottom: 114px;
		top: auto;
		height: 38px;
	}

	/* ===== HERO CONTROLS MOBILE ===== */
	.hero-controls {
		bottom: 40px;
		right: 50%;
		transform: translateX(50%);
	}

	/* ========== FIXES FOR STACKING CARDS ON MOBILE ========== */
	/* Override inline styles from ScrollTrigger pinning */
	card-scene {
		width: 100% !important;
		max-width: 100% !important;
		left: 0 !important;
		right: 0 !important;
		margin-left: auto !important;
		margin-right: auto !important;
		transform: translateX(0) !important;
		padding-bottom: 60px;
		transform: scale(1) !important;
		transition: none !important;
		will-change: auto !important;
	}

	.cards-stack {
		padding: 0 !important;
		margin: 0 auto;
		max-width: 100%;
		min-height: 150vh;
		/* adjust for mobile */
	}

	.solution-card {
		border-radius: 20px;
	}

	section.solutions {
		padding: 60px 0 300px 0;
	}
}

@media (max-width: 375px) and (max-height: 690px) {
	section.solutions {
		padding: 32px 0px 500px;
	}
}