/* Start custom CSS for html, class: .elementor-element-13865be */.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;
}

/* 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;
}

/* hover glow + lift */
.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

/* animated 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;
}

.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;
  }
}

/* title */
.card h3 {
  font-size: 18px;
  color: #1d3557;
  margin-bottom: 6px;
}

/* text */
.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

/* BUTTON (improved colour) */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #1d3557, #457b9d);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* button hover */
.btn:hover {
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  transform: translateY(-2px);
}

.btn {
  display: inline-block;
  background: #f4b400; /* mustard yellow */
  color: #1d3557;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: 0.2s ease;
}

/* subtle lift only */
.btn:hover {
  transform: translateY(-2px);
}

/* hover shine effect (no colour change) */
.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: rotate(25deg);
  opacity: 0;
}

/* animate on hover */
.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 */