/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scrolling and scroll offset for fixed header */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0; /* Removed scroll-padding-top as body padding handles it */
}

body {
  font-family:
    'IBM Plex Sans',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
  line-height: 1.6;
  background: var(--off-white);
  color: var(--charcoal);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

.body-fixed-header {
  padding-top: 0; /* Remove padding from body */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Mobile container adjustments - More spacious */
@media (max-width: 768px) {
  .container {
    padding: 0 20px; /* Increased from 15px for more breathing room */
    max-width: 100%;
  }
}

/* Enhanced Mobile Typography for Better UX and Readability */
@media (max-width: 768px) {
  body {
    font-size: 15px; /* Slightly smaller base font */
    line-height: 1.5; /* More compact line spacing */
  }
  
  h1 {
    font-size: 1.75rem; /* Reduced from 2rem */
    line-height: 1.3;
    margin-bottom: 1.25rem; /* Reduced margin */
  }
  
  h2 {
    font-size: 1.4rem; /* Reduced from 1.6rem */
    line-height: 1.4;
    margin-bottom: 1rem; /* Reduced margin */
  }
  
  h3 {
    font-size: 1.1rem; /* Reduced from 1.3rem */
    line-height: 1.4;
    margin-bottom: 0.75rem; /* Reduced margin */
  }
  
  p {
    font-size: 0.95rem; /* Reduced from 1rem */
    line-height: 1.6; /* Reduced from 1.7 */
    margin-bottom: 1.25rem; /* Reduced margin */
  }
  
  /* More compact sections */
  .section {
    padding: 3rem 0; /* Reduced from 4rem */
  }
  
  /* Better button sizing */
  .btn {
    padding: 12px 20px; /* Reduced padding */
    font-size: 0.9rem; /* Smaller button text */
    margin: 0.4rem;
    min-height: 44px; /* Reduced touch target */
  }
}

/* Performance optimizations */
img {
  max-width: 100%;
  height: auto;
}

/* Better text rendering */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* Subtle hero background glow */
/* Hero background effects removed to prevent blue circles */

/* Unified Tile/Card Styling */
.product-card,
.feature,
.why-choose-card,
.application-item {
  background: var(--pure-white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(44, 44, 44, 0.1);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  will-change: transform, box-shadow;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

/* Product card with background image */
.product-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Overlay for better text readability - darker gradient from bottom */
.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
  transition: background 0.3s ease;
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/* Content wrapper to ensure it's above the overlay */
.product-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1rem;
}

/* Make text white for better contrast on dark overlay */
.product-card h3 {
  color: var(--pure-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  margin-bottom: 0.5rem;
}

.product-card p {
  color: var(--pure-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.5);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

/* Remove icon styles since icons are removed */

.product-card:hover,
.feature:hover,
.why-choose-card:hover,
.application-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
  border-color: var(--primary);
}

/* Will-change for animated elements */
.btn,
.product-card,
.scroll-indicator {
  will-change: transform;
}

/* Scroll Progress Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: var(--primary);
  width: 0%;
  z-index: 2000;
  transition: width 0.1s ease-out;
}

/* Variables for consistent theming */
:root {
  --charcoal: #2c2c2c;
  --light-charcoal: #4a4a4a;
  --header-height: 150px;
  --primary: #4a90e2;
  --primary-light: #7bb3f0;
  --primary-dark: #2e5c8a;
  --off-white: #fafafa;
  --pure-white: #ffffff;
  --footer-bg: #2a2a2a;
  --footer-text: #ffffff;
  --footer-link: #ffffff;
  --footer-heading: #7bb3f0;
  --turmeric: #FFDB58;
  --light-turmeric: #f5eeb3;
  --teal: #4ECDC4;
  --red: #ff6b6b;
  --yellow: #ffd700;
  --purple: #a29bfe;
  --whatsapp: #25d366;
}

  
  /* Accessibility and SEO improvements */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin-bottom: 0.5em;
}

/* Fine-tune heading rhythm for IBM Plex Sans */
h1 { letter-spacing: -0.2px; line-height: 1.25; }
h2 { font-weight: 600; letter-spacing: -0.2px; line-height: 1.28; }
h3 { font-weight: 600; letter-spacing: -0.1px; }

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
  outline: 3px solid var(--primary-dark);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border-width: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  /* Removed progressive reveal and extra hover polish (rollback) */

  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .btn,
  .scroll-indicator,
  .hero-slider {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}

/* Header Styles */
.header {
  background: rgba(250, 250, 250, 0.95);
  color: var(--charcoal);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  width: 100%;
}

/* Fixed header when scrolling - legacy support */
header {
  background: rgba(250, 250, 250, 0.95) !important;
  color: var(--charcoal) !important;
  padding: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  transition: all 0.3s ease !important;
}

.header-main {
  height: 105px; /* Reduced by additional 10% from 117px */
  display: block; /* Ensure proper display */
  position: relative; /* Ensure proper positioning */
  overflow: hidden; /* Prevent any content from spilling outside */
  width: 100%; /* Ensure full width */
}

/* Body offset to prevent content hiding behind fixed header */
.body-fixed-header {
  padding-top: 115px; /* Updated - Topbar (~10px) + Header-main (105px) */
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px; /* Remove vertical padding that might cause displacement */
  flex-wrap: nowrap; /* Prevent wrapping that might cause layout issues */
  height: 105px; /* Reduced by additional 10% from 117px */
  position: relative; /* Ensure proper positioning context */
  box-sizing: border-box; /* Include padding in height calculation */
}

/* Logo positioning and styling */
.logo {
  display: flex;
  align-items: center;
  position: relative; /* Ensure it stays within its container */
  z-index: 1000; /* Ensure it's properly stacked */
  height: 105px; /* Match header-main height exactly */
  flex-shrink: 0; /* Prevent logo from shrinking */
}

.logo .brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease; /* Smooth hover effect */
}

.logo .brand:hover {
  transform: scale(1.05); /* Subtle hover animation */
}

.logo .brand-mark {
  height: 90px; /* Increased by 1.5x for larger header */
  width: 90px; /* Square logo - width same as height */
  max-width: 90px; /* Prevent logo from being too wide */
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)); /* Subtle shadow */
}

/* Company Name Styling */
.company-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin-left: 1rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* Desktop Navigation */
.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem; /* Increased font size for larger header */
  transition: color 0.2s ease;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 10px;
  border: 2px solid rgba(74, 144, 226, 0.2);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff;
  transform: translateX(8px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center; /* Center the spans vertically */
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  transition: transform 0.2s ease;
  z-index: 1001; /* Ensure it's above other elements */
  position: relative; /* Ensure it stays within its container */
  align-self: center; /* Center vertically within parent */
  height: 50px; /* Fixed height for consistent positioning */
  width: 44px; /* Fixed width for consistent positioning */
  flex-shrink: 0; /* Prevent hamburger from shrinking */
}

.hamburger:hover {
  transform: scale(1.05); /* Reduced scale for subtlety */
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--charcoal);
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 2px;
  display: block; /* Ensure spans are visible */
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Enhanced Mobile Navigation - More Spacious and Elegant */
.nav-mobile {
  display: none;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(74, 144, 226, 0.2); /* Softer shadow */
  backdrop-filter: blur(10px);
}

.nav-mobile ul {
  list-style: none;
  padding: 2rem 0; /* More generous padding */
}

.nav-mobile ul li {
  padding: 0.8rem 2.5rem; /* More spacious items */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-mobile ul li:last-child {
  border-bottom: none;
  padding-bottom: 1.5rem; /* Extra bottom padding */
}

.nav-mobile ul li a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem; /* Larger text */
  display: block;
  padding: 1rem 0; /* More padding for easier tapping */
  transition: all 0.3s ease;
  min-height: 44px; /* Better touch target */
  display: flex;
  align-items: center;
}

.nav-mobile ul li a:hover {
  color: #ffffff;
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: 0 -0.5rem;
  padding-left: 1.5rem;
  padding-right: 1rem;
}

.nav-mobile.active {
  display: block;
}

/* Hero Section */
.hero {
  padding-top: 20px; /* Reduced padding as body now has offset */
  margin-top: 0;
  padding: 2rem 0; /* Reduced from 4rem to 2rem */
  background: var(--charcoal);
  color: var(--off-white);
  display: flex;
  align-items: center;
  min-height: 50vh; /* Reduced from 80vh to 50vh */
  position: relative;
}

/* Full-Viewport Cover Slider */
.cover-slider {
  position: relative;
  width: 100%;
  height: 60vh; /* reduced from calc(100vh - var(--header-height)) to show content below */
  margin: 0;
  overflow: hidden;
}

/* Floating animation keyframes */
@keyframes floatInOut {
  0%, 100% {
    transform: scale(1) translateY(0px);
  }
  50% {
    transform: scale(1.02) translateY(-8px);
  }
}

.cover-slide {
  position: absolute;
  inset: 0;
  background-size: cover; /* image covers entire viewport */
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  transition: opacity 600ms ease-in-out;
  will-change: opacity, transform;
}

.cover-slide.active {
  opacity: 1;
  animation: floatInOut 2s ease-in-out infinite;
}

.cover-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.cover-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}

.cover-dots .dot:hover {
  background: rgba(44, 44, 44, 0.7); /* Charcoal with transparency */
  border-color: var(--charcoal);
  transform: scale(1.1);
}

.cover-dots .dot.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(44, 44, 44, 0.6);
}

/* Ensure the fixed header doesn't hide the slider start visually */
.body-fixed-header .cover-slider { margin-top: 0; }

/* Adjust hero section spacing when following the cover slider */
.cover-slider + .hero {
  margin-top: 0;
  padding-top: 1rem; /* Reduced from 2rem to 1rem */
  padding-bottom: 1.5rem; /* Reduced bottom padding */
  min-height: 40vh; /* Even smaller when following slider */
}

/* Decorative circles removed entirely to prevent visual distraction */

/* Mobile adjustments for hero slider */
@media (max-width: 768px) {
  .cover-dots { 
    display: none; /* Hide dots on mobile - use touch swipe instead */
  }
  
  .cover-slider { 
    height: 35vh; /* Reduced height for better mobile appearance */
  }
}

/* (rollback) remove slider-specific styles */

/* (removed) pre-hero image strip styles */

/* Hero image container (using placeholder styles) */

/* Welcome message with typing effect */
.welcome-message {
  font-family: 'Playfair Display', 'Georgia', serif;
  margin-bottom: 1rem; /* Reduced from 1.5rem to 1rem */
  text-align: left;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.static-welcome {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--welcome-primary); /* Bright Gold */
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.3);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.animated-tagline {
  font-size: 2rem;
  font-weight: 500;
  color: var(--welcome-secondary); /* Lavender - soft, elegant */
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4), 0 0 8px rgba(230, 230, 250, 0.3);
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.typing-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 3s steps(30, end) 1.5s forwards;
  width: 0;
}

.typing-cursor {
  display: none; /* Hide the cursor line */
}

/* Typing animation keyframes */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem; /* Reduced from 1rem */
  line-height: 1.2;
  letter-spacing: -0.2px;
  color: var(--off-white);
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem; /* Reduced from 2rem */
  opacity: 0.9;
  color: var(--off-white);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Enhanced hero button styling */
.hero-buttons .btn {
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  min-width: 160px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-buttons .btn-secondary {
  background: var(--charcoal);
  color: var(--primary);
  border: 3px solid var(--primary);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.hero-buttons .btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--charcoal);
  border: 3px solid var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5);
}

.btn {
  padding: 15px 35px;
  border: none;
  border-radius: 50px; /* Capsule shape */
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--charcoal); /* Changed to charcoal black */
  color: var(--pure-white); /* Changed to pure white for contrast */
  border: 2px solid var(--charcoal); /* Changed border to charcoal */
  font-weight: 600;
  text-shadow: none;
  box-shadow: 0 4px 15px rgba(44, 44, 44, 0.3); /* Adjusted shadow for darker background */
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
  color: var(--primary);
  border: 2px solid var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--charcoal);
  border: 2px solid var(--primary);
}

.btn-secondary {
  background: var(--charcoal); /* Charcoal black fill */
  color: var(--primary); /* Sky blue font color */
  border: 2px solid var(--primary); /* Sky blue border */
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  z-index: -1;
  transition: left 0.4s ease;
}

.btn-secondary:hover::before {
  left: 0;
}

.btn-secondary:hover {
  color: var(--charcoal);
  border: 2px solid var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
}

.placeholder-image {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.placeholder-image i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.placeholder-image p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--charcoal);
  position: relative;
  font-weight: 700;
  letter-spacing: -0.25px;
  line-height: 1.2;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--turmeric);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(255, 219, 88, 0.3);
}

/* About Section */
.about {
  background: linear-gradient(135deg, var(--pure-white) 0%, var(--off-white) 100%);
  position: relative;
  border-top: 4px solid var(--turmeric);
}

/* About section decorative circle removed */

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch; /* make both columns equal height */
}

.about-image {
  width: 100%;
  padding: 0; /* ensure no inner spacing */
  overflow: hidden; /* prevent spill and keep crop control */
}

.about-image img {
  display: block; /* remove baseline gap */
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill without letterboxing */
  object-position: top right; /* keep top & right fixed; crop left & bottom */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Do not lift the About image on hover */
.about-image img:hover {
  transform: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-text {
  text-align: left;
  overflow: hidden; /* ensure bottom crop within column without outer gaps */
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* top align content to match image top */
}

/* Emphasized subheading line in About section */
#about .section-description {
  font-size: 1.25rem;
  line-height: 1.85;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.2px;
  margin-bottom: 1.75rem;
  position: relative;
  text-align: left;           /* override global center */
  max-width: none;            /* allow full width in column */
  margin-left: 0;             /* reset auto margins */
  margin-right: 0;
  display: inline-block;      /* so underline sizes to text */
}

#about .section-description::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--turmeric), var(--light-turmeric));
  border-radius: 2px;
  opacity: 0.9;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  border-radius: 0; /* no rounded edge */
  box-shadow: none; /* no card-like frame */
}

#about .about-highlights {
  margin: 0 0 1.5rem 0;
  padding: 0;
  list-style: none; /* remove default bullets */
  color: var(--light-charcoal);
  text-align: left; /* ensure left alignment */
}

#about .about-highlights li {
  position: relative;
  padding-left: 1.6rem; /* space for tick */
  margin: 0.4rem 0; 
  line-height: 1.6;
}

#about .about-highlights li::before {
  content: '\2714'; /* checkmark */
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--primary); /* brand blue */
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature i {
  color: var(--primary);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature:hover i {
  color: var(--charcoal);
}

/* Rupee Symbol Styling */
.rupee-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  transition: color 250ms ease;
}

.feature:hover .rupee-icon {
  color: var(--charcoal);
}

/* Feature images removed */

.feature h3 {
  margin-bottom: 1rem;
  color: var(--charcoal);
}

/* Why Choose Us Section */
.why-choose-us {
  margin-top: 4rem;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--pure-white) 100%);
}

.why-choose-us h3 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-weight: 700;
}

.why-choose-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--light-charcoal);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* why-choose-card is now unified */

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.05), transparent);
  transition: left 0.6s ease;
}

/* Disable shimmer for consistency */
.why-choose-card::before { content: none; }

.why-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.why-choose-card:hover .why-icon i {
  color: var(--charcoal);
}

.why-choose-card h4 {
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-weight: 600;
}

.why-choose-card p {
  color: var(--light-charcoal);
  line-height: 1.6;
  font-size: 0.95rem;
}

.why-choose-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--light-charcoal) 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(44, 44, 44, 0.2);
}

.stat-item {
  text-align: center;
  color: var(--pure-white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--turmeric);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose-cta {
  text-align: center;
  padding: 2rem;
  background: var(--primary);
  border-radius: 15px;
  color: var(--pure-white);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.why-choose-cta h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.why-choose-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.pitch-black-text {
  color: #000000 !important; /* Pitch black color */
  opacity: 1 !important; /* Override any transparency */
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: var(--charcoal);
  color: var(--pure-white);
  border: 2px solid var(--charcoal);
}

.cta-buttons .btn-primary:hover {
  background: var(--charcoal);
  color: var(--pure-white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--pure-white);
}

.cta-buttons .btn-secondary:hover {
  background: var(--pure-white);
  color: var(--turmeric);
  transform: translateY(-2px);
}

/* Responsive Design for Why Choose Us */
@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-choose-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Products Section */
.products {
  background: linear-gradient(135deg, var(--pure-white) 0%, var(--off-white) 100%);
  position: relative;
  border-top: 4px solid var(--turmeric);
  border-bottom: 4px solid var(--turmeric);
}

/* Products section decorative circle removed */

.products .container {
  position: relative;
  z-index: 2;
}

.products h2 {
  color: var(--charcoal) !important;
}

.products h2::after {
  background: var(--turmeric) !important;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* product-card is now unified */

/* Unified shimmer sweep applied to all tiles */
.product-card::before,
.feature::before,
.why-choose-card::before,
.application-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.12), transparent);
  transition: left 0.6s ease;
}

.product-card:hover::before,
.feature:hover::before,
.why-choose-card:hover::before,
.application-item:hover::before {
  left: 100%;
}

.product-card:hover {
  /* Styles are now unified */
  border-color: var(--primary); /* Consistent border color */
}

/* Force product tiles to hover with maximum specificity */


/* Make product tiles feel interactive */
.products .product-card { cursor: pointer; }

/* Product Icon Base Styling */
.product-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: rgba(74, 144, 226, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.product-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--turmeric), var(--light-turmeric), var(--turmeric));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-icon {
  /* Keep icon stable; animate the card instead */
  background: transparent;
  transform: none;
  box-shadow: none; /* Remove inconsistent shadow */
}

.product-card:hover .product-icon::before {
  opacity: 0; /* no extra glow */
}

.product-icon i {
  color: var(--primary);
  font-size: 2rem;
  transition: all 0.4s ease;
}

.product-card:hover .product-icon i {
  color: var(--charcoal);
  transform: none;
}

.product-card h3 {
  margin-bottom: 1rem;
  color: var(--pure-white) !important;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
}

.product-card p {
  color: var(--pure-white) !important;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
}

.product-card .btn {
  margin-top: auto;
  font-size: 0.9rem;
  padding: 10px 20px;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  position: relative;
  border-top: 4px solid var(--turmeric);
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  background: linear-gradient(45deg, var(--turmeric), var(--light-turmeric));
  border-radius: 50%;
  opacity: 0.15;
  transform: translate(-110px, -110px);
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact h2 {
  color: var(--off-white) !important;
}


.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 1rem;
  background: var(--off-white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-item:hover {
  border: 2px solid var(--turmeric);
  transform: translateY(-3px);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 0.5rem;
}

.contact-item:hover i {
  color: var(--charcoal);
}

.contact-item h3 {
  margin-bottom: 0.5rem;
  color: var(--charcoal);
  font-weight: 600;
}

.contact-item p {
  color: var(--light-charcoal);
  line-height: 1.6;
  font-weight: 500;
}

.contact-form {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact-form:hover {
  border: 2px solid var(--turmeric);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--turmeric);
}

.form-group textarea {
  resize: vertical;
}

/* Form Messages and Feedback Styles */
.form-messages {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  padding: 0;
}

.success-message,
.error-message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 0;
  font-weight: 500;
  animation: slideInFromTop 0.3s ease-out;
}

.success-message {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 1px solid #b8dacc;
  color: #155724;
  box-shadow: 0 2px 10px rgba(21, 87, 36, 0.1);
}

.success-message p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.error-message {
  background: linear-gradient(135deg, #f8d7da 0%, #f1aeb5 100%);
  border: 1px solid #f1aeb5;
  color: #721c24;
  box-shadow: 0 2px 10px rgba(114, 28, 36, 0.1);
}

.error-message p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Form Field Error Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc3545;
  background-color: #fff5f5;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
}

.error-text {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Submit Button States */
.btn.submitting {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-loader::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animations */
@keyframes slideInFromTop {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Fallback Contact Styles */
.fallback-contact {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  margin: 2rem 0;
  border: 2px solid #dee2e6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.fallback-contact h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.fallback-contact p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.fallback-contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.fallback-contact a:hover {
  color: var(--turmeric);
  text-decoration: underline;
}

/* Responsive Form Messages */
@media (max-width: 768px) {
  .form-messages {
    margin-bottom: 1rem;
  }
  
  .success-message,
  .error-message {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .fallback-contact {
    padding: 1.5rem;
  }
  
  .fallback-contact h4 {
    font-size: 1.2rem;
  }
  
  .fallback-contact p {
    font-size: 1rem;
  }
}

/* Professional Footer Design */
.footer {
  background: #2a2a2a !important;
  /* Background radial gradients removed to prevent blue circles */
  color: var(--footer-text);
  padding: 4rem 0 0;
  position: relative;
  border-top: 4px solid var(--turmeric);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--turmeric), transparent);
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
  padding: 1rem 1rem 1rem 1rem;
}

.footer-section {
  background: transparent;
  color: var(--footer-text);
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  border: none;
}

.footer-section:hover {
  transform: translateY(-2px);
  border: none;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1.5rem;
  color: var(--footer-heading);
  font-size: 1.3rem;
  font-weight: 700;
  border-bottom: 2px solid var(--turmeric);
  padding-bottom: 0.8rem;
  position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--turmeric);
}

.footer-section p {
  color: var(--footer-text);
  margin-bottom: 0.8rem;
  line-height: 1.7;
  font-size: 0.95rem;
  font-weight: 400;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
}

.footer-section ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--light-turmeric);
  font-size: 0.9rem;
  top: 2px;
  text-shadow: 0 0 4px rgba(74, 144, 226, 0.6);
}

.footer-section ul li a {
  color: var(--footer-text);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-section ul li a:hover {
  color: var(--footer-heading);
  padding-left: 0.5rem;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
}

/* All footer links styling including email and phone links */
.footer a {
  color: #87CEEB !important; /* Light blue color for all footer links */
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--footer-heading) !important; /* Use the existing footer heading color on hover */
  text-shadow: 0 0 8px rgba(135, 206, 235, 0.5);
}

.footer a:visited {
  color: #87CEEB !important; /* Maintain light blue for visited links */
}

.footer-section .product-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1rem;
}

.footer-section .product-links li a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/* Social links styling */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 60px; /* Match floating buttons size */
  height: 60px; /* Match floating buttons size */
  background: var(--primary); /* Default background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Match floating buttons shadow */
}

.social-link:hover {
  transform: scale(1.1); /* Match floating buttons hover effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Match floating buttons hover shadow */
}

.social-link i {
  color: white; /* White icons like floating buttons */
  transition: all 0.3s ease;
  font-size: 24px; /* Match floating buttons icon size */
}

.social-link:hover i {
  color: white; /* Keep white on hover */
}

/* Footer Map Section */
.footer-map .map-container {
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background: rgba(74, 144, 226, 0.1);
  padding: 3px;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.footer-map:hover iframe {
  transform: scale(1.02);
}

/* Footer bottom section */
.footer-bottom {
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(74, 144, 226, 0.3);
  color: var(--footer-text);
  background: rgba(0, 0, 0, 0.4);
  font-size: 1.0rem;
  font-weight: 700;
  width: 100%;
  clear: both;
}

.footer-bottom .copyright p {
  margin: 0;
  opacity: 0.8;
}

/* Enhanced Mobile Hero - More Spacious and Elegant */
@media (max-width: 768px), (orientation: portrait) {
  .nav-desktop {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .hero {
    padding: 3rem 0; /* More generous padding */
    min-height: 65vh; /* Slightly taller for breathing room */
    display: flex;
    align-items: center;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 20px; /* More spacious container */
  }

  .hero-content {
    max-width: 90%; /* Prevent content from touching edges */
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 2rem; /* Reduced from 2.5rem for better mobile fit */
    line-height: 1.2;
    margin-bottom: 1.5rem; /* Reduced spacing */
    font-weight: 700;
  }

  .welcome-message {
    margin-bottom: 2rem; /* Reduced spacing */
  }

  .static-welcome {
    font-size: 1.9rem; /* Reduced from 2.3rem */
    line-height: 1.3;
    margin-bottom: 1.25rem; /* Reduced margin */
  }

  .animated-tagline {
    font-size: 1.3rem; /* Reduced from 1.5rem */
    line-height: 1.5;
    margin-bottom: 1.5rem; /* Reduced spacing */
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 20px; /* More space between buttons */
    align-items: center;
    margin-top: 2rem;
  }

  .hero-buttons .btn {
    width: auto;
    min-width: 220px; /* Larger buttons */
    padding: 16px 32px; /* More generous padding */
    font-size: 1.1rem;
    font-weight: 600;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem; /* More space between sections */
  }

  .hero {
    padding: 2rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
  }

  /* Welcome message mobile optimization */
  .welcome-message {
    text-align: center;
    margin-bottom: 2rem;
  }

  .static-welcome {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .animated-tagline {
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: center;
  }

  /* Enhanced Mobile Section Spacing */
  section {
    padding: 3rem 0; /* Reduced from 4rem */
  }

  section h2 {
    font-size: 1.8rem; /* Reduced from 2.2rem for better mobile fit */
    margin-bottom: 2rem; /* Reduced spacing */
    text-align: center;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 2rem; /* Reduced from 2.5rem */
  }

  /* Enhanced Feature Cards */
  .feature {
    padding: 2rem 1.5rem; /* Reduced padding for more compact design */
    margin-bottom: 1rem;
  }

  /* Ensure rupee icon matches other feature icons on mobile */
  .feature .rupee-icon {
    font-size: 3rem !important; /* Match other feature icons */
    margin-bottom: 1rem;
    display: block;
    font-weight: bold;
  }

  .feature i {
    font-size: 3rem; /* Ensure consistent icon sizing */
    margin-bottom: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem; /* More space between content sections */
  }

  /* Keep portrait aspect on mobile */
  .about-image {
    aspect-ratio: 3 / 4; /* portrait ratio */
    max-height: 80vh;
    margin-bottom: 2rem; /* Add space below image */
  }

  .about-image img {
    height: 100%;
    min-height: 0; /* allow aspect-box to control height */
  }

  .about-text {
    text-align: center;
    padding: 0 1rem; /* Add side padding for readability */
  }

  .about-text p {
    font-size: 1.1rem; /* Larger text for better readability */
    line-height: 1.8; /* More line spacing */
    margin-bottom: 2rem;
  }

  /* Keep About highlights left-aligned on mobile */
  #about .about-highlights,
  #about .about-highlights li {
    text-align: left;
  }

  #about .about-highlights li {
    margin-bottom: 0.8rem; /* More space between list items */
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Enhanced Mobile Products Grid */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem; /* Increased from 1.2rem for more breathing room */
    padding: 0 1rem; /* More side padding */
  }

  .product-card {
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    padding: 2rem 1.5rem; /* Reduced padding for more compact design */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 240px; /* Reduced height for better fit */
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Softer shadow */
  }

  .product-card .product-icon {
    width: 70px; /* Reduced icon size */
    height: 70px;
    margin: 0 auto 1.25rem auto; /* Reduced spacing */
    flex-shrink: 0;
  }

  .product-card h3 {
    font-size: 1.1rem; /* Reduced from 1.3rem */
    margin-bottom: 0.75rem; /* Reduced spacing */
    text-align: center;
    flex-shrink: 0;
    line-height: 1.3;
  }

  .product-card p {
    font-size: 0.9rem; /* Reduced from 1rem */
    margin-bottom: 1.25rem; /* Reduced spacing */
    text-align: center;
    line-height: 1.6; /* Reduced line height */
    flex-grow: 1;
    display: flex;
    align-items: center;
  }

  .product-card .btn {
    font-size: 0.9rem; /* Reduced button text size */
    padding: 12px 24px; /* Reduced button padding */
    width: auto;
    min-width: 140px; /* Slightly smaller minimum width */
    margin-top: auto;
    flex-shrink: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .footer-section h3,
  .footer-section h4 {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .footer-section ul li {
    text-align: center;
    padding-left: 0;
  }
  
  .footer-section ul li::before {
    display: none;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
}

/* Desktop/tablet: ensure the image doesn't shrink too much when viewport shrinks */
@media (min-width: 769px) {
  .about-image {
    min-height: clamp(520px, 60vh, 720px);
    /* allow stretching to match the tallest content in the row */
    align-self: stretch;
  }
}

/* On large screens, give the text column a bit more width to reduce its height */
@media (min-width: 1200px) {
  .about-content {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

/* Logo responsive adjustments */
@media (max-width: 1024px) and (orientation: portrait), (max-width: 768px) {
  .logo {
    flex: 1;
    min-width: 0;
  }

  /* More compact header for tablets and larger mobile */
  .header-main {
    height: 94px; /* Reduced by additional 10% from 104px */
    overflow: hidden; /* Prevent any content from spilling outside */
  }

  .header-main .container {
    padding: 0 20px; /* Remove vertical padding that might cause displacement */
    height: 94px; /* Reduced by additional 10% from 104px */
  }

  /* Logo height adjustment for tablets */
  .logo {
    height: 94px; /* Match header-main height for tablets - reduced by additional 10% */
  }

  /* Adjusted body offset */
  .body-fixed-header {
    padding-top: 104px; /* Updated for tablets - Topbar (~10px) + Header-main (94px) */
  }

  .logo .brand-mark { 
    height: 75px; /* Increased by 1.5x for larger header on tablets */
    width: 75px; /* Square logo - width same as height */
    max-width: 75px; /* Prevent logo from being too wide */
  }

  .company-name {
    font-size: 1.4rem; /* Smaller font size for tablets */
    margin-left: 0.8rem;
  }
}

/* Additional responsive rules for portrait and small landscape tablets */
@media (max-width: 1024px) and (orientation: portrait) {
  .nav-desktop {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Compact topbar for small mobile screens */
@media (max-width: 600px) and (min-width: 481px) {
  .header-topbar {
    padding: 0.1rem 0;
    font-size: 0.65rem;
  }

  .header-topbar-inner {
    justify-content: center;
  }

  /* Hide email and social links, show only phone */
  .topbar-info li:nth-child(2),
  .header-topbar-rightpart {
    display: none;
  }

  .topbar-info {
    gap: 0;
  }

  .topbar-info a {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  /* Hide topbar entirely on very small screens */
  .header-topbar {
    display: none;
  }

  .container {
    padding: 0 15px;
  }

  /* More compact mobile header */
  .header-main {
    height: 81px; /* Reduced by additional 10% from 90px */
    overflow: hidden; /* Prevent any content from spilling outside */
    display: flex; /* Ensure proper flex container */
    align-items: center; /* Center content vertically */
    padding: 0; /* Remove any default padding */
  }

  .header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ensure vertical centering */
    padding: 0 15px; /* Side padding only */
    height: 81px; /* Match header height */
    box-sizing: border-box;
  }

  /* Logo height adjustment for mobile */
  .logo {
    height: auto; /* Let content determine height for better centering */
    display: flex;
    align-items: center; /* Center logo content vertically */
    padding: 0; /* Remove any padding that might cause offset */
  }

  /* Body offset adjustment for mobile */
  .body-fixed-header {
    padding-top: 81px; /* Updated body padding to match new header height */
  }

  /* More compact logo for mobile */
  .logo .brand-mark { 
    height: 55px; /* Reduced size for better fit in 81px header */
    width: 55px; /* Square logo - width same as height */
    max-width: 55px; /* Prevent logo from being too wide on mobile */
  }

  .company-name {
    font-size: 1.1rem; /* Smaller font size for mobile */
    margin-left: 0.6rem;
    letter-spacing: 0.3px;
  }

  /* Smaller hamburger for mobile */
  .hamburger {
    width: 40px; /* Smaller fixed width for mobile */
    height: 40px; /* Smaller fixed height for mobile */
    padding: 6px; /* Slightly more padding for easier touch */
    display: flex; /* Ensure it's visible on mobile */
    align-items: center; /* Center hamburger lines vertically */
    justify-content: center; /* Center hamburger lines horizontally */
    margin: 0; /* Remove any default margin */
  }

  .hamburger span {
    width: 24px; /* Smaller for mobile */
    height: 2px; /* Thinner lines */
    margin: 3px 0; /* Closer together */
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  /* Welcome message mobile responsive */
  .welcome-message {
    margin-bottom: 0.5rem; /* Reduced from 1rem */
    text-align: center;
  }

  .static-welcome {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 0.2rem; /* Reduced from 0.3rem */
  }

  .animated-tagline {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    min-height: 2rem;
  }

  .typing-text {
    font-size: inherit;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: center;
    display: inline-block;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-buttons .btn {
    width: 200px;
    max-width: 90%;
  }

  .contact-form {
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 100%;
  }

  /* Product cards for very small screens */
  .products-grid {
    gap: 1rem;
    padding: 0 0.2rem;
  }

  .product-card {
    padding: 1.5rem 1.2rem;
    min-height: 180px;
    margin: 0 auto;
    max-width: 320px;
  }

  .product-card .product-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.8rem auto;
  }

  .product-card .product-icon i {
    font-size: 1.8rem;
  }

  .product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    line-height: 1.2;
  }

  .product-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .product-card .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    min-width: 120px;
  }

  /* Enhanced Contact Form for Mobile */
  .contact-form .form-group {
    margin-bottom: 1.8rem; /* More space between form fields */
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 1.1rem; /* Larger text for better readability */
    padding: 1rem; /* More generous padding */
    border-radius: 10px; /* Rounded corners */
    min-height: 48px; /* Better touch targets */
  }

  .contact-form textarea {
    min-height: 120px; /* Taller textarea */
  }

  .contact-form .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem; /* More generous button padding */
    margin-top: 1rem;
    min-height: 48px;
  }

  /* Enhanced Product cards on very small screens */
  .product-card {
    padding: 2rem 1.5rem; /* More generous padding even on small screens */
    min-height: 220px; /* Prevent cramped feeling */
  }

  .product-card h3 {
    font-size: 1.2rem; /* Larger text for better readability */
    margin-bottom: 0.8rem;
  }

  .product-card p {
    font-size: 0.95rem; /* Slightly larger for better readability */
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  /* ENSURE BLUE CIRCLES ARE REMOVED ON VERY SMALL SCREENS TOO */
  .hero::after,
  .footer {
    background-image: none !important;
  }

  /* Section padding adjustments */
  .section {
    padding: 2rem 0;
  }

  .section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .section p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* Enhanced Product Pages Styles - Less Cluttered Design */
.product-hero {
  background: linear-gradient(135deg, var(--charcoal), #1a1a1a);
  color: var(--pure-white);
  padding: 5rem 0; /* More generous padding */
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(74, 144, 226, 0.1) 0%, rgba(255, 219, 88, 0.1) 100%);
  opacity: 0.3;
}

.product-hero .container {
  position: relative;
  z-index: 2;
  text-align: left;
}

.breadcrumb {
  margin-bottom: 2rem; /* More space below breadcrumb */
  font-size: 1rem; /* Larger breadcrumb text */
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--turmeric);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.breadcrumb span {
  color: #ccc;
  font-size: 1rem;
}

.product-hero h1 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3rem; /* Larger heading */
  margin-bottom: 1.5rem; /* More space below heading */
  line-height: 1.2;
  font-weight: 700;
}

.product-hero p {
  font-size: 1.4rem; /* Larger subtitle */
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
}

/* Enhanced Product Details Section - More Spacious Layout */
.product-details {
  padding: 3rem 0; /* Reduced padding for continuous flow */
  background: linear-gradient(135deg, var(--pure-white) 0%, var(--off-white) 100%);
}

.product-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem; /* More space between columns */
  max-width: 1200px;
  margin: 0 auto;
}

.product-info {
  padding-right: 2rem; /* More space from the specifications */
}

.product-info h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--charcoal);
  font-size: 2.5rem; /* Larger section heading */
  margin-bottom: 2rem; /* More space below heading */
  position: relative;
}

.product-info h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--turmeric);
  border-radius: 2px;
}

.product-info h3 {
  color: var(--charcoal);
  margin: 3rem 0 1.5rem 0; /* More space around subheadings */
  font-size: 1.6rem; /* Larger subheadings */
  font-weight: 600;
}

.product-info p {
  font-size: 1.1rem; /* Larger text for better readability */
  line-height: 1.8; /* Better line spacing */
  margin-bottom: 2.5rem; /* More space between paragraphs */
  color: var(--light-charcoal);
}

.product-info ul {
  margin-left: 1.5rem;
  margin-bottom: 3rem; /* More space after lists */
}

.product-info li {
  margin-bottom: 1rem; /* More space between list items */
  font-size: 1rem;
  line-height: 1.6;
  color: var(--light-charcoal);
}

.product-info li strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* Enhanced Applications Grid - More Spacious */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem; /* More space between cards */
  margin-top: 2.5rem; /* More space above grid */
}

/* Enhanced Application Items */
.application-item {
  background: var(--pure-white);
  padding: 3rem 2rem; /* More generous padding */
  border-radius: 20px; /* More rounded corners */
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); /* Softer shadow */
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  min-height: 280px; /* Consistent minimum height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.application-item:hover {
  transform: translateY(-8px); /* More pronounced hover effect */
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15);
  border-color: var(--primary);
}

.application-item i {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", FontAwesome;
  font-weight: 900;
  font-style: normal;
  font-size: 3.5rem; /* Larger icons */
  color: var(--primary);
  margin-bottom: 1.5rem; /* More space below icon */
  transition: all 0.3s ease;
  display: inline-block;
}

.application-item:hover i {
  color: var(--charcoal);
  transform: scale(1.1);
}

.application-item h4 {
  color: var(--charcoal);
  margin-bottom: 1rem; /* More space below heading */
  font-size: 1.3rem; /* Larger heading */
  font-weight: 600;
}

.application-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--light-charcoal);
  margin: 0;
}

/* Product Featured Image */
.product-featured-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.product-featured-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.product-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Enhanced Product Specifications */
.product-specs {
  background: var(--pure-white);
  padding: 3rem; /* More generous padding */
  border-radius: 20px; /* More rounded corners */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 2rem; /* Sticky positioning for better UX */
}

.product-specs h3 {
  color: var(--charcoal);
  margin-bottom: 2rem; /* More space below heading */
  font-size: 1.6rem; /* Larger heading */
  font-weight: 600;
  text-align: center;
  position: relative;
}

.product-specs h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--turmeric);
  border-radius: 2px;
}

/* Enhanced Specifications Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3rem; /* More space below table */
  background: var(--pure-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Softer shadow */
  border-radius: 15px;
  overflow: hidden;
}

.specs-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table tr:hover {
  background: rgba(74, 144, 226, 0.02); /* Subtle hover effect */
}

.specs-table td {
  padding: 1.5rem 1.2rem; /* More generous padding */
  border: none;
  font-size: 1rem;
  vertical-align: middle;
}

.specs-table td:first-child {
  background: linear-gradient(135deg, var(--off-white) 0%, rgba(74, 144, 226, 0.05) 100%);
  font-weight: 600;
  color: var(--charcoal);
  width: 45%;
  font-size: 0.95rem;
}

.specs-table td:last-child {
  color: var(--light-charcoal);
  font-weight: 500;
}

/* Enhanced Quality Assurance Section */
.quality-assurance {
  background: linear-gradient(135deg, var(--off-white) 0%, rgba(74, 144, 226, 0.05) 100%);
  padding: 2.5rem; /* More generous padding */
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.quality-assurance h3 {
  color: var(--charcoal);
  margin-bottom: 1.5rem; /* More space below heading */
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.quality-assurance ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quality-assurance li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--light-charcoal);
  margin-bottom: 1rem; /* More space between items */
  padding-left: 2rem;
  position: relative;
}

.quality-assurance li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Enhanced Contact CTA Section on Product Pages */
.contact-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
  padding: 6rem 0; /* More generous padding */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(74, 144, 226, 0.1) 0%, rgba(255, 219, 88, 0.1) 100%);
  opacity: 0.3;
}

.contact-cta .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.contact-cta h2 {
  font-size: 3rem; /* Larger heading */
  margin-bottom: 2rem; /* More space below heading */
  color: var(--pure-white);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-cta p {
  font-size: 1.4rem; /* Larger text */
  margin-bottom: 3rem; /* More space before buttons */
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  white-space: nowrap;
}

.product-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem; /* More space between buttons */
  flex-wrap: wrap;
}

.product-buttons .btn {
  padding: 18px 36px; /* More generous button padding */
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 180px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
}

.product-buttons .btn-primary {
  background: var(--turmeric);
  color: var(--charcoal);
  border: 2px solid var(--turmeric);
}

.product-buttons .btn-primary:hover {
  background: transparent;
  color: var(--turmeric);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 219, 88, 0.3);
}

.product-buttons .btn-secondary {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--pure-white);
}

.product-buttons .btn-secondary:hover {
  background: var(--pure-white);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}
.contact-item .fa-phone {
  color: var(--primary);
  font-size: 2rem;
}

.contact-item .fa-envelope {
  color: var(--red);
  font-size: 2rem;
}

.contact-item .fa-globe {
  color: var(--yellow);
  font-size: 2rem;
}

.contact-item .fa-map-marker-alt {
  color: var(--purple);
  font-size: 2rem;
}

/* Social icon specific colors to match floating buttons */
.social-link .social-icon-whatsapp {
  color: white !important; /* White icon */
}

.social-link .social-icon-email {
  color: white !important; /* White icon */  
}

/* Background colors for social links - applied via JavaScript or additional classes */
.social-link.whatsapp-social {
  background-color: #25d366 !important; /* WhatsApp green */
}

.social-link.email-social {
  background-color: #dd4b39 !important; /* Email red */
}

.footer-section .fa-phone {
  color: var(--teal);
}

.footer-section .fa-envelope {
  color: var(--red);
}

.footer-section .fa-globe {
  color: var(--yellow);
}

.footer-section .fa-map-marker-alt {
  color: var(--purple);
}

/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
  background-color: #25d366;
}

.email-btn {
  background-color: #dd4b39;
}

/* Header Topbar */
.header-topbar {
  background-color: var(--charcoal);
  color: var(--off-white);
  padding: 0.25rem 0;
  font-size: 0.8rem;
}

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

.topbar-info {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.topbar-info li {
  display: flex;
  align-items: center;
}

.topbar-info i {
  margin-right: 0.5rem;
  color: var(--primary);
}

.topbar-info a {
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.topbar-info a:hover {
  color: var(--primary);
}

.topbar-social {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.topbar-social a {
  color: var(--off-white);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.topbar-social a:hover {
  color: var(--primary);
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
/* Enhanced Mobile Header - Less Cluttered */
@media (max-width: 768px) {
  /* Simplified mobile topbar */
  .header-topbar {
    padding: 0.4rem 0; /* More spacious */
    font-size: 0.85rem; /* Slightly larger text */
    background: rgba(44, 44, 44, 0.95); /* Less prominent */
  }

  .topbar-info {
    gap: 1.5rem; /* More space between items */
    justify-content: center;
  }

  /* Hide email on mobile to reduce clutter, keep only phone */
  .topbar-info li:nth-child(2) {
    display: none;
  }

  .topbar-info a {
    font-size: 0.85rem; /* Larger touch targets */
    padding: 0.3rem 0.5rem;
  }

  .topbar-social {
    gap: 1rem; /* More space between social icons */
  }

  .topbar-social a {
    font-size: 1.1rem; /* Slightly larger */
    padding: 0.3rem;
  }

  /* More spacious main header */
  .header-main {
    padding: 1rem 0; /* Increased from default */
  }

  .logo {
    padding: 0.5rem 0;
  }

  .logo .brand-mark { 
    height: 72px; /* Increased by 1.5x for better visibility */
    width: 72px; /* Square logo - width same as height */
    max-width: 72px; /* Prevent logo from being too wide */
  }

  .logo h1 {
    font-size: 1.5rem; /* Slightly larger */
    line-height: 1.2;
    margin-bottom: 0.2rem;
  }

  .logo .tagline {
    font-size: 0.8rem; /* Larger tagline */
    line-height: 1.3;
  }
}

  /* Ensure no horizontal scroll */
  body, html {
    overflow-x: hidden;
  }
  
  /* Fix any potential width issues */
  * {
    max-width: 100%;
  }

  /* REMOVE BLUE CIRCLE BACKGROUNDS ON MOBILE */
  .hero::after {
    background-image: none !important;
  }
  
  .footer {
    background-image: none !important;
  }

  /* Improve touch targets */
  a, button, .btn {
    min-height: 44px;
    min-width: 44px;
  }

  /* Better spacing for mobile */
  .section {
    scroll-margin-top: 100px; /* Account for fixed header */
  }

  /* Prevent text from being too small */
  p, li, span:not(.hero-content h1 span) {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  /* Ensure hero h1 span maintains proper size relative to h1 */
  .hero-content h1 span {
    font-size: inherit !important;
    line-height: inherit !important;
  }

  /* Improve readability */
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.2 !important;
    word-wrap: break-word;
    hyphens: auto;
  }
}

/* Prevent zoom on input focus (iOS Safari) */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* Extra small dots for all mobile devices */
@media (max-width: 767px) {
  .cover-dots .dot {
    width: 5px !important;
    height: 5px !important;
    border: 0.5px solid rgba(255,255,255,0.7) !important;
    background: rgba(255,255,255,0.4) !important;
  }

  .cover-dots .dot.active {
    width: 7px !important;
    height: 7px !important;
    background: rgba(255,255,255,0.95) !important;
    transform: scale(1) !important;
  }

  .cover-dots {
    gap: 3px !important;
  }
}

/* Enhanced Mobile Product Pages Design - More Spacious */
@media (max-width: 768px) {
  /* Enhanced mobile product hero section */
  .product-hero {
    padding: 4rem 0; /* More generous mobile padding */
    margin-top: 60px; /* Account for smaller mobile header */
  }

  .product-hero .container {
    max-width: 100%;
    padding: 0 1.5rem;
  }

  .product-hero h1 {
    font-size: 2.2rem; /* Larger mobile heading */
    line-height: 1.3;
    margin-bottom: 1.5rem; /* More space */
  }

  .product-hero p {
    font-size: 1.2rem; /* Larger subtitle on mobile */
    line-height: 1.6;
    white-space: normal; /* Allow wrapping on mobile */
  }

  .breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.5rem; /* More space */
  }

  /* Mobile product image */
  .product-featured-image {
    margin: 0 auto 1.5rem auto;
    border-radius: 12px;
  }

  /* Enhanced mobile product content layout */
  .product-details {
    padding: 2rem 0; /* Reduced padding for continuous flow */
  }

  .product-content {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 4rem; /* More space between sections */
  }

  .product-info {
    padding-right: 0;
  }

  .product-info h2 {
    font-size: 2rem; /* Larger heading on mobile */
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .product-info h3 {
    font-size: 1.4rem; /* Larger subheadings */
    margin: 2.5rem 0 1.2rem 0; /* More space around subheadings */
  }

  .product-info p {
    font-size: 1rem;
    line-height: 1.7; /* Better line spacing */
    margin-bottom: 2rem;
    text-align: left;
  }

  .product-info ul {
    margin-left: 1rem;
    margin-bottom: 2.5rem; /* More space after lists */
  }

  .product-info li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem; /* More space between list items */
    line-height: 1.6;
  }

  /* Enhanced mobile applications grid */
  .applications-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive for tablet */
    gap: 2rem; /* More space between cards */
    margin-top: 2rem;
  }

  .application-item {
    padding: 2.5rem 2rem; /* More generous padding */
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    min-height: 250px; /* Consistent height on tablet */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .application-item i {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", FontAwesome;
    font-weight: 900;
    font-style: normal;
    font-size: 3rem; /* Larger mobile icons */
    margin-bottom: 1.2rem;
    display: inline-block;
  }

  .application-item h4 {
    font-size: 1.2rem; /* Larger headings */
    margin-bottom: 0.8rem;
  }

  .application-item p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Enhanced mobile product specs */
  .product-specs {
    padding: 2.5rem; /* More generous padding */
    margin-top: 0;
    position: static; /* Remove sticky on mobile */
  }

  .product-specs h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  /* Enhanced mobile specs table */
  .specs-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .specs-table tr {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 0; /* More generous padding */
    white-space: normal;
  }

  .specs-table td {
    display: inline-block;
    width: auto;
    padding: 0.5rem 1rem; /* More padding */
    vertical-align: top;
  }

  .specs-table td:first-child {
    width: 40%;
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(74, 144, 226, 0.05) 100%);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px 0 0 8px;
  }

  .specs-table td:last-child {
    width: 55%;
    font-size: 0.9rem;
    background: var(--pure-white);
    border-radius: 0 8px 8px 0;
  }

  /* Enhanced mobile quality assurance */
  .quality-assurance {
    padding: 2rem; /* More generous padding */
    margin-top: 2rem;
  }

  .quality-assurance h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .quality-assurance li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem; /* More space between items */
  }

  /* Enhanced mobile contact CTA */
  .contact-cta {
    padding: 4rem 0; /* More generous padding */
  }

  .contact-cta .container {
    max-width: 100%;
    padding: 0 1.5rem;
  }

  .contact-cta h2 {
    font-size: 2.2rem; /* Larger mobile heading */
    margin-bottom: 1.5rem;
    line-height: 1.3;
    white-space: normal; /* Allow wrapping on mobile */
  }

  .contact-cta p {
    font-size: 1.1rem; /* Larger mobile text */
    margin-bottom: 2.5rem;
    line-height: 1.6;
    white-space: normal; /* Allow wrapping on mobile */
  }

  .product-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* More space between buttons */
    align-items: center;
  }

  .product-buttons .btn {
    width: 280px; /* Wider mobile buttons */
    max-width: 90%;
    font-size: 1rem;
    padding: 16px 32px; /* More generous padding */
  }
}

/* Mobile-specific layout for phones */
@media (max-width: 600px) {
  .applications-grid {
    grid-template-columns: 1fr !important; /* Single column for phones */
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .application-item {
    min-height: 220px; /* Consistent height on mobile */
    padding: 2rem 1.5rem;
  }
}

/* Very small mobile screens (480px and below) */
@media (max-width: 480px) {
  .product-hero {
    padding: 1.5rem 0;
  }

  .product-hero h1 {
    font-size: 1.5rem;
  }

  .product-details {
    padding: 1.5rem 0;
  }

  .product-info h2 {
    font-size: 1.4rem;
  }

  .product-info h3 {
    font-size: 1.1rem;
  }

  .specs-table td:first-child,
  .specs-table td:last-child {
    font-size: 0.8rem;
  }

  .application-item {
    min-height: 200px; /* Consistent height on small mobile */
    padding: 1.5rem 1rem;
  }

  .application-item i {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", FontAwesome;
    font-weight: 900;
    font-style: normal;
    font-size: 1.8rem;
    display: inline-block;
  }

  .application-item h4 {
    font-size: 1rem;
  }

  .application-item p {
    font-size: 0.85rem;
  }

  .contact-cta h2 {
    font-size: 1.5rem;
    white-space: normal; /* Allow wrapping on small mobile */
  }

  .contact-cta p {
    font-size: 0.9rem;
    white-space: normal; /* Allow wrapping on small mobile */
  }
}

/* Mobile-specific hero text optimization */
.mobile-break {
  display: none;
}

/* Mobile responsive improvements for hero text */
@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
  
  .hero-content h1 {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
    text-align: center;
  }
  
  .hero-content p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    text-align: center;
    margin-bottom: 2rem !important;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 80%;
    max-width: 280px;
    text-align: center;
    padding: 12px 24px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
  }
  
  .hero-content p {
    font-size: 0.95rem !important;
    padding: 0 10px;
  }
}
