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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navbar */
header {
  background: #111;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

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

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00c4ff;
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(to right, #0072ff, #00c6ff);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #ffd700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Buttons */

.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 20px; /* adjust value for spacing */
  display: inline-block;
}

.btn-primary {
  background: #00c4ff;
}

.btn-primary:hover {
  background: #0072ff;
}

.btn-secondary {
  border: 2px solid #00c4ff;
  color: #00c4ff;
}

.btn-secondary:hover {
  background: #00c4ff;
  color: #fff;
}

/* Features */
.features {
  padding: 4rem 2rem;
  text-align: center;
}

.features h2 {
  margin-bottom: 2rem;
}

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

.feature {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Pricing */
.pricing {
  padding: 4rem 2rem;
  text-align: center;
  background: #f0f8ff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.plan {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
  transform: translateY(-8px); /* lift effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* stronger shadow */
}

.plan:hover .btn-primary,
.plan:hover .btn-secondary {
  transform: scale(1.05);
}

.plan.popular {
  border: 2px solid #00c4ff;
  transform: scale(1.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Glow effect on hover */
.plan.popular:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 196, 255, 0.3);
  border-color: #0072ff; /* subtle color shift */
}

/* Special button styling inside popular plan */
.plan.popular .btn-primary {
  background: #00c4ff;
  box-shadow: 0 4px 12px rgba(0, 196, 255, 0.3);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.plan.popular .btn-primary:hover {
  background: #0072ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 196, 255, 0.6);
}

.price {
  font-size: 1.5rem;
  margin: 1rem 0;
}

/* Contact */
.contact {
  padding: 4rem 2rem;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
