/* Start custom CSS for html, class: .elementor-element-13865be *//* ================= SECTION ================= */

.scfr-section {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.main-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}


/* ================= CARD ================= */

.card {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  border-left: 6px solid #e63946;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

/* angled sporty edge */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.08;
  transition: 0.3s ease;
  pointer-events: none; /* FIX */
}

/* hover lift */
.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

/* shine effect */
.card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none; /* FIX */
}

.card:hover::after {
  animation: shine 0.8s ease;
}

@keyframes shine {
  from {
    transform: translateX(-100%) rotate(25deg);
    opacity: 0;
  }
  to {
    transform: translateX(100%) rotate(25deg);
    opacity: 1;
  }
}


/* ================= TEXT ================= */

.card h3 {
  font-size: 18px;
  color: #1d3557;
  margin-bottom: 6px;
}

.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}


/* ================= BUTTON ================= */

.btn {
  display: inline-block;
  background: #f4b400; /* mustard */
  color: #1d3557;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  z-index: 2; /* FIX for mobile click */
}

/* hover lift (no colour change) */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* shine effect */
.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none; /* FIX */
}

.btn:hover::after {
  animation: shineBtn 0.6s ease;
}

@keyframes shineBtn {
  from {
    transform: translateX(-100%) rotate(25deg);
    opacity: 0;
  }
  to {
    transform: translateX(100%) rotate(25deg);
    opacity: 1;
  }
}/* End custom CSS */