/* =========================
   SECTION
   ========================= */
.circle-offer {
  padding: 70px 20px;
  font-family: 'Inter', sans-serif;
}

/* =========================
   GRID CONTAINER
   ========================= */
.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   OFFER BOX
   ========================= */
.offring {
  padding: 22px 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}

.offring:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

/* =========================
   TEXT
   ========================= */
.offring h4 {
  font-family: "Poppins", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  margin: 0;
  color: var(--text-dark, #1a2a3a);
}

.offring p {
  margin-top: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted, #5c6b7a);
  margin-bottom: 0;
}

/* =========================
   COLOR VARIANTS — 6 unique colors
   ========================= */
.green {
  background: linear-gradient(135deg, #e6fcf5, #ffffff);
  border: 1px solid #63e6be;
}

.blue {
  background: linear-gradient(135deg, #e7f5ff, #ffffff);
  border: 1px solid #74c0fc;
}

.purple {
  background: linear-gradient(135deg, #f3f0ff, #ffffff);
  border: 1px solid #b197fc;
}

.indigo {
  background: linear-gradient(135deg, #edf2ff, #ffffff);
  border: 1px solid #91a7ff;
}

.pink {
  background: linear-gradient(135deg, #fff0f6, #ffffff);
  border: 1px solid #f783ac;
}

.orange {
  background: linear-gradient(135deg, #fff4e6, #ffffff);
  border: 1px solid #ffa94d;
}

/* =========================
   SCROLL REVEAL
   ========================= */
.circle-reveal {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.circle-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
  .circle-offer {
    padding: 60px 15px;
  }

  .offering-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .offering-grid {
    grid-template-columns: 1fr;
  }
}
