/* === Root Variables for Color System === */
:root {
  --primary: #00d1b2;
  --primary-dark: #00bfa1;
  --bg-dark: #1e1e2f;
  --text-dark: #333;
  --text-light: #fff;
  --shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/* === Reset and Base Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;

  /* Enhanced background */
  background: url('image/home-ecosystem-background.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: var(--text-dark);
}

#page-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* === Header Styles === */
#header {
  background: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

#nav-bar ul {
  display: flex;
  list-style: none;
}

#nav-bar li {
  margin-left: 20px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

/* === Hero Section === */
#hero {
  background: linear-gradient(to right, #1e1e2f, #3a3a5a);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

#hero h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

#form {
  margin-top: 1rem;
}

#email {
  padding: 0.7rem;
  width: 250px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  font-size: 1rem;
}

.btn {
  padding: 0.7rem 1.5rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* === Universal Section Spacing === */
section {
  margin-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* === Container Styles === */
.container {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* === Features Section === */
#features {
  background-color: rgba(255, 255, 255, 0.7); /* white with 70% opacity */
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 3rem 2rem;
}

#features h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.feature {
  margin-bottom: 1.5rem;
}

.feature h3 {
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
}

/* === Pricing Section === */
#pricing {
  background-color: rgba(255, 255, 255, 0.7); /* white with 70% opacity */
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 3rem 2rem;
}


#pricing h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.plan {
  background: #fef9f3;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.plan h3 {
  margin-bottom: 0.5rem;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.plan ul li {
  margin: 0.5rem 0;
}

/* === Video Section === */
#video-section {
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 3rem 2rem;
}

#video-section h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--bg-dark);
}

#video {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* === Reviews Section === */
#reviews {
  background-color: #fef9f3;
  padding: 4rem 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

#reviews h2 {
  margin-bottom: 2rem;
  color: var(--bg-dark);
}

.reviews-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: #fef9f3;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  font-style: italic;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: scale(1.02);
}

.review-card h4 {
  margin-top: 1rem;
  font-weight: normal;
  color: #555;
}

/* === Contact Section === */
#contact {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.7); /* white with 70% opacity */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}


#contact h2 {
  margin-bottom: 1rem;
  color: var(--bg-dark);
}

.contact-details {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-details a {
  color: var(--primary-dark);
  text-decoration: none;
}

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

#contact-form input,
#contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* === Responsive Styles === */
@media (max-width: 768px) {
  #nav-bar ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  #hero h2 {
    font-size: 1.5rem;
  }

  #email {
    width: 100%;
    margin-bottom: 1rem;
  }

  .btn {
    width: 100%;
  }
}


#reviews {
  background-color: #e6f0ff !important; /* Pale Misty Blue - soft, light blue */
  border-radius: 10px;
  padding: 3rem 2rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}
