body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  padding-top: 80px; /* FIX HEADER OVERLAP */
}

.heading-font {
  font-family: 'Playfair Display', serif;
}

.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
}

html {
  scroll-behavior: smooth;
}

/* Floating animation */
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}


/** ================= GOLD BORDER CSS ================= */

.gold-border {
  position: relative;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(120deg, #d4af37, transparent, #d4af37);
  background-size: 300% 300%;
  animation: goldMove 4s linear infinite;
}

.gold-inner {
  background: #0a0a0a;
  border-radius: 15px;
  height: 100%;
  transition: transform 0.3s ease;
}

/* HOVER FIX */
.gold-border:hover .gold-inner {
  transform: translateY(-8px) scale(1.02);
}

/* animation */
@keyframes goldMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.glass-card {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 40px rgba(212,175,55,0.3);
}

.icon-wrap {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 15px;
}

/* PULSE */
.pulse {
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* ROTATE */
.rotate {
  animation: rotateAnim 6s linear infinite;
}

@keyframes rotateAnim {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.glass-card p {
  color: #d1d5db;
  font-size: 18px;
  font-weight: 500;
}