/* ========================================
   INDIA MARKET SECTION
======================================== */

.why-shavik-section {
  padding: 90px 0 100px;
}

/* ── Header ── */
.why-shavik-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-shavik-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #6b21a8;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
}

.why-shavik-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #1b1535;
  line-height: 1.25;
  margin-bottom: 14px;
  font-family: 'Montserrat', sans-serif;
}

.why-shavik-subtitle {
  font-size: 15.5px;
  color: #64748b;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

/* ── 2-column card grid ── */
.why-shavik-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Last card: centre it when odd total (5 cards → last spans both) */
.why-shavik-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

/* ── Each card ── */
.why-shavik-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  border: 1px solid rgba(12, 51, 101, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(12, 51, 101, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.why-shavik-card:hover {
  box-shadow: 0 10px 36px rgba(12, 51, 101, 0.12);
  transform: translateY(-3px);
}

/* ── Icon ── */
.why-shavik-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #0C3365;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(12, 51, 101, 0.25);
  margin-top: 2px;
}

/* ── Text ── */
.why-shavik-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.why-shavik-text strong {
  font-size: 15.5px;
  font-weight: 700;
  color: #1b1535;
  line-height: 1.3;
}

.why-shavik-text span {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.65;
}

/* ========================================
   TABLET  768px – 1024px
======================================== */
@media (min-width: 768px) and (max-width: 1024px) {
  .why-shavik-section { padding: 70px 0 80px; }
  .why-shavik-header  { margin-bottom: 48px; }

  .why-shavik-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .why-shavik-card {
    padding: 24px 20px;
  }
}

/* ========================================
   MOBILE  ≤ 767px
======================================== */
@media (max-width: 767px) {
  .why-shavik-section { padding: 56px 0 64px; }
  .why-shavik-header  { margin-bottom: 36px; }

  /* Single column on mobile */
  .why-shavik-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Remove centring override on mobile — all full width */
  .why-shavik-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }

  .why-shavik-card {
    padding: 22px 18px;
    gap: 14px;
  }

  .why-shavik-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 10px;
  }

  .why-shavik-text strong { font-size: 14.5px; }
  .why-shavik-text span   { font-size: 13px; }
}
