
:root {
	--c-primary: #005fd5;
	--c-primary-vivid: #1697ff;
	--c-cyan: #36bfff;
	--c-cyan-bright: #84ffff;
	--c-cyan-soft: #d2f3ff;
	--c-cyan-text: #64d3ff;
	--c-navy: #04345b;
	--c-navy-deep: #001341;
	--c-navy-bg: #000816;
	--c-bg-light: #ecf7ff;
	--grad-text: linear-gradient(206.76deg, #36bfff 42.42%, #04345b 159.46%);
	--grad-button: linear-gradient(
		45deg,
		#005fd5 48.41%,
		#1697ff 76.8%,
		#d2f3ff 96.5%,
		#1697ff 104.18%
	);
	--grad-button-hover: linear-gradient(
		225deg,
		#005fd5 48.41%,
		#1697ff 76.8%,
		#d2f3ff 96.5%,
		#1697ff 104.18%
	);
	--grad-tab: linear-gradient(
		74.51deg,
		rgba(0, 95, 213, 0.9) 44.17%,
		rgba(22, 151, 255, 0.9) 77.21%,
		rgba(210, 243, 255, 0.9) 100.13%,
		rgba(22, 151, 255, 0.9) 109.08%
	);
	--grad-card-dark: linear-gradient(
		225.35deg,
		rgba(0, 98, 147, 0.6) 0%,
		rgba(0, 8, 22, 0.6) 52.24%
	);
	--shadow-tab-bar: 0 0 40px rgba(0, 95, 213, 0.16);
	--shadow-tab-active: 0 0 30px rgba(0, 95, 213, 0.2);
	--shadow-card-dark:
		0 30px 80px rgba(54, 232, 255, 0.1),
		inset 8px -8px 30px rgba(255, 255, 255, 0.6);
	--shadow-card-glass:
		0 10px 40px rgba(0, 95, 213, 0.3),
		inset 6px -6px 20px rgba(255, 255, 255, 0.8);
	--font-display:
		"Bahnschrift", "Inter", system-ui, -apple-system, "Segoe UI", Tahoma,
		sans-serif;
	--header-h: 56px;
}
html, body, td, li, div, p, input, select, h1, h2, h3, h4, h5, h6, button{
    font-family: var(--font-display)!important;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-h);
}
body {
	color: var(--c-navy);
	background: #fff;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img,
svg {
	max-width: 100%;
}

.text-cyan {
	color: var(--c-cyan-text) !important;
}
.link-cyan {
	color: var(--c-cyan-text);
	text-decoration: underline;
}
.link-cyan:hover {
	color: var(--c-cyan);
}
.message-box {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	border-radius: 12px;
	text-align: center;
	font-size: 0.95rem;
}
.time-btn {
	flex: 0 1 calc((100% - 5 * 0.75rem) / 6);
	min-width: 90px;
	padding: 0.5rem 1rem;
	border-radius: 1000px;
	background: rgba(255, 255, 255, 0.18);
	box-shadow: inset 2px -2px 20px rgba(255, 255, 255, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #f3f3f3;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.2s ease;
}
.time-btn:hover:not(.disabled) {
	background: rgba(255, 255, 255, 0.28);
	color: #fff;
	cursor: pointer;
    border-color: var(--c-cyan-text);
    box-shadow: 0 0 0 0.2rem rgba(100, 211, 255, 0.25), inset 2px -2px 20px rgba(255, 255, 255, 0.4);

}
.time-btn.selected {
	background: #fff;
	color: var(--c-primary);
	font-weight: 700;
	border-color: #fff;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.45);
}
.time-btn.disabled {
	opacity: 0.35;
	cursor: not-allowed;
	text-decoration: line-through;
}
@media (max-width: 767.98px) {
	.time-btn {
		flex: 1 1 calc((100% - 1.5rem) / 3);
	}
}
.text-primary-vivid {
	color: var(--c-primary) !important;
}
@media (min-width: 1400px) {
	.container-xxl {
		max-width: 1440px;
	}
}
.site-header {
	background: rgba(255, 255, 255, 0.78);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 173, 255, 0.1);
	z-index: 1030;
}
.site-header .navbar {
	padding: 0.65rem 0;
}
.brand-iei {
	height: 36px;
	width: auto;
}
.brand-computex {
	height: 30px;
	width: auto;
}
.brand-divider {
	width: 1.5px;
	height: 32px;
	background: var(--c-navy-bg);
	display: inline-block;
}
.site-header .nav-link {
	color: var(--c-navy);
	font-weight: 400;
	font-size: 1rem;
	padding: 0.4rem 1rem;
	border-radius: 1000px;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease;
	min-width: 150px;
	text-align: center;
}
.site-header .nav-link.active,
.site-header .nav-link:hover {
	background: #fff;
	color: var(--c-primary);
	box-shadow: 0 4px 16px rgba(0, 95, 213, 0.18);
}
.btn-pill {
	border-radius: 1000px;
	font-weight: 400;
}
.btn-gradient {
	background: var(--grad-button);
	color: #fff !important;
	border: none;
	padding: 0.5rem 1.25rem;
	transition: filter 0.2s ease;
}
.btn-gradient:hover {
	background: var(--grad-button-hover);
	filter: brightness(1.08);
	color: #fff;
}
.btn-outline-primary-soft {
	background: #fff;
	color: var(--c-primary) !important;
	border: 1px solid var(--c-primary);
	padding: 0.45rem 1.25rem;
}
.btn-outline-primary-soft:hover {
	background: #fff;
	color: var(--c-primary) !important;
	box-shadow: 0 4px 16px rgba(0, 95, 213, 0.18);
}
.btn-outline-light-soft {
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid #fff;
	color: #fff !important;
	padding: 0.55rem 1.5rem;
}
.btn-outline-light-soft:hover {
	background: #fff;
	color: var(--c-primary) !important;
	border: 1px solid #0000;
	padding: 0.55rem 1.5rem;
}
.btn-link.btn-learn-more {
	color: var(--c-primary) !important;
	font-weight: 300;
	text-decoration: none;
	font-size: 0.95rem;
	float: right;
	padding: 0.45rem 1.25rem !important;
	border-radius: 1000px;
}
.btn-link.btn-learn-more:hover {
	background: #fff;
	color: var(--c-primary) !important;
	box-shadow: 0 4px 16px rgba(0, 95, 213, 0.18);
}
.hero-section {
	position: relative;
	padding: calc(var(--header-h) + 2rem) 0 4rem;
	background:
		url(https://webdls.ieiworld.com/data/landing-page/2026-computex/_img/banner.png) 0 0/100% auto no-repeat,
		linear-gradient(180deg, #fff 0, #ecf7ff 100%);
	overflow: hidden;
	padding-bottom: 0;
}
.hero-bg-glow {
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
	filter: blur(60px);
	z-index: 0;
}
.hero-bg-glow--left {
	width: 670px;
	height: 1300px;
	left: -350px;
	top: 80px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(255, 255, 255, 0.9) 0,
		rgba(255, 255, 255, 0) 100%
	);
	transform: rotate(50deg);
}
.hero-bg-glow--right {
	width: 1000px;
	height: 1000px;
	right: -350px;
	top: -150px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(132, 255, 255, 0.35) 0,
		rgba(132, 255, 255, 0) 70%
	);
}
.hero-row {
	z-index: 1;
	min-height: 70vh;
}
.hero-title {
	font-family: var(--font-display)!important;
	font-weight: 700;
	font-size: clamp(2.4rem, 6vw, 6.5rem);
	line-height: 1.05;
	margin-bottom: 1rem;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	letter-spacing: -0.01em;
}
.hero-subtitle {
	font-weight: 600;
	font-size: clamp(1.25rem, 2.4vw, 2.6rem);
	color: var(--c-navy);
	margin-bottom: 2rem;
	line-height: 1.2;
}
.hero-meta {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.hero-meta-row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	color: var(--c-navy);
}
.hero-meta-icon {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.hero-meta-text {
	font-size: clamp(1.1rem, 1.6vw, 1.7rem);
	font-weight: 400;
	line-height: 1.4;
}
.hero-meta-text-lg {
	font-size: clamp(1.1rem, 1.6vw, 1.7rem);
	line-height: 1.4;
}
.hero-meta-text-lg strong {
	font-size: clamp(1.05rem, 2.5vw, 2.55rem);
	font-weight: 700;
	vertical-align: -webkit-baseline-middle;
}
.hero-register-btn {
	font-size: clamp(1rem, 1.4vw, 1.5rem);
	padding: 0.35rem 1.5rem;
	margin: 0 0 0 0.75rem;
	vertical-align: middle;
	line-height: 1.4;
}
.hero-visual {
	position: relative;
}
.hex-cluster {
	position: absolute;
	width: calc(100% + 60px);
	max-width: 920px;
	aspect-ratio: 963.75/930;
	margin-left: auto;
	margin-right: -60px;
	top: 5.5vw;
	left: 49vw;
	width: 52vw;
	max-width: none;
	margin: 0;
}
.hex {
	position: absolute;
	width: 40%;
	height: 40%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	filter: drop-shadow(0 30px 60px rgba(54, 191, 255, 0.45));
}
.hex-1 {
	left: 12%;
	top: 10%;
}
.hex-2 {
	left: 45%;
	top: 30%;
}
.hex-3 {
	left: 12%;
	top: 50%;
}
.hex-bg {
	--halo-scale: 1.2;
	position: absolute;
	width: 40%;
	height: 40%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	pointer-events: none;
	transform-origin: center;
	animation: hex-spin 4s linear infinite;
}
.hex-bg.circle {
	--halo-scale: 1.5;
	animation:
		hex-spin 4s linear infinite,
		hex-fade 1.33s ease-in-out infinite;
}
.hex-bg-1 {
	left: 12%;
	top: 10%;
}
.hex-bg-2 {
	left: 45%;
	top: 30%;
}
.hex-bg-3 {
	left: 12%;
	top: 50%;
}
@keyframes hex-spin {
	from {
		transform: scale(var(--halo-scale)) rotate(0);
	}
	to {
		transform: scale(var(--halo-scale)) rotate(360deg);
	}
}
@keyframes hex-fade {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.25;
	}
}
@media (min-width: 992px) {
	.hero-visual {
		position: static;
		min-height: 48.4vw;
	}
	.hex-cluster {
		position: absolute;
		top: 5.5vw;
		left: 48.8vw;
		width: 50.2vw;
		max-width: none;
		margin: 0;
		aspect-ratio: 963.75/930;
	}
}
@media (max-width: 991.98px) {
	.hero-section {
		min-height: auto;
		padding-top: calc(var(--header-h) + 1.5rem);
	}
	.hero-visual {
		margin-top: 1.5rem;
	}
}
.why-section {
	position: relative;
	padding: 7rem 0;
	background: var(--c-navy-bg);
	overflow: hidden;
}
.why-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.why-bg-video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	opacity: 0.85;
}
.why-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(0, 8, 22, 0.55) 0,
		rgba(0, 8, 22, 0.35) 50%,
		rgba(0, 8, 22, 0.65) 100%
	);
}
.section-title {
	font-family: var(--font-display)!important;
	font-weight: 700;
	font-size: clamp(1.8rem, 4vw, 3.5rem);
	line-height: 1.2;
	margin-bottom: 2.25rem;
}
.why-copy {
	max-width: 1200px;
	color: #fff;
	font-size: clamp(1rem, 1.2vw, 1.5rem);
	line-height: 1.9;
	font-weight: 400;
	text-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}
.highlights-section {
	position: relative;
	padding: 120px 0 2rem 0;
	background: linear-gradient(180deg, #fff 0, #ecf7ff 100%);
	overflow: hidden;
	padding-bottom: 120px;
}
.highlights-bg-glow {
	position: absolute;
	width: 1200px;
	height: 1200px;
	right: -300px;
	top: 200px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(132, 255, 255, 0.4) 0,
		rgba(132, 255, 255, 0) 100%
	);
	pointer-events: none;
	z-index: 0;
	filter: blur(40px);
}
.tab-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0.75rem;
	background: rgba(255, 255, 255, 0.65);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	box-shadow: var(--shadow-tab-bar);
	border-radius: 1000px;
	max-width: 100%;
}
.tab-btn {
	flex: 1 1 auto;
	border: none;
	background: 0 0;
	color: var(--c-navy);
	font-weight: 300;
	font-size: 1.1rem;
	padding: 0.85rem 1.5rem;
	border-radius: 1000px;
	transition: all 0.25s ease;
	white-space: normal;
	text-align: center;
	min-width: 130px;
}
.tab-btn .tab-label {
	display: inline-block;
	line-height: 1.2;
}
.tab-btn:hover {
	background: rgba(0, 95, 213, 0.08);
	color: var(--c-primary);
}
.tab-btn.active {
	background: var(--grad-tab);
	color: #fff;
	font-weight: 600;
	box-shadow: var(--shadow-tab-active);
}
@media (max-width: 991.98px) {
	.tab-bar {
		border-radius: 24px;
	}
	.tab-btn {
		flex-basis: 48%;
		font-size: 1rem;
		padding: 0.7rem 1rem;
	}
}
@media (max-width: 575.98px) {
	.tab-btn {
		flex-basis: 100%;
	}
}
.tab-panel {
	display: none;
}
.tab-panel.active {
	display: block;
	animation: fade-in 0.35s ease;
}
@keyframes fade-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.feature-hero {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background-color: #001341;
	background-size: cover;
	background-position: center;
	min-height: 540px;
	height: 100%;
	display: flex;
	align-items: flex-end;
	color: #fff;
}
.feature-hero-ai-ready {
	aspect-ratio: 1055 / 900 !important;
}
.feature-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			rgba(0, 19, 65, 0) 15%,
			rgba(0, 19, 65, 0.55) 45%,
			#001341 95%
		),
		linear-gradient(90deg, rgba(0, 19, 65, 0) 45%, rgba(0, 19, 65, 0.7) 100%);
}
.feature-hero-body {
	position: relative;
	padding: 2.5rem;
	max-width: 600px;
}
.feature-hero-body.ai-ready-tab {
	max-width: 480px;
	width: 52%;
}
.feature-hero-body h3 {
	font-weight: 700;
	font-size: clamp(1.4rem, 2.2vw, 2.25rem);
	line-height: 1.3;
	margin-bottom: 1rem;
	text-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}
.feature-hero-body p {
	font-size: 0.95rem;
	line-height: 1.55;
	margin-bottom: 1.5rem;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	text-align: justify;
}
.product-card {
	position: relative;
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 1rem;
	background: rgba(255, 255, 255, 0.55);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-card-glass);
	border-radius: 24px;
	padding: 1.75rem 1.5rem 1.75rem 1rem;
	align-items: center;
	min-height: 200px;
	isolation: isolate;
}
.product-card-media {
	position: relative;
	isolation: isolate;
}
.product-card-media::after {
	content: "";
	position: absolute;
	inset: -10% -20% -10% -20%;
	background: radial-gradient(
		50% 50% at 50% 50%,
		#afd8ff 0,
		rgba(255, 255, 255, 0) 70%
	);
	z-index: -1;
	pointer-events: none;
}
.product-card-img {
	position: relative;
	width: 100%;
	height: 200px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: drop-shadow(0 10px 20px rgba(0, 95, 213, 0.25));
}
.product-card-body {
	padding: 0.25rem;
}
.product-eyebrow {
	color: var(--c-primary);
	font-size: 0.9rem;
	font-weight: 400;
	margin-bottom: 0.15rem;
}
.product-coming-soon {
	display: block;
	text-align: right;
	color: #ff1a8b;
	font-weight: 600;
	font-size: 0.9rem;
	margin-top: 0.25rem;
}
.product-bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 0.85rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #000;
}
.product-bullets li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.35rem;
	font-weight: 300;
}
.product-bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.25rem;
	width: 16px;
	height: 16px;
	background: var(--c-primary);
	border-radius: 50%;
}
.product-bullets li::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 0.55rem;
	width: 8px;
	height: 4px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}
@media (min-width: 1200px) and (max-width: 1280px) {
	.tab-panel .col-xl-4,
	.tab-panel .col-xl-8 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}
@media (min-width: 1300px) {
	.tab-panel > .row {
		--bs-gutter-x: 0;
		margin: 0;
		position: relative;
	}
	.tab-panel .col-xl-8 {
		flex: 0 0 68%;
		max-width: 68%;
		padding-right: 0;
	}
	.tab-panel .col-xl-4 {
		flex: 0 0 52%;
		max-width: 52%;
		margin-left: -20%;
		padding: 0;
		z-index: 2;
		align-self: stretch;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 1.5rem;
		align-self: end;
	}
	.tab-panel .ai-ready-product-group {
		flex: 0 0 66%;
		max-width: 66%;
		margin-left: -34%;
	}
	.feature-hero {
		aspect-ratio: 1055/788;
		min-height: 0;
		height: auto;
	}
	.product-card {
		grid-template-columns: 38% 1fr;
		padding: 1rem 1.75rem 1rem 1rem;
		min-height: 0;
	}
	.ai-ready .product-card {
		padding: 1rem 1.75rem 1rem 1rem;
	}
	.product-card-img {
		height: 220px;
	}
	.ai-ready .product-card-img {
		height: 180px;
		width: 80%;
		justify-self: center;
	}
    .ai-ready-card {
	background-image: linear-gradient(
		90deg,
        rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 1) 45%,
        rgba(255, 255, 255, 1) 65%,
		rgba(255, 255, 255, 0) 85%
	) !important;
}
}
@media (max-width: 575.98px) {
	.product-card {
		grid-template-columns: 1fr;
	}
	.product-card-img {
		height: 140px;
	}
}
.book-section {
	position: relative;
	padding: 7rem 0;
	background: linear-gradient(180deg, var(--c-navy-bg) 0, #001b34 100%);
	background-image:
		url(https://webdls.ieiworld.com/data/landing-page/2026-computex/_img/sec4-bg.png),
		linear-gradient(180deg, var(--c-navy-bg) 0, #001b34 100%);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	color: #fff;
}
.book-glow {
	position: absolute;
	width: 1500px;
	height: 1500px;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(60px);
	z-index: 0;
}
.book-glow--right {
	right: -700px;
	top: -800px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(55, 195, 255, 0.35) 0,
		rgba(55, 195, 255, 0) 100%
	);
}
.book-glow--left {
	left: -1000px;
	bottom: -800px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(55, 195, 255, 0.25) 0,
		rgba(55, 195, 255, 0) 100%
	);
}
.form-card,
.info-card {
	position: relative;
	background: var(--grad-card-dark);
	box-shadow: var(--shadow-card-dark);
	border-radius: 20px;
	padding: 2rem;
	color: #fff;
}
.info-card-title {
	font-weight: 600;
	font-size: clamp(1.4rem, 1.8vw, 1.8rem);
	margin-bottom: 0.75rem;
}
.info-card-highlight {
	color: var(--c-cyan-text);
	font-weight: 700;
	font-size: clamp(1.4rem, 1.8vw, 1.8rem);
}
.info-card-img {
	max-width: 70%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.dates-list {
	list-style: none;
	padding: 0;
	margin: 0 auto 1rem;
	display: inline-block;
	text-align: left;
}
.dates-list li {
	display: flex;
	gap: 1.25rem;
	font-size: 1.4rem;
	color: var(--c-cyan-text);
	font-weight: 700;
	line-height: 1.4;
	justify-content: space-between;
}
.dates-list li span {
	min-width: 4.5rem;
}
.form-card {
	padding: 2.5rem;
}
.form-card-title {
	font-weight: 700;
	font-size: clamp(1.3rem, 1.8vw, 1.85rem);
	margin-bottom: 1.5rem;
}
.form-block {
	padding: 0;
	margin-bottom: 1.75rem;
	border: none;
}
.form-block-legend {
	font-weight: 700;
	font-size: clamp(1.15rem, 1.8vw, 1.6rem);
	color: var(--c-cyan-text);
	text-align: center;
	display: block;
	margin-bottom: 1rem;
	padding: 0;
}
.form-pill {
	background: rgba(255, 255, 255, 0.18);
	box-shadow: inset 2px -2px 20px rgba(255, 255, 255, 0.35);
	border-radius: 1000px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #f3f3f3;
	padding: 0.65rem 1.25rem;
	font-weight: 500;
	font-size: 0.95rem;
}
.form-pill:focus {
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
	border-color: var(--c-cyan-text);
	box-shadow:
		0 0 0 0.2rem rgba(100, 211, 255, 0.25),
		inset 2px -2px 20px rgba(255, 255, 255, 0.4);
}
.form-pill::placeholder {
	color: rgba(243, 243, 243, 0.85);
}
select.form-pill {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23F3F3F3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.25rem center;
	background-size: 16px;
	appearance: none;
}
select.form-pill option {
	color: #04345b;
}
.topic-dropdown {
	position: relative;
}
.topic-dropdown-toggle {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	padding: 0.65rem 1.25rem;
	background: rgba(255, 255, 255, 0.18);
	box-shadow: inset 2px -2px 20px rgba(255, 255, 255, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 1000px;
	color: #f3f3f3;
	font-weight: 500;
	font-size: 0.95rem;
	text-align: left;
	transition: background 0.2s ease;
}
.topic-dropdown-toggle:hover {
	background: rgba(255, 255, 255, 0.24);
}
.topic-dropdown-icon {
	margin-left: 0.75rem;
	font-size: 1rem;
	transition: transform 0.25s ease;
}
.topic-dropdown.is-open .topic-dropdown-icon {
	transform: rotate(180deg);
}
.topic-dropdown-menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	right: 0;
	z-index: 30;
	margin: 0;
	padding: 1rem 0.75rem;
	list-style: none;
	background: rgba(30, 50, 80, 0.55);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	display: none;
}
.topic-dropdown.is-open .topic-dropdown-menu {
	display: block;
	animation: fade-in 0.2s ease;
}
.topic-dropdown-menu li {
	padding: 0.55rem 1rem;
	margin: 0.1rem 0;
	border: 1px solid transparent;
	border-radius: 1000px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}
.topic-dropdown-menu li.is-active,
.topic-dropdown-menu li:hover {
	background: linear-gradient(
		90deg,
		rgba(54, 191, 255, 0.08),
		rgba(54, 191, 255, 0.02)
	);
	border-color: rgba(100, 211, 255, 0.55);
	box-shadow:
		0 0 20px rgba(54, 191, 255, 0.18),
		inset 0 0 12px rgba(54, 191, 255, 0.12);
	color: #fff;
}
.schedule-days,
.schedule-times {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: flex-start;
}
.schedule-pill {
	flex: 1 1 0;
	min-width: 110px;
	padding: 0.5rem 1rem;
	border-radius: 1000px;
	background: rgba(255, 255, 255, 0.18);
	box-shadow: inset 2px -2px 20px rgba(255, 255, 255, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #f3f3f3;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.2s ease;
}
.schedule-pill:hover {
	background: rgba(255, 255, 255, 0.28);
	color: #fff;
    border-color: var(--c-cyan-text);
    box-shadow: 0 0 0 0.2rem rgba(100, 211, 255, 0.25), inset 2px -2px 20px rgba(255, 255, 255, 0.4);
}
.schedule-pill.active {
	background: #fff;
	color: var(--c-primary);
	font-weight: 700;
	border-color: #fff;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.45);
}
.schedule-pill--sm {
	flex: 0 1 calc((100% - 5 * 0.75rem) / 6);
	min-width: 90px;
}
@media (max-width: 767.98px) {
	.schedule-pill--sm {
		flex: 1 1 calc((100% - 1.5rem) / 3);
	}
	.schedule-days .schedule-pill {
		flex: 1 1 calc((100% - 0.75rem) / 2);
	}
}
.faq-section {
	position: relative;
	padding: 5rem 0 6rem;
	background:
		url(https://webdls.ieiworld.com/data/landing-page/2026-computex/_img/sec5-bg.png) center/cover no-repeat,
		linear-gradient(180deg, #ecf7ff 0, #fff 100%);
}
.faq-title {
	color: var(--c-navy);
}
.faq-toggle {
	font-size: 2rem;
	color: var(--c-navy);
	cursor: pointer;
	transition: transform 0.3s ease;
	transform: rotate(180deg);
}
.faq-toggle.collapsed {
	transform: rotate(0);
}
.faq-accordion {
	max-width: 1100px;
	margin: 0 auto;
}
.faq-accordion.hide {
	display: none;
}
.accordion-item {
	background: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(0, 95, 213, 0.12);
	border-radius: 16px !important;
	margin-bottom: 0.75rem;
	overflow: hidden;
	transition:
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}
.accordion-item:has(.accordion-button:not(.collapsed)) {
	background: #fff;
	border-color: rgba(0, 95, 213, 0.2);
	box-shadow:
		0 12px 40px rgba(0, 95, 213, 0.2),
		0 2px 8px rgba(0, 95, 213, 0.08);
}
.accordion-button {
	font-weight: 600;
	color: var(--c-navy);
	background: 0 0;
	font-size: 1.05rem;
	padding: 1.1rem 1.5rem;
}
.accordion-button .faq-q-num {
	margin-right: 0.35rem;
	font-weight: 700;
}
.accordion-button:not(.collapsed) {
	background: rgba(0, 95, 213, 0.04);
	color: var(--c-primary);
	box-shadow: none;
	font-weight: 700;
}
.accordion-button:not(.collapsed) .faq-q-num {
	color: var(--c-primary);
}
.accordion-button:focus {
	box-shadow: 0 0 0 0.2rem rgba(0, 95, 213, 0.15);
}
.accordion-body {
	color: #04345b;
	font-weight: 400;
	font-size: 0.95rem;
	line-height: 1.85;
	padding: 1.25rem 1.5rem 1.5rem;
	border-top: 1px solid rgba(0, 95, 213, 0.18);
	margin: 0 0.25rem;
}
.site-footer {
	background: var(--c-navy-bg);
	color: #fff;
	padding: 1rem;
	font-weight: 600;
	font-size: 0.9rem;
}
.floating-actions {
	position: fixed;
	right: 1rem;
	bottom: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	z-index: 1040;
}
.floating-btn {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 1.1rem;
	box-shadow: 0 6px 20px rgba(0, 95, 213, 0.25);
	text-decoration: none;
	transition: transform 0.15s ease;
}
.floating-btn:hover {
	transform: translateY(-2px);
}
.floating-btn--gradient {
	background: var(--grad-button);
	color: #fff;
}
.floating-btn--white {
	background: #fff;
	color: var(--c-primary);
	border: 1px solid rgba(0, 95, 213, 0.15);
}
@media (max-width: 767.98px) {
	.site-header .navbar-collapse {
		background: rgba(255, 255, 255, 0.98);
		border-radius: 16px;
		padding: 1rem;
		margin-top: 0.75rem;
		box-shadow: 0 10px 25px rgba(0, 95, 213, 0.15);
	}
	.site-header .navbar-nav {
		gap: 0.5rem;
	}
	.site-header .btn {
		width: 100%;
	}
	.hero-section {
		padding-top: calc(var(--header-h) + 2rem);
		background-size: auto;
	}
	.hex-cluster {
		display: none;
	}
	.feature-hero {
		min-height: 420px;
	}
	.feature-hero-body {
		padding: 1.5rem;
	}
	.book-section,
	.highlights-section,
	.why-section {
		padding: 4rem 0;
	}
	.form-card,
	.info-card {
		padding: 1.5rem;
	}
}
.grecaptcha-badge {
	display: none !important;
}
