:root {
	--primary: #0066FF;
	--primary-dark: #0052CC;
	--primary-light: #E6F0FF;
	--accent: #00C9A7;
	--accent-dark: #00A88A;
	--accent-light: #E0FFF8;
	--health: #00B894;
	--health-light: #E8FDF5;
	--business: #6C5CE7;
	--business-light: #F0EEFF;
	--hrms: #E17055;
	--hrms-light: #FFEFEC;
	--fleet: #3498DB;
	--fleet-light: #EBF5FB;
	--fleet-dark: #2980B9;
	--coldchain: #1ABC9C;
	--coldchain-light: #E8F8F5;
	--rsd: #9B59B6;
	--rsd-light: #F5EEF8;
	--rsd-dark: #8E44AD;
	--ksa-green: #006C35;
	--gold: #D4AF37;
	--text-dark: #0F172A;
	--text-body: #334155;
	--text-muted: #64748B;
	--bg-white: #FFFFFF;
	--bg-cream: #F8FAFC;
	--bg-soft: #F1F5F9;
	--bg-gradient: linear-gradient(135deg, #F0F7FF 0%, #E8FDF5 50%, #F8FAFC 100%);
	--border: #E2E8F0;
	--border-hover: #CBD5E1;
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
	--shadow-primary: 0 8px 30px rgba(0, 102, 255, 0.25);
	--shadow-accent: 0 8px 30px rgba(0, 201, 167, 0.25);
	--shadow-fleet: 0 8px 30px rgba(52, 152, 219, 0.25);
	--shadow-rsd: 0 8px 30px rgba(155, 89, 182, 0.25);
	--gradient-primary: linear-gradient(135deg, #0066FF 0%, #00C9A7 100%);
	--gradient-health: linear-gradient(135deg, #00B894 0%, #00CEC9 100%);
	--gradient-business: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
	--gradient-hrms: linear-gradient(135deg, #E17055 0%, #FDCB6E 100%);
	--gradient-fleet: linear-gradient(135deg, #3498DB 0%, #1ABC9C 100%);
	--gradient-coldchain: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
	--gradient-rsd: linear-gradient(135deg, #9B59B6 0%, #3498DB 100%);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: var(--text-body);
	background: var(--bg-white);
	line-height: 1.7;
	overflow-x: hidden;
}

.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
}


/* GO TO TOP*/
#goToTopBtn {
	display: none;
	/* Hidden by default */
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 9999;
	/* Ensure it stays on top of all elements */
	font-size: 18px;
	background-color: #006ff7;
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 50%;
	border: none;
	width: 50px;
	height: 50px;
}

#goToTopBtn:hover {
	background-color: #00beb1;
}


/* GO TO TOP END*/

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	padding: 0 24px;
	transition: all 0.3s ease;
}

.navbar.scrolled {
	box-shadow: var(--shadow-md);
}

.nav-content {
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 72px;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nav-logo {
	height: 42px;
	width: auto;
}

.nav-divider {
	width: 1px;
	height: 28px;
	background: var(--border);
}

.nav-tagline {
	font-size: 0.8rem;
	color: var(--text-muted);
	font-weight: 500;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-link {
	text-decoration: none;
	color: var(--text-body);
	font-size: 0.82rem;
	font-weight: 600;
	padding: 10px 12px;
	border-radius: var(--radius-sm);
	transition: all 0.2s ease;
}

.nav-link:hover {
	background: var(--bg-soft);
	color: var(--primary);
}

.nav-btn {
	background: var(--gradient-primary);
	color: white;
	padding: 11px 22px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	font-size: 0.82rem;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-primary);
}

.nav-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(0, 102, 255, 0.35);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.mobile-menu-btn span {
	display: block;
	width: 24px;
	height: 2.5px;
	background: var(--text-dark);
	margin: 5px 0;
	border-radius: 3px;
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 100px 0 60px;
	background:
		radial-gradient(ellipse at 20% 20%, rgba(0, 102, 255, 0.06) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 80%, rgba(0, 201, 167, 0.06) 0%, transparent 50%),
		radial-gradient(ellipse at 50% 50%, rgba(108, 92, 231, 0.03) 0%, transparent 60%),
		linear-gradient(180deg, #F0F7FF 0%, var(--bg-white) 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
	border: 1px solid rgba(0, 102, 255, 0.15);
	padding: 10px 22px;
	border-radius: 50px;
	font-size: 0.85rem;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 24px;
	animation: fadeInUp 0.6s ease forwards;
}

.hero-badge svg {
	width: 18px;
	height: 18px;
}

.hero-title {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(2.5rem, 5.5vw, 4.5rem);
	font-weight: 400;
	line-height: 1.1;
	color: var(--text-dark);
	margin-bottom: 24px;
	animation: fadeInUp 0.6s ease 0.1s forwards;
	opacity: 0;
}

.hero-title .highlight {
	font-style: italic;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-title .highlight-health {
	background: var(--gradient-health);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-title .highlight-business {
	background: var(--gradient-business);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.15rem;
	color: var(--text-muted);
	max-width: 680px;
	margin: 0 auto 32px;
	line-height: 1.75;
	animation: fadeInUp 0.6s ease 0.2s forwards;
	opacity: 0;
}

.hero-cta {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 40px;
	animation: fadeInUp 0.6s ease 0.3s forwards;
	opacity: 0;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--gradient-primary);
	color: white;
	padding: 16px 32px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--bg-white);
	color: var(--text-dark);
	padding: 16px 32px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	font-size: 0.95rem;
	border: 2px solid var(--border);
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.hero-compliance {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	animation: fadeInUp 0.6s ease 0.4s forwards;
	opacity: 0;
}

.compliance-badge {
	display: flex;
	align-items: center;
	gap: 7px;
	background: var(--bg-white);
	border: 1px solid var(--border);
	padding: 8px 14px;
	border-radius: var(--radius-sm);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--text-body);
	box-shadow: var(--shadow-sm);
}

.compliance-badge svg {
	width: 16px;
	height: 16px;
	color: var(--accent);
}

/* Stats Section */
.stats-section {
	padding: 50px 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	position: relative;
}

.stats-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	position: relative;
	z-index: 2;
}

.stat-item {
	text-align: center;
	padding: 16px;
}

.stat-value {
	font-family: 'Instrument Serif', serif;
	font-size: 3rem;
	font-weight: 400;
	color: white;
	line-height: 1;
	margin-bottom: 6px;
}

.stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
}

/* Section Styles */
.section {
	padding: 50px 0;
}

.section-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 36px;
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 18px;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 16px;
}

.section-tag.health {
	background: var(--health-light);
	color: var(--health);
}

.section-tag.business {
	background: var(--business-light);
	color: var(--business);
}

.section-tag.hrms {
	background: var(--hrms-light);
	color: var(--hrms);
}

.section-tag.primary {
	background: var(--primary-light);
	color: var(--primary);
}

.section-tag.accent {
	background: var(--accent-light);
	color: var(--accent-dark);
}

.section-tag.ksa {
	background: rgba(0, 108, 53, 0.1);
	color: var(--ksa-green);
}

.section-tag.fleet {
	background: var(--fleet-light);
	color: var(--fleet);
}

.section-tag.coldchain {
	background: var(--coldchain-light);
	color: var(--coldchain);
}

.section-tag.rsd {
	background: var(--rsd-light);
	color: var(--rsd);
}

.section-title {
	font-family: 'Instrument Serif', serif;
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	color: var(--text-dark);
	margin-bottom: 14px;
	line-height: 1.15;
}

.section-desc {
	font-size: 1.05rem;
	color: var(--text-muted);
	line-height: 1.75;
}

/* Platform Cards */
.platform-section {
	background: var(--bg-gradient);
}

.platform-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.platform-card {
	background: var(--bg-white);
	border-radius: var(--radius-xl);
	padding: 20px;
	border: 2px solid var(--border);
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.platform-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}

.platform-card.health::before {
	background: var(--gradient-health);
}

.platform-card.business::before {
	background: var(--gradient-business);
}

.platform-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

.platform-icon {
	width: 64px;
	height: 64px;
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	margin-bottom: 20px;
}

.platform-card.health .platform-icon {
	background: var(--health-light);
}

.platform-card.business .platform-icon {
	background: var(--business-light);
}

.platform-card h3 {
	font-family: 'Instrument Serif', serif;
	font-size: 1.65rem;
	color: var(--text-dark);
	margin-bottom: 6px;
}

.platform-card .subtitle {
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 14px;
}

.platform-card.health .subtitle {
	color: var(--health);
}

.platform-card.business .subtitle {
	color: var(--business);
}

.platform-card p {
	color: var(--text-muted);
	margin-bottom: 20px;
	line-height: 1.75;
	font-size: 0.95rem;
}

.platform-modules {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.platform-module {
	background: var(--bg-soft);
	padding: 7px 12px;
	border-radius: 6px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--text-body);
}

/* Product Cards */
.products-section {
	background: var(--bg-white);
}

.product-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	padding: 20px;
	background: var(--bg-white);
	border-radius: var(--radius-xl);
	border: 2px solid var(--border);
	margin-bottom: 10px;
	transition: all 0.4s ease;
}

.product-card:last-child {
	margin-bottom: 0;
}

.product-card:hover {
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-light);
}

.product-card:nth-child(even) {
	direction: rtl;
}

.product-card:nth-child(even)>* {
	direction: ltr;
}

.product-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
}

.product-image img {
	width: 100%;
	height: auto;
	transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.03);
}

.product-badge {
	display: inline-block;
	background: var(--primary-light);
	color: var(--primary);
	padding: 7px 14px;
	border-radius: 8px;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 14px;
}

.product-badge.fleet {
	background: var(--fleet-light);
	color: var(--fleet);
}

.product-title {
	font-family: 'Instrument Serif', serif;
	font-size: 1.9rem;
	color: var(--text-dark);
	margin-bottom: 6px;
	line-height: 1.2;
}

.product-subtitle {
	font-size: 1rem;
	color: var(--accent);
	font-weight: 700;
	margin-bottom: 14px;
}

.product-desc {
	color: var(--text-body);
	margin-bottom: 20px;
	line-height: 1.8;
	font-size: 0.95rem;
}

.product-features {
	list-style: none;
	margin-bottom: 24px;
}

.product-features li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 8px 0;
	font-size: 0.9rem;
	color: var(--text-body);
}

.product-features li::before {
	content: '';
	width: 20px;
	height: 20px;
	min-width: 20px;
	background: var(--accent-light);
	border-radius: 50%;
	margin-top: 2px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300C9A7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
	background-size: 11px;
	background-repeat: no-repeat;
	background-position: center;
}

.product-metrics {
	display: flex;
	gap: 32px;
}

.metric {
	text-align: left;
}

.metric-value {
	font-family: 'Instrument Serif', serif;
	font-size: 1.65rem;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 4px;
}

.metric-label {
	font-size: 0.8rem;
	color: var(--text-muted);
	font-weight: 600;
}

/* Module Cards */
.modules-section {
	background: var(--bg-soft);
}

.modules-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
}

.module-card {
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 10px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.module-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.module-card:hover {
	border-color: var(--primary-light);
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.module-card:hover::before {
	transform: scaleX(1);
}

.module-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.module-icon {
	width: 48px;
	height: 48px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	flex-shrink: 0;
}

.module-icon.clinical {
	background: var(--health-light);
}

.module-icon.admin {
	background: var(--business-light);
}

.module-icon.support {
	background: var(--hrms-light);
}

.module-icon.finance {
	background: rgba(212, 175, 55, 0.15);
}

.module-icon.fleet {
	background: var(--fleet-light);
}

.module-icon.coldchain {
	background: var(--coldchain-light);
}

.module-card h4 {
	font-size: 1rem;
	color: var(--text-dark);
	font-weight: 700;
}

.module-card>p {
	color: var(--text-muted);
	font-size: 0.85rem;
	margin-bottom: 14px;
	line-height: 1.65;
}

.module-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.module-tag {
	background: var(--primary-light);
	color: var(--primary);
	padding: 4px 9px;
	border-radius: 20px;
	font-size: 0.68rem;
	font-weight: 700;
}

.module-tag.fleet {
	background: var(--fleet-light);
	color: var(--fleet);
}

/* Specialized Cards */
.specialized-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
}

.specialized-card {
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px 20px;
	text-align: center;
	transition: all 0.3s ease;
}

.specialized-card:hover {
	border-color: var(--accent);
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
}

.specialized-icon {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin: 0 auto 14px;
	background: var(--accent-light);
}

.specialized-card h4 {
	font-size: 0.98rem;
	color: var(--text-dark);
	margin-bottom: 6px;
	font-weight: 700;
}

.specialized-card p {
	color: var(--text-muted);
	font-size: 0.82rem;
	line-height: 1.55;
}

/* Compliance */
.compliance-section {
	background: linear-gradient(180deg, var(--bg-white) 0%, #F0FFF4 100%);
}

.compliance-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.compliance-card {
	background: var(--bg-white);
	border: 2px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 36px 28px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.compliance-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}

.compliance-card.nphies::before {
	background: linear-gradient(90deg, #006C35, #00B894);
}

.compliance-card.zatca::before {
	background: linear-gradient(90deg, #D4AF37, #F1C40F);
}

.compliance-card.rsd::before {
	background: linear-gradient(90deg, #0052CC, #2684FF);
}

.compliance-card.sfda::before {
	background: linear-gradient(90deg, #3498DB, #1ABC9C);
}

.compliance-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

.compliance-logo {
	width: 72px;
	height: 72px;
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	font-size: 1.75rem;
	font-weight: 800;
}

.compliance-card.nphies .compliance-logo {
	background: rgba(0, 108, 53, 0.1);
	color: var(--ksa-green);
}

.compliance-card.zatca .compliance-logo {
	background: rgba(212, 175, 55, 0.15);
	color: var(--gold);
}

.compliance-card.rsd .compliance-logo {
	background: var(--primary-light);
	color: var(--primary);
}

.compliance-card.sfda .compliance-logo {
	background: var(--fleet-light);
	color: var(--fleet);
}

.compliance-card h3 {
	font-family: 'Instrument Serif', serif;
	font-size: 1.4rem;
	color: var(--text-dark);
	margin-bottom: 5px;
}

.compliance-subtitle {
	color: var(--accent);
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.compliance-card>p {
	color: var(--text-muted);
	font-size: 0.85rem;
	margin-bottom: 18px;
	line-height: 1.65;
}

.compliance-features {
	list-style: none;
	text-align: left;
}

.compliance-features li {
	padding: 6px 0;
	font-size: 0.82rem;
	color: var(--text-body);
	display: flex;
	align-items: center;
	gap: 9px;
}

.compliance-features li::before {
	content: '✓';
	color: var(--accent);
	font-weight: 800;
	font-size: 0.72rem;
}

/* Fleet Management Section */
.fleet-section {
	background: linear-gradient(180deg, var(--bg-soft) 0%, #EBF5FB 100%);
	position: relative;
	overflow: hidden;
}

.fleet-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
	height: 100%;
	background: radial-gradient(ellipse at 100% 50%, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.fleet-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: center;
	margin-bottom: 20px;
}

.fleet-hero-content {
	position: relative;
	z-index: 2;
}

.fleet-hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fleet-visual-circle {
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: var(--gradient-fleet);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-fleet);
	position: relative;
}

.fleet-visual-circle::before {
	content: '';
	position: absolute;
	inset: -20px;
	border: 2px dashed rgba(52, 152, 219, 0.3);
	border-radius: 50%;
	animation: rotate 30s linear infinite;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.fleet-visual-icon {
	font-size: 5rem;
	margin-bottom: 10px;
}

.fleet-visual-text {
	color: white;
	font-weight: 700;
	font-size: 1.1rem;
	text-align: center;
}

.fleet-visual-subtext {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.85rem;
}

.fleet-features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.fleet-feature-card {
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 18px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.fleet-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-fleet);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.fleet-feature-card:hover {
	border-color: var(--fleet);
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.fleet-feature-card:hover::before {
	transform: scaleX(1);
}

.fleet-feature-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-md);
	background: var(--fleet-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 16px;
}

.fleet-feature-card h4 {
	font-size: 1.05rem;
	color: var(--text-dark);
	margin-bottom: 10px;
	font-weight: 700;
}

.fleet-feature-card p {
	color: var(--text-muted);
	font-size: 0.88rem;
	line-height: 1.7;
}

.fleet-benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.fleet-benefit {
	background: var(--bg-white);
	border-radius: var(--radius-lg);
	padding: 24px;
	text-align: center;
	border: 1px solid var(--border);
	transition: all 0.3s ease;
}

.fleet-benefit:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--coldchain);
}

.fleet-benefit-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--coldchain-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin: 0 auto 12px;
}

.fleet-benefit h5 {
	font-size: 0.95rem;
	color: var(--text-dark);
	margin-bottom: 6px;
	font-weight: 700;
}

.fleet-benefit p {
	font-size: 0.8rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* Gallery Section */
.gallery-section {
	background: var(--bg-white);
	position: relative;
}

.gallery-tabs {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.gallery-tab {
	padding: 12px 28px;
	border-radius: 50px;
	border: 2px solid var(--border);
	background: var(--bg-white);
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-body);
	cursor: pointer;
	transition: all 0.3s ease;
}

.gallery-tab:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.gallery-tab.active {
	background: var(--gradient-primary);
	color: white;
	border-color: transparent;
	box-shadow: var(--shadow-primary);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.gallery-item {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 1;
	cursor: pointer;
	transition: all 0.4s ease;
}

.gallery-item.large {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.gallery-item:hover::before {
	opacity: 1;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-item:hover {
	box-shadow: var(--shadow-lg);
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	z-index: 2;
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
	opacity: 1;
}

.gallery-overlay h4 {
	color: white;
	font-size: 1rem;
	margin-bottom: 4px;
	font-weight: 700;
}

.gallery-overlay p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.82rem;
}

.gallery-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bg-soft) 0%, var(--border) 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
}

.gallery-placeholder-icon {
	font-size: 2.5rem;
	margin-bottom: 10px;
	opacity: 0.5;
}

.gallery-placeholder span {
	font-size: 0.85rem;
	font-weight: 600;
}

/* Add this to your existing Gallery CSS HASSAN*/
.gallery-item.hide {
	display: none;
}

/* Ensure images fill 100% of their grid container */
.gallery-item {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 1;
	/* Keeps the grid square */
	cursor: pointer;
	transition: all 0.4s ease;
	background: #f8fafc;
	/* Adds a light grey background for images that don't fill the square */
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	/* CHANGE THIS: 'contain' ensures the whole image is visible, no cropping */
	object-fit: contain;
	padding: 10px;
	/* Optional: adds a little breathing room around the logo/screenshot */
	transition: transform 0.5s ease;
}

/* When hovering, the image should still zoom slightly */
.gallery-item:hover img {
	transform: scale(1.05);
}

/* Ensure the overlay stays on top */
.gallery-overlay {
	z-index: 5;
}

/* Lightbox Styles */
.lightbox {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
	cursor: zoom-out;
}

.lightbox img {
	max-width: 90%;
	max-height: 80%;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
	border-radius: 8px;
	animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

/*UPDATED END HASSAN*/
/* RSD Track & Trace Section */
.rsd-section {
	background: linear-gradient(180deg, var(--rsd-light) 0%, var(--bg-white) 100%);
	position: relative;
	overflow: hidden;
}

.rsd-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-rsd);
}

.rsd-hero {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 50px;
	align-items: center;
	margin-bottom: 40px;
}

.rsd-hero-content h3 {
	font-family: 'Instrument Serif', serif;
	font-size: 2rem;
	color: var(--text-dark);
	margin-bottom: 16px;
}

.rsd-hero-content p {
	color: var(--text-body);
	line-height: 1.8;
	font-size: 1rem;
}

.rsd-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.rsd-visual-card {
	background: var(--gradient-rsd);
	border-radius: var(--radius-xl);
	padding: 40px;
	text-align: center;
	color: white;
	box-shadow: var(--shadow-rsd);
	position: relative;
	overflow: hidden;
}

.rsd-visual-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.rsd-visual-icon {
	font-size: 4rem;
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}

.rsd-visual-text {
	font-size: 1.2rem;
	font-weight: 700;
	position: relative;
	z-index: 1;
}

.rsd-visual-subtext {
	font-size: 0.85rem;
	opacity: 0.85;
	position: relative;
	z-index: 1;
}

.rsd-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.rsd-feature-card {
	background: var(--bg-white);
	border: 2px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.rsd-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-rsd);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.rsd-feature-card:hover {
	border-color: var(--rsd);
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.rsd-feature-card:hover::before {
	transform: scaleX(1);
}

.rsd-feature-icon {
	width: 50px;
	height: 50px;
	background: var(--rsd-light);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 16px;
}

.rsd-feature-card h4 {
	font-size: 1rem;
	color: var(--text-dark);
	margin-bottom: 10px;
	font-weight: 700;
}

.rsd-feature-card p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.6;
}

.rsd-benefits {
	background: var(--bg-white);
	border: 2px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 32px;
}

.rsd-benefits h4 {
	font-family: 'Instrument Serif', serif;
	font-size: 1.4rem;
	color: var(--text-dark);
	margin-bottom: 14px;
}

.rsd-benefits p {
	color: var(--text-body);
	line-height: 1.75;
	font-size: 0.95rem;
}

.rsd-compliance-badges {
	display: flex;
	gap: 16px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.rsd-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--rsd-light);
	padding: 10px 18px;
	border-radius: 50px;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--rsd);
}

/* Integration Hub */
.integration-hub {
	max-width: 950px;
	margin: 0 auto;
}

.hub-center {
	background: var(--gradient-primary);
	border-radius: 50%;
	width: 160px;
	height: 160px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	box-shadow: var(--shadow-primary);
}

.hub-center h3 {
	font-size: 1rem;
	margin: 0;
	color: white;
	font-weight: 800;
}

.hub-center p {
	font-size: 0.72rem;
	margin: 4px 0 0 0;
	color: rgba(255, 255, 255, 0.85);
}

.hub-spokes {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: -36px;
	padding-top: 60px;
}

.hub-spoke {
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 22px 18px;
	text-align: center;
	transition: all 0.3s ease;
}

.hub-spoke:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.hub-spoke-icon {
	font-size: 1.75rem;
	margin-bottom: 10px;
}

.hub-spoke h4 {
	font-size: 0.9rem;
	color: var(--text-dark);
	margin-bottom: 5px;
	font-weight: 700;
}

.hub-spoke p {
	font-size: 0.78rem;
	color: var(--text-muted);
}

/* Features */
.features-section {
	background: var(--bg-soft);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.feature-card {
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	transition: all 0.3s ease;
}

.feature-card:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.feature-icon {
	width: 54px;
	height: 54px;
	background: var(--primary-light);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.45rem;
	margin-bottom: 18px;
}

.feature-card h4 {
	font-size: 1.05rem;
	color: var(--text-dark);
	margin-bottom: 8px;
	font-weight: 700;
}

.feature-card p {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.65;
}

/* Locations */
.locations-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.location-card {
	background: var(--bg-white);
	border-radius: var(--radius-xl);
	padding: 40px;
	position: relative;
	overflow: hidden;
	border: 2px solid var(--border);
	transition: all 0.3s ease;
}

.location-card:hover {
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

.location-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}

.location-card.india::before {
	background: linear-gradient(90deg, #FF9933, #FFFFFF, #138808);
}

.location-card.ksa::before {
	background: var(--ksa-green);
}

.location-flag {
	font-size: 2.5rem;
	margin-bottom: 16px;
}

.location-company {
	font-family: 'Instrument Serif', serif;
	font-size: 1.65rem;
	color: var(--text-dark);
	margin-bottom: 6px;
}

.location-name {
	font-size: 0.95rem;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 18px;
}

.location-details p {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	color: var(--text-body);
	font-size: 0.9rem;
}

.location-details svg {
	width: 18px;
	height: 18px;
	color: var(--text-muted);
}

.location-role {
	background: var(--bg-soft);
	border-radius: var(--radius-md);
	padding: 16px 20px;
	font-size: 0.85rem;
	color: var(--text-muted);
	border-left: 4px solid var(--accent);
	margin-top: 18px;
}

/* Contact */
.contact-section {
	padding: 50px 0;
	background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
	position: relative;
	overflow: hidden;
}

.contact-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.15) 0%, transparent 40%),
		radial-gradient(circle at 80% 20%, rgba(0, 201, 167, 0.12) 0%, transparent 40%);
}

.contact-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.contact-section .section-tag {
	background: rgba(0, 201, 167, 0.2);
	color: var(--accent);
}

.contact-section .section-title {
	color: white;
}

.contact-section .section-desc {
	color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 850px;
	margin: 40px auto 0;
}

.contact-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	padding: 32px;
	transition: all 0.3s ease;
}

.contact-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-4px);
}

.contact-icon {
	width: 52px;
	height: 52px;
	background: rgba(0, 102, 255, 0.2);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	margin: 0 auto 16px;
}

.contact-card h4 {
	color: white;
	font-size: 1rem;
	margin-bottom: 8px;
	font-weight: 700;
}

.contact-card p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.contact-card a {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.contact-card a:hover {
	color: white;
}

/* Footer */
.footer {
	background: #0F172A;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 18px 0;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 18px;
}

.footer-logo {
	height: 34px;
	filter: brightness(0) invert(1);
}

.footer-divider {
	width: 1px;
	height: 24px;
	background: rgba(255, 255, 255, 0.2);
}

.footer-vcs {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 600;
}

.footer-copy {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.82rem;
}

.hero-slider {
	position: relative;
	overflow: hidden;
}

.hero-slider .slide {
	display: none;
	transition: opacity 1s ease;
}

.hero-slider .slide.active {
	display: block;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.7s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {

	.platform-cards,
	.product-card,
	.compliance-grid,
	.locations-grid {
		grid-template-columns: 1fr;
	}

	.product-card {
		gap: 36px;
		padding: 36px;
	}

	.product-card:nth-child(even) {
		direction: ltr;
	}

	.features-grid,
	.hub-spokes {
		grid-template-columns: repeat(2, 1fr);
	}

	.rsd-hero {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.rsd-visual {
		order: -1;
	}

	.rsd-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.section {
		padding: 45px 0;
	}

	.fleet-hero {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.fleet-hero-visual {
		order: -1;
	}

	.fleet-features-grid {
		grid-template-columns: 1fr;
	}

	.fleet-benefits {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-item.large {
		grid-column: span 2;
		grid-row: span 1;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.features-grid,
	.contact-grid,
	.hub-spokes {
		grid-template-columns: 1fr;
	}

	.hero-title {
		font-size: 2.25rem;
	}

	.product-card {
		padding: 24px;
	}

	.section {
		padding: 40px 0;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}

	.hero {
		padding: 90px 0 50px;
	}

	.fleet-visual-circle {
		width: 250px;
		height: 250px;
	}

	.fleet-benefits {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.gallery-item.large {
		grid-column: span 1;
	}

	.rsd-features-grid {
		grid-template-columns: 1fr;
	}

	.rsd-compliance-badges {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.hero-cta {
		flex-direction: column;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		justify-content: center;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.hero-compliance {
		flex-direction: column;
		align-items: center;
	}

	.stat-value {
		font-size: 2.5rem;
	}

	.section {
		padding: 32px 0;
	}

	.gallery-tabs {
		gap: 8px;
	}

	.gallery-tab {
		padding: 10px 20px;
		font-size: 0.82rem;
	}

	.rsd-hero-content h3 {
		font-size: 1.6rem;
	}

	.rsd-visual-card {
		padding: 30px;
	}
}