/*
 * Custom Design System and Styles for Elixir Theme
 * Developed using Vanilla CSS. No framework required.
 */

:root {
	/* Colors */
	--bg-primary: #030514;
	--bg-secondary: #080c25;
	--bg-card: rgba(13, 19, 48, 0.4);
	--bg-card-hover: rgba(20, 29, 68, 0.6);
	--text-primary: #ffffff;
	--text-secondary: #8c93b6;
	--text-muted: #62698f;
	--accent: #d4ff00;
	/* Neon Lime Green */
	--accent-glow: rgba(212, 255, 0, 0.15);

	/* Brand Gradients */
	--glow-blue: radial-gradient(circle, rgba(29, 78, 216, 0.15) 0%, rgba(3, 5, 20, 0) 70%);
	--glow-purple: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, rgba(3, 5, 20, 0) 70%);
	--card-border: rgba(255, 255, 255, 0.08);
	--card-border-active: rgba(212, 255, 0, 0.4);

	/* Fonts */
	--font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base Reset & Styling */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	font-family: var(--font-body);
	line-height: 1.6;
}

body {
	background-color: var(--bg-primary);
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

ul {
	list-style: none;
}

/* Buttons & Elements */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.8rem;
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
	border: none;
	white-space: nowrap;
}

.btn-header-cta {
	background-color: transparent;
	color: var(--text-primary);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-header-cta:hover {
	background-color: var(--text-primary);
	color: var(--bg-primary);
	border-color: var(--text-primary);
}

.btn-primary {
	background-color: var(--accent);
	color: var(--bg-primary);
	box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(212, 255, 0, 0.35);
}

.btn-secondary {
	background-color: transparent;
	color: var(--text-primary);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.3);
}

/* Header & Navigation Styles matching Figma specifications */
.frame-44 {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 14px 48px;
	gap: 20px;
	position: fixed;
	width: 100%;
	max-width: 1440px;
	height: 64px;
	left: 50%;
	transform: translateX(-50%);
	top: 0px;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.frame-44 .header-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
}

/* Left Nav Group (Frame 65) */
.frame-65 {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0px;
	gap: 4px;
	width: 454.36px;
	height: 36px;
}

/* Logo Container (Frame 60) */
.frame-60 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px 16px;
	gap: 10px;
	width: 104.36px;
	height: 36px;
	background: #080C2B;
	border-radius: 6px;
	transition: background-color 0.3s ease;
}

.frame-60:hover {
	background: #10174f;
}

.frame-60 svg {
	width: 72.36px;
	height: 17.5px;
	display: block;
}

.logo-dark,
.logo-light {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.footer-logo-row-svg.logo-dark,
.footer-logo-row-svg.logo-light {
	width: 100%;
}

/* Menu Pill Buttons */
.menu-pill-btn {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px 16px;
	gap: 10px;
	height: 36px;
	background: #080C2B;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 6px;
	font-family: 'Gilroy-Medium', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.menu-pill-btn:hover {
	background: #0d1445;
	border-color: rgba(255, 255, 255, 0.15);
	color: #C2D81E;
}

.frame-62 {
	width: 91px;
}

.frame-63 {
	width: 78px;
}

.frame-64 {
	width: 93px;
}

.frame-65-link {
	width: 72px;
}

/* Right Nav Group (Frame 61) */
.right-nav-group.frame-61 {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0px;
	gap: 8px;
	width: 220px;
	height: 34px;
}

/* Icon Buttons (Frame 60 & 61 Icons) */
.icon-pill-btn {
	border: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px;
	width: 34px;
	height: 34px;
	background: #080C2B;
	border-radius: 6px;
	color: #FFFFFF;
	cursor: pointer;
	transition: all 0.3s ease;
}

.icon-pill-btn:hover {
	background: #10174f;
	color: #C2D81E;
}

.icon-pill-btn svg {
	width: 20px;
	height: 20px;
	display: block;
}

.icon-pill-btn svg path {
	transition: fill 0.3s ease;
}

.lang-toggle-btn:hover svg path {
	fill: #C2D81E;
}

/* Talk to an Expert Button */
.cta-pill-btn.button-expert {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px 12px;
	gap: 4px;
	width: 136px;
	height: 34px;
	background: #C2D81E;
	border-radius: 6px;
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #080C2B;
	transition: all 0.3s ease;
	cursor: pointer;
	white-space: nowrap;
}

.cta-pill-btn.button-expert:hover {
	background: #d4ff00;
	box-shadow: 0 0 15px rgba(194, 216, 30, 0.4);
}

/* Navigation Menu Wrapper for Desktop */
.main-nav-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
}

.mobile-menu-controls {
	display: none;
}

/* Mobile Menu Toggle styling */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1010;
}

.mobile-menu-toggle .bar {
	width: 100%;
	height: 2px;
	background-color: #FFFFFF;
	transition: all 0.3s ease;
	display: block;
}

/* Transform hamburger to X when active */
.mobile-menu-toggle.active .bar-1 {
	transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar-2 {
	opacity: 0;
}

.mobile-menu-toggle.active .bar-3 {
	transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Header Overrides */
@media (max-width: 900px) {
	.frame-44 {
		padding: 14px 24px;
	}

	.frame-65 {
		width: auto;
	}

	.mobile-menu-toggle {
		display: flex;
		order: 2;
	}

	.right-nav-group.frame-61 {
		order: 1;
		width: auto;
		margin-left: auto;
		margin-right: 12px;
		gap: 8px;
	}

	/* Slide-out drawer on mobile */
	.main-nav-wrapper {
		position: fixed;
		top: 64px;
		right: -100%;
		width: 280px;
		height: calc(100vh - 64px);
		background: #03041C;
		border-left: 1px solid rgba(255, 255, 255, 0.05);
		flex-direction: column;
		padding: 40px 24px;
		gap: 16px;
		transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
		z-index: 1005;
		align-items: stretch;
	}

	.main-nav-wrapper.active {
		right: 0;
	}

	.main-nav-wrapper .menu-pill-btn {
		width: 100%;
		justify-content: center;
	}

	.mobile-menu-controls {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 16px;
		margin-top: auto;
		padding-top: 24px;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		width: 100%;
	}
}

@media (max-width: 600px) {

	/* Hide theme and language icons on extremely small mobile screens to keep layout tidy */
	.right-nav-group.frame-61 .icon-pill-btn {
		display: none;
	}
}



/* Hero Section matching Figma specifications */
.hero-section {
	width: 100%;
	max-width: 1344px;
	margin: 0 auto;
	padding: 10rem 0 5rem;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.hero-header-info {
	width: 100%;
	margin-bottom: 50px;
	z-index: 10;
}

.hero-title {
	font-family: 'Gilroy-Heavy', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: clamp(36px, 6vw, 80px);
	line-height: clamp(40px, 6vw, 80px);
	letter-spacing: -0.01em;
	text-transform: capitalize;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 40px;
	text-align: left;
	max-width: 1209px;
}

.hero-intro-row.frame-67 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0px 8px;
	gap: 40px;
	width: 100%;
}

.hero-intro-text {
	width: 100%;
	max-width: 486px;
	font-family: 'GE SS Two', 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: rgba(255, 255, 255, 0.65);
}

.hero-actions-wrapper.frame-62 {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0px;
	gap: 8px;
	width: 290px;
	height: 40px;
	flex-shrink: 0;
}

.btn-hero-action {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px 16px;
	gap: 4px;
	height: 40px;
	border-radius: 6px;
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-contact {
	width: 115px;
	background: #080C2B;
	color: #FFFFFF;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-contact:hover {
	background: #10174f;
	border-color: rgba(255, 255, 255, 0.15);
}

.btn-work {
	width: 167px;
	background: #C2D81E;
	color: #080C2B;
	border: none;
}

.btn-work:hover {
	background: #d4ff00;
	box-shadow: 0 0 15px rgba(194, 216, 30, 0.4);
}

/* Hero Image Card Container */
.hero-image-card {
	position: relative;
	width: 100%;
	height: 700px;
	border-radius: 8px;
	overflow: hidden;
	background-color: #17171B;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-top: 20px;
	z-index: 10;
}

.hero-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(10, 10, 12, 0.8) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
}

.hero-card-bottom-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	position: absolute;
	width: calc(100% - 80px);
	height: 38px;
	left: 40px;
	top: 622px;
	z-index: 10;
}

.featured-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 4px;
	width: 374.2px;
	height: 36px;
}

.meta-line-1 {
	font-family: 'JetBrains Mono', monospace;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 2.16px;
	text-transform: uppercase;
	color: rgba(242, 240, 234, 0.8);
}

.meta-line-2 {
	font-family: 'JetBrains Mono', monospace;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 2.16px;
	text-transform: uppercase;
	color: #8A8A93;
}

.watch-reel-btn {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0px 16px;
	width: 148.61px;
	height: 38px;
	background: rgba(10, 10, 12, 0.7);
	border: 1px solid rgba(242, 240, 234, 0.08);
	border-radius: 9999px;
	color: #F2F0EA;
	cursor: pointer;
	transition: all 0.3s ease;
}

.watch-reel-btn span {
	font-family: 'Geist', 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
}

.watch-reel-btn svg {
	width: 14px;
	height: 14px;
	display: block;
}

.watch-reel-btn:hover {
	background: rgba(10, 10, 12, 0.9);
	border-color: rgba(242, 240, 234, 0.2);
	transform: scale(1.03);
}

/* Responsive Hero Overrides */
@media (max-width: 900px) {
	.hero-section {
		padding: 8rem 24px 3rem;
	}

	.hero-intro-row.frame-67 {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
		padding: 0;
	}

	.hero-actions-wrapper.frame-62 {
		width: 100%;
	}

	.hero-image-card {
		height: 500px;
	}

	.hero-card-bottom-row {
		flex-direction: column;
		align-items: flex-start;
		height: auto;
		top: auto;
		bottom: 30px;
		left: 30px;
		width: calc(100% - 60px);
		gap: 16px;
	}

	.featured-meta {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 600px) {
	.hero-image-card {
		height: 400px;
	}

	.hero-card-bottom-row {
		bottom: 20px;
		left: 20px;
		width: calc(100% - 40px);
		gap: 12px;
	}

	.meta-line-1,
	.meta-line-2 {
		font-size: 10px;
		line-height: 14px;
		letter-spacing: 1px;
	}
}

color: var(--text-secondary);
}

/* Logos Section (Infinite Scroll) */
.logos-section-infinite {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 112px 0px;
	gap: 32px;
	width: 100%;
	overflow: hidden;
	background: #03041C;
	position: relative;
}

.logos-title-wrapper {
	width: 100%;
	max-width: 600px;
	padding: 0 20px;
	margin: auto;
	margin-bottom: 30px;
}

.logos-pretitle {
	font-family: 'JetBrains Mono', monospace;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
}

.logos-marquee {
	display: flex;
	width: 100%;
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-inner {
	display: flex;
	flex-direction: row;
	width: max-content;
	gap: 10px;
	animation: marquee-scroll 25s linear infinite;
}

.marquee-group {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.logo-card {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 10px;
	gap: 10px;
	width: 248px;
	height: 80px;
	background: #080C2B;
	border-radius: 6px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.logo-card:hover {
	background: #11174c;
}

.logo-card svg {
	width: 140.73px;
	height: 32px;
	display: block;
}

.logo-card svg path {
	transition: fill-opacity 0.3s ease, fill 0.3s ease;
}

.logo-card:hover svg path {
	fill-opacity: 0.85;
}

@keyframes marquee-scroll {
	0% {
		transform: translateX(0);
	}

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

/* Pause scroll animation on hover for interactive feel */
.logos-marquee:hover .marquee-inner {
	animation-play-state: paused;
}

@media (max-width: 768px) {
	.logos-section-infinite {
		padding: 60px 0;
		gap: 24px;
	}

	.logos-pretitle {
		font-size: 13px;
		line-height: 18px;
	}

	.logo-card {
		width: 180px;
		height: 60px;
	}

	.logo-card svg {
		width: 100px;
		height: 24px;
	}
}


/* Section Header */
.section-header {
	max-width: 1200px;
	margin: 0 auto 4rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 2rem;
	padding: 0 2rem;
}

.section-title-wrapper {
	max-width: 600px;
}

.section-pretitle {
	font-family: var(--font-title);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--accent);
	margin-bottom: 0.5rem;
	display: inline-block;
}

.section-title {
	font-family: var(--font-title);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
	line-height: 1.2;
}

.section-title span.accent-text {
	color: var(--accent);
}

.section-desc {
	max-width: 450px;
	color: var(--text-secondary);
	font-size: 1.05rem;
}

/* Outcomes Section matching Figma specifications */
.outcomes-section-v2 {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 110px 48px;
	gap: 32px;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
}

.outcomes-header-row.frame-79 {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0px;
	gap: 32px;
	width: 100%;
}

.outcomes-title {
	width: 50%;
	max-width: 672px;
	font-family: 'Gilroy-Heavy', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: clamp(30px, 4vw, 48px);
	line-height: clamp(34px, 4vw, 52px);
	text-transform: capitalize;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	text-align: left;
}

.outcomes-subtitle-wrapper.frame-78 {
	width: 50%;
	max-width: 672px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.outcomes-subtitle {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 100;
	font-size: 16px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

.outcomes-cards-wrapper.frame-10 {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0px;
	gap: 12px;
	width: 100%;
	min-height: 250px;
}

.outcome-card-v2 {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 30px 32px;
	gap: 30px;
	width: 23%;
	flex-grow: 1;
	height: 214px;
	background: #080C2B;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	justify-content: center;
	transition: height 1s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.outcome-card-v2:hover {
	height: 260px;
	background: #11174c;
	border-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.outcome-card-pretitle {
	font-family: 'GE SS Two', 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.45);
	text-transform: capitalize;
}

.outcome-card-content-block.frame-76 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0px;
	align-self: stretch;
}

.outcome-card-value {
	font-family: 'Gilroy-Bold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 64px;
	color: rgba(255, 255, 255, 0.85);
}

.outcome-card-desc {
	font-family: 'GE SS Two', 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.65);
}

/* Responsive Outcomes Overrides */
@media (max-width: 900px) {
	.outcomes-section-v2 {
		padding: 80px 24px;
		gap: 24px;
	}

	.outcomes-header-row.frame-79 {
		flex-direction: column;
		gap: 16px;
	}

	.outcomes-title,
	.outcomes-subtitle-wrapper.frame-78 {
		width: 100%;
		max-width: none;
	}

	.outcomes-cards-wrapper.frame-10 {
		flex-wrap: wrap;
		height: auto;
		min-height: auto;
		gap: 16px;
	}

	.outcome-card-v2 {
		width: calc(50% - 8px);
		height: auto;
		min-height: 214px;
	}

	.outcome-card-v2:hover {
		height: auto;
		background: #11174c;
		border-color: rgba(255, 255, 255, 0.15);
	}
}

@media (max-width: 600px) {
	.outcome-card-v2 {
		width: 100%;
	}
}


/* Complete Stack Section matching Figma specifications */
.stack-section-v2 {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 112px 48px;
	gap: 36px;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
}

.stack-header.frame-12 {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0px;
	gap: 22px;
	width: 100%;
	max-width: 1344px;
	margin-bottom: 20px;
	text-align: center;
}

.stack-title {
	font-family: 'Gilroy-Heavy', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: clamp(30px, 4vw, 48px);
	line-height: clamp(34px, 4vw, 52px);
	text-transform: capitalize;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	text-align: center;
}

.stack-title .accent-text {
	color: #C2D81E;
}

.stack-subtitle {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 100;
	font-size: 16px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
	text-align: center;
	max-width: 780px;
}

.stack-rows-container.frame-37 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 8px;
	width: 100%;
	max-width: 1344px;
}

.stack-row {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 24px 32px;
	width: 100%;
	height: 84px;
	background: #080C2B;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: background-color 0.3s ease, border-color 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stack-row:hover {
	background: #11174c;
	border-color: rgba(255, 255, 255, 0.15);
}

.stack-left-block.frame-18 {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0px;
	gap: 35px;
	width: 400px;
	flex-shrink: 0;
}

.stack-icon-wrapper {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	flex-shrink: 0;
}

.stack-icon-wrapper svg {
	width: 36px;
	height: 36px;
	display: block;
}

.stack-row-title {
	font-family: 'Gilroy-Bold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	white-space: nowrap;
}

.stack-right-block.frame-80 {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	padding: 0px;
	width: 760px;
	flex-shrink: 0;
	position: relative;
	height: 36px;
}

.stack-desc {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: rgba(255, 255, 255, 0.65);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	text-align: left;
	max-width: 680px;
}

.stack-arrow-wrapper {
	width: 21px;
	height: 21px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateX(20px);
	transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	flex-shrink: 0;
	position: absolute;
	right: 0;
	top: calc(50% - 10.5px);
}

.stack-arrow-wrapper svg {
	width: 21px;
	height: 21px;
	display: block;
}

/* Hover transitions */
.stack-row:hover .stack-desc {
	transform: translateX(-15px);
}

.stack-row:hover .stack-arrow-wrapper {
	opacity: 1;
	transform: translateX(0);
}

/* Responsive Stack Overrides */
@media (max-width: 900px) {
	.stack-section-v2 {
		padding: 80px 24px;
		gap: 24px;
	}

	.stack-row {
		height: auto;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 20px;
	}

	.stack-left-block.frame-18 {
		width: 100%;
		gap: 16px;
	}

	.stack-right-block.frame-80 {
		width: 100%;
		justify-content: space-between;
		gap: 12px;
		height: auto;
		overflow: visible;
	}

	.stack-desc {
		text-align: left;
		transform: none !important;
	}

	.stack-arrow-wrapper {
		position: relative;
		opacity: 1;
		transform: none !important;
		right: auto;
		top: auto;
	}
}


/* Why Organizations Choose Elixir Section matching Figma specs */
.why-section-v2 {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 112px 48px;
	gap: 72px;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
}

.why-header.frame-3 {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	padding: 0px;
	width: 100%;
	max-width: 1344px;
	gap: 20px;
}

.why-title-wrapper.frame-2 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 20px;
	width: 484px;
	flex-shrink: 0;
}

.why-title {
	font-family: 'Gilroy-Heavy', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: clamp(32px, 4vw, 48px);
	line-height: clamp(36px, 4vw, 52px);
	text-transform: capitalize;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.why-desc-wrapper.frame-81 {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	padding: 0px;
	gap: 12px;
	width: 633px;
	flex-shrink: 0;
}

.why-desc {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
	max-width: 471px;
}

.why-cta-btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px 16px;
	gap: 4px;
	width: 115px;
	height: 40px;
	background: #C2D81E;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.why-cta-btn:hover {
	background: #d4ff00;
}

.why-cta-btn span {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #080C2B;
}

.why-grid-v2.frame-40 {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 8px;
	width: 100%;
	max-width: 1344px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	background: transparent;
	overflow: hidden;
}

.why-grid-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0px;
	gap: 8px;
	width: 100%;
	height: 196px;
}

.why-item {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 24px;
	gap: 64px;
	width: calc(33.333% - 5.33px);
	height: 196px;
	background: #080C2B;
	transition: background-color 0.3s ease;
}

.why-item:hover {
	background: #11174c;
}

/* Rounded corners matching container layout */
.item-01 {
	border-radius: 8px 6px 6px 6px;
}

.item-02 {
	border-radius: 6px;
}

.item-03 {
	border-radius: 6px 8px 6px 6px;
}

.item-04 {
	border-radius: 6px 6px 6px 8px;
}

.item-05 {
	border-radius: 6px;
}

.item-06 {
	border-radius: 6px 6px 8px 6px;
}

.why-item-num {
	font-family: 'JetBrains Mono', monospace;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 18px;
	letter-spacing: 2px;
	color: #C2D81E;
}

.why-item-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 8px;
	width: 100%;
}

.why-item-title {
	font-family: 'Gilroy-Bold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.why-item-desc {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: rgba(255, 255, 255, 0.45);
	margin: 0;
}

/* Why Organizations Choose Elixir Section Responsive Overrides */
@media (max-width: 900px) {
	.why-section-v2 {
		padding: 80px 24px;
		gap: 36px;
	}

	.why-header.frame-3 {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.why-title-wrapper.frame-2,
	.why-desc-wrapper.frame-81 {
		width: 100%;
		text-align: left;
		align-items: flex-start;
	}

	.why-desc {
		text-align: left;
		max-width: none;
	}

	.why-grid-v2.frame-40 {
		border: none;
		border-radius: 0;
		gap: 12px;
	}

	.why-grid-row {
		height: auto;
		flex-direction: column;
		gap: 12px;
		width: 100%;
	}

	.why-item {
		width: 100%;
		height: auto;
		gap: 24px;
		border-radius: 8px !important;
	}
}

/* How We Build And Operate Section matching Figma specs */
.build-section-v2 {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 112px 48px;
	gap: 20px;
	width: 100%;
	margin: 0 auto;
	background-image: url('../images/bg grid.svg');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: relative;
	min-height: 835px;
}

.build-header.frame-3 {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	padding: 0px;
	width: 100%;
	max-width: 1344px;
	gap: 20px;
	z-index: 1;
}

.build-title-wrapper.frame-2 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 20px;
	flex-shrink: 0;
}

.build-title {
	font-family: 'Gilroy-Heavy', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: clamp(32px, 4vw, 48px);
	line-height: clamp(36px, 4vw, 52px);
	text-transform: capitalize;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.build-desc-wrapper.frame-81 {
	display: flex;
	flex-direction: column;
	padding: 0px;
	gap: 12px;
	width: 633px;
	flex-shrink: 0;
}

.build-desc {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

.build-cta-btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px 16px;
	gap: 4px;
	width: 115px;
	height: 40px;
	background: #C2D81E;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.build-cta-btn:hover {
	background: #d4ff00;
}

.build-cta-btn span {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #080C2B;
}

.build-cards-wrapper.frame-40 {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	padding: 0px;
	gap: 8px;
	width: 100%;
	max-width: 1344px;
	height: 400px;
	z-index: 1;
}

.build-card-v2 {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 24px;
	gap: 20px;
	background: #080C2B;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	width: calc(20% - 6.4px);
	transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.build-card-v2:hover {
	background: #C2D81E;
	border-color: #C2D81E;
	box-shadow: 0 15px 30px rgba(194, 216, 30, 0.2);
}

.build-card-v2:hover .build-card-num,
.build-card-v2:hover .build-card-title,
.build-card-v2:hover .build-card-desc {
	color: #FFFFFF !important;
}

/* Individual card heights to form stair-like timeline progression */
.build-card-v2.step-01 {
	height: 240px;
}

.build-card-v2.step-02 {
	height: 280px;
}

.build-card-v2.step-03 {
	height: 320px;
}

.build-card-v2.step-04 {
	height: 360px;
}

.build-card-v2.step-05 {
	height: 400px;
}

.build-card-num {
	font-family: 'JetBrains Mono', monospace;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 18px;
	letter-spacing: 2px;
	color: #C2D81E;
	transition: color 0.3s ease;
}

.build-card-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 8px;
	width: 100%;
}

.build-card-title {
	font-family: 'Gilroy-Bold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	transition: color 0.3s ease;
}

.build-card-desc {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: rgba(255, 255, 255, 0.45);
	margin: 0;
	transition: color 0.3s ease;
}

/* Responsive Overrides */
@media (max-width: 900px) {
	.build-section-v2 {
		padding: 80px 24px;
		gap: 36px;
		background-size: contain;
	}

	.build-header.frame-3 {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.build-title-wrapper.frame-2,
	.build-desc-wrapper.frame-81 {
		width: 100%;
		text-align: left;
		align-items: flex-start;
	}

	.build-desc {
		text-align: left;
		max-width: none;
	}

	.build-cards-wrapper.frame-40 {
		height: auto;
		flex-direction: column;
		gap: 12px;
		width: 100%;
	}

	.build-card-v2 {
		width: 100%;
		height: auto !important;
		gap: 24px;
	}
}

/* Pre-Engineered Platforms Section */
/* Pre-engineered Platforms Section matching Figma specs */
.platforms-section-v2 {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 112px 48px;
	gap: 48px;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
}

.platforms-header-v2 {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	max-width: 1344px;
	padding: 0px;
}

.platforms-title-v2 {
	font-family: 'Gilroy-Heavy', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: clamp(32px, 4vw, 48px);
	line-height: clamp(36px, 4vw, 52px);
	text-transform: capitalize;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	max-width: 768px;
}

.platforms-grid-v2 {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 0px;
	gap: 24px;
	width: 100%;
	max-width: 1344px;
}

.project-card-v2 {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	width: calc(33.333% - 16px);
	background: #080C2B;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.project-card-v2:hover {
	transform: translateY(-8px);
	border-color: #C2D81E;
	box-shadow: 0 15px 30px rgba(194, 216, 30, 0.15);
}

/* Gallery Header Layout */
.project-card-gallery-wrapper {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-card-gallery {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.project-gallery-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 1;
}

.project-gallery-slide.active {
	opacity: 1;
}

.project-gallery-slide.placeholder-slide {
	background-color: #0b113a;
	background-image: radial-gradient(circle at center, rgba(194, 216, 30, 0.1) 0%, rgba(0, 0, 0, 0) 75%);
}

.project-gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(8, 12, 43, 0.15) 0%, rgba(8, 12, 43, 0.35) 100%);
	z-index: 2;
	transition: background 0.3s ease;
}

.project-card-v2:hover .project-gallery-overlay {
	background: linear-gradient(180deg, rgba(8, 12, 43, 0.05) 0%, rgba(8, 12, 43, 0.25) 100%);
}

.project-dots-container {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
}

.project-dot {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	display: block;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
}

.project-dot:hover {
	transform: scale(1.2);
}

.project-dot.active {
	background: #C5D82F;
}

/* Info content area below image */
.project-card-info {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	box-sizing: border-box;
	flex-grow: 1;
	justify-content: space-between;
	align-items: flex-start;
}

.project-card-title {
	font-family: 'Gilroy-Bold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.project-card-desc {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: rgba(255, 255, 255, 0.45);
	margin: 0;
	min-height: 48px;
}

.project-details-btn {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px;
	gap: 6px;
	text-decoration: none;
	align-self: flex-end;
	z-index: 2;
	position: relative;
}

.project-details-btn span {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: rgba(255, 255, 255, 0.85);
	transition: color 0.3s ease;
}

.project-details-btn svg {
	width: 16px;
	height: 16px;
	color: rgba(255, 255, 255, 0.85);
	transition: transform 0.3s ease, color 0.3s ease;
}

.project-card-v2:hover .project-details-btn span {
	color: #C2D81E;
}

.project-card-v2:hover .project-details-btn svg {
	transform: translate(2px, -2px);
	color: #C2D81E;
}

/* Responsive Overrides */
@media (max-width: 900px) {
	.platforms-section-v2 {
		padding: 80px 24px;
		gap: 36px;
	}

	.platforms-grid-v2 {
		flex-direction: column;
		gap: 20px;
	}

	.project-card-v2 {
		width: 100%;
		min-height: auto;
	}
}

/* Footer Section matching Figma specifications */
.site-footer.frame-41 {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 36px 24px 16px;
	gap: 15px;
	width: 100%;
	min-height: 624px;
	background: #080C2B;
	position: relative;
}

.footer-container-v2.frame-83 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 16px;
	width: 100%;
	max-width: 1352px;
	margin: 0 auto;
}

.footer-top-row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0px;
	width: 100%;
	min-height: 155px;
	gap: 24px;
}

.footer-newsletter-block.frame-84 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 12px;
	width: 371.62px;
	flex-shrink: 0;
}

.footer-block-pretitle {
	font-family: 'JetBrains Mono', monospace;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #C2D81E;
	margin-bottom: 4px;
}

.footer-newsletter-desc {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
	max-width: 371.62px;
}

.footer-email-box.frame-85 {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 4px 4px 4px 12px;
	width: 371.62px;
	height: 42px;
	background: #03041C;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-email-input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: rgba(255, 255, 255, 0.85);
}

.footer-email-input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.footer-send-btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px 12px;
	gap: 4px;
	width: 62px;
	height: 34px;
	background: #C2D81E;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.footer-send-btn:hover {
	background: #d4ff00;
}

.footer-send-btn span {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #080C2B;
}

.footer-links-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 20px;
	width: 140px;
}

.footer-col-header {
	font-family: 'JetBrains Mono', monospace;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #C2D81E;
	margin: 0;
}

.footer-col-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 2px;
	list-style: none;
	margin: 0;
}

.footer-col-list li {
	margin: 0;
}

.footer-col-list li a {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-col-list li a:hover {
	color: #C2D81E;
}

.footer-contact-col.frame-34 {
	width: 211px;
}

.footer-contact-details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 10px;
	width: 100%;
}

.footer-contact-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 0px;
	gap: 8px;
	width: 100%;
}

.footer-contact-item svg {
	width: 16px;
	height: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}

.footer-contact-item span {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: rgba(255, 255, 255, 0.65);
}

.footer-logo-row-svg {
	width: 100%;
	text-align: center;
	margin: 5px 0 20px;
	overflow: hidden;
}

.footer-logo-row-svg svg {
	width: 100%;
	max-width: 1303px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.footer-bottom-row {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0px 0px;
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
	font-family: 'JetBrains Mono', monospace;
	font-style: normal;
	font-weight: 400;
	font-size: 11px;
	line-height: 16px;
	letter-spacing: 1.54px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

.footer-social-links.frame-33 {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0px;
	gap: 15px;
}

.social-circle {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: #0D1126;
	border-radius: 100px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-circle:hover {
	background: #1c244c;
	transform: translateY(-2px);
}

.social-circle svg {
	width: 20px;
	height: 20px;
	display: block;
}

/* Responsive Footer Overrides */
@media (max-width: 1024px) {
	.footer-top-row {
		flex-wrap: wrap;
		gap: 32px;
	}

	.footer-newsletter-block.frame-84 {
		width: 100%;
	}

	.footer-email-box.frame-85 {
		width: 100%;
		max-width: 371.62px;
	}
}

@media (max-width: 768px) {
	.site-footer.frame-41 {
		max-width: 100%;
		border-radius: 0;
		margin-bottom: 0;
		padding: 40px 24px 24px;
	}

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

	.footer-links-col {
		width: 100%;
		gap: 12px;
	}

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

	.footer-social-links.frame-33 {
		width: 100%;
		justify-content: flex-start;
	}
}

/* Single Project Details Template Styles */
.single-project-section {
	background: #03041C;
	padding: 160px 24px 80px;
	width: 100%;
	min-height: 100vh;
	box-sizing: border-box;
}

.single-project-container {
	width: 100%;
	max-width: 1344px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.project-article {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.back-link-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: -10px;
}

.back-to-home {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.65);
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-size: 14px;
	transition: color 0.3s ease;
}

.back-to-home:hover {
	color: #C2D81E;
}

.back-to-home svg {
	transition: transform 0.3s ease;
}

.back-to-home:hover svg {
	transform: translateX(-4px);
}

.project-header {
	display: flex;
	flex-direction: column;
	gap: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 24px;
}

.project-title {
	font-family: 'Gilroy-Heavy', 'Outfit', sans-serif;
	font-size: clamp(32px, 5vw, 54px);
	line-height: 1.1;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	text-transform: capitalize;
}

.project-meta {
	font-family: 'JetBrains Mono', monospace;
	font-size: 14px;
	color: #C2D81E;
}

.project-content {
	font-family: 'Gilroy-SemiBold', 'Outfit', sans-serif;
	font-size: 18px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.65);
}

.project-gallery-showcase {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 40px;
}

.gallery-title {
	font-family: 'Gilroy-Bold', 'Outfit', sans-serif;
	font-size: 24px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

/* Project Page Image Carousel */
.project-page-carousel {
	position: relative;
	width: 100%;
	height: 550px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
	background: #080C2B;
}

.carousel-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.carousel-slide.active {
	opacity: 1;
	z-index: 2;
}

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

/* Control Buttons */
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(8, 12, 43, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 3;
	padding: 0;
}

.carousel-btn:hover {
	background: #C2D81E;
	border-color: #C2D81E;
	color: #080C2B;
	transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
	width: 20px;
	height: 20px;
}

.prev-btn {
	left: 24px;
}

.next-btn {
	right: 24px;
}

/* Bullet Pagination */
.carousel-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 3;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
}

.carousel-dot:hover {
	transform: scale(1.2);
}

.carousel-dot.active {
	background: #C5D82F;
	transform: scale(1.25);
}

.similar-projects-section {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 60px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 40px;
}

.similar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.similar-title {
	font-family: 'Gilroy-Heavy', 'Outfit', sans-serif;
	font-size: clamp(28px, 3.5vw, 40px);
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

@media (max-width: 768px) {
	.single-project-section {
		padding: 120px 16px 60px;
	}

	.project-page-carousel {
		height: 320px;
	}

	.carousel-btn {
		width: 38px;
		height: 38px;
	}

	.carousel-btn svg {
		width: 16px;
		height: 16px;
	}

	.prev-btn {
		left: 12px;
	}

	.next-btn {
		right: 12px;
	}
}

/* ==========================================================================
   LIGHT MODE STYLING OVERRIDES
   ========================================================================== */
body.light-theme {
	background-color: #F5F5F5;
	color: rgba(0, 0, 0, 0.85);
}


body.light-theme .frame-60,
body.light-theme .menu-pill-btn,
body.light-theme .icon-pill-btn {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.06);
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .frame-60:hover,
body.light-theme .menu-pill-btn:hover,
body.light-theme .icon-pill-btn:hover {
	background: #EAEAEA;
	color: #000000;
	border-color: rgba(0, 0, 0, 0.15);
}

body.light-theme .logo-dark,
body.light-theme .footer-logo-row-svg.logo-dark {
	display: none !important;
}

body.light-theme .logo-light {
	display: flex !important;
}

body.light-theme .footer-logo-row-svg.logo-light {
	display: block !important;
}

body.light-theme .lang-toggle-btn svg path {
	fill: rgba(0, 0, 0, 0.85) !important;
}

body.light-theme .lang-toggle-btn:hover svg path {
	fill: #C2D81E !important;
}

body.light-theme .mobile-menu-toggle .bar {
	background-color: rgba(0, 0, 0, 0.85);
}

body.light-theme .main-nav-wrapper {
	background: #F5F5F5;
	border-left-color: rgba(0, 0, 0, 0.08);
}

/* Hero Section */
body.light-theme .hero-title {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .hero-intro-text {
	color: rgba(0, 0, 0, 0.65);
}

body.light-theme .btn-contact {
	background: #F0F0F0;
	color: #000000;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .btn-contact:hover {
	background: #EAEAEA;
	color: #000000;
}

/* Featured card Watch Reel */
body.light-theme .featured-os-card {
	background: #FFFFFF;
	border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .featured-subtitle {
	color: rgba(0, 0, 0, 0.45);
}

body.light-theme .featured-title {
	color: rgba(0, 0, 0, 0.85);
}

/* Trusted By Section */
body.light-theme .logos-pretitle {
	color: rgba(0, 0, 0, 0.65);
}

body.light-theme .logo-card {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 6px;
}

body.light-theme .logo-card svg path,
body.light-theme .logo-card svg {
	fill: rgba(0, 0, 0, 0.45) !important;
}

/* Outcomes Section */
body.light-theme .outcomes-title {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .outcomes-subtitle {
	color: rgba(0, 0, 0, 0.65);
}

body.light-theme .outcome-card-v2 {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .outcome-card-pretitle {
	color: rgba(0, 0, 0, 0.45);
}

body.light-theme .outcome-card-value {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .outcome-card-desc {
	color: rgba(0, 0, 0, 0.65);
}

/* Complete Stack Section */
body.light-theme .stack-title {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .stack-subtitle {
	color: rgba(0, 0, 0, 0.65);
}

body.light-theme .stack-row {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .stack-row:hover {
	border-color: #C2D81E;
}

body.light-theme .stack-row-title {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .stack-desc {
	color: rgba(0, 0, 0, 0.65);
}

/* Why choose Elixir Section */
body.light-theme .why-title {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .why-desc {
	color: rgba(0, 0, 0, 0.65);
}

body.light-theme .why-item {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .why-item:hover {
	border-color: #C2D81E;
}

body.light-theme .why-item-num {
	color: #C2D81E;
}

body.light-theme .why-item-title {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .why-item-desc {
	color: rgba(0, 0, 0, 0.65);
}

/* How we build & operate Section */
body.light-theme .build-section-v2 {
	background-image: url('../images/bg grid white.svg');
}

body.light-theme .build-title {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .build-desc {
	color: rgba(0, 0, 0, 0.65);
}

body.light-theme .build-card-v2 {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .build-card-v2:hover {
	background: #C2D81E !important;
	border-color: #C2D81E !important;
	box-shadow: 0 15px 30px rgba(194, 216, 30, 0.2) !important;
}

body.light-theme .build-card-v2:hover .build-card-num,
body.light-theme .build-card-v2:hover .build-card-title,
body.light-theme .build-card-v2:hover .build-card-desc {
	color: #FFFFFF !important;
}

body.light-theme .build-card-num {
	color: rgba(0, 0, 0, 0.15);
}

body.light-theme .build-card-title {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .build-card-desc {
	color: rgba(0, 0, 0, 0.65);
}

/* Pre-engineered Platforms Section */
body.light-theme .platforms-title-v2 {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .project-card-v2 {
	background: #FFFFFF;
	border-color: rgba(0, 0, 0, 0.05);
}

body.light-theme .project-card-v2:hover {
	border-color: #C2D81E;
	box-shadow: 0 15px 30px rgba(194, 216, 30, 0.08);
}

body.light-theme .project-card-title {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .project-card-desc {
	color: rgba(0, 0, 0, 0.65);
}

body.light-theme .project-details-btn span {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .project-details-btn svg {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .project-gallery-overlay {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.35) 100%);
}

/* Footer Section */
body.light-theme .site-footer.frame-41 {
	background: #FFFFFF;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .footer-block-pretitle,
body.light-theme .footer-col-header {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .footer-newsletter-desc,
body.light-theme .footer-col-list a,
body.light-theme .footer-contact-item span {
	color: rgba(0, 0, 0, 0.65) !important;
}

body.light-theme .footer-col-list a:hover {
	color: #000000;
}

body.light-theme .footer-email-box.frame-85 {
	background: #F0F0F0;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .footer-email-input {
	color: #000000;
}

body.light-theme .footer-email-input::placeholder {
	color: rgba(0, 0, 0, 0.45);
}



body.light-theme .footer-copyright {
	color: rgba(0, 0, 0, 0.45);
}

/* Social icons colors */
body.light-theme .social-circle {
	background: #F0F0F0;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .social-circle svg path,
body.light-theme .social-circle svg circle,
body.light-theme .social-circle svg rect {
	stroke: rgba(0, 0, 0, 0.65) !important;
}

body.light-theme .social-circle:hover {
	background: #C2D81E;
	border-color: #C2D81E;
}

body.light-theme .social-circle:hover svg path,
body.light-theme .social-circle:hover svg circle,
body.light-theme .social-circle:hover svg rect {
	stroke: #080C2B !important;
}

/* Single Project Details page support */
body.light-theme .single-project-section {
	background: #F5F5F5;
}

body.light-theme .back-to-home {
	color: rgba(0, 0, 0, 0.65);
}

body.light-theme .back-to-home:hover {
	color: #C2D81E;
}

body.light-theme .project-title {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .project-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-theme .project-content {
	color: rgba(0, 0, 0, 0.65);
}

body.light-theme .gallery-title,
body.light-theme .similar-title {
	color: rgba(0, 0, 0, 0.85);
}

body.light-theme .project-page-carousel {
	background: #FFFFFF;
	border-color: rgba(0, 0, 0, 0.05);
}
}