:root {
  --primary-color: #14213d;
  --accent-color: #fca311;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
}

.difference-section {
  background-color: var(--bg-light);
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins';
}

.section-heading {
 font-size: clamp(1.5rem, 2.5vw + 1rem, 2rem);

  color: var(--primary-color);
  margin-bottom: 40px;
  position: relative;
  display: inline-block; /* allows underline to follow text width */
}

.section-heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  background-color: #1e3a8a;
  margin: 8px auto 0;
  border-radius: 3px;
}


.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.difference-item {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.difference-item:hover {
  transform: translateY(-5px);
}
/* What Makes Us Different Section */
.difference-section {
  padding: 4rem 1rem;
  background-color: #fff;
  text-align: center;
}



.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
}

.difference-item {
  background-color: #f9f9f9;
    width: 100%;
  /* give it some breathing-room so the background looks larger */
  min-height: 170px;      /* adjust up/down to taste */
  padding: 2rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.difference-item:hover {
  transform: translateY(-5px);
}

.icon-circle {
  background-color: #1e3a8a;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.difference-item h4 {
  font-size: 2rem;
  color: black;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.difference-item p {
  font-size: 0.9rem;
  color: #333;
  margin: 0;
}
