/* ============================================================
Scoped styles for the new "Our Support" section only.
main.css is NOT modified — every rule below is namespaced
under .our-support so it cannot touch or override any
existing site class. Colors are pulled directly from
main.css's own accent (#b254e0 → #b879ff) so this section
matches the real brand, not a guess.
============================================================ */

.our-support {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: url(../images/support-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0;
}

/* dark overlay so text/cards stay readable over the photo */
.our-support::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(20, 5, 40, 0.45);
}

.our-support .container {
  position: relative;
  z-index: 2;
}

/* keep heading text legible against the dark background */
.our-support .section-heading h6 {
  color: rgba(255, 255, 255, 0.75);
}

.our-support .section-heading h4 {
  color: #fff;
}

.our-support .section-heading p {
  color: rgba(255, 255, 255, 0.85);
}

.our-support .support-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.our-support .support-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 22px;
  text-align: center;
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
  box-shadow 0.35s ease, border-color 0.35s ease;
}

.our-support .support-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
  box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.6s ease;
}

.our-support .support-card:hover {
  transform: translateY(-8px);
  border-color: rgba(178, 84, 224, 0.35);
  box-shadow: 0 20px 45px rgba(178, 84, 224, 0.16);
}

/* top accent bar reveal on hover */
.our-support .support-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #b254e0;
  background: linear-gradient(-145deg, #b254e0 0%, #b879ff 100%);
  transition: width 0.4s ease;
}

.our-support .support-card:hover::after {
  width: 100%;
}

.our-support .icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  background: #f4edfb;
  transition: transform 0.35s ease;
}

.our-support .support-card:hover .icon-badge {
  transform: scale(1.1) rotate(-4deg);
}

.our-support .support-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.our-support .support-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #777;
  margin-bottom: 16px;
}

.our-support .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.our-support .feature-list li {
  margin-bottom: 8px;
  color: #666;
  position: relative;
  padding-left: 22px;
  font-size: 12.5px;
  line-height: 1.5;
}

.our-support .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b254e0;
  font-weight: bold;
}

/* ===========================
RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .our-support .support-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .our-support .support-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .our-support { padding: 70px 0; }
  .our-support .support-grid { grid-template-columns: 1fr; }
}