/* HOW ARIS WORKS - 4 STEP MODEL */
.aris-steps-section {
  background: #fff4e8;                /* light orange background */
  padding: 60px 0;
  color: #071627;                     /* dark navy text */
  font-family: 'Poppins', sans-serif;
}

.section-head .sm {
  color: #f97316;                     /* brand orange */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-head .lg {
  font-size: 28px;
  margin-bottom: 28px;
  color: #071627;
  font-weight: 800;
}

/* Steps wrapper: horizontal on large screens */
.steps-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}

/* Each card */
.step-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  width: 23%;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(7,22,39,0.06);
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease;
  position: relative;
  border: 1px solid rgba(7,22,39,0.04);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(7,22,39,0.10);
}

/* number circle */
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg,#f97316,#ffb957);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 0 auto 12px;
  box-shadow: 0 6px 18px rgba(249,115,22,0.22);
}

/* icon */
.step-icon {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  background: rgba(249,115,22,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #f97316;
  font-size: 26px;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #071627;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

/* Connector line between steps (desktop) */
.connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg,#ffb957,#f97316);
  flex-shrink: 0;
  border-radius: 2px;
  display: block;
}

/* Make connectors show as arrows on hover (subtle) */
.step-card:hover ~ .connector,
.connector:hover {
  transform: scaleX(1.02);
}

/* Responsive: stack vertically on small screens */
@media (max-width: 991px) {
  .steps-wrap {
    flex-direction: column;
    gap: 18px;
    padding: 0 10px;
  }
  .step-card {
    width: 100%;
    min-width: auto;
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .step-number { margin: 0; }
  .step-icon { margin-top: 6px; }
  .step-title { margin-top: 6px; }
  .connector { display: none; }
  .step-desc { color: #475569; }
}
.aris-section {
  background: #071627;
  padding: 90px 0;
  position: relative;
  color: #ffffff;
}

.sub-title {
  font-size: 17px;
  color: #ffb957;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.title {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 20px;
  color: #ffffff;
}

.desc {
  font-size: 17px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 25px;
}

.why-title {
  font-size: 22px;
  margin-bottom: 12px;
  color: #f97316;
}

.aris-points {
  list-style: none;
  padding: 0;
}

.aris-points li {
  font-size: 16px;
  margin: 8px 0;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.aris-points li span {
  color: #ffb957;
  margin-right: 10px;
  font-size: 20px;
}

.aris-img {
  width: 100%;
  max-width: 420px;
  transition: 0.5s ease;
  border-radius: 12px;
}

.aris-img:hover {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .aris-content {
    text-align: center;
    margin-bottom: 30px;
  }
}
.features-section {
  background: #0f293f;
  padding: 80px 0;
  position: relative;
}

.features-title {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
  max-width: 900px;
  margin: auto;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 22px;
  border-left: 4px solid #f97316;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(90deg, #f97316 0%, #ffb957 100%);
  border-left-color: #ffffff;
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: #f97316;
  border-radius: 50%;
  font-size: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: 0.3s;
}

.feature-item:hover .feature-icon {
  background: #ffffff;
  color: #f97316;
}

.feature-text {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* Container */
.tattva-compare-light {
  background: #fff6ec; /* very soft orange tint */
  padding: 80px 20px;
}

/* Title */
.cmp-title-light {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #071627; /* navy */
}

/* Grid Table */
.cmp-table-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(7, 22, 39, 0.08);
}

/* Header */
.cmp-cell-light.head {
  background: linear-gradient(90deg, #f97316, #ffb957);
  color: #071627;
  padding: 18px 20px;
  text-align: center;
  font-weight: 800;
  font-size: 17px;
}

/* Normal cells */
.cmp-cell-light {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #071627;
  border-bottom: 1px solid rgba(7, 22, 39, 0.08);
  min-height: 64px;
  transition: background 0.3s ease;
}

.cmp-cell-light:nth-child(3n+1) { border-right: 1px solid rgba(7,22,39,0.06); }
.cmp-cell-light:nth-child(3n+2) { border-right: 1px solid rgba(7,22,39,0.06); }

/* Bottom border remove for last row */
.cmp-cell-light:nth-last-child(-n+3) {
  border-bottom: none;
}

/* Check icon */
.chk {
  display: inline-flex;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(249,115,22,0.12);
  color: #f97316;
  font-weight: 800;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

/* Hover */
.cmp-cell-light:hover {
  background: #fff1e0;
}

/* Note below */
.cmp-note-light {
  text-align: center;
  margin-top: 18px;
  color: #374151;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 868px) {
  .cmp-table-light {
    grid-template-columns: 1fr;
  }
  .cmp-cell-light.head {
    text-align: left;
  }
}