/* ===== 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 1fr;
  align-items: center;
  gap: var(--space-3xl);
  width: 100%;
}

.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: var(--primary);
  background: var(--primary-xlight);
  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(--primary);
  box-shadow: 0 6px 20px rgba(34,197,94,0.15);
  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, 1fr);
  gap: var(--space-lg);
}

/* 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: 200px;
  flex-shrink: 0;
}

.featured-product-card .product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-md);
}

.featured-product-card .product-name {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  flex: 1;
  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: #25d366;
  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;
}

.featured-view-btn:hover {
  background: #1ebe5d;
  box-shadow: 0 4px 16px rgba(37,211,102,0.40);
}

.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: 0 8px 40px rgba(34,197,94,0.10), 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(--primary);
}

.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:hover {
  border-color: var(--primary);
  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(--primary-xlight);
  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(--primary);
  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: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(37,99,235,0.14);
  height: 480px;
}

.collage-img {
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.45s ease;
}

.collage-img:hover img { transform: scale(1.06); }

/* Main large image spans 2 rows on the left */
.collage-main {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: #eef2f7;
}

.collage-main img {
  object-position: center 30%;
}

.collage-tr {
  grid-column: 2;
  grid-row: 1;
  border-radius: 0 var(--radius-lg) 0 0;
  background: #f0f4f8;
}

.collage-bl {
  grid-column: 2;
  grid-row: 2;
  border-radius: 0 0 var(--radius-lg) 0;
  background: #eef2f7;
}

.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(--primary-xlight);
  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));
}
