/**
 * FITNEXTT – Professional fitness company theme
 * Dark, strong typography, teal/orange accents
 */

:root {
	--fit-primary: #00b29c;
	--fit-primary-dark: #009585;
	--fit-secondary: #009585;
	--fit-accent: #e85d04;
	--fit-gold: #d2ba33;
	--fit-dark: #1a1a1a;
	--fit-dark-soft: #252525;
	--fit-dark-bg: #0f0f0f;
	--fit-text: #333;
	--fit-text-light: #666;
	--fit-white: #fff;
	--fit-offwhite: #f8f9fa;
	--fit-border: rgba(255,255,255,0.08);
	--fit-shadow: 0 4px 20px rgba(0,0,0,0.15);
	--fit-radius: 8px;
	--fit-transition: 0.3s ease;
}

/* Typography */
body {
	font-family: 'Raleway', 'Open Sans', sans-serif;
	color: var(--fit-text);
	background: var(--fit-white);
	font-size: 1.05rem;
	font-weight: 600;
}

p {
	font-weight: 600;
}

h1, h2, h3, h4,
.about h3, .portfolio h3, .contact h3, .footer h3,
.trainee-section h1 {
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	color: var(--fit-dark);
	letter-spacing: 0.02em;
}

.about h3, .portfolio h3, .contact h3, .footer h3,
.trainee-section h1 {
	color: var(--fit-dark);
	font-size: 2rem;
	margin-top: 0;
}

.heading-underline {
	height: 4px;
	width: 60px;
	margin: 16px auto 28px;
	background: linear-gradient(90deg, var(--fit-primary), var(--fit-accent));
	border: none;
	border-radius: 2px;
}

/* Header & Nav – transparent over hero */
.header {
	position: relative;
	background: transparent;
}

/* Fixed navigation toggle (desktop) - applies to all pages */
@media (min-width: 769px) {
	.header .container {
		position: relative;
		background: transparent;
	}
	
	/* Desktop - navbar toggle fixed on screen */
	.navbar-header .navbar-toggle {
		display: block !important;
		position: fixed !important;
		top: 40px !important;
		right: 65px !important;
		z-index: 1000000 !important;
		margin: 0 !important;
		background: rgba(0, 0, 0, 0.8) !important;
		border: 2px solid #fff !important;
		padding: 10px !important;
	}
	
	/* Desktop - hide horizontal nav by default */
	.navbar-inverse .navbar-collapse {
		display: none !important;
		position: fixed !important;
		top: 90px !important;
		right: 65px !important;
		left: auto !important;
		width: 200px !important;
		background-color: rgba(0, 0, 0, 0.95) !important;
		padding: 5px 0 !important;
		z-index: 1000000 !important;
		height: auto !important;
		overflow: visible !important;
	}
	
	/* Desktop - show dropdown when collapsed is toggled */
	.navbar-inverse .navbar-collapse.in,
	.navbar-inverse .navbar-collapse.collapsing {
		display: block !important;
	}
	
	/* Desktop - vertical menu items */
	ul#cross-effect {
		display: block !important;
		width: 100% !important;
		float: none !important;
		margin: 0 !important;
		padding: 0 !important;
		z-index: 1000000 !important;
	}
	
	ul#cross-effect > li {
		display: block !important;
		width: 100% !important;
		float: none !important;
		height: auto !important;
		margin: 0 !important;
	}
	
	ul#cross-effect > li > a {
		display: block !important;
		padding: 12px 20px !important;
		text-align: left !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
		font-size: 14px !important;
		transition: padding-left 0.2s ease !important;
	}
	
	ul#cross-effect > li > a:hover {
		padding-left: 28px !important;
	}
	
	ul#cross-effect > li:last-child > a {
		border-bottom: none !important;
	}
}

.navbar-inverse {
	background: transparent !important;
	border: none !important;
	padding: 12px 0;
	transition: background var(--fit-transition);
}

.header > .container {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}

ul#cross-effect {
	float: left !important;
	margin-left: 0 !important;
}

.navbar-inverse .navbar-nav.navbar-right {
	float: left !important;
	margin-left: 0 !important;
}

.navbar-inverse .navbar-nav.navbar-right > li:first-child > a {
	padding-left: 0;
}

.navbar-inverse .navbar-nav > li > a {
	color: var(--fit-white) !important;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 12px 18px;
	transition: color var(--fit-transition);
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
	color: var(--fit-primary) !important;
}

.navbar-inverse .navbar-toggle {
	border-color: var(--fit-white);
}

.navbar-inverse .navbar-toggle .icon-bar {
	background-color: var(--fit-white);
}

.logo {
	height: auto;
	max-height: 80px;
	width: auto;
	margin-left: 50px !important;
	padding-left: 0;
}

.logo img {
	max-height: 70px;
	width: auto;
	height: auto;
}

.navbar-header {
	margin-left: 0;
	padding-left: 0;
}

/* Hero / Carousel */
#myCarousel {
	background: var(--fit-dark);
}

#myCarousel .carousel-inner {
	overflow: hidden;
}

#myCarousel .item img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

#myCarousel .carousel-control {
	width: 50px;
	background: rgba(0,0,0,0.4);
	opacity: 1;
	transition: background var(--fit-transition);
}

#myCarousel .carousel-control:hover {
	background: var(--fit-primary);
}

/* Hero / Banner Buttons */
#myCarousel {
	position: relative;
}

.banner-shop-btn {
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	background: var(--fit-primary);
	color: var(--fit-white);
	font-size: 2rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 1.5rem 4rem;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	transition: background 0.3s ease;
}

.banner-shop-btn:hover,
.banner-shop-btn:focus {
	background: var(--fit-gold);
	text-decoration: none;
}

.hero-side-buttons {
	position: absolute;
	bottom: 60px;
	right: 40px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: flex-end;
}

.banner-side-btn {
	background: rgba(0, 0, 0, 0.65);
	color: var(--fit-white);
	font-size: 1.4rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.9rem 2.4rem;
	border-radius: 40px;
	text-decoration: none;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
	transition: background 0.3s ease, transform 0.2s ease;
}

.banner-side-btn:hover,
.banner-side-btn:focus {
	background: var(--fit-primary);
	text-decoration: none;
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.banner-shop-btn {
		font-size: 1.3rem;
		padding: 1rem 2.5rem;
		bottom: 30px;
	}
	.hero-side-buttons {
		bottom: 20px;
		right: 16px;
	}
	.banner-side-btn {
		font-size: 1.1rem;
		padding: 0.7rem 1.8rem;
	}
}

/* About section */
.about {
	background: linear-gradient(135deg, var(--fit-dark-soft) 0%, var(--fit-dark-bg) 100%);
	padding: 4rem 0;
	margin-top: 1rem;
}

.about-row {
	display: flex;
	align-items: stretch;
}

.about-row > .col-md-5.about-chalk-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.about-content {
	text-align: left;
	min-width: 0;
	max-width: 100%;
}

.about h3 {
	color: var(--fit-white);
	font-size: 2.75rem;
}

.about .about-underline {
	margin-left: auto;
	margin-right: auto;
	width: 120px;
}

.about .about-tagline {
	display: block;
	width: 100%;
	max-width: 100%;
	color: var(--fit-primary);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin: 0.5rem 0 0;
	text-transform: uppercase;
	text-align: center !important;
	padding: 0;
	box-sizing: border-box;
}

.about .about-text {
	color: rgba(255,255,255,0.95);
	font-size: 1.45rem;
	font-weight: 600;
	line-height: 1.8;
	max-width: 100%;
	margin: 0;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
	box-sizing: border-box;
}

.about .social {
	margin-top: 2rem;
}

.about-chalk-col {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 2rem;
	position: relative;
	min-height: 280px;
	align-self: center !important;
	text-align: center;
}

.about-founder-thought-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 0.5rem;
	width: 100%;
	max-width: 520px;
	margin-top: auto;
	margin-bottom: 0;
	padding-top: 100px;
}

.about-founder-thought-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-width: 36px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.about-founder-thought-arrow:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.9);
}

.about-founder-thought-slider {
	flex: 1;
	min-width: 0;
	position: relative;
}

.about-founder-thought-slider .about-founder-thought {
	display: none;
	padding-top: 0;
	margin-top: 0;
}

.about-founder-thought-slider .about-founder-thought:first-child {
	display: block;
}

.about-founder-thought {
	width: 100%;
	max-width: 450px;
	margin-top: auto;
	margin-bottom: 0;
	padding-top: 100px;
}

.about-founder-thought-label {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.85);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.4rem;
}

.about-founder-thought-line {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.35rem;
	line-height: 1.4;
}

.about-founder-thought-text {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	text-align: center;
}

.about-founder-thought-meta {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	white-space: nowrap;
}

.about-chalk-text {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 1.5rem !important;
	font-weight: 800 !important;
	font-style: italic !important;
	color: rgba(255, 255, 255, 0.95) !important;
	text-align: center !important;
	margin: 0 0 4rem 0 !important;
	line-height: 1.4 !important;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
	letter-spacing: 0.02em !important;
	white-space: normal !important;
	position: relative !important;
	left: auto !important;
	top: auto !important;
	transform: none !important;
	pointer-events: auto !important;
	width: 100%;
	max-width: 450px;
}

.about-benefits-list {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
	width: 100%;
	max-width: 450px;
}

.about-benefits-list li {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1.2rem;
	padding: 0.8rem 1rem;
	position: relative;
	line-height: 1.4;
	border-left: 4px solid var(--fit-gold);
	border-right: 4px solid var(--fit-gold);
	background: linear-gradient(90deg, rgba(210, 186, 51, 0.15) 0%, transparent 50%, rgba(210, 186, 51, 0.15) 100%);
	transition: all 0.3s ease;
	text-align: center;
}

.about-benefits-list li:hover {
	border-left-width: 6px;
	border-right-width: 6px;
	background: linear-gradient(90deg, rgba(210, 186, 51, 0.25) 0%, transparent 50%, rgba(210, 186, 51, 0.25) 100%);
}

.benefit-icon {
	color: var(--fit-gold);
	font-weight: 800;
	margin-right: 0.5rem;
	font-size: 1.1rem;
}

/* Why FITNEXTT? */
.why-fitnextt {
	background: linear-gradient(180deg, #f7fbff 0%, #eef7ff 100%);
	padding: 4rem 0;
	border-top: 1px solid rgba(0, 178, 156, 0.14);
}

.why-fitnextt-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.why-fitnextt-title {
	color: var(--fit-dark);
	font-size: 2.5rem;
	font-weight: 800;
	margin: 0 0 0.5rem 0;
}

.why-fitnextt-underline {
	width: 90px;
	height: 3px;
	background: var(--fit-primary);
	border-radius: 2px;
	margin: 0 auto 0.5rem;
}

.why-fitnextt-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	max-width: 1100px;
	margin: 0 auto;
}

.why-fitnextt-item {
	background: var(--fit-white);
	border: 1px solid rgba(0, 178, 156, 0.12);
	border-radius: 14px;
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
	padding: 1.5rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.9rem;
	min-height: 86px;
}

.why-fitnextt-icon {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 178, 156, 0.12);
	color: var(--fit-primary);
	font-weight: 900;
	font-size: 1.1rem;
	line-height: 1;
}

.why-fitnextt-text {
	color: var(--fit-dark);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
}

@media (max-width: 992px) {
	.why-fitnextt-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 576px) {
	.why-fitnextt {
		padding: 3rem 0;
	}
	.why-fitnextt-title {
		font-size: 2rem;
	}
	.why-fitnextt-grid {
		grid-template-columns: 1fr;
	}
}

/* Target Market Segments – zigzag layout (Solutions For, simplified) */
.target-market {
	margin-top: 0;
	background: linear-gradient(180deg, #e8f4f3 0%, #ddeceb 100%);
	padding: 4rem 0;
	border-top: 1px solid rgba(0, 178, 156, 0.2);
}

.target-market-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.target-market h3 {
	color: var(--fit-dark);
	font-size: 2.75rem;
	font-weight: 800;
	margin: 0 0 0.5rem 0;
}

.target-market .target-market-underline {
	margin: 0 auto 1rem;
}

.target-market-intro {
	color: var(--fit-primary-dark);
	font-size: 1.45rem;
	margin: 0.5rem 0 0 0;
}

.target-market .target-market-underline {
	width: 90px;
	height: 3px;
	background: var(--fit-primary);
	border-radius: 2px;
}

.target-market-zigzag {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

.target-market-row {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.target-market-row--reverse {
	flex-direction: row-reverse;
}

.target-market-cell {
	flex: 1;
	min-width: 0;
}

.target-market-cell--image {
	flex: 0 0 40%;
	max-width: 360px;
}

.target-market-cell--text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	padding: 0 1rem;
	text-align: center;
}

.target-market-image-wrap {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	aspect-ratio: 4/3;
	background: #fff;
}

.target-market-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.target-market-image-wrap:hover .target-market-image {
	transform: scale(1.05);
}

.target-market-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 178, 156, 0.08);
}

.target-market-placeholder-icon {
	color: var(--fit-primary);
	font-size: 2.5rem;
	opacity: 0.6;
}

.target-market-segment-name {
	margin: 0 0 0.5rem 0;
	color: var(--fit-dark);
	font-size: 1.9rem;
	font-weight: 800;
	text-transform: uppercase;
	text-align: center;
	width: 100%;
}

.target-market-segment-desc {
	margin: 0;
	color: var(--fit-text-light);
	font-size: 1.2rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
	max-width: 100%;
	width: 100%;
}

@media (max-width: 768px) {
	.target-market {
		padding: 3rem 0;
	}
	.target-market h3 {
		font-size: 1.7rem;
	}
	.target-market-row,
	.target-market-row--reverse {
		flex-direction: column;
		gap: 1rem;
	}
	.target-market-cell--image {
		flex: 0 0 auto;
		max-width: 100%;
		width: 100%;
	}
	.target-market-image-wrap {
		aspect-ratio: 16/10;
		max-height: 220px;
	}
	.target-market-segment-name {
		font-size: 1.4rem;
	}
	.target-market-segment-desc {
		font-size: 1.05rem;
	}
}

/* Read more button (Solutions For) */
.target-market-readmore {
	display: inline-block;
	margin-top: 0.75rem;
	padding: 0.5rem 1.25rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--fit-white);
	background: var(--fit-primary);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: background 0.25s ease;
}
.target-market-readmore:hover {
	background: var(--fit-primary-dark);
}

/* Segment long description modal */
.segment-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.25s ease, opacity 0.25s ease;
}
.segment-modal.segment-modal--open {
	visibility: visible;
	opacity: 1;
}
.segment-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	cursor: pointer;
}
.segment-modal-box {
	position: relative;
	background: rgba(0, 0, 0, 0.9);
	border-radius: 12px;
	max-width: 65vw;
	width: 65vw;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
	border: 2px solid var(--fit-gold);
}
.segment-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.segment-modal-title {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--fit-gold);
	text-transform: uppercase;
	flex: 1;
	text-align: center;
}
.segment-modal-close {
	background: none;
	border: none;
	font-size: 1.75rem;
	line-height: 1;
	color: var(--fit-text-light);
	cursor: pointer;
	padding: 0 0.25rem;
	transition: color 0.2s ease;
}
.segment-modal-close:hover {
	color: var(--fit-dark);
}
.segment-modal-body {
	padding: 1.5rem;
	overflow-y: auto;
	font-size: 1.15rem;
	line-height: 1.6;
	color: var(--fit-white);
}
.segment-modal-body p {
	margin: 0 0 0.75rem 0;
}
.segment-modal-body p:last-child {
	margin-bottom: 0;
}

.segment-modal-img-wrap {
	margin-bottom: 1.25rem;
	text-align: center;
}
.segment-modal-img-wrap img {
	max-width: 100%;
	max-height: 45vh;
	border-radius: 10px;
	object-fit: contain;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
}
.segment-modal-long-heading {
	margin: 0 0 1rem 0;
	font-size: calc(1.25rem + 2px);
	font-weight: 700;
	color: var(--fit-white);
	text-align: left;
}
.segment-modal-text {
	text-align: left;
}

/* Product page – About section zigzag gallery circles */
.about-zigzag-col {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: stretch;
	justify-content: center;
	padding: 0;
	min-height: 100%;
}

.about-zigzag-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0.5rem 0;
}

.about-zigzag-circle {
	position: relative;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	border: 6px solid var(--fit-primary);
	box-shadow: 
		0 10px 30px rgba(0, 0, 0, 0.35),
		0 0 25px rgba(0, 178, 156, 0.3);
	transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.3s ease;
	flex-shrink: 0;
}

.about-zigzag-circle:hover {
	transform: scale(1.12);
	border-color: var(--fit-gold);
	box-shadow: 
		0 12px 35px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(210, 186, 51, 0.4);
	z-index: 10;
}

.about-zigzag-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease, filter 0.3s ease;
	filter: saturate(1.05);
}

.about-zigzag-circle:hover img {
	transform: scale(1.15);
	filter: saturate(1.2) brightness(1.05);
}

/* Zigzag positions: alternating left and right using margin */
.about-zigzag-circle-1 {
	align-self: flex-start;
	margin-left: 10%;
}

.about-zigzag-circle-2 {
	align-self: flex-end;
	margin-right: 5%;
}

.about-zigzag-circle-3 {
	align-self: flex-start;
	margin-left: 15%;
}

.about-zigzag-circle-4 {
	align-self: flex-end;
	margin-right: 10%;
}

/* Subtle floating animation */
.about-zigzag-circle:nth-child(odd) {
	animation: floatZigzag1 4s ease-in-out infinite;
}

.about-zigzag-circle:nth-child(even) {
	animation: floatZigzag2 4.5s ease-in-out infinite;
}

@keyframes floatZigzag1 {
	0%, 100% { transform: translateY(0) translateX(0); }
	50% { transform: translateY(-6px) translateX(4px); }
}

@keyframes floatZigzag2 {
	0%, 100% { transform: translateY(0) translateX(0); }
	50% { transform: translateY(-6px) translateX(-4px); }
}

ul.social-icons li a {
	transition: transform var(--fit-transition), opacity var(--fit-transition);
}

ul.social-icons li a:hover {
	opacity: 0.9;
	transform: translateY(-3px);
}

/* Products section – aligned with Solutions For, professional */
.products-section {
	background: linear-gradient(180deg, #e0f4fc 0%, #b8e2f0 100%);
	padding: 4rem 0;
	border-top: 1px solid rgba(135, 206, 235, 0.3);
}

.products-section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.products-section-title {
	color: var(--fit-dark);
	font-size: 2.75rem;
	font-weight: 800;
	margin: 0 0 0.5rem 0;
}

.products-section-underline {
	width: 90px;
	height: 3px;
	background: var(--fit-primary);
	border-radius: 2px;
	margin: 0 auto 1rem;
}

.products-section-intro {
	color: var(--fit-primary-dark);
	font-size: 1.2rem;
	margin: 0.5rem 0 0 0;
	font-weight: 600;
}

/* Products zigzag layout (same pattern as Solutions For) */
.products-zigzag {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	max-width: 900px;
	margin: 0 auto;
}

.products-row {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.products-row--reverse {
	flex-direction: row-reverse;
}

.products-cell {
	flex: 1;
	min-width: 0;
}

.products-cell--image {
	flex: 0 0 40%;
	max-width: 360px;
}

.products-cell--text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	padding: 0 1rem;
	text-align: center;
}

.products-zigzag-image-wrap {
	display: block;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	aspect-ratio: 4/3;
	background: #fff;
	text-decoration: none;
	transition: box-shadow 0.3s ease;
}

.products-zigzag-image-wrap:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.products-zigzag-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.products-zigzag-image-wrap:hover .products-zigzag-image {
	transform: scale(1.05);
}

.products-zigzag-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 178, 156, 0.08);
}

.products-zigzag-placeholder-icon {
	color: var(--fit-primary);
	font-size: 2.5rem;
	opacity: 0.6;
}

.products-zigzag-name {
	margin: 0 0 0.75rem 0;
	color: var(--fit-dark);
	font-size: 1.75rem;
	font-weight: 800;
	text-transform: uppercase;
	text-align: center;
	width: 100%;
	line-height: 1.3;
}

.products-zigzag-name a {
	color: inherit;
	text-decoration: none;
}

.products-zigzag-desc {
	width: 100%;
	margin: 0 0 1rem 0;
	text-align: center;
}

.products-zigzag-desc p {
	margin: 0 0 0.35em 0;
	color: var(--fit-text-light);
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.5;
}

.products-zigzag-benefits {
	list-style: none;
	margin: 0.75rem 0 1rem 0;
	padding: 0;
	width: 100%;
	text-align: left;
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
}

.products-zigzag-benefits li {
	position: relative;
	padding-left: 1.35rem;
	margin-bottom: 0.4rem;
	color: var(--fit-primary-dark);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.4;
}

.products-zigzag-benefits li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--fit-primary);
	font-weight: 700;
}

.products-zigzag-cta {
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	color: var(--fit-primary);
	letter-spacing: 0.05em;
	text-decoration: none;
	margin-top: 0.25rem;
	transition: color 0.2s ease, text-decoration 0.2s ease;
}

.products-zigzag-cta:hover {
	color: var(--fit-primary-dark);
	text-decoration: underline;
}

@media (max-width: 768px) {
	.products-row,
	.products-row--reverse {
		flex-direction: column;
	}
	.products-cell--image {
		flex: 0 0 auto;
		max-width: 100%;
		width: 100%;
	}
	.products-zigzag-name {
		font-size: 1.4rem;
	}
	.products-zigzag-desc p {
		font-size: 1rem;
	}
}

.products-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.75rem;
}

.products-card-wrap {
	margin-bottom: 1.5rem;
	padding: 0 0.75rem;
}

.products-card {
	display: block;
	background: var(--fit-white);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 178, 156, 0.12);
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
	height: 100%;
}

.products-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
	border-color: rgba(0, 178, 156, 0.25);
	text-decoration: none;
}

.products-card-image {
	width: 100%;
	height: 260px;
	overflow: hidden;
	background: #f5f5f5;
}

.products-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.products-card:hover .products-card-image img {
	transform: scale(1.04);
}

.products-card-body {
	padding: 1.35rem 1.5rem;
	text-align: center;
}

.products-card-title {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--fit-dark);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 0.4rem 0;
	line-height: 1.3;
}

.products-card-cta {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--fit-primary);
	letter-spacing: 0.05em;
}

.products-card:hover .products-card-cta {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.products-section-title {
		font-size: 2rem;
	}
	.products-section-intro {
		font-size: 1rem;
	}
	.products-card-image {
		height: 220px;
	}
	.products-card-title {
		font-size: 1.2rem;
	}
}

/* Clients section */
/* About the Founder */
.founder-section {
	background: linear-gradient(180deg, #eef6f5 0%, #e2eeed 100%);
	padding: 4rem 0;
	border-top: 1px solid rgba(0, 178, 156, 0.18);
}

.founder-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.founder-title {
	color: var(--fit-dark);
	font-size: 2.5rem;
	font-weight: 800;
	margin: 0 0 0.5rem 0;
}

.founder-underline {
	width: 90px;
	height: 3px;
	background: var(--fit-primary);
	border-radius: 2px;
	margin: 0 auto 0.5rem;
}

.founder-content {
	display: flex;
	align-items: flex-start;
	gap: 2.5rem;
	max-width: 900px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.founder-image-wrap {
	flex: 0 0 220px;
	text-align: center;
}

.founder-image {
	width: 220px;
	height: 220px;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.founder-text {
	flex: 1;
	min-width: 280px;
	color: var(--fit-primary-dark);
	font-size: 1.1rem;
	line-height: 1.7;
}

.founder-name {
	color: var(--fit-dark);
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0.75rem 0 0 0;
	line-height: 1.3;
}

.founder-text p {
	margin: 0 0 1em 0;
}

@media (max-width: 768px) {
	.founder-section {
		padding: 3rem 0;
	}
	.founder-title {
		font-size: 2rem;
	}
	.founder-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.founder-image-wrap {
		flex: none;
	}
	.founder-image {
		width: 200px;
		height: 200px;
	}
	.founder-text {
		text-align: left;
	}
}

.blogs-section {
	background: #ffffff;
	padding: 4rem 0;
	border-top: 1px solid rgba(0, 178, 156, 0.1);
}

.blogs-section-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.blogs-section-title {
	color: var(--fit-dark);
	font-size: 2.5rem;
	font-weight: 800;
	margin: 0 0 0.5rem 0;
}

.blogs-section-underline {
	width: 90px;
	height: 3px;
	background: var(--fit-primary);
	border-radius: 2px;
	margin: 0 auto 0.5rem;
}

.blogs-section-intro {
	color: var(--fit-primary-dark);
	font-size: 1.1rem;
	margin: 0.5rem 0 0 0;
	font-weight: 600;
}

.blogs-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.75rem;
	max-width: 1100px;
	margin: 0 auto;
}

.blog-card {
	background: var(--fit-white);
	border-radius: 14px;
	border: 1px solid rgba(0, 178, 156, 0.12);
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
	padding: 1.5rem 1.4rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.blog-card-title {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--fit-dark);
	margin: 0 0 0.75rem 0;
	line-height: 1.35;
}

.blog-card-snippet {
	color: var(--fit-text-light);
	font-size: 0.98rem;
	line-height: 1.6;
	margin: 0 0 1rem 0;
}

.blog-readmore {
	align-self: flex-start;
	padding: 0.45rem 1.1rem;
	font-size: 0.9rem;
	font-weight: 700;
	border-radius: 999px;
	border: 1px solid var(--fit-primary);
	color: var(--fit-primary);
	background: #ffffff;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.blog-readmore:hover {
	background: var(--fit-primary);
	color: #ffffff;
	box-shadow: 0 6px 18px rgba(0, 178, 156, 0.25);
}

@media (max-width: 992px) {
	.blogs-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 576px) {
	.blogs-section {
		padding: 3rem 0;
	}
	.blogs-grid {
		grid-template-columns: 1fr;
	}
}

.blog-modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
	z-index: 9999;
}

.blog-modal--open {
	opacity: 1;
	pointer-events: auto;
}

.blog-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(240, 240, 240, 0.8);
}

.blog-modal-box {
	position: relative;
	background: #000000;
	border-radius: 18px;
	max-width: 800px;
	width: 90%;
	max-height: 80vh;
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
	border: 2px solid var(--fit-gold);
	z-index: 1;
	display: flex;
	flex-direction: column;
}

.blog-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-modal-title {
	color: var(--fit-gold);
	font-size: 1.4rem;
	font-weight: 800;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.blog-modal-close {
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 1.6rem;
	cursor: pointer;
}

.blog-modal-body {
	padding: 1.25rem 1.5rem 1.5rem;
	overflow-y: auto;
	color: #ffffff;
}

.blog-modal-img-wrap {
	margin-bottom: 1rem;
	text-align: center;
}

.blog-modal-img-wrap img {
	max-width: 100%;
	max-height: 260px;
	object-fit: contain;
	border-radius: 10px;
}

.blog-modal-text {
	font-size: 1rem;
	line-height: 1.7;
	color: #ffffff;
}

.blog-modal-text p {
	margin-bottom: 0.9rem;
}

.clients-section {
	background: linear-gradient(180deg, #f0f7f7 0%, #e5efef 100%);
	padding: 4rem 0;
	border-top: 1px solid rgba(0, 178, 156, 0.15);
}

.clients-section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.clients-section-title {
	color: var(--fit-dark);
	font-size: 2.75rem;
	font-weight: 800;
	margin: 0 0 0.5rem 0;
}

.clients-section-underline {
	width: 90px;
	height: 3px;
	background: var(--fit-primary);
	border-radius: 2px;
	margin: 0 auto 1rem;
}

.clients-section-intro {
	color: var(--fit-primary-dark);
	font-size: 1.2rem;
	margin: 0.5rem 0 0 0;
	font-weight: 600;
}

.clients-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.clients-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-width: 160px;
	max-width: 200px;
	padding: 1.5rem 1rem;
	background: var(--fit-white);
	border-radius: 14px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 178, 156, 0.1);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.clients-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.clients-logo-wrap {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
}

.clients-logo {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.clients-name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--fit-dark);
	text-align: center;
	line-height: 1.3;
}

@media (max-width: 768px) {
	.clients-section-title {
		font-size: 2rem;
	}
	.clients-section-intro {
		font-size: 1rem;
	}
	.clients-grid {
		gap: 1.25rem;
	}
	.clients-item {
		min-width: 130px;
		max-width: 50%;
	}
	.clients-logo-wrap {
		height: 60px;
	}
}

/* Legacy product card classes (product.php etc.) */
#products .product-cards-row {
	margin: 0 -10px;
}

#products .product-card-wrap {
	margin-bottom: 2rem;
	padding: 0 10px;
}

#products .product-card {
	display: block;
	background: var(--fit-white);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 178, 156, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#products .product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

#products .product-card-img-wrap {
	width: 100%;
	height: 280px;
	overflow: hidden;
}

#products .product-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

#products .product-card:hover .product-card-img-wrap img {
	transform: scale(1.04);
}

#products .product-card-title {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--fit-dark);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 1rem;
	margin: 0;
	text-align: center;
}

/* Fallback for old gallery-grids markup if used elsewhere */
#products .gallery-grids .col-md-6 {
	margin-bottom: 2rem;
}

#products .gallery-grids a {
	display: block;
	background: var(--fit-white);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#products .gallery-grids a:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

#products .gallery-grids img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

#products .gallery-grids a:hover img {
	transform: scale(1.04);
}

#products .gallery-grids h2 {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--fit-dark);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 1.25rem;
	margin: 0;
}

/* Features tagline strip */
.features {
	background: linear-gradient(135deg, var(--fit-dark-bg) 0%, #0a0a0a 100%);
	padding: 3rem 0 !important;
	margin: 0 !important;
	list-style: none !important;
}

.features h2, .features h3 {
	color: var(--fit-white) !important;
	font-size: 1.65rem !important;
	font-weight: 700 !important;
	line-height: 1.5 !important;
	padding: 0 1rem !important;
	margin: 0 !important;
}

.features span {
	color: var(--fit-primary) !important;
	font-weight: 700;
}

/* Product Videos section */
#videos {
	background: #e8f5f4;
	padding: 4rem 0 !important;
}

#videos h1 {
	font-size: 3.25rem;
	color: var(--fit-primary);
	text-align: center;
	margin-bottom: 0;
}

#videos .heading-underline {
	margin-bottom: 2.5rem;
}

#videos .video-grid {
	margin: 0 -10px;
}

#videos .video-card-wrap {
	margin-bottom: 2rem;
	padding: 0 10px;
}

#videos .video-card {
	background: var(--fit-white);
	border-radius: var(--fit-radius);
	box-shadow: var(--fit-shadow);
	overflow: hidden;
	transition: transform var(--fit-transition), box-shadow var(--fit-transition);
	height: 100%;
	display: flex;
	flex-direction: column;
}

#videos .video-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

#videos .video-card-title {
	font-size: 1.95rem;
	font-weight: 700;
	color: var(--fit-primary);
	text-align: center;
	margin: 0;
	padding: 1rem 1rem 0.75rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	border-bottom: 2px solid var(--fit-offwhite);
}

#videos .video-card-embed {
	position: relative;
	width: 100%;
	padding-bottom: 177.78%; /* 9:16 portrait */
	height: 0;
	overflow: hidden;
	background: #000;
}

#videos .video-card-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

/* Gallery / Portfolio */
.portfolio {
	background: var(--fit-offwhite);
	padding: 4rem 0;
}

.portfolio h3 {
	color: var(--fit-dark);
	font-size: 2rem;
}

.portfolio .gallery-top figure {
	border-radius: var(--fit-radius);
	overflow: hidden;
	box-shadow: var(--fit-shadow);
	transition: transform var(--fit-transition), box-shadow var(--fit-transition);
}

.portfolio .gallery-top figure:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Product Details section (product.php) */
.details {
	background: #2d2d2d;
	padding: 4rem 0;
}

/* Gallery section - different background */
.details#details {
	background: #1a1a1a;
}

.details-inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
}

.details-heading {
	color: var(--fit-primary) !important;
	font-size: 2.5rem;
	font-weight: 800;
	text-align: center;
	margin: 0 0 0.5rem;
	letter-spacing: 0.02em;
	background: transparent;
	padding: 0;
	border-radius: 0;
}

.details .heading-underline {
	margin: 0 auto 2rem;
}

.details-intro {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.75;
	color: var(--fit-text);
	margin: 0 0 2rem;
	padding: 1.25rem 1.5rem;
	background: var(--fit-white);
	border-radius: var(--fit-radius);
	box-shadow: var(--fit-shadow);
	border-left: 4px solid var(--fit-primary);
}

.details-block {
	background: var(--fit-white);
	border-radius: var(--fit-radius);
	box-shadow: var(--fit-shadow);
	padding: 1.5rem 1.75rem;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(0,0,0,0.06);
	transition: box-shadow var(--fit-transition);
}

.details-block:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.details-block h5 {
	color: var(--fit-white);
	background: var(--fit-primary);
	font-size: 1.45rem;
	font-weight: 800;
	margin: -1.5rem -1.75rem 1rem;
	padding: 0.75rem 1.75rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border-bottom: none;
	border-radius: var(--fit-radius) var(--fit-radius) 0 0;
}

.details-block h5:first-child {
	margin-top: -1.5rem;
}

.details-block h6 {
	color: var(--fit-dark-soft);
	font-size: 1.25rem;
	font-weight: 700;
	margin: 1rem 0 0.35rem;
	padding-left: 1.75rem;
	position: relative;
	text-align: left;
}

.details-block h6::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 8px;
	height: 8px;
	background: var(--fit-primary);
	border-radius: 50%;
}

.details-block h6:first-of-type {
	margin-top: 0;
}

.details-block p {
	color: var(--fit-text);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.7;
	margin: 0 0 0.6rem;
	padding-left: 1.75rem;
	position: relative;
	text-align: left;
}

.details-block p::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	background: var(--fit-primary);
	border-radius: 50%;
}

.details-block p:last-child {
	margin-bottom: 0;
}

.details-block-benefits h5 {
	font-size: 2rem;
	font-weight: 800;
	text-align: left;
}

/* Product Short Description block – no bullet on intro paragraph */
.details-block-short-desc .details-intro::before {
	display: none;
}
.details-block-short-desc .details-intro {
	margin-bottom: 0;
	padding-left: 0;
}

.details-block-benefits h6 {
	font-weight: 700;
	font-size: 1.3rem;
}

/* One-line gap after each benefit point */
.details-block-benefits > p,
.details-block-benefits > .benefit-headed {
	margin-bottom: 1.5em;
}
.details-block-benefits > *:last-child {
	margin-bottom: 0;
}

/* Heading + description pairs (text with ":") – no bullets */
.details-block-benefits .benefit-headed h6::before,
.details-block-benefits .benefit-headed p::before {
	display: none;
}
.details-block-benefits .benefit-headed h6,
.details-block-benefits .benefit-headed p {
	padding-left: 0;
}

.details-block-benefits p {
	font-weight: 700;
	font-size: 1.3rem;
}

/* Contact (in footer) */
.contact, .footer {
	background: var(--fit-dark-bg);
	color: rgba(255,255,255,0.9);
	padding: 3rem 0;
	font-weight: 600;
}

.contact h3, .footer h3 {
	color: var(--fit-white) !important;
}

.footer .heading-underline {
	background: var(--fit-primary);
}

.footer h4 {
	color: var(--fit-primary);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.footer ul li a, .footer address li {
	color: rgba(255,255,255,0.9);
	font-weight: 600;
	transition: color var(--fit-transition);
}

.footer ul li a:hover {
	color: var(--fit-primary);
}

.footer .copyright {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--fit-border);
}

.footer .copyright p {
	color: rgba(255,255,255,0.6);
	font-size: 1rem;
	font-weight: 600;
}

/* Contact form */
.contact_form .text,
.contact_form textarea {
	border-radius: 6px;
	border: 1px solid #ddd;
	padding: 12px 16px;
	transition: border-color var(--fit-transition), box-shadow var(--fit-transition);
}

/* Make Name/Email/Phone inputs identical */
.contact_form input.text {
	width: 100%;
	display: block;
	background: rgba(51, 51, 51, 0.61);
	color: #fff;
	height: 50px;
	line-height: 22px;
	font-size: 14px;
	margin: 0 0 20px;
	-webkit-appearance: none;
	appearance: none;
}
.contact_form input.text::placeholder,
.contact_form textarea::placeholder {
	color: rgba(255,255,255,0.75);
}
.contact_form textarea {
	margin: 0;
}

.contact_form .text:focus,
.contact_form textarea:focus {
	border-color: var(--fit-primary);
	box-shadow: 0 0 0 3px rgba(0,178,156,0.15);
	outline: none;
}

.more_btn {
	background: var(--fit-primary) !important;
	border: none !important;
	color: var(--fit-white) !important;
	font-weight: 600;
	padding: 14px 32px;
	border-radius: 6px;
	transition: background var(--fit-transition), transform 0.2s ease;
}

.more_btn:hover {
	background: var(--fit-primary-dark) !important;
	transform: translateY(-2px);
}

.founder-thought-banner {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 10px;
	background: rgba(0, 0, 0, 0.65);
	color: #ffffff;
	padding: 0.6rem 1.2rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: baseline;
	gap: 0.75rem;
	font-size: 0.9rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
	max-width: 90%;
}

.founder-thought-label {
	font-weight: 800;
	color: var(--fit-gold);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
}

.founder-thought-text {
	font-weight: 500;
}

.founder-thought-meta {
	font-size: 0.75rem;
	opacity: 0.9;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.founder-thought-banner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		bottom: 12px;
		border-radius: 14px;
	}
	.founder-thought-meta {
		white-space: normal;
	}
}

/* Product Short Description – dark grey section between videos and details */
.product-short-desc-section {
	background: #2d2d2d;
	color: #e8e8e8;
	padding: 2.5rem 0;
	margin: 0;
}
.product-short-desc-section .container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 15px;
}
.product-short-desc-text {
	font-size: 1.25rem;
	line-height: 1.7;
	margin: 0;
	font-weight: 500;
	text-align: center;
}

/* Section spacing consistency */
.content > .about,
.content > .trainee-section,
.features,
.portfolio,
.details,
.product-short-desc-section,
#product-info {
	scroll-margin-top: 80px;
}

/* R&D section (homepage) - ensure readable text on light background */
.rnd-section {
	color: var(--fit-text);
}
.rnd-section p,
.rnd-section li {
	color: var(--fit-text);
}
.rnd-section h3 {
	color: var(--fit-dark);
}

/* R&D section typography & spacing */
.rnd-section .container {
	max-width: 980px;
}
.rnd-section h1 {
	margin: 0 0 0.5rem 0;
}
.rnd-section .heading-underline {
	margin: 12px auto 22px;
}
.rnd-section p {
	font-size: 1.12rem;
	line-height: 1.85;
	margin: 0 0 12px 0;
	font-weight: 600;
}
.rnd-section h3 {
	font-size: 1.55rem;
	font-weight: 800;
	margin: 18px 0 10px 0;
	letter-spacing: 0.01em;
}
.rnd-section ul {
	margin: 8px 0 14px 0;
	padding-left: 18px;
}
.rnd-section li {
	margin: 7px 0;
	line-height: 1.7;
}
.rnd-section p + ul {
	margin-top: 6px;
}

/* Responsive */
@media (max-width: 768px) {
	.logo img { max-height: 50px; }
	.details-inner { padding: 0 0.5rem; }
	.details-intro,
	.details-block { padding: 1.15rem 1.25rem; }
	.about { overflow-x: hidden; }
	.about .container { max-width: 100%; padding-left: 15px; padding-right: 15px; box-sizing: border-box; }
	.about-row { margin-left: 0; margin-right: 0; }
	.about-content { padding-left: 0; padding-right: 0; }
	.about .about-text { font-size: 1.3rem; font-weight: 600; padding: 0; max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
	.about-chalk-col {
		padding-left: 0;
		padding-top: 2rem;
		margin-top: 1rem;
		min-height: 200px;
		border-top: 1px solid rgba(255,255,255,0.2);
	}
	.about-chalk-text { font-size: 1.8rem; }
	.features h2, .features h3 { font-size: 1.35rem !important; font-weight: 700; }
	#products .gallery-grids img { height: 220px; }
	#videos .video-card-title { font-size: 1.6rem; font-weight: 700; padding: 0.75rem; }
}

/* Product page – mobile view fixes */
@media (max-width: 768px) {
	.product-page {
		overflow-x: hidden;
	}
	.product-page .header,
	.product-page .content,
	.product-page .details,
	.product-page .product-short-desc-section {
		overflow-x: hidden;
		max-width: 100%;
	}
	
	/* Mobile - header container not fixed */
	.product-page .header .container {
		position: relative !important;
		background: transparent !important;
	}
	
	/* Mobile - company logo at top left (not fixed, scrolls with page) */
	.product-page .logo {
		position: absolute !important;
		top: 25px !important;
		left: 10px !important;
		z-index: 100 !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	
	.product-page .logo h1 {
		margin: 0 !important;
		padding: 0 !important;
	}
	
	/* Mobile - navbar toggle fixed on screen */
	.product-page .navbar-header .navbar-toggle {
		position: fixed !important;
		top: 15px !important;
		right: 15px !important;
		z-index: 1000000 !important;
		margin: 0 !important;
		background: rgba(0, 0, 0, 0.8) !important;
		border: 2px solid #fff !important;
		padding: 10px !important;
	}
	
	/* Mobile - dropdown menu fixed position */
	.product-page .navbar-inverse .navbar-collapse {
		position: fixed !important;
		top: 60px !important;
		right: 10px !important;
		left: auto !important;
		width: 180px !important;
		background-color: rgba(0, 0, 0, 0.95) !important;
		padding: 5px 0 !important;
		z-index: 1000000 !important;
	}
	
	.product-page ul#cross-effect {
		z-index: 1000000 !important;
	}
	
	.product-page .logo img {
		max-height: 50px !important;
	}
	
	/* Mobile navigation - vertical dropdown */
	.product-page .navbar-inverse .navbar-collapse,
	.product-page .navbar-inverse .navbar-form {
		position: absolute !important;
		top: 70px !important;
		right: 0 !important;
		left: auto !important;
		width: 250px !important;
		background-color: rgba(0, 0, 0, 0.95) !important;
		padding: 0 !important;
	}
	
	.product-page ul#cross-effect {
		display: block !important;
		width: 100% !important;
		float: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	
	.product-page ul#cross-effect > li {
		display: block !important;
		width: 100% !important;
		float: none !important;
		height: auto !important;
		margin: 0 !important;
	}
	
	.product-page ul#cross-effect > li > a {
		display: block !important;
		padding: 10px 15px !important;
		text-align: left !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
		font-size: 12px !important;
	}
	
	.product-page ul#cross-effect > li:last-child > a {
		border-bottom: none !important;
	}
	.product-page .container {
		max-width: 100%;
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
		box-sizing: border-box;
	}
	.product-page .row {
		margin-left: -15px;
		margin-right: -15px;
	}
	.product-page #myCarousel .carousel-inner {
		max-height: 280px;
		min-height: 0;
	}
	.product-page #myCarousel .item img {
		width: 100%;
		max-width: 100%;
		height: auto;
		min-height: 180px;
		object-fit: cover;
	}
	.product-page .about p {
		overflow-wrap: break-word;
		word-break: break-word;
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
		box-sizing: border-box;
	}
	.product-page .about-zigzag-col {
		margin-top: 2rem;
		padding: 1rem 0.5rem;
	}
	.product-page .about-zigzag-container {
		padding: 0.5rem 0;
	}
	.product-page .about-zigzag-circle {
		width: 130px;
		height: 130px;
		border-width: 4px;
	}
	.product-page .about-zigzag-circle-1 {
		margin-left: 5%;
	}
	.product-page .about-zigzag-circle-2 {
		margin-right: 5%;
	}
	.product-page .about-zigzag-circle-3 {
		margin-left: 10%;
	}
	.product-page .about-zigzag-circle-4 {
		margin-right: 5%;
	}
	.product-page .about .container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.product-page .product-short-desc-section .container {
		max-width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.product-page .product-short-desc-text {
		overflow-wrap: break-word;
		word-break: break-word;
		max-width: 100%;
	}
	.product-page .details-inner {
		max-width: 100%;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
	.product-page .details-block {
		margin-left: 0;
		margin-right: 0;
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.product-page .details-block h5 {
		margin-left: -1rem;
		margin-right: -1rem;
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.product-page .details .details-heading {
		font-size: 1.5rem;
		padding: 0;
	}
	.product-page .gallery-grids {
		margin-left: 0;
		margin-right: 0;
	}
	.product-page .gallery-grids .col-md-4,
	.product-page .gallery-grids .gallery-top {
		padding-left: 15px;
		padding-right: 15px;
		max-width: 100%;
		box-sizing: border-box;
	}
	.product-page .gallery-grids img {
		max-width: 100%;
		height: auto;
	}
	.product-page #products .product-cards-row {
		margin-left: 0;
		margin-right: 0;
	}
	.product-page #products .product-card-wrap {
		padding-left: 15px;
		padding-right: 15px;
		max-width: 100%;
		box-sizing: border-box;
	}
	.product-page #products .product-card-img-wrap img {
		max-width: 100%;
		height: auto;
	}
}

/* Swipebox lightbox image border */
#swipebox-slider .slide {
	position: relative;
}

#swipebox-slider .slide img {
	border: 12px solid #fff !important;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	position: relative;
	max-height: 90vh !important;
	max-width: 90vw !important;
}

/* Swipebox lightbox close button - show at top right */
#swipebox-action {
	position: fixed !important;
	top: 0 !important;
	right: 0 !important;
	bottom: auto !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: transparent !important;
	box-shadow: none !important;
	pointer-events: none !important;
	transition: none !important;
	animation: none !important;
	transform: none !important;
}

#swipebox-action.visible-bars,
#swipebox-action.force-visible-bars {
	top: 0 !important;
	bottom: auto !important;
	transition: none !important;
}

#swipebox-close {
	position: fixed !important;
	top: calc(50% - 300px) !important;
	left: calc(50% + 300px) !important;
	width: 50px !important;
	height: 50px !important;
	background: rgba(0, 0, 0, 0.8) !important;
	background-image: none !important;
	border-radius: 50% !important;
	display: block !important;
	pointer-events: auto !important;
	transition: none !important;
	animation: none !important;
	transform: none !important;
}

#swipebox-close::before,
#swipebox-close::after {
	content: "" !important;
	position: absolute !important;
	width: 24px !important;
	height: 4px !important;
	background: #fff !important;
	top: 23px !important;
	left: 13px !important;
	border-radius: 2px !important;
	transition: none !important;
}

#swipebox-close::before {
	transform: rotate(45deg) !important;
}

#swipebox-close::after {
	transform: rotate(-45deg) !important;
}

#swipebox-close:hover,
#swipebox-close:active,
#swipebox-close:focus {
	background: rgba(0, 0, 0, 0.8) !important;
	outline: none !important;
}

#swipebox-close:hover::before,
#swipebox-close:hover::after,
#swipebox-close:active::before,
#swipebox-close:active::after {
	background: #fff !important;
}

#swipebox-prev,
#swipebox-next {
	display: none !important;
}

#swipebox-prev,
#swipebox-next {
	background-image: none !important;
	width: 50px !important;
	height: 50px !important;
	background: rgba(255, 255, 255, 0.8) !important;
	border-radius: 50%;
}

#swipebox-prev::before,
#swipebox-next::before {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	border-top: 3px solid #333;
	border-right: 3px solid #333;
	top: 50%;
	left: 50%;
}

#swipebox-prev::before {
	transform: translate(-30%, -50%) rotate(-135deg);
}

#swipebox-next::before {
	transform: translate(-70%, -50%) rotate(45deg);
}
