﻿/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background-color: #4a6580;
  background-image:
    radial-gradient(circle at 75% 25%, rgba(34,197,94,0.07) 0%, transparent 45%),
    radial-gradient(circle at 15% 75%, rgba(96,165,250,0.10) 0%, transparent 45%),
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 26px 26px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Canvas wave bg */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.55;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--space-3xl);
  width: 100%;
  max-width: 720px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #f0f5f4;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(4px);
}

.hero-tag .dot {
  width: 6px; height: 6px;
  background: #c8f0e8;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: var(--space-lg);
  letter-spacing: -1px;
}

.hero-title .highlight { color: #c8f0e8; }

.hero-desc {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero-stats { display: flex; gap: var(--space-2xl); }

.stat-item { text-align: left; }

.stat-number {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.stat-number span { color: #c8f0e8; }

.stat-label {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 280px;
  display: block;
}

.hero-image-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: 0 4px 20px rgba(37,99,235,0.12);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 2;
}

.hero-image-badge.badge-1 { top: -16px; left: 10%; }
.hero-image-badge.badge-2 { bottom: -16px; right: 5%; }

.badge-icon { font-size: 1.4rem; }

.badge-text strong {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--secondary);
  font-weight: 700;
}

.badge-text span {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

/* ===== MISSION VISION VALUE ===== */
.mvv-section {
  background: #ffffff;
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: center;
}

.mvv-divider {
  background: var(--border);
  width: 1px;
  height: 80px;
  align-self: center;
  justify-self: center;
}

.mvv-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-2xl);
}

.mvv-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.mvv-content h3 {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

.mvv-content p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .mvv-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }
  .mvv-item {
    padding: var(--space-lg) 0;
  }
}

/* ===== BRANDS ===== */
.brands-section {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.brands-label {
  text-align: center;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.brands-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.brand-item {
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: -0.5px;
  transition: var(--transition-fast);
  cursor: pointer;
  text-transform: uppercase;
}

.brand-item:hover { color: var(--secondary); }

/* ===== CATEGORIES ===== */
.categories-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-page);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.category-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-left: 4px solid transparent;
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  border-left-color: transparent;
  background: var(--bg-dark);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.category-card-img { display: none; }
.category-icon { display: none; }
.cat-fallback-icon { display: none; }

.category-name {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.3;
  margin-bottom: 3px;
}

.category-card:hover .category-name {
  color: var(--primary-dark);
}

.category-count {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

/* ===== CUSTOMERS MARQUEE ===== */
.customers-section {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background-color: #f0f4f8;
  background-image: radial-gradient(circle, #c8d4e0 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.customers-section::before,
.customers-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}
.customers-section::before { top: 0; background: linear-gradient(to bottom, #f0f4f8, transparent); }
.customers-section::after  { bottom: 0; background: linear-gradient(to top, #f0f4f8, transparent); }
.customers-section .container,
.customers-section .marquee-wrapper { position: relative; z-index: 2; }

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: var(--space-md) 0;
  /* Fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-logo {
  flex-shrink: 0;
  width: 220px;
  height: 100px;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.marquee-logo:hover {
  border-color: var(--border);
  box-shadow: none;
  transform: translateY(-3px);
}

.marquee-logo img {
  max-height: 72px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.2s ease;
}

.marquee-logo:hover img {
  filter: grayscale(0%);
}

/* ===== FEATURED PRODUCTS ===== */
.featured-section {
  padding: var(--space-3xl) 0;
  background-color: #f0f4f8;
  background-image:
    radial-gradient(circle, #c8d4e0 1px, transparent 1px);
  background-size: 28px 28px;
  position: relative;

}

/* Fade top and bottom edges of the dot grid */
.featured-section::before,
.featured-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}
.featured-section::before {
  top: 0;
  background: linear-gradient(to bottom, #f0f4f8, transparent);
}
.featured-section::after {
  bottom: 0;
  background: linear-gradient(to top, #f0f4f8, transparent);
}

.featured-section .container {
  position: relative;
  z-index: 2;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: stretch;
}

/* Featured card overrides — uniform height, no price row */
.featured-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-product-card .product-card-img {
  height: var(--card-img-height);
  min-height: var(--card-img-height);
  max-height: var(--card-img-height);
  flex-shrink: 0;
}

.featured-product-card .product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-md);
}

.featured-product-card .product-category {
  font-size: var(--font-size-xs);
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}

.featured-product-card .product-name {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  flex: 1;
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.featured-product-card .product-rating {
  margin-bottom: var(--space-sm);
}

.featured-card-footer {
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

.featured-view-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: #1a2e4a;
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-sm);
  font-weight: 700;
  transition: var(--transition-fast);
  text-decoration: none;
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-view-btn:hover {
  background: #2563eb;
  box-shadow: 0 4px 16px rgba(37,99,235,0.30);
}

.view-all-wrap {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ===== PROMO BANNER ===== */
.promo-section { padding: var(--space-2xl) 0; }

.promo-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 60%, #f0fdf4 100%);
  border: 1.5px solid #d1fae5;
  border-radius: var(--radius-xl);
  box-shadow: none, 0 2px 12px rgba(37,99,235,0.07);
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3xl);
  align-items: center;
}

/* Decorative background circles */
.promo-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: 320px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Badge */
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef9c3;
  border: 1px solid #fde047;
  color: #854d0e;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

/* Heading */
.promo-content h2 {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.promo-highlight {
  color: var(--primary-dark);
}

.promo-content p {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

/* Feature checklist */
.promo-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.promo-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-secondary);
}

.promo-feature svg {
  color: var(--primary-dark);
  flex-shrink: 0;
}

/* Timer */
.promo-timer-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.promo-timer-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-timer {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.timer-sep {
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 12px;
}

.timer-block {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  min-width: 58px;
  box-shadow: var(--shadow-sm);
}

.timer-block .num {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
}

.timer-block .label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
  display: block;
}

/* CTA buttons */
.promo-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

/* Right visual panel */
.promo-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  flex-shrink: 0;
}

.promo-stat-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  min-width: 120px;
}

.promo-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.promo-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.promo-stat-val {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 4px;
}

.promo-stat-lbl {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ===== WHY US ===== */
.why-section {
  padding: var(--space-3xl) 0;
  background-color: #f0f4f8;
  background-image: radial-gradient(circle, #c8d4e0 1px, transparent 1px);
  background-size: 28px 28px;
  position: relative;
}

.why-section::before,
.why-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}
.why-section::before { top: 0; background: linear-gradient(to bottom, #f0f4f8, transparent); }
.why-section::after  { bottom: 0; background: linear-gradient(to top, #f0f4f8, transparent); }
.why-section .container { position: relative; z-index: 2; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.why-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-card:not(.graph-interactive):hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 4px 12px rgba(37,99,235,0.12);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  box-shadow: 0 6px 20px rgba(37,99,235,0.20);
  transform: scale(1.08);
}

.why-card h3 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

.why-card p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== ABOUT SPLIT SECTION ===== */
.about-split-section {
  padding: var(--space-3xl) 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about-split-sep {
  background: var(--border);
  width: 1px;
  min-height: 260px;
  align-self: stretch;
}

.about-split-card {
  padding: var(--space-lg) 0;
}

.about-split-title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.about-split-divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: var(--space-lg);
}

.about-split-card p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* Stats grid inside about card */
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.about-stat-card {
  background: var(--bg-dark);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
}

.about-stat-num {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: var(--font-size-xs);
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.about-elgi-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-md);
}

/* ===== OUR SOLUTIONS SECTION ===== */
.solutions-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
}

.solutions-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.solution-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.solution-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.solution-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.solution-card:hover .solution-img-wrap img {
  transform: scale(1.05);
}

.solution-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: #ffffff;
  text-align: center;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--space-sm) var(--space-md);
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
  padding: var(--space-3xl) 0;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.why-choose-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-md);
}

.why-choose-section .section-header p {
  max-width: 860px;
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.8;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.why-choose-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-choose-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-choose-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.why-choose-card h3 {
  font-size: var(--font-size-base);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

.why-choose-card p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== HOME ABOUT SECTION ===== */
.home-about-section {
  padding: var(--space-3xl) 0;
  background-color: #f0f4f8;
  background-image: radial-gradient(circle, #c8d4e0 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.home-about-section::before,
.home-about-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}
.home-about-section::before {
  top: 0;
  background: linear-gradient(to bottom, #f0f4f8, transparent);
}
.home-about-section::after {
  bottom: 0;
  background: linear-gradient(to top, #f0f4f8, transparent);
}

.home-about-section .container {
  position: relative;
  z-index: 2;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Image side */
.home-about-img-wrap {
  position: relative;
  flex-shrink: 0;
}

.home-about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 8px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(37,99,235,0.14);
  height: 420px;
}

.collage-img {
  overflow: hidden;
  position: relative;
  background: #eef2f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  padding: 16px;
  transition: transform 0.4s ease;
}

.collage-img:hover img { transform: scale(1.05); }

.collage-main {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: #eef2f7;
}

.collage-tr {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: #f0f4f8;
}

.collage-bl,
.collage-br { display: none; }

.home-about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-lg);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.home-about-badge-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.home-about-img-badge span:last-child {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Content side */
.home-about-content .section-tag {
  margin-bottom: var(--space-md);
}

.home-about-content h2 {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-xl);
}

.home-about-content h2 span {
  color: var(--secondary);
}

.home-about-content p {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

.home-about-content p strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Stats row */
.home-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.home-about-stat {
  text-align: center;
  padding: var(--space-md);
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition-fast);
}

.home-about-stat:hover {
  background: var(--bg-dark);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.home-about-stat-num {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 4px;
}

.home-about-stat-lbl {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.3;
}

/* CTA buttons */
.home-about-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

/* ===== VISION AND MISSION SECTION ===== */
.vm-section {
  padding: var(--space-3xl) 0;
  background-color: #f0f4f8;
  background-image:
    radial-gradient(circle, #c8d4e0 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.vm-section::before,
.vm-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  pointer-events: none;
  z-index: 1;
}
.vm-section::before {
  top: 0;
  background: linear-gradient(to bottom, #f0f4f8, transparent);
}
.vm-section::after {
  bottom: 0;
  background: linear-gradient(to top, #f0f4f8, transparent);
}

.vm-section .container {
  position: relative;
  z-index: 2;
}

.vm-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.vm-header h2 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.vm-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-light);
}

.vm-card-body {
  padding: var(--space-2xl) var(--space-2xl) var(--space-lg);
}

.vm-card-body h3 {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.vm-card-body p {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.85;
}

.vm-card-body p strong { color: var(--text-primary); }
.vm-card-body p em { font-style: italic; }

/* Visual area at bottom of card */
.vm-card-visual {
  position: relative;
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--space-lg);
  overflow: hidden;
}

.vm-vision-visual  { background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%); }
.vm-mission-visual { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); }

/* Ripple rings */
.vm-ripple {
  position: absolute;
  bottom: -30px;
  left: 30px;
  width: 180px;
  height: 180px;
}

.vm-ripple span {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(99,102,241,0.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.vm-ripple span:nth-child(1) { width: 80px;  height: 80px; }
.vm-ripple span:nth-child(2) { width: 130px; height: 130px; border-color: rgba(99,102,241,0.13); }
.vm-ripple span:nth-child(3) { width: 180px; height: 180px; border-color: rgba(99,102,241,0.07); }

.vm-mission-visual .vm-ripple span {
  border-color: rgba(37,99,235,0.18);
}
.vm-mission-visual .vm-ripple span:nth-child(2) { border-color: rgba(37,99,235,0.11); }
.vm-mission-visual .vm-ripple span:nth-child(3) { border-color: rgba(37,99,235,0.06); }

/* Icon */
.vm-icon-wrap {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.vm-icon-wrap svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 20px rgba(99,102,241,0.25));
}

.vm-icon-mission svg {
  filter: drop-shadow(0 8px 20px rgba(37,99,235,0.2));
}

/* ===== WHY ASHVEERA SECTION ===== */
.why-ashveera-section {
  padding: var(--space-3xl) 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-ashveera-section .section-header h2 {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--primary-dark);
  margin-bottom: var(--space-lg);
}

.why-ashveera-section .section-header p {
  max-width: 900px;
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.85;
  margin: 0 auto var(--space-2xl);
}

.why-ashveera-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.why-ashveera-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-ashveera-card:hover {
  border-color: var(--border);
  background: var(--bg-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-ashveera-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-ashveera-icon svg {
  width: 64px;
  height: 64px;
}

.why-ashveera-card p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== HOME HERO SLIDER ===== */
.home-hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.home-slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.home-slide {
  min-width: 100vw;
  width: 100vw;
  flex-shrink: 0;
  position: relative;
  line-height: 0;
}

/* Full image — full width, no cropping, auto height */
.home-slide img {
  width: 100%;
  height: auto;
  display: block;
  max-height: calc(100vh - 126px);
}

@media (max-width: 768px) {
  .home-slide img {
    max-height: 260px;
  }
}

.home-slide-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  z-index: 1;
}

.home-slide-text {
  padding: 0 80px;
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.home-slide-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.home-slide-tag--brand {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  font-size: 0.78rem;
  padding: 7px 18px;
}

.home-slide-tag--ie {
  background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #f59e0b 100%);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 3.5px;
  padding: 14px 32px;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(180, 83, 9, 0.55), 0 0 0 2px rgba(245,158,11,0.35);
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

.home-slide-tag--elgi {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
  font-size: 0.82rem;
  padding: 8px 20px;
}

.home-slide--ie-range .home-slide-overlay {
  background: linear-gradient(
    105deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(30, 58, 138, 0.72) 45%,
    rgba(124, 58, 237, 0.35) 100%
  ) !important;
}

.home-slide--ie-range .home-slide-text {
  max-width: 680px;
}

.home-slide--ie-range .home-slide-text h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.75rem);
}

.home-slide--ie-range .home-slide-text p {
  font-size: 1.12rem;
  max-width: 540px;
}

.home-slide--elgi .home-slide-overlay {
  background: linear-gradient(
    105deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(234, 88, 12, 0.45) 55%,
    transparent 100%
  ) !important;
}

.home-slide-text h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.home-slide-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}

.home-slide-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home-slide-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.home-slide-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* Arrows */
.home-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #fff;
  font-size: 1.4rem;
  transition: background 0.2s;
}

.home-slider-arrow:hover { background: rgba(0, 0, 0, 0.60); }
.home-slider-prev { left: 20px; }
.home-slider-next { right: 20px; }

/* Dots */
.home-slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.home-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.home-slider-dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .home-slide-text { padding: 0 20px; }
  .home-slide-text h1 { font-size: 1.4rem; }
  .home-slider-arrow { width: 38px; height: 38px; font-size: 1rem; }
}

/* ===== ABOUT SPLIT HOME ===== */
.about-split-home {
  padding: var(--space-3xl) 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-split-home-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.ash-divider {
  background: var(--border);
  width: 1px;
  align-self: stretch;
}

.ash-col-title {
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.ash-col-bar {
  display: none;
}

.ash-col p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

.ash-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg) var(--space-xl);
  margin-top: var(--space-xl);
}

.ash-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 4px;
}

.ash-stat-lbl {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.ash-elgi-btns {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.ash-elgi-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary);
  color: #ffffff;
  padding: 9px 20px;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  z-index: 1;
}

.ash-elgi-btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-1px);
}

/* ===== WHY CHOOSE HOME ===== */
.why-choose-home {
  padding: var(--space-3xl) 0;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.wch-title {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.why-choose-home .section-header p {
  max-width: 860px;
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.85;
  margin: 0 auto var(--space-2xl);
}

.wch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.wch-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.wch-card:hover {
  border-color: var(--secondary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.wch-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.wch-icon svg {
  width: 72px;
  height: 72px;
}

.wch-body h3 {
  font-size: var(--font-size-base);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

.wch-body p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .about-split-home-grid { grid-template-columns: 1fr; }
  .ash-divider { display: none; }
  .wch-grid { grid-template-columns: 1fr; }
}

/* ===== LEDL ABOUT (home + about page) ===== */
.ledl-about {
  padding: var(--space-3xl) 0;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ledl-about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--space-3xl);
  align-items: start;
  margin-bottom: var(--space-3xl);
}

.ledl-about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  background: #e2e8f0;
}

.ledl-about-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.ledl-about-heading {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: var(--space-lg);
}

.ledl-about-text p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

.ledl-about-text p strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.ledl-about-block {
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border);
  margin-bottom: var(--space-2xl);
}

.ledl-about-block--why {
  margin-bottom: 0;
}

.ledl-block-title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.ledl-block-intro {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
  max-width: 900px;
   white-space: nowrap;
  font-size: 14px; /* reduce if needed */
  overflow: visible;
}

.ledl-block-intro strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.ledl-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 960px;
}

.ledl-check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

.ledl-check {
  flex-shrink: 0;
  color: var(--secondary);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.5;
}

.ledl-check-list li strong {
  color: var(--primary-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .ledl-about-intro {
    grid-template-columns: 1fr;
  }
  .ledl-about-img img {
    min-height: 240px;
  }
}


/* ===== READ MORE BUTTON (product cards) ===== */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: var(--secondary);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 8px var(--space-md);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
}

.read-more-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37,99,235,0.20);
}

/* ===== ENQUIRE BUTTONS (modal) ===== */
.enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a2e4a;
  color: #ffffff;
  font-size: var(--font-size-sm);
  font-weight: 700;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.enquire-btn:hover {
  background: #2563eb;
  box-shadow: 0 4px 16px rgba(37,99,235,0.30);
}

.enquire-btn--wa {
  background: #25d366;
}

.enquire-btn--wa:hover {
  background: #1ebe5d;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

.enquire-btn--lg {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--font-size-base);
}

.enquire-label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  font-style: italic;
}

.prod-modal-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: var(--space-3xl) 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 860px;
  margin: var(--space-2xl) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.open {
  border-color: var(--border);
  box-shadow: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--secondary);
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--primary-dark); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary-dark);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 var(--space-xl);
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.85;
}

.faq-answer a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: var(--space-3xl) 0;
  background-color: #f0fdf4;
  background-image: radial-gradient(circle, #bbf7d0 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid var(--border);
  position: relative;
}

.blog-section::before,
.blog-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  pointer-events: none;
  z-index: 1;
}
.blog-section::before { top: 0; background: linear-gradient(to bottom, #f0fdf4, transparent); }
.blog-section::after  { bottom: 0; background: linear-gradient(to top, #f0fdf4, transparent); }
.blog-section .container { position: relative; z-index: 2; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.blog-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.blog-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--primary);
  color: #ffffff;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.blog-card-body {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.blog-date,
.blog-read {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.blog-card-body h3 {
  font-size: var(--font-size-base);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.4;
  margin-bottom: var(--space-sm);
}

.blog-card-body p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  margin-bottom: var(--space-md);
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.blog-read-more:hover {
  gap: 8px;
  color: var(--secondary);
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    font-size: var(--font-size-sm);
    padding: var(--space-md) var(--space-lg);
  }
}


/* ===== VISION AND MISSION (home page) ===== */
.vm-home-section {
  padding: var(--space-3xl) 0;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vm-home-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.vm-home-header h2 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.vm-home-header p {
  font-size: var(--font-size-base);
  color: var(--text-muted);
}

/* ── Grid ── */
.vm-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

/* Center the 3rd card (Our Value) when it's alone on the second row */
.vm-card--centered {
  grid-column: 1 / -1;
  max-width: calc(50% - var(--space-xl) / 2);
  margin: 0 auto;
  width: 100%;
}

/* ── Base card ── */
.vm-new-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1.5px solid transparent;
  box-shadow: 0 8px 32px rgba(15,23,42,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-new-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15,23,42,0.16);
}

/* ── Vision card — deep navy gradient ── */
.vm-new-card--vision {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1d4ed8 100%);
  color: #ffffff;
}

/* ── Mission card — green gradient ── */
.vm-new-card--mission {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #16a34a 100%);
  color: #ffffff;
}
/* ── value card — green gradient ── */
.vm-new-card--value {
  background: linear-gradient(135deg, #ae82e0 0%, #4d065f 50%, #8716a3 100%);
  color: #ffffff;
}

/* ── Decorative blobs ── */
.vm-card-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.12;
}

.vm-new-card--vision .vm-card-blob--1 {
  width: 260px; height: 260px;
  background: #60a5fa;
  top: -80px; right: -60px;
}
.vm-new-card--vision .vm-card-blob--2 {
  width: 140px; height: 140px;
  background: #a5b4fc;
  bottom: 20px; left: -40px;
}

.vm-new-card--mission .vm-card-blob--1 {
  width: 260px; height: 260px;
  background: #6ee7b7;
  top: -80px; right: -60px;
}
.vm-new-card--mission .vm-card-blob--2 {
  width: 140px; height: 140px;
  background: #34d399;
  bottom: 20px; left: -40px;
}
.vm-new-card--value .vm-card-blob--1 {
  width: 260px; height: 260px;
  background: #cb6ee7;
  top: -80px; right: -60px;
}
.vm-new-card--value .vm-card-blob--2 {
  width: 140px; height: 140px;
  background: #cb6ee7;
  bottom: 20px; left: -40px;
}

/* ── Top row: icon + label ── */
.vm-card-top {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.vm-new-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.vm-new-card--vision  .vm-new-icon-wrap {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
}
.vm-new-card--mission .vm-new-icon-wrap {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
}
.vm-new-card--value .vm-new-icon-wrap {
  background: rgba(84, 255, 184, 0);
  border: 1px solid rgba(1, 250, 167, 0.25);
  color: #ffffff;
}

.vm-card-label {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.75;
}

/* ── Title ── */
.vm-card-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
}

/* ── Body text ── */
.vm-card-text {
  position: relative;
  z-index: 1;
  font-size: var(--font-size-sm);
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  flex: 1;
}

/* ── Stats row ── */
.vm-card-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: auto;
}

.vm-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vm-stat-num {
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.vm-stat-lbl {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vm-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vm-new-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ASHVEERA ABOUT STATS ===== */
.ashveera-stats-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  width: 100%;
}

.ashveera-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.ashveera-stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
  text-align: center;
}

.ashveera-stat-lbl {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 768px) {
  .ashveera-stats-grid {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }
  .ashveera-stat-num {
    font-size: 2rem;
  }
}

/* ===== ABOUT PRODUCT RANGE CARDS (shared: index + about) ===== */
.about-product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.apc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.apc-card::before {
  display: none;
}
.apc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border); }
.apc-card:hover::before { display: none; }
.apc-card--accent { background: #f8fafc; border-color: var(--border); }
.apc-card--accent::before { display: none; }
.apc-icon {
  width: 52px; height: 52px;
  background: var(--secondary-light);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.apc-icon svg { width: 26px; height: 26px; stroke: var(--secondary-dark); }
.apc-card--accent .apc-icon { background: var(--secondary-light); }
.apc-card--accent .apc-icon svg { stroke: var(--secondary); }
.apc-badge {
  display: inline-block;
  font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--secondary-dark);
  background: var(--secondary-light);
  border: 1px solid #93c5fd;
  border-radius: var(--radius-full);
  padding: 3px 10px;
  width: fit-content;
}
.apc-badge--green { color: #1e40af; background: #dbeafe; border-color: #93c5fd; }
.apc-card h4 { font-size: var(--font-size-base); font-weight: 800; color: var(--text-primary); margin: 0; }
.apc-card p  { font-size: var(--font-size-sm); color: var(--text-secondary); line-height: 1.7; flex: 1; }
.apc-link {
  font-size: var(--font-size-sm); font-weight: 700;
  color: var(--secondary); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: auto; transition: var(--transition-fast);
}
.apc-link:hover { color: var(--secondary-dark); gap: 8px; }

/* ===== WHY LEDL CARDS (shared: index + about) ===== */
.about-why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.awc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.awc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.awc-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-lg);
  transition: var(--transition);
}
.awc-icon svg { width: 28px; height: 28px; }
.awc-icon--blue   { background: #eff6ff; }
.awc-icon--blue svg { stroke: #2563eb; }
.awc-card:hover .awc-icon--blue { background: #2563eb; }
.awc-card:hover .awc-icon--blue svg { stroke: #fff; }
.awc-icon--green  { background: #f0fdf4; }
.awc-icon--green svg { stroke: #16a34a; }
.awc-card:hover .awc-icon--green { background: #16a34a; }
.awc-card:hover .awc-icon--green svg { stroke: #fff; }
.awc-icon--amber  { background: #fffbeb; }
.awc-icon--amber svg { stroke: #d97706; }
.awc-card:hover .awc-icon--amber { background: #d97706; }
.awc-card:hover .awc-icon--amber svg { stroke: #fff; }
.awc-icon--purple { background: #faf5ff; }
.awc-icon--purple svg { stroke: #7c3aed; }
.awc-card:hover .awc-icon--purple { background: #7c3aed; }
.awc-card:hover .awc-icon--purple svg { stroke: #fff; }
.awc-card h4 { font-size: var(--font-size-base); font-weight: 800; color: var(--text-primary); margin-bottom: var(--space-sm); }
.awc-card p  { font-size: var(--font-size-sm); color: var(--text-secondary); line-height: 1.7; }

@media (max-width: 1024px) {
  .about-product-cards { grid-template-columns: 1fr; }
  .about-why-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-why-cards { grid-template-columns: 1fr; }
  .vm-card--centered { max-width: 100%; }
}

/* ===== ABOUT TWO-COLUMN LAYOUT ===== */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: var(--space-3xl);
  align-items: start;
  margin-bottom: var(--space-3xl);
}

.about-col-divider {
  background: var(--border);
  width: 1px;
  align-self: stretch;
  min-height: 100%;
}

.about-col-heading {
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: none;
  display: inline-block;
}

.about-col-left p,
.about-col-right p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-md);
  text-align: justify;
}

@media (max-width: 900px) {
  .about-two-col {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .about-col-divider {
    width: 60px;
    height: 2px;
    min-height: unset;
    align-self: auto;
    margin: 0 auto;
  }
}
