body {
  font-family: 'Inter', sans-serif;
  background: #07132b;
  overflow-x: hidden;

  
  opacity: 0;
  animation: fadeInPage 0.8s ease forwards;
}

@keyframes fadeInPage {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-bg {
  background:
  radial-gradient(circle at top left, rgba(0,102,255,0.4), transparent 35%),
  radial-gradient(circle at bottom right, rgba(0,195,255,0.25), transparent 35%),
  linear-gradient(135deg,#07132b 0%,#0b1f47 45%,#0e2f75 100%);
}

.card-hover {
  transition: 0.35s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.wave {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
}

.glow-btn {
  box-shadow: 0 0 25px rgba(37,99,235,0.45);
}


body {
  opacity: 0;
  animation: pageFadeIn 0.6s ease forwards;
}

@keyframes pageFadeIn {
  to {
    opacity: 1;
  }
}


body.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
}