/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #121212; /* Dark background */
  color: #ffffff; /* Light text color */
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 1rem;
}

/* Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  z-index: 1000; /* Ensure navbar is on top */
}

.navbar .container {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px; /* Adjust the height of the logo */
  margin-right: 1rem;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: url('your-hero-image.jpg') no-repeat center center/cover;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.hero .container {
  max-width: 600px;
}

.hero h1 {
  font-size: 4rem;
  margin: 0;
}

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

.btn {
  background: #007bff;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 30px; /* Rounded edges */
  text-decoration: none;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Sign-Up Section */
.signup {
  background: #1e1e1e; /* Dark background for sign-up section */
  padding: 2rem 0;
  text-align: center;
}

.signup h2 {
  margin-bottom: 1rem;
}

.signup-form {
  display: flex;
  justify-content: center;
}

.signup input[type="email"] {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 30px 0 0 30px; /* Rounded left edge */
  outline: none;
  width: 300px; /* Fixed width for consistency */
  
}

.signup button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 0 30px 30px 0; /* Rounded right edge */
  background: #007bff;
  color: #fff;
  cursor: pointer;
}

/* Features Section */
.features {
  background: #1e1e1e; /* Darker background for features section */
  padding: 2rem 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.feature-grid {
  display: flex;
  justify-content: space-around;
}

.feature {
  background: #2a2a2a; /* Dark background for feature cards */
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5); /* Darker shadow */
  width: 30%;
}

.feature h3 {
  margin-top: 0;
  text-align: center;
}

.image-row {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin-top: 1rem;
}

.image-row img {
  max-width: 48%;
  border-radius: 5px;
}

/* Testimonials Section */
.testimonials {
  background: #1e1e1e; /* Darker background for testimonials section */
  padding: 2rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.testimonial {
  text-align: center;
  margin: 1rem 0;
}

/* Call to Action Section */
.cta {
  background: #007bff;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.cta h2 {
  margin: 0;
  margin-bottom: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero {
    padding-top: 10rem;  /* Add padding to the top */
  }

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

  .hero p {
      font-size: 1rem;
  }

  .navbar .company-name {
      font-size: 1.25rem;
  }

  .signup input[type="email"] {
      width: 90%;
  }

  .btn {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
      font-size: 2rem;
  }

  .hero p {
      font-size: 1.5rem;
  }

  .navbar .company-name {
      font-size: 1rem;
  }

  .signup input[type="email"] {
      width: 100%;
      border-radius: 30px; /* Rounded edges */
  }

  .signup button {
      width: 100%;
      border-radius: 30px; /* Rounded edges */
  }

  .signup-form {
      width: 100%;
  }

  .btn {
      font-size: 0.8rem;
  }
}