/* Enhanced CSS with animated semi-dark section backgrounds */
/* All functionality preserved - Updated backgrounds with animations */

:root {
  /* Enhanced Color Palette */
  --primary: #0a4d68;
  --primary-dark: #053b57;
  --primary-light: #088395;
  --primary-gradient: linear-gradient(135deg, #0a4d68 0%, #088395 100%);
  --secondary: #ffa500;
  --secondary-dark: #e69500;
  --secondary-light: #ffb733;
  --secondary-gradient: linear-gradient(135deg, #ffa500 0%, #ffb733 100%);
  --accent: #05bfdb;
  --accent-dark: #0498b0;
  --accent-light: #0dcaf0;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  --light: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #adb5bd;
  --dark: #212529;
  --dark-gray: #495057;
  
  /* New Professional Colors */
  --professional-light: #f8fafc;
  --professional-dark: #1e293b;
  --professional-gray: #64748b;
  --professional-blue: #0ea5e9;
  --professional-indigo: #6366f1;
  --professional-teal: #14b8a6;
  --professional-amber: #f59e0b;
  
  /* Section Background Colors - Semi-dark with good contrast */
  --section-bg-1: linear-gradient(135deg, rgba(10, 77, 104, 0.07) 0%, rgba(8, 131, 149, 0.05) 100%);
  --section-bg-2: linear-gradient(135deg, rgba(30, 41, 59, 0.07) 0%, rgba(51, 65, 85, 0.05) 100%);
  --section-bg-3: linear-gradient(135deg, rgba(14, 165, 233, 0.07) 0%, rgba(59, 130, 246, 0.05) 100%);
  --section-bg-4: linear-gradient(135deg, rgba(99, 102, 241, 0.07) 0%, rgba(139, 92, 246, 0.05) 100%);
  --section-bg-5: linear-gradient(135deg, rgba(20, 184, 166, 0.07) 0%, rgba(16, 185, 129, 0.05) 100%);
  --section-bg-6: linear-gradient(135deg, rgba(245, 158, 11, 0.07) 0%, rgba(217, 119, 6, 0.05) 100%);
  --section-bg-7: linear-gradient(135deg, rgba(220, 38, 38, 0.07) 0%, rgba(239, 68, 68, 0.05) 100%);
  
  /* Gradient Backgrounds */
  --bg-gradient-1: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  --bg-gradient-2: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  --bg-gradient-3: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%);
  --bg-gradient-4: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
  
  /* Accent Colors */
  --accent-1: #0ea5e9;
  --accent-2: #3b82f6;
  --accent-3: #8b5cf6;
  --accent-4: #10b981;
  
  /* Enhanced Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 25px 70px rgba(0, 0, 0, 0.15);
  
  /* Enhanced Border Radius */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  /* Enhanced Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Enhanced Layout */
  --container-max: 1600px;
  --container-padding: 2rem;
  
  /* Enhanced Typography */
  --font-heading: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Source Sans Pro', 'Open Sans', system-ui, -apple-system, sans-serif;
  --font-accent: 'Poppins', var(--font-heading);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--professional-light);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
}

/* FIX: Ensure all containers don't exceed viewport */
.container,
.header-container,
.header-top-container,
.footer-content,
.footer-bottom-content,
.product-modal-layout,
.product-modal-content,
.modal-content {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Accessibility */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 9999;
  transition: var(--transition);
  font-family: var(--font-accent);
  font-weight: 600;
}

.skip-to-content:focus {
  top: 0;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

h1 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2rem;
}

/* Enhanced Section Titles - Subtitles ABOVE headings */
.section-title {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-subtitle {
  display: block;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 auto 1.5rem;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
  max-width: 300px;
  position: relative;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 1.5rem;
  font-size: 3.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-gradient);
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.section-title .lead {
  max-width: 800px;
  margin: 1.5rem auto 0;
  font-size: 1.25rem;
  color: var(--dark-gray);
  font-weight: 400;
}

/* Enhanced Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  overflow-x: hidden;
}

/* Enhanced Section Backgrounds with Animations */
section {
  padding: 8rem 0;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background-attachment: fixed;
  background-size: cover;
}

/* Background Animation Keyframes */
@keyframes subtleMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 300px 300px; }
}

@keyframes float {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 100px 100px, 80px 80px; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

@keyframes slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes movePattern {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

/* Animated Background Patterns */
.animated-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.15;
  background-size: 300px 300px;
  animation: subtleMove 30s linear infinite;
}

/* Each Section with Unique Animated Background */
#hero {
  background: linear-gradient(135deg, rgba(10, 77, 104, 0.95) 0%, rgba(8, 131, 149, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

#about {
  background: var(--section-bg-1);
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(10, 77, 104, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(8, 131, 149, 0.1) 0%, transparent 20%);
  animation: float 20s ease-in-out infinite;
  z-index: -1;
}

#products {
  background: var(--section-bg-2);
  position: relative;
}

#products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.05) 50%, transparent 70%);
  animation: slide 15s linear infinite;
  z-index: -1;
}

#services {
  background: var(--section-bg-3);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  animation: rotate 40s linear infinite;
  z-index: -1;
}

#industries {
  background: var(--section-bg-4);
  position: relative;
}

#industries::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 92, 246, 0.05) 10px, rgba(139, 92, 246, 0.05) 20px);
  animation: movePattern 20s linear infinite;
  z-index: -1;
}

#testimonials {
  background: var(--section-bg-5);
  position: relative;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 40%);
  animation: pulse 12s ease-in-out infinite;
  z-index: -1;
}

#contact {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(59, 130, 246, 0.12) 100%);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(14,165,233,0.1)"/></svg>'),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="5" height="5" fill="rgba(59,130,246,0.1)"/></svg>');
  background-size: 100px 100px, 80px 80px;
  animation: float 25s linear infinite;
  z-index: -1;
}

/* Ensure Content is Clearly Visible */
.container {
  position: relative;
  z-index: 2;
}

.section-title,
.section-subtitle,
h1, h2, h3, h4, h5, h6,
.lead,
p,
.product-card *,
.service-card *,
.industry-card *,
.testimonial-card * {
  position: relative;
  z-index: 3;
}

/* Enhanced Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.875rem 1.75rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-accent);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 1;
  letter-spacing: 0.5px;
  line-height: 1.5;
  min-height: auto;
  height: auto;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--secondary-gradient);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: white;
}

/* Button Variations */
.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.85rem;
  min-height: auto;
  height: auto;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  min-height: auto;
  height: auto;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline::before {
  background: var(--primary-gradient);
}

.btn-outline:hover {
  background: transparent;
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.btn-secondary {
  background: var(--secondary-gradient);
}

.btn-secondary::before {
  background: var(--primary-gradient);
}

.btn-glow {
  box-shadow: 0 5px 20px rgba(10, 77, 104, 0.3);
}

.btn-glow:hover {
  box-shadow: 0 8px 30px rgba(10, 77, 104, 0.4);
}

/* Enhanced Header */
.header-top {
  background: var(--primary-gradient);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.9rem;
  transition: var(--transition);
  font-family: var(--font-body);
  width: 100%;
  overflow-x: hidden;
}

.header-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.header-contact-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.contact-item a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.contact-item a:hover {
  color: var(--secondary-light);
}

.header-trust {
  display: flex;
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

/* Sticky Main Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-main {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--primary);
}

.logo-icon {
  position: relative;
  width: 160px;
  height: 60px;
  flex-shrink: 0;
}

.logo-img {
  position: absolute;
  left: 0;
  top: 50%;
  height: 142px;
  width: auto;
  transform: translateY(-50%);
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.logo-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-heading);
}

.logo-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-family: var(--font-body);
  text-transform: uppercase;
  color: var(--secondary);
}

.logo-tagline {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--dark-gray);
  margin-top: 0.25rem;
  font-family: var(--font-body);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-accent);
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--light);
  color: var(--primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.header-actions .btn {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  min-height: 36px;
}

/* Mobile Menu Button - Hidden on desktop */
.mobile-menu-btn {
  display: none;
}

/* Enhanced Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 77, 104, 0.95), rgba(8, 131, 149, 0.9));
}

/* Hero animation */
.hero-background .overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.hero-content {
  max-width: 1200px;
  max-height: 100%;
  margin: 0 auto;
  color: white;
  text-align: center;
  width: 100%;
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero .highlight {
  color: var(--secondary);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  min-width: 150px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.trust-badge i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.trust-badge span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.trust-badge small {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Enhanced About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.about-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* Statistics */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-text {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

/* Product Categories */
.product-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.category-badge {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid transparent;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.category-badge:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.category-badge.active {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 8px 25px rgba(10, 77, 104, 0.3);
}

/* Enhanced Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  backdrop-filter: blur(10px);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.product-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view {
  background: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  min-height: 40px;
}

.quick-view:hover {
  background: var(--primary);
  color: white;
}

.product-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.product-description {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--dark-gray);
}

.feature i {
  color: var(--primary);
  font-size: 0.9rem;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--dark-gray);
}

.spec i {
  color: var(--success);
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.product-actions .btn {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  min-height: 40px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  text-align: left;
}

.service-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features i {
  color: var(--success);
  font-size: 0.85rem;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.industry-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.industry-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.industry-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-container {
  position: relative;
  padding: 2rem 0;
}

.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.testimonial-company {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-rating {
  color: var(--secondary);
  margin: 1rem 0;
}

.testimonial-date {
  font-size: 0.85rem;
  color: var(--dark-gray);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.indicator {
  text-align: center;
  min-width: 150px;
}

.indicator-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.indicator-label {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3,
.contact-form-container h3 {
  margin-bottom: 0.5rem;
}

.contact-info .lead,
.contact-form-container p {
  margin-bottom: 1.5rem;
}

.contact-details {
  margin: 2rem 0;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.contact-detail h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.social-media {
  margin-top: 2rem;
}

.social-media h4 {
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--light);
  color: var(--primary);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 77, 104, 0.1);
}

.form-control.error {
  border-color: var(--danger);
}

.error-message {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.form-notice {
  margin-top: 1rem;
  text-align: center;
  color: var(--dark-gray);
  font-size: 0.85rem;
}

/* SEO Content Section */
.seo-content {
  background: var(--light);
  padding: 4rem 0;
}

.seo-content h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.seo-section {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.seo-section h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.seo-section p {
  margin-bottom: 1rem;
}

.seo-section ul {
  list-style: none;
  padding-left: 0;
}

.seo-section li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.seo-section li:before {
  content: "✓";
  color: var(--success);
  position: absolute;
  left: 0;
}

/* Enhanced Footer */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #053b57 100%);
  color: white;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
  animation: pulse 10s ease-in-out infinite;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

/* Enhanced Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
  position: relative;
  width: 180px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  height: 150px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

.footer-company-name {
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

/* Enhanced Premium Manufacturer Text */
.footer-tagline {
  display: inline-block;
  color: var(--secondary-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 165, 0, 0.3);
  backdrop-filter: blur(10px);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.footer-tagline:hover {
  background: rgba(255, 165, 0, 0.2);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.footer-description {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Enhanced Footer Trust Badges */
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-trust span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.footer-trust span:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-trust span i {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* Enhanced Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding: 0.3rem 0;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 0.8rem;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Enhanced Contact Info */
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--secondary);
  margin-top: 0.25rem;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.footer-contact p:hover i {
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  width: 100%;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--secondary-gradient);
  border-radius: 2px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.3rem 0;
}

.footer-legal a:hover {
  color: var(--secondary);
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.footer-legal a:hover::after {
  width: 100%;
}

/* Enhanced Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-xl);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0;
}

.modal-body {
  padding: 3rem;
}

/* Product Modal - SIDE BY SIDE Layout */
#productModal .modal-content {
  width: 98vw;
  height: 95vh;
  max-width: 98vw;
  max-height: 95vh;
  margin: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

#productModal .modal-body {
  padding: 0;
  height: 100%;
  overflow: hidden;
}

/* Side-by-side layout */
.product-modal-layout {
  display: flex;
  height: 100%;
  width: 100%;
  background: white;
  overflow: hidden;
}

/* Left Section: Image (50% width) - Enhanced with colors and rounded corners */
.product-modal-left {
  flex: 0 0 50%;
  width: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.product-image-full-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.product-image-wrapper {
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 249, 255, 0.9));
  border-radius: var(--radius-xl);
  padding: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.product-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%,
        rgba(118, 75, 162, 0.1) 50%,
        rgba(102, 126, 234, 0.1) 100%);
  border-radius: var(--radius-xl);
  z-index: 1;
}

.product-modal-main-image {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
}

.product-modal-main-image:hover {
  transform: scale(1.05) rotateY(2deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.image-fullscreen-overlay {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.product-image-wrapper:hover .image-fullscreen-overlay {
  opacity: 1;
}

.btn-view-fullscreen {
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-view-fullscreen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-3) 0%, var(--accent-4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-view-fullscreen:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.btn-view-fullscreen:hover::before {
  opacity: 1;
}

.product-modal-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3);
  transform: rotate(5deg);
  transition: all 0.3s ease;
}

.product-modal-badge:hover {
  transform: rotate(0deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.image-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 30px;
  width: 100%;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem;
  background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.95) 100%);
  border-radius: var(--radius-lg);
  min-width: 120px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(102, 126, 234, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
  background-size: 200% 100%;
  animation: gradientSlide 3s linear infinite;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

@keyframes gradientSlide {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  border-color: rgba(102, 126, 234, 0.3);
}

.stat-item i {
  font-size: 1.5rem;
  color: #667eea;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.stat-item:hover i {
  transform: scale(1.2);
  color: #764ba2;
}

.stat-item span {
  font-size: 13px;
  color: var(--professional-dark);
  font-weight: 600;
  text-align: center;
  transition: color 0.3s ease;
}

.stat-item:hover span {
  color: #764ba2;
}

/* Right Section: Content (50% width) */
.product-modal-right {
  flex: 0 0 50%;
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.product-content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Header Section */
.product-modal-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.product-modal-title {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-modal-description {
  color: #555;
  line-height: 1.7;
  font-size: 1.1rem;
}

.product-modal-description p {
  margin-bottom: 12px;
}

/* Scrollable Details Area */
.product-details-scrollable {
  flex: 1;
  overflow-y: auto;
  padding-right: 15px;
  margin-bottom: 25px;
  overflow-x: hidden;
}

/* Custom scrollbar */
.product-details-scrollable::-webkit-scrollbar {
  width: 8px;
}

.product-details-scrollable::-webkit-scrollbar-track {
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
}

.product-details-scrollable::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}

.product-details-scrollable::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  background-clip: content-box;
}

/* Details Cards - Unified Style for Key Features, Specifications, and Additional Information */
.details-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  padding: 25px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  border-left: 5px solid #667eea;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(102, 126, 234, 0.15);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.details-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.details-card:last-child {
  margin-bottom: 0;
}

.details-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.details-card h3 i {
  color: #667eea;
  font-size: 1.4rem;
}

/* Features Grid - For Key Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-card {
  background: white;
  padding: 15px;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}

.feature-card i {
  color: #28a745;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-card span {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

/* Unified Style for Specifications and Additional Information */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.spec-card {
  background: white;
  padding: 15px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.spec-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}

.spec-card i {
  color: #667eea;
  font-size: 1.1rem;
}

.spec-card .spec-key {
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.spec-card .spec-value {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Actions Section - Fixed at Bottom */
.product-modal-actions {
  padding-top: 25px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  margin-top: auto;
  width: 100%;
}

.btn-enquire-now {
  width: 100%;
  padding: 18px;
  font-size: 1.2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-2) 100%);
  border: none;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(10, 77, 104, 0.3);
}

.btn-enquire-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(10, 77, 104, 0.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-2) 100%);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}

.contact-option i {
  color: var(--primary);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-option div {
  display: flex;
  flex-direction: column;
}

.contact-option strong {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-option span {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

/* Full Screen Image Modal */
#fullScreenImageModal .modal-content {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

#fullScreenImageModal .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#fullScreenImage {
  max-width: 96%;
  max-height: 96%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
  border-radius: 10px;
}

#fullScreenImageModal .modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

#fullScreenImageModal .modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

/* Enquiry Modal */
#enquiryModal .modal-content {
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.enquiry-form-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.enquiry-form-header h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.enquiry-title {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--radius);
  border-left: 5px solid var(--primary);
}

.enquiry-form-header p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.enquiry-form .form-group {
  margin-bottom: 20px;
}

.enquiry-form label {
  display: block;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
}

.enquiry-form .form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e9ecef;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.enquiry-form .form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.enquiry-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.enquiry-form-actions {
  text-align: center;
  margin-top: 30px;
}

.enquiry-form-actions .btn {
  padding: 16px 45px;
  font-size: 1.2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-2) 100%);
  border: none;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.enquiry-form-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Back to Top Button in Footer context */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  border: none;
  padding: 0;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background: var(--secondary-gradient);
}

/* Success Modal */
.success-modal .modal-content {
  max-width: 500px;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 1.5rem;
}

.success-modal h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-modal p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(14, 165, 233, 0.3); }
  50% { box-shadow: 0 0 40px rgba(14, 165, 233, 0.6); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10000;
  animation: slideInRight 0.3s ease;
}

.notification-success {
  border-left: 4px solid var(--success);
}

.notification-error {
  border-left: 4px solid var(--danger);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification-close {
  background: none;
  border: none;
  color: var(--dark-gray);
  cursor: pointer;
  padding: 0.25rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-5 {
  margin-top: 3rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Fix enquiry modal height to fit full form */
#enquiryModal .modal-content {
  max-height: 95vh;
  height: auto;
  overflow: hidden;
}

#enquiryModal .modal-body {
  max-height: none;
  overflow: visible;
  padding: 25px;
}

/* Reduce extra spacing so form fits nicely */
#enquiryModal .contact-form-container h3 {
  margin-bottom: 10px;
}

#enquiryModal .contact-form-container p {
  margin-bottom: 10px;
}

#enquiryModal .form-group {
  margin-bottom: 12px;
}

#enquiryModal textarea {
  min-height: 120px;
  resize: vertical;
}

/* Add animation to section subtitles */
.section-subtitle {
  animation: fadeIn 0.6s ease-out;
}

/* Enhanced image corners */
.product-image img {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.product-overlay {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* FIX: Prevent horizontal overflow in all containers */
body > * {
  max-width: 100vw;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Ensure all grid items don't cause overflow */
.grid-container,
.products-grid,
.services-grid,
.industries-grid,
.testimonials-cards,
.seo-grid {
  width: 100%;
  overflow: hidden;
}

/* Additional styles for 24 products grid */
.products-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* Category badge colors for all 6 categories */
.product-card[data-category="office"] .product-badge {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  color: white;
}

.product-card[data-category="security"] .product-badge {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.product-card[data-category="toilet"] .product-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.product-card[data-category="bunk"] .product-badge {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.product-card[data-category="storage"] .product-badge {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
}

.product-card[data-category="special"] .product-badge {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

/* Better product categories display for many categories */
.product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.category-badge {
  padding: 0.75rem 1.5rem;
  margin-bottom: 0.5rem;
  flex: 0 0 auto;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* Show product count in category badges */
.category-badge[data-filter="all"]::after {
  content: " (24)";
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.category-badge[data-filter="office"]::after {
  content: " (6)";
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.category-badge[data-filter="security"]::after {
  content: " (1)";
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.category-badge[data-filter="toilet"]::after {
  content: " (1)";
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.category-badge[data-filter="bunk"]::after {
  content: " (2)";
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.category-badge[data-filter="storage"]::after {
  content: " (1)";
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.category-badge[data-filter="special"]::after {
  content: " (13)";
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

/* Hover effects for product cards */
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
  z-index: 10;
}

/* Enhanced product modal for detailed information */
.product-details-scrollable {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.product-details-scrollable::-webkit-scrollbar {
  width: 6px;
}

.product-details-scrollable::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.product-details-scrollable::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* Additional styles for product features in modal */
.specs-table {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}

.spec-key {
  font-weight: 600;
  color: var(--primary-dark);
}

.spec-value {
  color: var(--dark-gray);
  text-align: right;
  max-width: 60%;
}

/* Product filter animation */
.product-card {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading state for products */
#productsGrid.loading {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#productsGrid.loading::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid rgba(10, 77, 104, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===============================
   FORCE PREMIUM LOOK FOR MODAL SECTIONS
   =============================== */
#productModal .details-card {
  background: #ffffff !important;
  border-radius: 18px !important;
  border: 1px solid rgba(0,0,0,0.04) !important;
  border-left: 6px solid #3b82f6 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
}

#productModal .details-card h3 {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.4px;
}

#productModal .spec-card {
  background: #f9fafb !important;
  border-radius: 14px !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04) !important;
}

#productModal .spec-card:hover {
  transform: translateY(-6px) scale(1.01) !important;
}

#productModal .spec-key {
  text-transform: uppercase;
  font-size: 0.8rem !important;
  letter-spacing: 0.6px;
  color: #475569 !important;
}

#productModal .spec-value {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #0f172a !important;
}

/* Prevent header from ever becoming scrollable */
#header,
.header-top,
.header-main,
.header-container,
.header-top-container {
  overflow: visible !important;
}

#services {
  overflow: visible !important;
}

#services * {
  overflow: visible;
}

body {
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.ready {
  opacity: 1;
}

/* Accessibility improvements for background animations */
@media (prefers-reduced-motion: reduce) {
  .animated-bg-pattern,
  #about::before,
  #products::before,
  #services::before,
  #industries::before,
  #testimonials::before,
  #contact::before,
  footer::before,
  .hero-background .overlay::after {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .product-card,
  .service-card,
  .industry-card,
  .testimonial-card,
  .stat-card,
  .contact-form-container {
    background: white !important;
    border: 2px solid var(--primary) !important;
  }
  
  section {
    background: white !important;
  }
  
  section::before {
    display: none !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --section-bg-1: linear-gradient(135deg, rgba(10, 77, 104, 0.2) 0%, rgba(8, 131, 149, 0.15) 100%);
    --section-bg-2: linear-gradient(135deg, rgba(30, 41, 59, 0.2) 0%, rgba(51, 65, 85, 0.15) 100%);
    --section-bg-3: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
    --section-bg-4: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
    --section-bg-5: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
  }
  
  body {
    background-color: var(--professional-dark);
    color: var(--light);
  }
  
  .product-card,
  .service-card,
  .industry-card,
  .testimonial-card,
  .stat-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.9) 100%);
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .section-title h2 {
    color: white;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
  }
}

/* Print styles */
@media print {
  section::before,
  .animated-bg-pattern,
  #about::before,
  #products::before,
  #services::before,
  #industries::before,
  #testimonials::before,
  #contact::before,
  footer::before {
    display: none !important;
  }
  
  section {
    background: white !important;
  }
}

/* Accessibility improvements for transparency */
@media (prefers-reduced-transparency: reduce) {
  .product-card,
  .service-card,
  .industry-card,
  .testimonial-card,
  .stat-card,
  .contact-form-container {
    background: white !important;
    backdrop-filter: none !important;
  }
}

/* Performance optimizations */
.will-change-transform {
  will-change: transform;
}

/* Loading state */
body.loading section::before {
  animation-play-state: paused;
}
