/* AORR Global Trading - Professional Corporate Theme */


:root {
	--primary-navy: #002147;
	--primary-dark: #00152e;
	--accent-gold: #C5A065;
	--accent-gold-light: #e0c088;
	--text-white: #ffffff;
	--text-dark: #333333;
	--text-gray: #e0e0e0;
	--bg-light: #f4f6f9;

	/* Mappings for existing HTML classes */
	--primary-black: var(--primary-navy);
	--text-primary: var(--text-white);
	--text-secondary: var(--text-gray);
	--accent-cyan: var(--accent-gold);
	/* Replacing Neon Cyan with Gold */
	--accent-purple: #ffffff;
	--accent-blue: #2E8B57;
	/* Green for Agri/Growth */

	--font-main: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;

	--card-bg: rgba(255, 255, 255, 0.95);
	--card-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	overflow-x: hidden; /* Global horizontal scroll fix */
	width: 100%;
}

/* Fluid Typography - Prevents awkward size jumps when zooming */
@media (min-width: 320px) {
	html {
		font-size: calc(14px + 2 * ((100vw - 320px) / 1080));
	}
}

@media (min-width: 1400px) {
	html {
		font-size: 16px;
	}
}

body {
	background-color: var(--primary-dark);
	color: var(--text-white);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100vh;
	position: relative;
    /* PERFORMANCE FIX: Removing background-attachment: fixed from body */
}

/* PERFORMANCE FIX: Hardware accelerated fixed background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Behind everything */
    background-image:
		linear-gradient(rgba(0, 33, 71, 0.95), rgba(0, 21, 46, 0.98)),
		url('images/hero_globe_shipping_1768230459789.webp');
	background-size: cover;
	background-position: center;
    will-change: transform; /* Hint to browser to promote to layer */
    pointer-events: none;
}



/* Prevent layout shift on zoom */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Container utilities for consistent sizing */
.container-fluid {
	width: 100%;
	padding-right: clamp(15px, 5vw, 50px);
	padding-left: clamp(15px, 5vw, 50px);
	margin-right: auto;
	margin-left: auto;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: clamp(10px, 2vh, 15px) clamp(15px, 5vw, 50px);
	z-index: 1000;
	background: rgba(0, 33, 71, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: clamp(18px, 4vw, 24px);
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 3px;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.logo-icon {
	width: clamp(20px, 5vw, 30px);
	height: clamp(20px, 5vw, 30px);
	border: 2px solid var(--accent-gold);
	transform: rotate(45deg);
	transition: border-color 0.3s ease;
}

.logo:hover .logo-icon {
	border-color: var(--accent-gold-light);
}

.nav-logo-img {
    height: 100px;
    margin-right: 0;
    width: auto;
    transition: height 0.3s ease;
}

@media (max-width: 768px) {
    .nav-logo-img {
        height: 50px;
    }
}

.logo-prism {
	display: none;
}

/* Navigation Menu */
.nav-menu {
	display: flex;
	list-style: none;
	gap: clamp(15px, 3vw, 30px);
	align-items: center;
}

.nav-link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-family: var(--font-body);
	font-weight: 500;
	text-transform: uppercase;
	font-size: clamp(0.85rem, 1.1vw, 1rem);
	letter-spacing: 1px;
	transition: all 0.3s ease;
	padding: 8px 12px;
	border-radius: 4px;
	position: relative;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--accent-gold);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
	color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 80%;
}

/* Hero Section - Enterprise Redesign */
.hero {
	min-height: 100vh;
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 180px 20px 80px; /* Generous padding */
	text-align: center;
}

.hero-overlay-text {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 40px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-title {
	font-size: clamp(2.8rem, 6vw, 5rem); /* Massive, responsive headline */
	font-family: var(--font-main);
	font-weight: 800;
	color: white;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: -1px;
	line-height: 1.1;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: clamp(0.9rem, 2vw, 1.1rem);
	color: var(--accent-gold);
	font-weight: 600;
	letter-spacing: 3px;
	background: rgba(0, 0, 0, 0.4);
	display: inline-block;
	padding: 10px 30px;
	border-radius: 50px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(197, 160, 101, 0.3);
	margin-bottom: 20px;
	text-transform: uppercase;
}

.hero-description {
	font-size: clamp(1.1rem, 1.5vw, 1.3rem);
	color: rgba(255, 255, 255, 0.95);
	max-width: 800px;
	margin: 0 auto 30px;
	line-height: 1.6;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-cta-group {
	margin-top: 30px;
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-btn {
	text-decoration: none;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
}

.hero-btn.primary {
	background: var(--accent-gold);
	color: var(--primary-navy);
	border: 2px solid var(--accent-gold);
}

.hero-btn.primary:hover {
	background: transparent;
	color: white;
}

.hero-btn.secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.hero-btn.secondary:hover {
	background: white;
	color: var(--primary-navy);
}

/* Mobile Hero Optimization */
@media (max-width: 768px) {
	.hero {
		padding-top: 140px;
		padding-bottom: 60px;
		min-height: auto;
	}

	.hero-title {
		margin-bottom: 15px;
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Performance: Reduced blur radius */
	}

	.hero-subtitle {
		padding: 8px 20px;
		font-size: 0.8rem;
		margin-bottom: 15px;
	}
}

/* 3D Carousel - Professional Card Style */
.carousel-container {
	position: relative;
	width: 100%;
	height: 500px;
	/* Reduced height to fit better */
	min-height: 60vh; /* Responsive height */
	margin-top: 20px;
	transform-style: preserve-3d;
	overflow: hidden; /* Prevent overflow */
	opacity: 0; /* Hidden until initialized to prevent CLS */
	transition: opacity 0.8s ease-out;
    contain: layout paint; /* Performance: Isolate reflows */
}

@media (max-width: 767px) {
	.carousel-container {
		height: 480px; 
        /* Note: Main mobile carousel styles are handled at the end of this file */
	}
}

.carousel-container.initialized {
	opacity: 1; /* Show when ready */
}

.carousel {
	position: absolute;
	top: 50%;
	left: 50%;
	transform-style: preserve-3d;
	transition: transform 0.8s;
}

.carousel-item {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 320px;
	max-width: 90vw; /* Mobile safety */
	height: 480px;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	transition: 0.5s;
    will-change: transform, opacity; /* Performance: Promote to layer */
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	backface-visibility: hidden; /* Performance */
	transform-origin: center center;
}



.card {
	padding: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: white;
}

.card-number {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 40px;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.05);
	font-family: var(--font-main);
}

.card-image {
	height: 220px;
	width: 100%;
	overflow: hidden;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-title {
	font-family: var(--font-main);
	color: var(--primary-navy);
	margin: 20px 20px 10px;
	font-size: 1.35rem;
	font-weight: 700;
}

.card-description {
	font-size: 0.9rem;
	color: var(--text-dark);
	margin: 0 20px 20px;
	line-height: 1.5;
	flex-grow: 1;
}

.card-cta {
	margin: 0 20px 20px;
	padding: 12px;
	background: var(--primary-navy);
	border: none;
	color: white;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: 0.3s;
	border-radius: 6px;
}

.card-cta:hover {
	background: var(--accent-gold);
}

/* About / Philosophy */
.philosophy-section {
	padding: 100px 20px;
	position: relative;
	background: white;
	color: var(--text-dark);
	clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
	overflow-y: visible !important;
	overflow-x: clip; /* Modern approach to prevent horizontal spill without scrollbar */
	height: auto !important;
}

.philosophy-container {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
	overflow: visible !important;
	height: auto !important;
}

.philosophy-headline {
	font-size: 2.5rem;
	font-family: var(--font-main);
	color: var(--primary-navy);
	margin-bottom: 30px;
}

.philosophy-subheading {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 50px;
}

.director-card {
	background: var(--bg-light);
	border-left: 5px solid var(--accent-gold);
	padding: 40px;
	text-align: left;
	border-radius: 0 12px 12px 0;
}

.director-card h3 {
	color: var(--accent-gold);
	font-size: 0.9rem;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.director-card h4 {
	color: var(--primary-navy);
	font-size: 1.5rem;
	margin-bottom: 15px;
}

/* Grid Background for About (Replacing Particles) */
.philosophy-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(var(--primary-navy) 1px, transparent 1px);
	background-size: 30px 30px;
	opacity: 0.05;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.particle {
	display: none;
}

/* Hide moving dots */

/* Services Grid (Hexagons -> Cards) */
.skills-section {
	padding: 100px 20px;
	background: var(--bg-light);
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-family: var(--font-main);
	font-size: 2.5rem;
	color: var(--primary-navy);
	margin-bottom: 15px;
}

.skills-hexagon-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.skill-hexagon {
	width: auto;
	height: auto;
	clip-path: none;
	background: white;
	border-radius: 12px;
	padding: 40px 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
	/* Vooma: subtle shadow */
	display: block;
	text-align: left;
	/* Vooma: Left align often cleaner */
	margin: 0;
	border: 1px solid #eee;
	/* Vooma: subtle border */
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	top: 0;
}

.skill-hexagon:hover {
	transform: translateY(-5px);
	border-color: var(--accent-gold);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.skill-content {
	padding: 0;
}

.skill-icon {
	font-size: 2.5rem;
	/* Slightly smaller, refined */
	margin-bottom: 20px;
	display: block;
	color: var(--accent-gold);
	/* Gold icon by default */
	transition: 0.3s;
}

.skill-title {
	color: var(--primary-navy);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 15px;
}

/* Enterprise Trust Section */
.enterprise-trust-section {
	padding: 100px 20px;
	background: white;
	color: var(--primary-navy);
}

.enterprise-header {
	max-width: 1200px;
	margin: 0 auto 60px;
	text-align: left;
}

.enterprise-title {
	font-family: var(--font-main);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--primary-navy);
	margin-bottom: 10px;
	line-height: 1.2;
}

.enterprise-title span {
	display: block;
	color: #888;
	font-weight: 400;
	font-size: 0.65em;
}

.enterprise-subtitle {
	font-size: 1rem;
	color: #666;
	margin-top: 10px;
	max-width: 600px;
}

.enterprise-badges-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0;
	max-width: 1200px;
	margin: 0 auto;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
}

.enterprise-badge {
	padding: 30px 20px;
	text-align: center;
	border-right: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
	background: white;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 140px;
}

.enterprise-badge:hover {
	background: #f8f9fa;
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.badge-icon {
	font-size: 2.5rem;
	margin-bottom: 12px;
	display: block;
}

.badge-image {
	width: 60px;
	height: 60px;
	margin-bottom: 12px;
	object-fit: contain;
	filter: grayscale(20%);
}

.badge-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: #444;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.3;
}

.badge-value {
	font-size: 1rem;
	font-weight: 700;
	color: var(--primary-navy);
	margin-top: 5px;
}

/* Enterprise Mobile Responsive - Enhanced */
@media (max-width: 768px) {
	.enterprise-trust-section {
		padding: 60px 20px;
		background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
	}

	.enterprise-header {
		text-align: center;
		margin-bottom: 40px;
	}

	.enterprise-title {
		font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
	}

	.enterprise-subtitle {
		text-align: center;
		max-width: 100%;
		font-size: 0.95rem;
	}

	.enterprise-badges-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		border: none;
	}

	.enterprise-badge {
		min-height: 150px;
		padding: 25px 15px;
		border-radius: 12px !important;
		border: 1px solid #e0e0e0;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	}

	.enterprise-badge:hover {
		transform: translateY(-3px);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.badge-icon {
		font-size: 2.5rem !important;
		margin-bottom: 15px;
	}

	.badge-label {
		font-size: 0.7rem !important;
		line-height: 1.4;
	}

	.badge-value {
		font-size: 1.1rem !important;
		margin-top: 8px;
	}
}

@media (max-width: 480px) {
	.enterprise-trust-section {
		padding: 50px 15px;
	}

	.enterprise-badges-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.enterprise-badge {
		min-height: 140px;
		padding: 30px 20px;
		flex-direction: row;
		justify-content: flex-start;
		text-align: left;
		gap: 20px;
	}

	.badge-icon {
		font-size: 3rem !important;
		margin-bottom: 0 !important;
		flex-shrink: 0;
	}

	.badge-label {
		font-size: 0.75rem !important;
		text-align: left;
	}

	.badge-value {
		font-size: 1.25rem !important;
    }
}

/* Quick Enquiry Button */
.quick-enquiry-wrapper {
    margin-top: 35px;
    animation: fadeUp 0.8s ease-out 0.2s backwards;
}

.quick-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #dbb46c 100%);
    color: var(--primary-navy);
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 25px rgba(197, 160, 101, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.quick-enquiry-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quick-enquiry-btn:hover {
    transform: translateY(-4px);
    color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
}

.quick-enquiry-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.quick-enquiry-btn svg {
    transition: transform 0.4s ease;
    width: 20px;
    height: 20px;
}

.quick-enquiry-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .quick-enquiry-btn {
        padding: 18px 45px;
        width: 100%;
        max-width: 320px;
        justify-content: center;
        font-size: 1.1rem; /* Clear CTA text */
    }
}


/* Tablet Landscape */
@media (min-width: 481px) and (max-width: 768px) {
	.enterprise-badges-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

/* Stats - High Contrast Feature Tiles */
.stats-section {
	padding: 100px 0;
	background: var(--primary-navy);
	color: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.stat-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 30px;
	border-radius: 12px;
	transition: 0.3s;
	text-align: center;
}

.stat-card:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-5px);
	border-color: var(--accent-gold);
}

.stat-number {
	font-family: var(--font-main);
	font-size: 2.5rem;
	color: var(--accent-gold);
	font-weight: 700;
	margin-bottom: 5px;
}

.stat-label {
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1px;
	font-weight: 500;
}

/* Contact */
.contact-section {
	padding: 100px 20px;
	background: white;
}

.contact-container {
	max-width: 1400px;
	/* Increased from 1000px */
	margin: 0 auto;
	background: white;
	display: block;
	/* Fixed: Removed grid to allow vertical stacking of rows */
	padding: 0;
	box-shadow: none;
	border: none;
}

.contact-container h2 {
	color: var(--primary-navy);
	margin-bottom: 20px;
	font-weight: 700;
	font-family: var(--font-main);
	font-size: 2rem;
}

.contact-container p {
	color: #666;
}

/* Contact Split Layout */
.contact-split-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	width: 100%;
}

/* Tablet & Mobile: Stack Columns */
@media (max-width: 991px) {
	.contact-split-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

.contact-split-layout iframe {
	width: 100%;
	height: 100%;
	min-height: 500px;
	border-radius: 12px;
}

/* Info Cards (Contact Page) */
.contact-info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.contact-info-card h4 {
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-info-card p {
    color: #555;
    line-height: 1.6;
}

.contact-form label {
	color: var(--primary-navy);
	font-weight: 600;
	font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
	background: #f4f6f9;
	border: 1px solid #e0e0e0;
	color: #333;
	border-radius: 6px;
	padding: 14px;
	/* Increased */
	width: 100%;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--primary-navy);
	background: white;
	box-shadow: 0 0 0 3px rgba(0, 33, 71, 0.1);
	outline: none;
}

.submit-btn {
	background: var(--primary-navy);
	padding: 14px 32px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	color: white;
	font-weight: 600;
	border-radius: 6px;
	box-shadow: 0 4px 10px rgba(0, 33, 71, 0.2);
}

.submit-btn:hover {
	background: var(--accent-gold);
	color: white;
	box-shadow: 0 8px 20px rgba(197, 160, 101, 0.3);
	transform: translateY(-2px);
}

/* Delivery Optimization Showcase Section */
.delivery-optimization-section {
	padding: 100px 20px;
	background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
	position: relative;
	overflow: hidden;
}

.delivery-optimization-container {
	max-width: 1200px;
	margin: 0 auto 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

/* Left Panel - Reduction Metrics */
.reduction-panel {
	background: white;
	padding: 50px 40px;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.panel-title {
	font-family: var(--font-main);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-navy);
	margin-bottom: 12px;
	line-height: 1.3;
}

.panel-description {
	font-size: 1rem;
	color: #4169E1;
	margin-bottom: 40px;
	line-height: 1.6;
}

/* Radar Visualization */
.radar-visualization {
	position: relative;
	width: 100%;
	max-width: 400px;
	height: 400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.radar-center {
	position: absolute;
	z-index: 10;
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.05);
		opacity: 0.9;
	}
}

.radar-circle {
	position: absolute;
	border: 1.5px dashed rgba(65, 105, 225, 0.15);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.radar-circle-1 {
	width: 280px;
	height: 280px;
}

.radar-circle-2 {
	width: 200px;
	height: 200px;
}

.radar-circle-3 {
	width: 120px;
	height: 120px;
}

/* Region Points */
.radar-point {
	position: absolute;
	z-index: 5;
}

.point-inner {
	width: 50px;
	height: 50px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.85rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: 2px solid #f0f0f0;
	transition: all 0.3s ease;
}

.radar-point:hover .point-inner {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.point-asia {
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
}

.point-europe {
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
}

.point-africa {
	bottom: 15%;
	right: 20%;
}

.point-americas {
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
}

/* Improvement Dots */
.improvement-dot {
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	animation: float 4s ease-in-out infinite;
}

.dot-1 {
	background: #4169E1;
	top: 25%;
	right: 25%;
	animation-delay: 0s;
}

.dot-2 {
	background: #4169E1;
	bottom: 30%;
	left: 15%;
	animation-delay: 1s;
}

.dot-3 {
	background: #FFA500;
	top: 40%;
	right: 10%;
	animation-delay: 2s;
}

.dot-4 {
	background: #FFA500;
	bottom: 20%;
	right: 35%;
	animation-delay: 3s;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

/* Right Panel - Tracking List */
.tracking-panel {
	background: white;
	padding: 50px 40px;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.tracking-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tracking-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: #f8f9fa;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.tracking-item:hover {
	background: white;
	border-color: rgba(65, 105, 225, 0.2);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	transform: translateX(5px);
}

.tracking-info {
	display: flex;
	align-items: center;
	gap: 16px;
}

.region-badge {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.75rem;
	color: white;
}

.badge-asia {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.badge-europe {
	background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.badge-africa {
	background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.badge-americas {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.tracking-details {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tracking-value {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-navy);
}

.tracking-id {
	font-size: 0.8rem;
	color: #999;
	letter-spacing: 0.5px;
}

.status-badge {
	padding: 8px 20px;
	background: #000;
	color: white;
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: capitalize;
}

.status-delivered {
	background: #000;
}

/* CTA Buttons */
.delivery-cta {
	text-align: center;
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.delivery-btn-primary,
.delivery-btn-secondary {
	display: inline-flex;
	align-items: center;
	padding: 14px 32px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid;
}

.delivery-btn-primary {
	background: #4169E1;
	color: white;
	border-color: #4169E1;
}

.delivery-btn-primary:hover {
	background: #3557c7;
	border-color: #3557c7;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(65, 105, 225, 0.3);
}

.delivery-btn-secondary {
	background: transparent;
	color: var(--primary-navy);
	border-color: var(--primary-navy);
}

.delivery-btn-secondary:hover {
	background: var(--primary-navy);
	color: white;
	transform: translateY(-2px);
}

.delivery-btn-primary svg,
.delivery-btn-secondary svg {
	transition: transform 0.3s ease;
}

.delivery-btn-primary:hover svg,
.delivery-btn-secondary:hover svg {
	transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.delivery-optimization-container {
		gap: 40px;
	}

	.radar-visualization {
		max-width: 350px;
		height: 350px;
	}
}

@media (max-width: 768px) {
	.delivery-optimization-section {
		padding: 80px 20px;
	}

	.delivery-optimization-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.reduction-panel,
	.tracking-panel {
		padding: 35px 25px;
	}

	.radar-visualization {
		max-width: 300px;
		height: 300px;
	}

	.radar-circle-1 {
		width: 240px;
		height: 240px;
	}

	.radar-circle-2 {
		width: 170px;
		height: 170px;
	}

	.radar-circle-3 {
		width: 100px;
		height: 100px;
	}

	.delivery-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.delivery-btn-primary,
	.delivery-btn-secondary {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.panel-title {
		font-size: 1.4rem;
	}

	.tracking-item {
		padding: 12px 16px;
	}

	.region-badge {
		width: 38px;
		height: 38px;
		font-size: 0.7rem;
	}

	.tracking-value {
		font-size: 1rem;
	}

	.status-badge {
		padding: 6px 14px;
		font-size: 0.75rem;
	}
}

/* Industries We Serve Section */
.industries-section {
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
	padding: 120px 20px;
	color: var(--text-dark);
	position: relative;
	overflow: hidden;
}

.industries-container {
	max-width: 1300px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.industries-header {
	text-align: center;
	margin-bottom: 70px;
}

.industries-tag {
	display: inline-block;
	background: linear-gradient(135deg, rgba(197, 160, 101, 0.1) 0%, rgba(0, 33, 71, 0.1) 100%);
	color: var(--accent-gold);
	padding: 8px 24px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 2px;
	margin-bottom: 20px;
	border: 1px solid rgba(197, 160, 101, 0.2);
}

.industries-title {
	font-family: var(--font-main);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--primary-navy);
	margin-bottom: 15px;
	line-height: 1.2;
}

.industries-subtitle {
	font-size: 1.3rem;
	color: #666;
	font-weight: 500;
	margin-bottom: 15px;
}

.industries-description {
	font-size: 1.05rem;
	color: #777;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Industries Grid */
.industries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.industry-card {
	position: relative;
	background: white;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(0, 0, 0, 0.06);
	cursor: pointer;
}

.industry-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-navy) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover::before {
	transform: scaleX(1);
}

.industry-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 33, 71, 0.12);
	border-color: rgba(197, 160, 101, 0.3);
}

.industry-card-inner {
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 320px;
}

.industry-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(197, 160, 101, 0.1) 0%, rgba(0, 33, 71, 0.05) 100%);
	border-radius: 16px;
	color: var(--primary-navy);
	transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
	background: linear-gradient(135deg, rgba(197, 160, 101, 0.2) 0%, rgba(0, 33, 71, 0.1) 100%);
	transform: scale(1.05);
	color: var(--accent-gold);
}

.industry-card h3 {
	font-family: var(--font-main);
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--primary-navy);
	margin-bottom: 15px;
	line-height: 1.3;
}

.industry-card p {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.7;
	flex-grow: 1;
	margin-bottom: 20px;
}

.industry-badge {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(197, 160, 101, 0.1);
	color: var(--accent-gold);
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: 1px solid rgba(197, 160, 101, 0.2);
	align-self: flex-start;
	transition: all 0.3s ease;
}

.industry-card:hover .industry-badge {
	background: var(--accent-gold);
	color: white;
	border-color: var(--accent-gold);
}

/* Industry-specific colors (optional variations) */
.industry-card[data-industry="agro"]:hover .industry-icon {
	color: #2E8B57;
}

.industry-card[data-industry="fmcg"]:hover .industry-icon {
	color: #4169E1;
}

.industry-card[data-industry="trade"]:hover .industry-icon {
	color: var(--accent-gold);
}

.industry-card[data-industry="startups"]:hover .industry-icon {
	color: #9370DB;
}

.industry-card[data-industry="industrial"]:hover .industry-icon {
	color: #DC143C;
}

/* CTA Section */
.industries-cta {
	text-align: center;
	padding: 50px 30px;
	background: linear-gradient(135deg, rgba(0, 33, 71, 0.03) 0%, rgba(197, 160, 101, 0.03) 100%);
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.industries-cta p {
	font-size: 1.2rem;
	color: #555;
	margin-bottom: 25px;
	font-weight: 500;
}

.industries-cta-btn {
	display: inline-flex;
	align-items: center;
	padding: 16px 36px;
	background: var(--primary-navy);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: 2px solid var(--primary-navy);
}

.industries-cta-btn:hover {
	background: var(--accent-gold);
	border-color: var(--accent-gold);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(197, 160, 101, 0.3);
}

.industries-cta-btn svg {
	transition: transform 0.3s ease;
}

.industries-cta-btn:hover svg {
	transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.industries-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media (max-width: 768px) {
	.industries-section {
		padding: 80px 20px;
	}

	.industries-header {
		margin-bottom: 50px;
	}

	.industries-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.industry-card-inner {
		padding: 30px 25px;
		min-height: auto;
	}

	.industries-cta {
		padding: 40px 25px;
	}

	.industries-cta p {
		font-size: 1.05rem;
	}
}

@media (max-width: 480px) {
	.industries-section {
		padding: 60px 15px;
	}

	.industries-title {
		font-size: 2rem;
	}

	.industries-subtitle {
		font-size: 1.1rem;
	}

	.industry-card h3 {
		font-size: 1.2rem;
	}

	.industry-icon {
		width: 65px;
		height: 65px;
	}

	.industry-icon svg {
		width: 36px;
		height: 36px;
	}

	.industries-cta-btn {
		padding: 14px 28px;
		font-size: 0.95rem;
	}
}

/* Performance Showcase Section */
.performance-showcase-section {
	background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f4ff 100%);
	padding: 120px 20px;
	color: var(--text-dark);
	position: relative;
	overflow: hidden;
}

.performance-showcase-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(65, 105, 225, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(197, 160, 101, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

.performance-container {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	text-align: center;
}

.performance-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(65, 105, 225, 0.08);
	color: #4169E1;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	margin-bottom: 30px;
	border: 1px solid rgba(65, 105, 225, 0.15);
}

.performance-headline {
	font-family: var(--font-main);
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 800;
	color: #111;
	margin-bottom: 20px;
	line-height: 1.1;
	letter-spacing: -1px;
}

.performance-description {
	font-size: 1.05rem;
	color: #555;
	max-width: 600px;
	margin: 0 auto 60px;
	line-height: 1.7;
}

.performance-description strong {
	color: #4169E1;
	font-weight: 600;
}

/* Chart Wrapper */
.chart-wrapper {
	background: white;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
		0 0 1px rgba(0, 0, 0, 0.1);
	margin-bottom: 60px;
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.performance-toggle-container {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	background: rgba(65, 105, 225, 0.05);
	border: 1px solid rgba(65, 105, 225, 0.1);
	border-radius: 30px;
	margin-bottom: 30px;
	color: #333;
	font-size: 0.9rem;
}

/* Toggle Switch */
.performance-toggle {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 26px;
	cursor: pointer;
}

.performance-toggle input {
	display: none;
}

.toggle-slider {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ccc;
	border-radius: 30px;
	transition: 0.3s;
}

.toggle-slider::before {
	content: '';
	position: absolute;
	height: 20px;
	width: 20px;
	left: 3px;
	bottom: 3px;
	background: white;
	border-radius: 50%;
	transition: 0.3s;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.performance-toggle input:checked+.toggle-slider {
	background: #4169E1;
}

.performance-toggle input:checked+.toggle-slider::before {
	transform: translateX(22px);
}

/* Chart Canvas */
#performanceChart {
	width: 100% !important;
	height: 300px !important;
	margin: 20px 0;
}

/* Metric Badge */
.metric-badge {
	position: absolute;
	top: 60px;
	right: 40px;
	background: white;
	padding: 20px 25px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(65, 105, 225, 0.15);
	text-align: center;
	border: 2px solid rgba(65, 105, 225, 0.1);
	z-index: 10;
}

/* Features Grid */
.performance-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 30px;
	margin-top: 20px;
}

.performance-feature-card {
	background: white;
	padding: 35px 25px;
	border-radius: 12px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.performance-feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
	border-color: rgba(65, 105, 225, 0.2);
}

.feature-icon-wrapper {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(65, 105, 225, 0.08) 0%, rgba(197, 160, 101, 0.08) 100%);
	border-radius: 50%;
	color: #4169E1;
	transition: all 0.3s ease;
}

.performance-feature-card:hover .feature-icon-wrapper {
	background: linear-gradient(135deg, rgba(65, 105, 225, 0.15) 0%, rgba(197, 160, 101, 0.15) 100%);
	transform: scale(1.05);
}

.performance-feature-card h4 {
	font-family: var(--font-main);
	font-size: 1.1rem;
	font-weight: 600;
	color: #111;
	margin-bottom: 12px;
}

.performance-feature-card p {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
	.performance-showcase-section {
		padding: 80px 20px;
	}

	.chart-wrapper {
		padding: 25px 20px;
	}

	.metric-badge {
		position: static;
		margin: 20px auto;
		display: inline-block;
	}

	.performance-features-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 25px;
		overflow: visible; /* Ensure page scrolls naturally */
		margin: 20px 0;
		padding: 10px 5px;
	}

	.performance-features-grid::-webkit-scrollbar {
		display: none;
	}

	.performance-features-grid .reveal-card {
		width: 100%;
		flex: none;
		scroll-snap-align: none;
		background: white; /* Cleaner white background */
		border: 1px solid rgba(0, 0, 0, 0.05);
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
		border-radius: 16px;
		position: relative;
		overflow: hidden;
	}

	/* Premium Top Gradient Border */
	.performance-features-grid .reveal-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 4px;
		background: linear-gradient(90deg, var(--primary-navy), var(--accent-gold));
	}

	/* Tap Hint for Usability */
	.performance-features-grid .reveal-card::after {
		content: 'Tap for Details';
		position: absolute;
		bottom: 20px;
		width: 100%;
		text-align: center;
		font-size: 0.7rem;
		text-transform: uppercase;
		letter-spacing: 2px;
		color: #aaa;
		pointer-events: none;
		opacity: 0.6;
		font-weight: 600;
	}

	.performance-features-grid .reveal-card:hover::after {
		opacity: 0;
	}

	.performance-features-grid .reveal-card svg {
		width: 60px;
		height: 60px;
		filter: drop-shadow(0 4px 10px rgba(197, 160, 101, 0.2));
		margin-bottom: 20px;
	}

	#performanceChart {
		height: 250px !important;
	}
}

@media (max-width: 480px) {
	.performance-headline {
		font-size: 2rem;
	}

	.performance-description {
		font-size: 0.95rem;
	}

	.chart-wrapper {
		padding: 20px 15px;
	}

	.performance-feature-card {
		padding: 25px 20px;
	}

	.feature-icon-wrapper {
		width: 60px;
		height: 60px;
	}

	.feature-icon-wrapper svg {
		width: 32px;
		height: 32px;
	}
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* About Hero Section - Enterprise Redesign */
.about-hero {
	width: 100%;
	min-height: 95vh; /* Premium Full Height */
	display: flex;
	align-items: center;
	justify-content: center;
    flex-direction: column;
	background:
		linear-gradient(to bottom, rgba(0, 33, 71, 0.85), rgba(0, 16, 36, 0.95)),
		url('images/about-hero.webp');
	background-size: cover;
	background-position: center;
	background-attachment: scroll; /* Performance fix: fixed causes jank */
	padding: 160px 20px 60px; /* Generous top padding to clear header */
	position: relative;
	overflow: hidden;
    color: white;
    text-align: center;
}

/* Subtle Animated Texture Overlay */
.about-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
	pointer-events: none;
    z-index: 1;
}

.about-hero-content {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero-tag {
	display: inline-block;
	background: rgba(197, 160, 101, 0.15);
	color: var(--accent-gold);
	padding: 10px 24px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 3px;
	margin-bottom: 25px;
	border: 1px solid rgba(197, 160, 101, 0.3);
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.about-hero-title {
	font-family: var(--font-main);
	font-size: clamp(2.5rem, 5vw, 4.8rem); /* Responsive scaling */
	font-weight: 800;
	color: white;
	margin-bottom: 25px;
	line-height: 1.1;
	letter-spacing: -1px;
}

.about-hero-title span {
	color: var(--accent-gold);
	display: inline-block;
    position: relative;
}

.about-hero-description {
	font-size: clamp(1.1rem, 1.5vw, 1.35rem);
	color: rgba(255, 255, 255, 0.9);
	max-width: 800px;
	margin: 0 auto 60px;
	line-height: 1.8;
    font-weight: 400;
}

.about-hero-stats {
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
	gap: 60px;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding-top: 50px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item {
	text-align: center;
    flex: 1;
    min-width: 140px;
}

.hero-stat-item strong {
	display: block;
	font-family: var(--font-main);
	font-size: clamp(2.2rem, 3.5vw, 3rem);
	color: var(--accent-gold);
	font-weight: 700;
	margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-stat-item span {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.75);
	text-transform: uppercase;
	letter-spacing: 1.5px;
    font-weight: 600;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 140px 20px 80px;
        background-attachment: scroll; /* Performance fix */
    }

    .about-hero-title {
        font-size: 2.8rem;
    }

    .about-hero-stats {
        gap: 40px;
        flex-direction: column; /* Stack stats on mobile */
        padding-top: 40px;
    }

    .hero-stat-item {
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 20px;
    }

    .hero-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Company Story Section */
.company-story-section {
	padding: 120px 20px;
	background: white;
}

.company-story-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header-about {
	text-align: center;
	margin-bottom: 70px;
}

.section-tag-about {
	display: inline-block;
	background: linear-gradient(135deg, rgba(197, 160, 101, 0.1) 0%, rgba(0, 33, 71, 0.1) 100%);
	color: var(--accent-gold);
	padding: 8px 24px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 2px;
	margin-bottom: 20px;
	border: 1px solid rgba(197, 160, 101, 0.2);
}

.section-header-about h2 {
	font-family: var(--font-main);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--primary-navy);
	margin-bottom: 15px;
	line-height: 1.2;
}

.section-header-about p {
	font-size: 1.15rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.story-content-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: start;
}

.story-text h3 {
	font-family: var(--font-main);
	font-size: 2rem;
	color: var(--primary-navy);
	margin-bottom: 25px;
}

.story-text p,
.story-text ul li,
.story-text li {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 20px;
}

.story-visual {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.story-card {
	background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
	padding: 30px;
	border-radius: 12px;
	border-left: 4px solid var(--accent-gold);
	transition: all 0.3s ease;
}

.story-card:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.story-card-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.story-card h4 {
	font-family: var(--font-main);
	font-size: 1.3rem;
	color: var(--primary-navy);
	margin-bottom: 10px;
}

.story-card p {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
}

/* Mission & Vision Section */
.mission-vision-section {
	padding: 100px 20px;
	background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark) 100%);
}

.mission-vision-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	gap: 40px;
}

.mission-box {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 50px 40px;
	transition: all 0.3s ease;
}

.mission-box:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mv-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, rgba(197, 160, 101, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-gold);
	margin-bottom: 25px;
}

.mission-box h3 {
	font-family: var(--font-main);
	font-size: 2rem;
	color: var(--accent-gold);
	margin-bottom: 20px;
}

.mission-box p {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.8;
}

/* Core Values Section */
.values-section {
	padding: 120px 20px;
	background: white;
}

.values-container {
	max-width: 1200px;
	margin: 0 auto;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.value-card {
	background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
	padding: 40px 30px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.value-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-navy) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.value-card:hover::before {
	transform: scaleX(1);
}

.value-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	border-color: rgba(197, 160, 101, 0.3);
}

.value-number {
	font-family: var(--font-main);
	font-size: 3rem;
	font-weight: 700;
	color: rgba(0, 33, 71, 0.08);
	margin-bottom: 15px;
	line-height: 1;
}

.value-card h4 {
	font-family: var(--font-main);
	font-size: 1.5rem;
	color: var(--primary-navy);
	margin-bottom: 15px;
	font-weight: 600;
}

.value-card p {
	font-size: 1rem;
	color: #666;
	line-height: 1.7;
}

/* Leadership Section */
.leadership-section {
	padding: 120px 20px;
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.leadership-container {
	max-width: 1200px;
	margin: 0 auto;
}

.director-showcase {
	background: white;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.director-row {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 60px;
	padding: 60px;
	align-items: start;
}

.director-image-placeholder {
	width: 100%;
	aspect-ratio: 1;
	background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-gold) 100%);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap: 15px; /* Spacing between icons */
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	color: white;
}

/* Mobile Optimization for Director Showcase */
@media (max-width: 900px) {
	.director-row {
		display: flex;
		flex-direction: column;
		gap: 30px;
		padding: 40px 20px;
		text-align: center;
	}

	.director-image-placeholder {
		width: 180px;
		margin: 0 auto;
		gap: 10px;
	}
	
	.director-content h3 {
		font-size: 1.8rem;
	}
	
	.director-highlights {
		justify-content: center;
	}
}

.director-initials {
	font-family: var(--font-main);
	font-size: 5rem;
	font-weight: 700;
	color: white;
}

.director-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.director-role {
	font-size: 0.85rem;
	color: var(--accent-gold);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.director-content h3 {
	font-family: var(--font-main);
	font-size: 2.5rem;
	color: var(--primary-navy);
	margin-bottom: 10px;
	line-height: 1.2;
}

.director-bio {
	font-size: 1.05rem;
	color: #555;
	line-height: 1.8;
}

.director-highlights {
	display: flex;
	gap: 40px;
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.highlight-item {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.highlight-item strong {
	font-family: var(--font-main);
	font-size: 1.5rem;
	color: var(--accent-gold);
	font-weight: 700;
}

.highlight-item span {
	font-size: 0.85rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Why Choose Section */
.why-choose-section {
	padding: 120px 20px;
	background: white;
}

.why-choose-container {
	max-width: 1200px;
	margin: 0 auto;
}

.why-choose-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.why-card {
	background: white;
	padding: 35px 30px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.why-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	border-color: var(--accent-gold);
}

.why-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(197, 160, 101, 0.15) 0%, rgba(0, 33, 71, 0.08) 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--accent-gold);
	font-weight: 700;
}

.why-card h4 {
	font-family: var(--font-main);
	font-size: 1.3rem;
	color: var(--primary-navy);
	font-weight: 600;
	margin: 0;
}

.why-card p {
	font-size: 1rem;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* About CTA Section */
.about-cta-section {
	padding: 100px 20px;
	background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark) 100%);
	text-align: center;
}

.about-cta-container {
	max-width: 800px;
	margin: 0 auto;
}

.about-cta-container h2 {
	font-family: var(--font-main);
	font-size: clamp(2rem, 5vw, 3rem);
	color: white;
	margin-bottom: 20px;
	font-weight: 700;
}

.about-cta-container p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
}

.about-cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary {
	padding: 16px 40px;
	background: var(--accent-gold);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: 2px solid var(--accent-gold);
}

.btn-primary:hover {
	background: transparent;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(197, 160, 101, 0.3);
}

.btn-secondary {
	padding: 16px 40px;
	background: transparent;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: 2px solid white;
}

.btn-secondary:hover {
	background: white;
	color: var(--primary-navy);
	transform: translateY(-2px);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
	.story-content-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.director-showcase {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 40px;
	}

	.director-image-placeholder {
		max-width: 300px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.about-hero {
		padding: 120px 20px 60px;
		min-height: 60vh;
	}

	.about-hero-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.company-story-section,
	.values-section,
	.leadership-section,
	.why-choose-section {
		padding: 80px 20px;
	}

	.mission-vision-section,
	.about-cta-section {
		padding: 80px 20px;
	}

	.mission-vision-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.mission-box {
		padding: 40px 30px;
		min-width: auto;
	}

	.values-grid,
	.why-choose-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.director-showcase {
		padding: 30px 25px;
	}

	.director-highlights {
		flex-direction: column;
		gap: 20px;
	}

	.about-cta-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.about-hero-stats {
		grid-template-columns: 1fr;
	}

	.director-content h3 {
		font-size: 1.8rem;
	}

	.story-card,
	.value-card,
	.why-card {
		padding: 25px 20px;
	}
}

/* Planning & Execution Process Cards */
.process-cards-section {
	padding: 120px 20px;
	background:
		linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)),
		url('../images/AORR (3).webp') center/cover fixed;
	background-attachment: scroll; /* Performance fix */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

/* Subtle overlay for depth */
.process-cards-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.2);
	pointer-events: none;
	z-index: 0;
}

.process-cards-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.section-header-about {
	text-align: center;
	margin-bottom: 70px;
	position: relative;
	z-index: 1;
}

.section-header-about h2 {
	color: var(--primary-navy);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header-about p {
	color: #333;
}

.section-header-about .section-tag-about {
	background: rgba(197, 160, 101, 0.2);
	border: 1px solid var(--accent-gold);
}

.cards-grid {
	display: flex;
	flex-direction: column;
	gap: 80px;
	max-width: 1200px;
	margin: 60px auto 0;
	position: relative;
	padding: 40px 0;
}

/* Central vertical line */
.cards-grid::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg,
			transparent 0%,
			rgba(197, 160, 101, 0.8) 10%,
			var(--accent-gold) 50%,
			rgba(197, 160, 101, 0.8) 90%,
			transparent 100%);
	box-shadow: 0 0 20px rgba(197, 160, 101, 0.5);
	transform: translateX(-50%);
	z-index: 1;
}

/* Timeline container for each card */
.flip-card {
	position: relative;
	width: 45%;
	height: 320px;
	background: linear-gradient(-45deg, var(--accent-gold) 0%, var(--primary-navy) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
	cursor: pointer;
	z-index: 1;
}

/* Alternate positioning */
.flip-card:nth-child(odd) {
	align-self: flex-start;
	margin-left: 0;
}

.flip-card:nth-child(even) {
	align-self: flex-end;
	margin-right: 0;
}

/* Timeline dot connectors */
.flip-card::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background: var(--accent-gold);
	border: 4px solid var(--primary-navy);
	border-radius: 50%;
	z-index: 10;
	box-shadow: 0 0 0 4px rgba(197, 160, 101, 0.2);
}

/* Dot position for left cards */
.flip-card:nth-child(odd)::before {
	right: -60px;
	top: 50%;
	transform: translateY(-50%);
}

/* Dot position for right cards */
.flip-card:nth-child(even)::before {
	left: -60px;
	top: 50%;
	transform: translateY(-50%);
}

/* Connecting line from card to dot */
.flip-card::after {
	content: '';
	position: absolute;
	height: 2px;
	background: var(--accent-gold);
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
}

/* Line width for left cards */
.flip-card:nth-child(odd)::after {
	right: 0;
	width: 60px;
}

/* Line width for right cards */
.flip-card:nth-child(even)::after {
	left: 0;
	width: 60px;
}

.flip-card svg {
	width: 64px;
	height: 64px;
	fill: white;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.flip-card:hover {
	transform: rotate(-5deg) scale(1.05);
	box-shadow: 0 20px 40px rgba(0, 33, 71, 0.25);
}

.flip-card__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 100%;
	height: 100%;
	padding: 30px;
	box-sizing: border-box;
	background-color: #fff;
	opacity: 0;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.flip-card:hover .flip-card__content {
	transform: translate(-50%, -50%) rotate(0deg);
	opacity: 1;
}

.flip-card__title {
	margin: 0 0 15px 0;
	font-size: 1.5rem;
	color: var(--primary-navy);
	font-weight: 700;
	font-family: var(--font-main);
}

.flip-card__description {
	margin: 0;
	font-size: 0.95rem;
	color: #555;
	line-height: 1.6;
}

.flip-card:hover svg {
	scale: 0;
	transform: rotate(-45deg);
}

/* Gradient variations with background images for each card */
.cards-grid .flip-card:nth-child(1) {
	background: linear-gradient(rgba(0, 33, 71, 0.7), rgba(65, 105, 225, 0.7)),
		url('../images/ChatGPT Image Jan 13, 2026, 05_14_11 PM.webp') center/cover;
}

.cards-grid .flip-card:nth-child(2) {
	background: linear-gradient(rgba(197, 160, 101, 0.7), rgba(139, 105, 20, 0.7)),
		url('../images/global1.webp') center/cover;
}

.cards-grid .flip-card:nth-child(3) {
	background: linear-gradient(rgba(0, 33, 71, 0.7), rgba(91, 143, 185, 0.7)),
		url('../images/global2.webp') center/cover;
}

.cards-grid .flip-card:nth-child(4) {
	background: linear-gradient(rgba(197, 160, 101, 0.7), rgba(0, 33, 71, 0.7)),
		url('../images/global3.webp') center/cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.flip-card {
		width: 48%;
	}
}

@media (max-width: 768px) {
	.process-cards-section {
		padding: 80px 20px;
	}

	/* Remove timeline for mobile - stack cards */
	.cards-grid {
		gap: 30px;
		padding: 20px 0;
	}

	.cards-grid::before {
		display: none;
	}

	.flip-card {
		width: 100%;
		align-self: center !important;
	}

	/* Remove dots and connectors on mobile */
	.flip-card::before,
	.flip-card::after {
		display: none;
	}
}

@media (max-width: 480px) {
	.flip-card {
		height: 260px;
	}

	.flip-card__content {
		padding: 20px;
	}

	.flip-card__title {
		font-size: 1.2rem;
		margin-bottom: 12px;
	}

	.flip-card__description {
		font-size: 0.85rem;
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	.cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.process-cards-section {
		padding: 80px 20px;
	}

	.cards-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.flip-card {
		height: 280px;
	}

	.flip-card svg {
		width: 52px;
		height: 52px;
	}

	.flip-card__content {
		padding: 25px;
	}

	.flip-card__title {
		font-size: 1.3rem;
	}

	.flip-card__description {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.flip-card {
		height: 260px;
	}

	.flip-card__content {
		padding: 20px;
	}

	.flip-card__title {
		font-size: 1.2rem;
		margin-bottom: 12px;
	}

	.flip-card__description {
		font-size: 0.85rem;
	}
}

/* Footer */
/* Vooma-Style Footer */
.footer {
	background-color: var(--primary-navy);
	/* Deep Navy using variable */
	color: white;
	padding: 80px 50px 30px;
	font-family: var(--font-body);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-large-logo {
	font-family: var(--font-main);
	font-size: 10vw;
	/* Responsive huge text */
	font-weight: 700;
	line-height: 1;
	color: white;
	margin-bottom: 50px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-logo-icon {
	width: 6vw;
	height: 6vw;
	border: 4px solid var(--accent-gold);
	transform: rotate(45deg);
	display: inline-block;
}

.footer-content-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.5fr;
	gap: 60px;
	margin-bottom: 80px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 60px;
}

.footer-tagline {
	font-size: 1.2rem;
	color: #aaa;
	max-width: 300px;
	line-height: 1.6;
}

.footer-heading {
	color: #666;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.footer-contact p {
	margin-bottom: 10px;
	color: white;
	font-size: 1rem;
}

.footer-contact a {
	color: white;
	text-decoration: none;
	transition: 0.3s;
}

.footer-contact a:hover {
	color: var(--accent-gold);
}

.newsletter-form {
	display: flex;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding-bottom: 10px;
}

.newsletter-input {
	background: transparent;
	border: none;
	color: white;
	flex-grow: 1;
	font-size: 1rem;
	padding: 5px;
}

.newsletter-input:focus {
	outline: none;
	border-bottom: 1px solid white;
}

.newsletter-btn {
	background: white;
	color: black;
	border: none;
	padding: 8px 15px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.8rem;
	cursor: pointer;
	letter-spacing: 1px;
}

.footer-bottom-nav {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-nav-link {
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 1px;
	transition: 0.3s;
}

.footer-nav-link:hover {
	color: var(--accent-gold);
}

@media (max-width: 768px) {
	.footer {
		padding: 60px 20px;
	}

	.footer-content-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-large-logo {
		font-size: 20vw;
		/* Even bigger on mobile relative to width */
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.footer-logo-icon {
		width: 40px;
		height: 40px;
		border-width: 2px;
	}

	.footer-bottom-nav {
		flex-direction: column;
		gap: 15px;
	}
}

/* Mobile */
/* Contact Split Layout (Desktop) */
.contact-split-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: stretch;
}

/* Mobile Optimization */
@media (max-width: 768px) {

	/* Layout & Spacing */
	.hero {
		padding-top: 150px;
		padding-bottom: 100px;
		/* More bottom space */
		justify-content: flex-start;
		height: auto;
		min-height: 100vh;
	}

	.contact-split-layout {
		grid-template-columns: 1fr;
		/* Stack form and map */
		gap: 40px;
	}

	.philosophy-section,
	.skills-section,
	.contact-section {
		padding: 60px 20px;
	}

	.stats-section {
		padding: 50px 0;
	}

	/* Typography */
	.hero-title {
		font-size: 2rem;
		line-height: 1.2;
		padding: 0 10px;
	}

	.hero-subtitle {
		font-size: 0.95rem;
		padding: 8px 15px;
		margin-bottom: 15px;
	}

	/* Hero Description Text Fix */
	.hero-overlay-text p:nth-of-type(2) {
		font-size: 0.95rem !important;
		/* Force smaller size */
		margin: 10px auto 20px !important;
		padding: 0 15px;
		line-height: 1.5;
	}

	/* Hero Buttons Fix */
	.card-cta {
		display: block;
		/* Stack buttons */
		width: 100%;
		margin: 10px 0 !important;
		/* Vertical spacing */
		text-align: center;
	}

	.hero-overlay-text div {
		display: flex;
		flex-direction: column;
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.section-title,
	.philosophy-headline {
		font-size: 2rem;
	}

	.philosophy-subheading {
		font-size: 1rem;
		text-align: left;
	}

	.stat-number {
		font-size: 2.8rem;
	}

	.director-card {
		padding: 25px;
	}

	.director-card h4 {
		font-size: 1.3rem;
	}

	/* Grid Adjustments */
	.contact-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.stats-grid,
	.skills-hexagon-grid {
		gap: 20px;
		padding: 0 10px;
	}

	/* Carousel Adjustment */
	.carousel-container {
		height: 420px;
		margin-top: 30px;
		/* overflow-x: hidden; handled by main class, but safe to keep container bounds */
	}

	.carousel-item {
		width: 260px;
		max-width: 85vw; /* Extra safety for fold devices */
		height: 360px;
	}

	.card-title {
		font-size: 1.2rem;
		margin: 15px 15px 5px;
	}

	.card-description {
		font-size: 0.85rem;
		margin: 0 15px 15px;
	}

	/* Navigation - Mobile Menu */
	.menu-toggle {
		display: block;
		/* Ensure toggle is visible if handled by JS/HTML */
		cursor: pointer;
		z-index: 1001;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 300px;
		height: 100vh;
		background: var(--primary-dark);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: 0.4s ease;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
		padding: 20px;
		backdrop-filter: blur(10px);
	}

	.nav-menu.active {
		right: 0;
	}

	.nav-menu li {
		margin: 15px 0;
	}

	.nav-link {
		font-size: 1.2rem;
		color: white;
	}

	/* Buttons */
	.submit-btn,
	.card-cta {
		min-height: 48px;
		/* Touch friendly */
		width: 100%;
		/* Full width buttons usually better on mobile */
	}

	.philosophy-section {
		clip-path: none;
	}
}

/* Burger Menu Styles (Default Desktop Hidden) */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
}

.menu-toggle span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: var(--accent-gold);
	border-radius: 3px;
	transition: 0.3s;
}

@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}
}

/* New Contact Form Styles */
/* Modern Contact Form - Professional & Next-Gen */
.card2 {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
	border-radius: 20px;
	padding: 40px;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(0, 33, 71, 0.08);

	position: relative;
	overflow: hidden;
}

/* Decorative gradient top bar */
.card2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg,
			var(--primary-navy) 0%,
			var(--accent-gold) 50%,
			var(--primary-navy) 100%);
	background-size: 200% 100%;
	animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

.form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

#heading {
	text-align: center;
	font-family: var(--font-main);
	font-size: 2rem;
	color: var(--primary-navy);
	margin-bottom: 10px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	width: 100%;
}

#heading::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.field {
	position: relative;
	width: 100%;
}

/* Modern Input Fields */
.input-field {
	width: 100%;
	padding: 16px 20px;
	border-radius: 12px;
	border: 2px solid #e8eaed;
	background: #f8f9fa;
	font-family: var(--font-body);
	font-size: 1rem;
	color: #333;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	outline: none;
}

.input-field:focus {
	background: white;
	border-color: var(--primary-navy);
	box-shadow:
		0 0 0 4px rgba(0, 33, 71, 0.08),
		0 8px 16px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}

.input-field::placeholder {
	color: #999;
	transition: all 0.3s ease;
}

.input-field:focus::placeholder {
	color: transparent;
}

/* Icons removed for performance - :has() selector is slow */

/* Textarea */
textarea.input-field {
	resize: vertical;
	min-height: 120px;
	padding-top: 16px;
}

/* Select dropdown - Fixed */
select.input-field {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #f8f9fa;
	padding-right: 40px;
}

/* Simple arrow using CSS */
.field:has(select)::after {
	content: '▼';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #666;
	pointer-events: none;
	font-size: 0.8rem;
}

/* Modern Submit Button - Optimized */
.button1 {
	width: 100%;
	padding: 16px;
	background: var(--primary-navy);
	color: white;
	border: none;
	border-radius: 12px;
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 1.05rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-top: 10px;
	box-shadow: 0 4px 15px rgba(0, 33, 71, 0.25);
}

.button1:hover {
	background: var(--accent-gold);
	box-shadow: 0 6px 20px rgba(197, 160, 101, 0.4);
	transform: translateY(-2px);
}

.button1:active {
	transform: translateY(0);
}

/* Mobile Form Responsive */
@media (max-width: 768px) {
	.card2 {
		padding: 30px 20px;
		border-radius: 16px;
	}

	#heading {
		font-size: 1.6rem;
	}

	.input-field {
		padding: 14px 18px;
		padding-left: 45px;
	}

	.button1 {
		padding: 14px;
		font-size: 0.95rem;
	}
}

/* Split Layout Generic (Reused for About) */
.split-layout-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media (max-width: 768px) {
	.split-layout-about {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.split-layout-about>div:nth-child(2) {
		height: 300px !important;
		margin-top: 20px;
		overflow: hidden; /* Keep image contained */
	}

	.split-layout-about img {
		height: 100%;
		object-fit: cover;
	}
}

/* Bento Feature Section */
.bento-section {
	padding: 100px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.bento-header {
	margin-bottom: 40px;
}

.bento-tag {
	color: var(--accent-gold);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 10px;
}

.bento-title {
	font-family: var(--font-main);
	font-size: 2.5rem;
	color: white;
	font-weight: 700;
}

.bento-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 30px;
}

.bento-large-card {
	background: var(--bg-light);
	border-radius: 20px;
	padding: 40px;
	position: relative;
	overflow: hidden;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bento-mockup-container {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.bento-mockup-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.bento-large-card:hover img {
	transform: scale(1.05);
}

.bento-floating-ui {
	position: absolute;
	top: 20px;
	right: 20px;
	background: white;
	padding: 10px 20px;
	border-radius: 50px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--primary-navy);
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 2;
}

.bento-right-stack {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.bento-small-card {
	background: #f8f9fc;
	/* Light blue-ish gray */
	padding: 30px;
	border-radius: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: 0.3s;
}

.bento-small-card:hover {
	background: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transform: translateY(-5px);
}

.bento-icon {
	font-size: 2rem;
	margin-bottom: 15px;
	color: var(--primary-navy);
}

.bento-small-card h3 {
	color: var(--primary-navy);
	font-size: 1.25rem;
	margin-bottom: 10px;
	font-weight: 700;
}

.bento-small-card p {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Mobile Bento */
@media (max-width: 768px) {
	.bento-grid {
		grid-template-columns: 1fr;
	}

	.bento-large-card {
		min-height: 300px;
		padding: 20px;
	}

	.bento-title {
		font-size: 2rem;
	}
}

/* Dark Tech Bento Section (Inspiration) */
.tech-section {
	background-color: #050a10;
	/* Very deep dark */
	padding: 100px 20px;
	color: white;
}

.tech-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.tech-tag {
	color: var(--accent-gold);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: inline-block;
	margin-bottom: 15px;
	border: 1px solid rgba(197, 160, 101, 0.3);
	padding: 5px 15px;
	border-radius: 50px;
}

.tech-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 25px;
	max-width: 1200px;
	margin: 0 auto;
}

.tech-card {
	background: #0f1724;
	/* Dark Card BG */
	border: 1px solid rgba(255, 255, 255, 0.08);
	/* Subtle border */
	border-radius: 16px;
	padding: 30px;
	position: relative;
	overflow: hidden;
	transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	flex-direction: column;
}

.tech-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-gold);
	/* Glow effect */
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(197, 160, 101, 0.2);
}

/* Card Visuals */
.tech-visual {
	height: 180px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.tech-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
}

/* Typography */
.tech-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: white;
}

.tech-card p {
	color: #9ca3af;
	/* Muted text */
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

/* Specific Layout Adjustments */
.tech-card-tall {
	grid-column: 3;
	grid-row: 1 / span 2;
	min-height: 500px;
	justify-content: space-between;
}

.tech-card-tall .tech-visual {
	flex-grow: 1;
	margin-bottom: 30px;
	height: auto;
	background: radial-gradient(circle at center, rgba(197, 160, 101, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

.tech-card-wide {
	grid-column: 1 / span 2;
	grid-row: 2;
	flex-direction: row;
	align-items: center;
	gap: 30px;
}

.tech-card-wide .tech-visual {
	width: 50%;
	height: 100%;
	margin-bottom: 0;
}

.tech-card-wide-content {
	width: 50%;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
	.tech-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.tech-card-tall,
	.tech-card-wide {
		grid-column: auto;
		grid-row: auto;
	}

	.tech-card-wide {
		flex-direction: column;
	}

	.tech-card-wide .tech-visual,
	.tech-card-wide-content {
		width: 100%;
	}
}

html {
	scroll-behavior: smooth;
}

/* Global Impact Section (Dark) */
.global-impact-section {
	background: radial-gradient(circle at 80% 50%, #0b1a2b 0%, #000000 70%);
	/* Deep Navy Gradient */
	color: white;
	padding: 120px 20px;
	position: relative;
	/* Optimize Repaints */
	transform: translateZ(0);
	overflow: visible; /* Prevent forced scroll context */
	height: auto;
	min-height: unset;
}

.impact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
	overflow: visible;
	height: auto;
	min-height: unset;
}

.impact-headline {
	font-family: var(--font-main);
	font-size: 3.5rem;
	line-height: 1.1;
	margin-bottom: 80px;
	text-transform: uppercase;
	font-weight: 800;
	grid-column: 1 / -1;
	letter-spacing: -1px;
	background: linear-gradient(to right, #fff, #999);
	background-clip: text;
	/* Standard property */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.impact-stats-list {
	display: flex;
	flex-direction: column;
	gap: 50px;
	overflow: visible;
}

.impact-stat-item strong {
	display: block;
	font-size: 4.5rem;
	line-height: 1;
	font-weight: 800;
	color: white;
	margin-bottom: 5px;
	text-shadow: 0 0 30px rgba(197, 160, 101, 0.3);
	/* Gold glow */
}

.impact-stat-item span {
	font-size: 1.1rem;
	color: #8899aa;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.impact-visual-globe {
	width: 100%;
	max-width: 500px;
	height: 500px;
	/* SIMPLIFIED: Using simple radial/linear gradients instead of 'repeating' which can be heavy. */
	background:
		radial-gradient(circle at 50% 50%, rgba(75, 200, 255, 0.05) 0%, transparent 70%),
		repeating-linear-gradient(90deg, transparent 0, transparent 49px, rgba(75, 200, 255, 0.05) 50px);
	border-radius: 50%;
	position: relative;
	margin: 0 auto;
	/* Reduced shadow complexity */
	box-shadow: inset 0 0 100px #000;
	/* Hardware Acceleration */
	transform: rotate(-15deg) translateZ(0);
	border: 1px solid rgba(255, 255, 255, 0.05);
	/* Hint to browser */
	will-change: transform;
	overflow: hidden;
}

/* Force hide scrollbars as requested */
/* Standard scroll behavior restored */

/* Background decorative glow */
.global-impact-section::before {
	content: '';
	position: absolute;
	top: 20%;
	right: 0;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(11, 26, 43, 0.8) 0%, transparent 70%);
	z-index: 1;
	pointer-events: none;
	transform: translateZ(0);
}

/* Detailed Features Section (Light) */
.features-grid-section {
	padding: 100px 20px;
	background: white;
	border-bottom: 1px solid #eee;
}

.features-top-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto 100px;
	border-bottom: 1px dashed #ccc;
	padding-bottom: 80px;
}

.feature-col {
	padding-right: 20px;
	border-right: 1px dashed #ccc;
}

.feature-col:last-child {
	border-right: none;
	padding-right: 0;
}

.feature-col-icon {
	font-size: 2.5rem;
	color: var(--primary-navy);
	margin-bottom: 20px;
	display: block;
}

.feature-col h4 {
	font-size: 1.4rem;
	color: var(--primary-navy);
	margin-bottom: 15px;
	font-weight: 700;
}

.feature-col p {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.6;
}

.features-split-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
}

.alert-card-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: #f4f6f9;
	padding: 40px;
	border-radius: 20px;
}

.alert-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 25px;
	background: white;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	border-radius: 12px;
	border: 1px solid #eee;
}

.alert-meta h5 {
	font-size: 1.1rem;
	margin-bottom: 5px;
	color: var(--primary-navy);
}

.alert-tag {
	background: black;
	color: white;
	padding: 8px 15px;
	border-radius: 6px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
}

/* Mobile Responsive */
@media (max-width: 900px) {
	.impact-headline {
		font-size: 2rem;
		word-wrap: break-word; /* Ensure clear wrapping */
	}

	.impact-stat-item strong {
		font-size: 2.2rem; /* Prevent text overflow */
	}

	.impact-container {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 0 15px;
		overflow: visible; /* Restore natural flow */
	}

	.impact-visual-globe {
		height: 280px;
		width: 100%;
		max-width: 260px; /* Ensure it fits */
		margin: 30px auto 0;
		right: 0;
	}

	.global-impact-section {
		padding: 80px 15px;
	}

	.impact-stats-list {
		gap: 30px;
	}

	.features-top-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		border-bottom: none;
		padding-bottom: 40px;
	}

	.feature-col {
		border-right: none;
		border-bottom: 1px dashed #ccc;
		padding-bottom: 40px;
		padding-right: 0;
	}

	.features-split-bottom {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* Import–Export Background Animation */
/* Container Layer - Fixed to viewport for "Always on Screen" effect */
.bg-animation-container {
	position: fixed;
	/* Fixed position */
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	/* Let clicks pass through */
	z-index: 5;
	/* High enough to be seen, but likely needs balancing. 
                   Nav is usually z-index 100+. 
                   Content is usually 1-2. 
                   "Upper most" request -> visible over standard backgrounds. */
	overflow: hidden;
	mix-blend-mode: overlay;
	/* Cool blending effect */
}

/* Base Element */
.bg-anim-element {
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0.25;
	/* Reduced from 0.6 to be less distracting */
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
	/* Softer Glow */
	will-change: transform;
}

/* Planes (Air Transport) */
.plane-1 {
	width: 80px;
	height: 80px;
	top: 15vh;
	left: -150px;
	background-image: url('images/plane.svg');
	animation: flyRight 25s linear infinite;
	transform: rotate(90deg);
}

.plane-2 {
	width: 40px;
	height: 40px;
	top: 35vh;
	left: -150px;
	background-image: url('images/plane.svg');
	animation: flyRight 35s linear infinite;
	animation-delay: 12s;
	transform: rotate(90deg);
	opacity: 0.15;
	/* Secondary plane fainter */
}

/* Trucks (Land Transport) */
.truck-1 {
	width: 80px;
	height: 80px;
	bottom: 10vh;
	right: -150px;
	background-image: url('images/truck.svg');
	animation: driveLeft 30s linear infinite;
	transform: scaleX(-1);
}

.truck-2 {
	width: 50px;
	height: 50px;
	bottom: 25vh;
	right: -150px;
	background-image: url('images/truck.svg');
	animation: driveLeft 45s linear infinite;
	animation-delay: 18s;
	transform: scaleX(-1);
	opacity: 0.15;
	/* Secondary truck fainter */
}

/* Animations */
@keyframes flyRight {
	0% {
		left: -150px;
	}

	100% {
		left: 110vw;
	}
}

@keyframes driveLeft {
	0% {
		right: -150px;
	}

	100% {
		right: 110vw;
	}
}

/* Mobile Fallback - keep visible but smaller if user wants "always on screen" */
@media (max-width: 768px) {
	.bg-animation-container {
		opacity: 0.5;
		/* Reduce intensity on mobile */
	}

	.plane-1,
	.truck-1 {
		width: 50px;
		height: 50px;
	}
}

/* ====================
   COMPREHENSIVE RESPONSIVE DESIGN
   ==================== */

/* Small Mobile Devices (≤ 480px) */
@media (max-width: 480px) {
	.header {
		padding: 10px 15px !important;
	}

	.hero {
		padding-top: 120px !important;
		padding-bottom: 60px !important;
	}

	.hero-overlay-text h1 {
		font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
	}

	.section-title {
		font-size: clamp(1.6rem, 6vw, 2rem) !important;
	}

	.impact-headline {
		font-size: clamp(1.8rem, 7vw, 2.2rem) !important;
	}

	.skill-hexagon,
	.stat-card,
	.bento-small-card,
	.tech-card {
		padding: 20px !important;
	}

	.card-cta,
	.button1,
	.submit-btn {
		padding: 12px 20px !important;
		font-size: 0.9rem !important;
		width: 100% !important;
	}

	.stats-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Tablet Devices (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
	.skills-hexagon-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 25px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.tech-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.tech-card-tall {
		grid-column: span 2 !important;
		grid-row: auto !important;
	}

	.features-top-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.impact-container {
		grid-template-columns: 1fr !important;
	}
}

/* Laptop Devices (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
	.skills-hexagon-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tech-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tech-card-tall {
		grid-column: 2;
		grid-row: 1 / span 2;
	}

	.features-top-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Smooth Transitions */
button,
a,
.card-cta,
.nav-link,
.skill-hexagon,
.stat-card,
.bento-small-card,
.tech-card,
.alert-card {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* No Horizontal Scroll */
body,
html {
	max-width: 100vw;
	overflow-x: hidden;
}

.philosophy-container,
.skills-section,
.bento-section,
.tech-section,
.features-grid-section {
	overflow-x: hidden;
	max-width: 100%;
}

/* Touch Targets */
@media (hover: none) {

	.nav-link,
	.card-cta,
	button {
		min-height: 44px;
		padding: 12px 20px;
	}
}

/* Reveal Card (Flip/Hover Style) - New Component */
.reveal-card {
	position: relative;
	width: 100%;
	min-height: 250px;
	background-color: #f2f2f2;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	perspective: 1000px;
	box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
	transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.front-title {
	margin-top: 20px;
	font-family: var(--font-main);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-navy);
	text-align: center;
	padding: 0 15px;
	transition: all 0.3s ease;
}

.reveal-card:hover .front-title {
	opacity: 0;
	transform: translateY(-10px);
}

.reveal-card svg {
	width: 48px;
	height: 48px;
	fill: #333;
	transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-card:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.reveal-card__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
	box-sizing: border-box;
	background-color: #f2f2f2;
	transform: rotateX(-90deg);
	transform-origin: bottom;
	transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.reveal-card:hover .reveal-card__content {
	transform: rotateX(0deg);
}

.reveal-card__title {
	margin: 0;
	font-size: 1.25rem;
	color: #333;
	font-weight: 700;
	margin-bottom: 10px;
	font-family: var(--font-main);
}

.reveal-card:hover svg {
	transform: scale(0);
	opacity: 0;
}

.reveal-card__description {
	margin: 10px 0 0;
	font-size: 0.9rem;
	color: #555;
	line-height: 1.4;
}

/* Specific styling to match the theme */
.reveal-card {
	background: white;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	border: 1px solid #eee;
}

.reveal-card svg {
	color: var(--accent-gold);
	fill: currentColor;
}

.reveal-card:hover {
	border-color: var(--accent-gold);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reveal-card__content {
	background: white;
}

/* =========================================
   INTEGRATED BENTO GRID (Compact Version)
   ========================================= */
.bento-wrapper {
	padding: 60px 20px;
	/* Reduced from 100px */
	background: var(--primary-dark);
	color: white;
}

.bento-container {
	max-width: 1100px;
	/* Slightly tighter width */
	margin: 0 auto;
}

.bento-header-center {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 40px;
	/* Reduced bottom margin */
}

.bento-tag {
	color: var(--accent-gold);
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 10px;
	display: block;
}

.bento-headline {
	font-family: var(--font-main);
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	/* Reduced max size */
	font-weight: 700;
	color: white;
	line-height: 1.2;
}

.bento-grid-layout {
	display: grid;
	gap: 15px;
	/* Tighter gap */
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.bento-grid-layout {
		margin-top: 40px;
	}
}

@media (min-width: 1024px) {
	.bento-grid-layout {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(2, minmax(220px, auto));
		/* Reduced height from 300px */
	}
}

.bento-card {
	position: relative;
	background: #1f2937;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* Specific Spans */
.bento-span-2-row {
	grid-row: span 2;
}

.bento-col-start-2 {
	grid-column-start: 2;
}

.bento-inner {
	position: relative;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	background: #111827;
	display: flex;
	flex-direction: column;
}

.bento-content {
	padding: 20px;
	/* Reduced from 30px */
	z-index: 10;
}

.bento-title-sm {
	font-size: 1rem;
	/* Slightly smaller */
	font-weight: 600;
	color: white;
}

.bento-desc-sm {
	margin-top: 5px;
	font-size: 0.85rem;
	color: #9ca3af;
	line-height: 1.4;
}

.bento-image-container {
	flex-grow: 1;
	position: relative;
	min-height: 150px;
	/* Reduced min-height */
	overflow: hidden;
}

.bento-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

/* =========================================
   INTEGRATED PRODUCT CATALOG (Adapted from Tailwind)
   ========================================= */
.catalog-section {
	padding: 100px 20px;
	background: white;
}

.catalog-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

@media (min-width: 600px) {
	.catalog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.catalog-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.catalog-item {
	width: 100%;
	transition: transform 0.3s ease;
}

.catalog-item:hover {
	transform: translateY(-5px);
}

.catalog-image-box {
	display: block;
	position: relative;
	height: 260px;
	border-radius: 8px;
	overflow: hidden;
	background: #f4f6f9;
}

.catalog-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}

.catalog-item:hover .catalog-image-box img {
	transform: scale(1.05);
}

.catalog-details {
	margin-top: 15px;
}

.catalog-category {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	color: #6b7280;
	/* text-gray-500 */
	text-transform: uppercase;
	margin-bottom: 4px;
}

.catalog-title {
	font-family: var(--font-main);
	color: var(--primary-navy);
	/* text-gray-900 */
	font-size: 1.125rem;
	font-weight: 600;
}

.catalog-price {
	margin-top: 4px;
	color: var(--accent-gold);
	/* Price highlight */
	font-weight: 500;
}/* =========================================
   TRAVEL INSPIRED SECTION (Hotels & Destinations)
   Adapted for AORR Services
   ========================================= */

/* Section Wrapper */
.travel-section-wrapper {
    padding: 100px 20px;
    background: #ffffff;
    color: var(--primary-navy);
}

.travel-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Headers */
.travel-header {
    margin-bottom: 30px;
}

.travel-headline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    font-family: var(--font-main);
    margin-bottom: 20px;
}

/* 1. Masonry Grid (Popular Destinations -> Global Hubs) */
.masonry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols tablet */
    }
}

@media (min-width: 1024px) {
    .masonry-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        /* 4 cols desktop */
        grid-template-rows: 200px 200px;
        /* Fixed row heights */
    }
}

/* Grid Items */
.masonry-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Spans for Desktop Masonry Layout */
@media (min-width: 1024px) {
    .masonry-span-2-row {
        grid-column: span 1;
        grid-row: span 2;
    }

    .masonry-col-combo {
        display: flex;
        flex-direction: column;
        gap: 20px;
        grid-row: span 2;
    }

    .masonry-col-combo .masonry-item {
        flex: 1;
    }
}

/* Labels (Badges) */
.masonry-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 2. Horizontal Scroll List (Hotels -> Logistics Packages) */
/* 2. Horizontal Scroll List (Hotels -> Logistics Packages) */
/* Definition moved to 'Travel Inspired Section' to avoid conflicts */

.h-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.h-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.h-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.h-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h-badge-rating {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    font-weight: 700;
    color: #4ade80;
    /* Green score */
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.h-btn-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #888;
}

.h-card-content {
    padding: 20px;
}

.h-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.h-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.h-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.h-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.h-price span {
    font-weight: 400;
    font-size: 0.8rem;
    color: #888;
}

.h-arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-navy);
    font-size: 1.2rem;
}/* =========================================
   TRAVEL INSPIRED SECTION - MOBILE OPTIMIZED
   ========================================= */

/* Mobile First Wrapper */
.travel-section-wrapper {
    padding: 60px 20px;
    background: #ffffff;
    color: var(--primary-navy);
    overflow: hidden;
    /* Prevent horizontal scroll on body */
}

/* Headers with a bit more flair */
.travel-header {
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.travel-headline {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-navy);
    font-family: var(--font-main);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.travel-headline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

/* 1. Masonry Grid (Global Hubs) */
.masonry-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile default */
    gap: 15px;
    margin-bottom: 50px;
}

.masonry-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Subtle shadow for depth */
    height: 200px;
    /* Fixed height on mobile for consistency */
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.masonry-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 50px;
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    /* Modern glass effect */
}

/* 2. Horizontal Scroll Grid (The "App" Feal) */
.h-scroll-grid {
    display: flex;
    /* Flexrow for horizontal scroll */
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 30px;
    /* Space for scrollbar/shadow */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll iOS */
    margin: 0 -20px;
    /* Bleed to edges on mobile */
    padding-left: 20px;
    /* Restore padding start */
    padding-right: 20px;
    /* Restore padding end */
}

/* Hide scrollbar for cleaner look if requested, but keep usability usually */
.h-scroll-grid::-webkit-scrollbar {
    height: 6px;
}

.h-scroll-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.h-scroll-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.h-card {
    background: white;
    border-radius: 20px;
    /* Softer layout */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    min-width: 280px;
    /* Usage: Fixed width cards for carousel */
    flex: 0 0 auto;
    scroll-snap-align: center;
    /* Snap to center on mobile */
}

.h-card-image {
    position: relative;
    height: 180px;
}

.h-card-content {
    padding: 20px;
}

.h-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.h-subtitle {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
}

.h-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #eee;
    /* Dotted line */
    padding-top: 15px;
}

.h-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
}

.h-price span {
    font-weight: 500;
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
}

.h-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f4f6f9;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

/* Desktop Overrides */
@media (min-width: 1024px) {
    .h-scroll-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .h-card {
        min-width: 0;
        /* Reset */
    }

    .masonry-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 200px);
    }

    .masonry-span-2-row {
        grid-column: span 1;
        grid-row: span 2;
        height: 100%;
    }

    .masonry-col-combo {
        display: flex;
        flex-direction: column;
        grid-row: span 2;
        gap: 15px;
    }
}/* =========================================
   MOBILE SPACING & LAYOUT OPTIMIZATIONS
   ========================================= */

/* Mobile Breakpoint (Covers most Phones) */
@media (max-width: 768px) {

    /* 1. Global Section Spacing Reduction */
    .philosophy-section,
    .skills-section,
    .contact-section,
    .delivery-optimization-section,
    /* .travel-section-wrapper handled separately but consistent */
    .values-section,
    .process-cards-section,
    .company-story-section,
    .mission-vision-section {
        padding: 60px 20px !important;
        /* Reduced from 100px+ */
    }

    /* 2. Hero Adjustments */
    .hero {
        padding-top: 120px;
        padding-bottom: 40px;
        min-height: auto;
        /* Allow content to dictate height on mobile */
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem) !important;
        /* Prevent massive text */
    }

    .about-hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    /* 3. Contact Section Stacking */
    .contact-split-layout {
        grid-template-columns: 1fr !important;
        /* Force stack */
        gap: 40px;
    }

    .contact-container {
        padding: 0;
    }

    .contact-split-layout iframe {
        min-height: 300px;
        /* Smaller map on mobile */
        height: 300px;
    }

    /* 4. Section Headers */
    .section-header,
    .section-header-about {
        margin-bottom: 40px !important;
        /* Reduced from 60px */
        text-align: center;
        /* Ensure centering */
    }

    .section-title {
        font-size: 2rem !important;
    }

    /* 5. Philosophy/About specific */
    .philosophy-headline {
        font-size: 2rem !important;
        margin-bottom: 20px;
    }

    .philosophy-subheading {
        font-size: 1rem !important;
        margin-bottom: 30px;
    }

    .director-card {
        padding: 30px 20px;
        border-radius: 12px;
        /* Fix weird radius on mobile */
        border-left: 2px solid var(--accent-gold);
        /* Thinner border */
    }

    /* 6. Grid Adjustments */
    .skills-hexagon-grid,
    .values-grid,
    .cards-grid {
        gap: 20px !important;
        /* Tighter gaps */
    }

    /* 7. Story/About Split Layouts */
    .company-story-container,
    .mission-vision-container {
        flex-direction: column;
        display: flex;
    }

    .story-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-split-layout {
        gap: 20px;
    }

    .hero-title {
        font-size: 3rem;
    }
}/* =========================================
   TRAVEL SECTION SPACING REFINEMENTS
   Aligning with Global Spacing Audit
   ========================================= */

/* 1. Desktop Spacing Restoration (Make it premium/spacious) */
@media (min-width: 769px) {
    .travel-section-wrapper {
        padding: 100px 20px;
        /* Restore desktop standard */
    }

    .masonry-grid {
        gap: 30px;
        /* Match standard grid gap of 30px */
        margin-bottom: 60px;
        /* Match section-header margin */
    }
}

/* 2. Mobile Spacing Alignment (Match mobile_spacing_opt.css rules) */
@media (max-width: 768px) {
    .travel-section-wrapper {
        padding: 60px 20px;
        /* Consistent with other mobile sections */
    }

    .travel-header {
        margin-bottom: 40px;
        /* Match .section-header mobile margin (was 25px) */
    }

    .masonry-grid {
        gap: 20px;
        /* Match global mobile grid gap (was 15px) */
        margin-bottom: 40px;
        /* Consistent spacing */
    }

    /* Pull h-scroll-grid to match new gap */
    .h-scroll-grid {
        gap: 20px;
    }
}
/* =========================================
   SIDEBAR & CATALOG LAYOUT STYLES
   ========================================= */

.catalog-layout {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    /* Ensure content is side-by-side */
    flex-wrap: nowrap; 
}

.catalog-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px; /* Below fixed header */
    height: fit-content;
    padding-right: 10px;
}

.catalog-grid {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important; /* Force 3 columns if space allows */
    gap: 30px;
}
/* Override existing grid media queries if necessary, 
   but since grid-template-columns is defined inside media queries in original CSS,
   we might need to ensure this has specificity or let the original media queries handle the columns 
   but width might change.
*/
@media (min-width: 1024px) {
    .catalog-grid {
         grid-template-columns: repeat(3, 1fr) !important; 
    }
}
@media (max-width: 1200px) {
    .catalog-grid {
         grid-template-columns: repeat(2, 1fr) !important; 
    }
}

/* Sidebar Widgets */
.sidebar-widget {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e0e0e0;
}
.sidebar-widget:last-child {
    border-bottom: none;
}

.widget-title {
    font-family: var(--font-main);
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Search Box */
.search-box {
    display: flex;
    background: #f4f6f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.3s;
}
.search-box:focus-within {
    border-color: var(--accent-gold);
    background: white;
}
.search-box input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 12px;
    font-size: 0.9rem;
    color: #333;
    outline: none;
}
.search-box button {
    background: transparent;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    transition: 0.2s;
}
.search-box button:hover {
    color: var(--primary-navy);
}

/* Category List */
.category-list {
    list-style: none;
}
.category-list li {
    margin-bottom: 12px;
}
.cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s;
    font-weight: 400;
}
.cat-link:hover, .cat-link.active {
    color: var(--primary-navy);
    font-weight: 600;
    transform: translateX(5px);
}
.cat-link .count {
    font-size: 0.8rem;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 12px;
    color: #777;
    transition: 0.2s;
}
.cat-link.active .count {
    background: var(--primary-navy);
    color: white;
}

/* Checkbox Filters */
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    user-select: none;
}
.filter-check input {
    display: none;
}
.check-box {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: 0.2s;
}
.filter-check input:checked + .check-box {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}
.filter-check input:checked + .check-box::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Help Box */
.help-widget {
    background: var(--primary-navy);
    padding: 25px;
    border-radius: 8px;
    color: white;
    text-align: center;
    background-image: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
}
.help-box h4 {
    font-family: var(--font-main);
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: white;
}
.help-box p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.4;
}
.help-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: 0.3s;
}
.help-btn:hover {
    background: white;
    color: var(--primary-navy);
    transform: translateY(-2px);
}

/* =========================================
   RESPONSIVE OPTIMIZATIONS - MOBILE FIRST
   ========================================= */

/* Tablet View (992px - 768px) */
@media (max-width: 991px) {
    .catalog-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .catalog-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding-right: 0;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
        padding-bottom: 20px;
    }
    
    .help-widget {
        grid-column: 1 / -1;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

/* Mobile View (≤768px) - Enhanced for Touch */
@media (max-width: 768px) {
    .catalog-section {
        padding: 60px 15px;
    }
    
    .catalog-layout {
        gap: 25px;
    }
    
    .catalog-sidebar {
        grid-template-columns: 1fr;
        gap: 0;
        background: white;
        border-radius: 8px;
        padding: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    /* Collapsible Widget Style for Mobile */
    .sidebar-widget {
        margin-bottom: 0;
        padding: 20px 15px;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
    }
    
    .sidebar-widget:first-child {
        border-radius: 8px 8px 0 0;
    }
    
    .sidebar-widget:last-child {
        border-bottom: none;
        border-radius: 0 0 8px 8px;
    }
    
    /* Larger Touch Targets */
    .widget-title {
        font-size: 1rem;
        padding: 5px 0;
        cursor: pointer;
        user-select: none;
        position: relative;
    }
    
    /* Mobile: Make widgets collapsible with toggle icon */
    .widget-title::after {
        content: '▼';
        position: absolute;
        right: 0;
        font-size: 0.7rem;
        color: var(--accent-gold);
        transition: transform 0.3s ease;
    }
    
    .sidebar-widget.collapsed .widget-title::after {
        transform: rotate(-90deg);
    }
    
    /* Search box - Full width, larger on mobile */
    .search-box {
        height: 48px;
    }
    
    .search-box input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px;
    }
    
    .search-box button {
        padding: 0 18px;
        font-size: 1.1rem;
    }
    
    /* Category links - Larger touch targets */
    .category-list li {
        margin-bottom: 0;
    }
    
    .cat-link {
        padding: 12px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .cat-link:last-child {
        border-bottom: none;
    }
    
    .cat-link .count {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    /* Filter checkboxes - Larger touch area */
    .filter-check {
        padding: 10px 0;
        font-size: 0.95rem;
    }
    
    .check-box {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    /* Help widget - More prominent on mobile */
    .help-widget {
        padding: 25px 20px;
        margin: 15px;
        border-radius: 8px;
    }
    
    .help-box h4 {
        font-size: 1.05rem;
    }
    
    .help-box p {
        font-size: 0.9rem;
    }
    
    .help-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    /* Product Grid - Single column with better spacing */
    .catalog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .catalog-item {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .catalog-image-box {
        height: 280px;
    }
}

/* Small Mobile (≤480px) - Extra Small Screens */
@media (max-width: 480px) {
    .catalog-section {
        padding: 50px 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .catalog-sidebar {
        margin: 0 -5px;
    }
    
    .sidebar-widget {
        padding: 18px 12px;
    }
    
    .widget-title {
        font-size: 0.95rem;
    }
    
    .search-box input {
        font-size: 15px;
        padding: 12px;
    }
    
    .cat-link {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .filter-check {
        font-size: 0.9rem;
    }
    
    .help-widget {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .catalog-image-box {
        height: 240px;
    }
    
    .catalog-title {
        font-size: 1rem;
    }
    
    .catalog-category {
        font-size: 0.7rem;
    }
}



/* Mobile Carousel Optimization - Native Smooth Scroll */
@media (max-width: 768px) {
    .carousel-container {
        height: auto !important;
        overflow: visible !important;
        padding: 20px 0; /* Vertical padding */
        margin-top: 10px;
    }

    .carousel {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        
        /* Flex Layout for Horizontal Scroll */
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 20px;
        
        /* Scroll Properties */
        overflow-x: auto !important;
        overflow-y: hidden;
        width: 100% !important;
        /* Padding calculation to center the active item: (100vw - CardWidth) / 2 */
        /* Card Width is 75vw. So Padding needs to be roughly 12.5vw on sides. */
        padding: 20px 12.5vw 50px 12.5vw !important; 
        
        /* Smooth Scroll & Snap */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        
        /* Reset 3D */
        perspective: none !important;
        transform-style: flat !important;
    }
    
    /* Hide Scrollbar */
    .carousel::-webkit-scrollbar {
        display: none;
    }
    .carousel {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .carousel-item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 1 !important;
        
        /* Default State (Inactive) */
        opacity: 0.5 !important;
        transform: scale(0.9) !important;
        transition: all 0.3s ease !important;
        
        /* Sizing - 75vw allows partial visibility of neighbors (approx 12.5vw each side) */
        flex: 0 0 75vw !important;
        width: 75vw !important;
        max-width: 340px !important; /* Cap it for larger phones/tablets */
        height: auto !important;
        min-height: auto !important;
        padding-bottom: 10px;
        
        /* Snap & Margin */
        scroll-snap-align: center;
        margin: 0 !important;
        
        /* Deep Shadow & Radius */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
        border-radius: 12px !important;
        background: white !important;
        border: 1px solid transparent; 
    }
    
    /* Highlighted / Active Card State */
    .carousel-item.active-card {
        opacity: 1 !important;
        transform: scale(1) !important;
        z-index: 10 !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
        border-color: var(--accent-gold) !important; /* Optional gold highlight */
    }
    
    .carousel-item .card {
        width: 100%;
        height: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .card-description {
        flex-grow: 0 !important;
        margin-bottom: 25px !important;
    }
}

/* Industries Check List Grid */
.industries-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .industries-check-grid {
        grid-template-columns: 1fr; /* Stack on mobile to prevent overflow */
        font-size: 0.9rem;
    }
    
    .help-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    /* Product Grid - Single column with better spacing */
    .catalog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .catalog-item {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .catalog-image-box {
        height: 280px;
    }
}

/* Small Mobile (≤480px) - Extra Small Screens */
@media (max-width: 480px) {
    .catalog-section {
        padding: 50px 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .catalog-sidebar {
        margin: 0 -5px;
    }
    
    .sidebar-widget {
        padding: 18px 12px;
    }
    
    .widget-title {
        font-size: 0.95rem;
    }
    
    .search-box input {
        font-size: 15px;
        padding: 12px;
    }
    
    .cat-link {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .filter-check {
        font-size: 0.9rem;
    }
    
    .help-widget {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .catalog-image-box {
        height: 240px;
    }
    
    .catalog-title {
        font-size: 1rem;
    }
    
    .catalog-category {
        font-size: 0.7rem;
    }
}



/* Mobile Carousel Optimization - Native Smooth Scroll */
@media (max-width: 768px) {
    .carousel-container {
        height: auto !important;
        overflow: visible !important;
        padding: 20px 0; /* Vertical padding */
        margin-top: 10px;
    }

    .carousel {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        
        /* Flex Layout for Horizontal Scroll */
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 20px;
        
        /* Scroll Properties */
        overflow-x: auto !important;
        overflow-y: hidden;
        width: 100% !important;
        /* Padding calculation to center the active item: (100vw - CardWidth) / 2 */
        /* Card Width is 75vw. So Padding needs to be roughly 12.5vw on sides. */
        padding: 20px 12.5vw 50px 12.5vw !important; 
        
        /* Smooth Scroll & Snap */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        
        /* Reset 3D */
        perspective: none !important;
        transform-style: flat !important;
    }
    
    /* Hide Scrollbar */
    .carousel::-webkit-scrollbar {
        display: none;
    }
    .carousel {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .carousel-item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 1 !important;
        
        /* Default State (Inactive) */
        opacity: 0.5 !important;
        transform: scale(0.9) !important;
        transition: all 0.3s ease !important;
        
        /* Sizing - 75vw allows partial visibility of neighbors (approx 12.5vw each side) */
        flex: 0 0 75vw !important;
        width: 75vw !important;
        max-width: 340px !important; /* Cap it for larger phones/tablets */
        height: auto !important;
        min-height: auto !important;
        padding-bottom: 10px;
        
        /* Snap & Margin */
        scroll-snap-align: center;
        margin: 0 !important;
        
        /* Deep Shadow & Radius */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
        border-radius: 12px !important;
        background: white !important;
        border: 1px solid transparent; 
    }
    
    /* Highlighted / Active Card State */
    .carousel-item.active-card {
        opacity: 1 !important;
        transform: scale(1) !important;
        z-index: 10 !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
        border-color: var(--accent-gold) !important; /* Optional gold highlight */
    }
    
    .carousel-item .card {
        width: 100%;
        height: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .card-description {
        flex-grow: 0 !important;
        margin-bottom: 25px !important;
    }
}

/* Industries Check List Grid */
.industries-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .industries-check-grid {
        grid-template-columns: 1fr; /* Stack on mobile to prevent overflow */
        gap: 10px;
    }
}
.logo-text { font-family: var(--font-main); font-weight: 800; font-size: 1.8rem; color: white; letter-spacing: 1px; margin-left: 0; text-shadow: 0 2px 10px rgba(0,0,0,0.5); text-transform: uppercase; transition: all 0.3s ease; } @media (max-width: 768px) { .logo-text { font-size: 1.4rem; margin-left: 5px; } }
