/* --------------------------------------------------
   HOME PAGE — Why Choose Trinity Cards
-------------------------------------------------- */

/* Card container */
.wct-card {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.08);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effects */
.wct-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 38px rgba(0, 0, 0, 0.12);
}

/* Radiant teal glow on hover */
.wct-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
  background: linear-gradient(120deg,
      rgba(64, 255, 225, 0.5),
      rgba(107, 231, 255, 0.4),
      rgba(59, 207, 255, 0.35),
      rgba(47, 255, 216, 0.45));
  border-radius: inherit;
  mix-blend-mode: overlay;
}

.wct-card:hover::after {
  opacity: 0.5;
}

/* Title */
.wct-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0b4d46;
  /* Deep teal text */
}

/* Icon box */
.wct-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a8a78, #0bc2a1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}


/* ----------------------------------------
   SMOOTH HORIZONTAL IMAGE SLIDER (Infinite)
---------------------------------------- */

.smooth-slider {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}

.smooth-track {
  display: flex;
  gap: 18px;
  animation: smoothScroll 45s linear infinite;
}

/* Slow, calm, continuous movement */
@keyframes smoothScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.smooth-slider:hover .smooth-track {
  animation-play-state: paused;
}

.smooth-img {
  height: 160px;
  width: 280px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform .35s;
}

.smooth-img:hover {
  transform: scale(1.06);
}

/* ============================================
   PREMIUM NEON BULLET LIST FOR HIGHLIGHTS
============================================ */

.neo-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #0f3f3d;
  /* deep teal text */
}

/* Glowing neon bullet */
.neo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #2df9c7 0%, #00bfa6 70%, #009b8f 100%);
  box-shadow: 0 0 12px rgba(45, 249, 199, 0.8);
  animation: neonPulse 2.6s infinite ease-in-out;
}

/* Soft breathing glow */
@keyframes neonPulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 6px rgba(45, 249, 199, 0.45);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 0 16px rgba(45, 249, 199, 0.85);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 6px rgba(45, 249, 199, 0.45);
  }
}