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

/* ===== BODY ===== */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  color: #ffffff;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #0b1023;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #38bdf8;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #38bdf8;
}

/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 30px;
}

/* ===== BUTTON ===== */
.btn {
  background: linear-gradient(135deg, #6a5cff, #00c6ff);
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.85;
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 80px 20px;
  text-align: center;
}

.pricing h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

/* ===== PRICING CONTAINER ===== */
.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* ===== PRICING CARD ===== */
.card {
  background: #1e293b;
  padding: 40px 25px;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transition: 0.3s ease;
}

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

.card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.price {
  font-size: 36px;
  font-weight: bold;
  color: #38bdf8;
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
  margin-bottom: 25px;
}

.card ul li {
  margin: 10px 0;
  color: #cbd5e1;
}

.card button {
  background: linear-gradient(135deg, #6a5cff, #00c6ff);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.card button:hover {
  opacity: 0.85;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 80px 20px;
  text-align: center;
}

.contact input,
.contact textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
}

.contact button {
  background: linear-gradient(135deg, #6a5cff, #00c6ff);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #0b1023;
  margin-top: 50px;
}
