/* Card container */
.cta-unique-card {
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 40px 20px 30px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.cta-unique-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Floating icon */
.cta-icon-floating {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 18px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  font-size: 28px;
  color: #0d6efd;
}

/* Card body */
.cta-body {
  text-align: center;
  margin-top: 35px;
}

.cta-body h5 {
  font-weight: 700;
  font-size: 20px;
}

.cta-body p {
  color: #777;
  margin-bottom: 20px;
  font-size: 14px;
}

/* CTA Button */
.cta-unique-btn {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  padding: 5px 21px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.cta-unique-btn:hover {
  background: #084fbc;
  box-shadow: 0 0 12px rgba(13, 110, 253, 0.4);
  color: #fff;
}

/* Gradient bottom bar */
.cta-gradient-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #0d6efd, #00c6ff);
}

/* Responsive */
@media (max-width: 576px) {
  .cta-unique-card {
    padding: 50px 15px 25px;
  }
  .cta-body h5 {
    font-size: 18px;
  }
  .cta-body p {
    font-size: 13px;
  }
  .cta-icon-floating {
    font-size: 24px;
    padding: 14px;
  }
}/*# sourceMappingURL=cta-buttons.css.map */