/* ===========================
   PREMIUM MORPH GLASS CARD
=========================== */

.glass-card {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;

  transition: all 0.4s ease;
  overflow: hidden;
}

/* Icon Styling */
.glass-card i {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 20px;
  transition: 0.3s ease;
}

/* Title */
.glass-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* Description */
.glass-card p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* Hover Morph */
.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

/* Animated Gradient Sweep */
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.08),
    transparent 70%
  );
  transform: translateX(-100%);
  transition: 0.6s ease;
}

.glass-card:hover::before {
  transform: translateX(100%);
}

/* Icon Grow on Hover */
.glass-card:hover i {
  transform: scale(1.1);
}