* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Hero background with overlay */
body {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("./Images/darkbg.jpg") center/cover no-repeat;
}

/* Buttons */
.btn-primary {
  background: #60a5fa;
  color: #020617;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #3b82f6;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid #60a5fa;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #60a5fa;
  color: #020617;
}

/* Section title */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

/* Cards */
.card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  text-align: center;
}

.card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.card p {
  color: #cbd5f5;
  font-size: 0.95rem;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}



.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

body {
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.page-loaded {
  opacity: 1;
}