/* Reset + Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  color: #333;
  background-color: #f5f7fa;
  line-height: 1.6;
}

/* Header */
header {
  background: #111;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.6rem;
  color: #00adb5;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: #eee;
  text-decoration: none;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #00adb5;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #222, #393e46);
  color: #fff;
}
.hero-content {
  flex: 1 1 400px;
}
.hero-content h2 {
  font-size: 2.5rem;
}
.hero-content p {
  margin-top: 1rem;
  font-size: 1.1rem;
}
.hero .btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.6rem;
  background: #00adb5;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}
.hero .btn:hover {
  background: #00929b;
}
.hero-image img {
  width: 400px;
  max-width: 100%;
}

/* Features */
.features {
  padding: 4rem 2rem;
  text-align: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.feature img {
  width: 80px;
  margin-bottom: 1rem;
}
.feature h3 {
  color: #00adb5;
  margin-bottom: 0.5rem;
}

/* Pricing */
.pricing {
  padding: 4rem 2rem;
  background: #f0f0f0;
  text-align: center;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.card.featured {
  border: 2px solid #00adb5;
  transform: scale(1.05);
}
.price {
  font-size: 2rem;
  color: #00adb5;
  margin: 1rem 0;
}
.card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.card li {
  margin: 0.5rem 0;
}
.card .btn {
  background: #00adb5;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 5px;
  transition: 0.3s;
}
.card .btn:hover {
  background: #00929b;
}

/* 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.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact .btn {
  background: #00adb5;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.8rem;
  cursor: pointer;
}
.contact .btn:hover {
  background: #00929b;
}

/* Footer */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Scroll to Top */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00adb5;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.5rem;
  display: none;
  transition: 0.3s;
}
#scrollTopBtn:hover {
  background: #00929b;
}
