body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  overflow-x: hidden;
}

.text-gold { color: #F5B301; }
.glass-nav {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-link { color: #fff !important; margin: 0 12px; font-weight: 500; }
.nav-link:hover { color: #F5B301 !important; }

.btn-glow {
  background: linear-gradient(90deg, #F5B301, #FFD85E);
  border: none;
  color: #121212;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 22px;
  box-shadow: 0 0 10px rgba(245,179,1,0.6);
  transition: 0.3s;
}
.btn-glow:hover { box-shadow: 0 0 20px rgba(245,179,1,1); }

.btn-outline-gold {
  border: 2px solid #F5B301;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
}
.btn-outline-gold:hover {
  background: #F5B301;
  color: #121212;
}

.hero-section {
  height: 100vh;
  background: url('assets/banner1.jpg') center/cover no-repeat;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.hero-section .content { position: relative; z-index: 2; }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px 20px;
  transition: 0.4s;
}
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(245,179,1,0.4);
}

.step {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 25px;
  margin: 10px;
  transition: all 0.3s ease;
}
.step:hover { transform: scale(1.05); background: rgba(255,255,255,0.1); }

.social-icons a {
  color: #F5B301;
  font-size: 24px;
  margin: 0 10px;
  transition: 0.3s;
}
.social-icons a:hover { color: #fff; }

.image-frame img {
  border: 3px solid rgba(245,179,1,0.3);
  border-radius: 16px;
}
