* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f5f5;
  color: #111;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: white;
  position: sticky;
  top: 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar button {
  background: #ffcc00;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

.hero {
  min-height: 85vh;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: white;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #ddd;
}

.search-box {
  display: flex;
  gap: 10px;
  background: white;
  padding: 12px;
  border-radius: 16px;
}

.search-box input {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #f0f0f0;
}

.search-box button {
  background: #ffcc00;
  border: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.categories {
  padding: 100px 8%;
}

.categories h2,
.steps h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  font-size: 22px;
  font-weight: bold;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.steps {
  padding: 100px 8%;
  background: white;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}

.step {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 20px;
}

.step h3 {
  margin-bottom: 15px;
}

footer {
  text-align: center;
  padding: 40px;
  background: #111;
  color: white;
}

@media(max-width: 900px) {

  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .search-box {
    flex-direction: column;
  }
}
.card {
  cursor: pointer;
  border: 1px solid #eee;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
  background: #fff7cc;
}

.search-box {
  box-shadow: 0 20px 50px rgba(255, 204, 0, 0.25);
  border: 1px solid rgba(255, 204, 0, 0.45);
}

.search-box input:focus {
  outline: 2px solid #ffcc00;
  background: white;
}

.search-box button:hover,
.navbar button:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(255, 204, 0, 0.35);
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,204,0,0.18);
  border-radius: 50%;
  filter: blur(120px);
  top: -120px;
  right: -120px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.card {
  background: linear-gradient(145deg,#ffffff,#f3f3f3);
}

.categories {
  background: linear-gradient(to bottom,#f5f5f5,#ffffff);
}

.step {
  border: 1px solid #ececec;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

footer {
  font-size: 18px;
  letter-spacing: 1px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #ffcc00;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.card p {
  color: #666;
  margin-bottom: 10px;
}

.card span {
  display: block;
  margin-bottom: 20px;
  color: #222;
  font-weight: bold;
}

.card button {
  background: #ffcc00;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}
.navbar {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 999;
}

.logo {
  color: #111;
  letter-spacing: 1px;
}

nav a {
  position: relative;
  transition: 0.3s;
}

nav a:hover {
  color: #ffb400;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffcc00;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.hero-content {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.join {
  margin: 80px 8%;
  padding: 60px;
  border-radius: 30px;
  background: linear-gradient(135deg, #111, #333);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.join h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.join p {
  color: #ddd;
  font-size: 18px;
  max-width: 600px;
}

.join button {
  background: #ffcc00;
  color: #111;
  border: none;
  padding: 18px 28px;
  border-radius: 14px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

@media(max-width: 900px) {
  .join {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
  }
}
.reviews {
  padding: 100px 8%;
  background: #fafafa;
}

.reviews h2 {
  font-size: 42px;
  margin-bottom: 50px;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.review {
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.review p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

.review h4 {
  color: #ffb400;
}
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,204,0,0.15);
}

.card::before {
  content: "TOP";
  position: absolute;
  top: 18px;
  right: -35px;
  background: #ffcc00;
  color: #111;
  padding: 8px 40px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
}

.card img {
  transition: 0.4s;
}

.card:hover img {
  transform: scale(1.08);
}

.card button {
  transition: 0.3s;
}

.card button:hover {
  background: #111;
  color: white;
}

.card span {
  background: rgba(255,204,0,0.15);
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-block;
}
.waitlist {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(to right,#111,#1f1f1f);
  color: white;
}

.waitlist h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.waitlist p {
  color: #ccc;
  margin-bottom: 35px;
  font-size: 18px;
}

.waitlist-box {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.waitlist-box input {
  width: 320px;
  padding: 18px;
  border-radius: 14px;
  border: none;
  font-size: 16px;
}

.waitlist-box button {
  background: #ffcc00;
  border: none;
  padding: 18px 28px;
  border-radius: 14px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}
.register-btn {
    background: #ffcc00;
    color: black;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.register-btn:hover {
    transform: scale(1.05);
    background: #ffd633;
}
.register-section {
  padding: 100px 8%;
  background: white;
  text-align: center;
}

.register-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.register-section p {
  color: #666;
  margin-bottom: 40px;
  font-size: 18px;
}

.register-form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.register-form input,
.register-form textarea {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.register-form textarea {
  min-height: 140px;
  resize: vertical;
}

.register-form button {
  background: #ffcc00;
  border: none;
  padding: 18px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.register-form button:hover {
  background: #111;
  color: white;
}
.success-message {
  margin-top: 25px;
  color: green;
  font-weight: bold;
  display: none;
}
.register-form input:focus,
.register-form textarea:focus {
  outline: 2px solid #ffcc00;
  border-color: #ffcc00;
}

.success-message {
  background: #e8f8ee;
  color: #137333;
  padding: 16px;
  border-radius: 14px;
}
