/* General Styles */
body {
  font-family: "Fira Code", monospace;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f3f3f3;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  padding: 8em 3em 7em 3em;
}

/* Navbar Styles */
.navbar {
  background: rgba(245, 245, 245, 0.9); /* Semi-transparent background */
  color: #fff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid white;
}

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

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #151515;
  text-decoration: none;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar .nav-links li {
  display: inline;
}

.navbar .nav-links a {
  color: #151515;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
  color: #0078d7;
}

/* Header Section */
header {
  background: url("./assets/background-hero.svg") no-repeat center center/cover;
  color: #292929;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

header .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ab5ee2, #37e5eb);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  padding: 1em;
  box-shadow: 4px 4px 1px #37eff6;
  /* border: 1px solid white; */
}

header .btn-primary:hover {
  background: linear-gradient(135deg, #9853c9, #2ec9ce);
}

/* Features Section */
.features {
  background: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.feature-item {
  margin-bottom: 20px;
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.card {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border: 1px solid #bebebe;
  /* margin: 0px 30px 0px 30px; */
  width: 30em;
  padding: 2em;
}

.card-icon {
  width: 8em; /* Adjust size as needed */
  height: auto;
  margin-bottom: 15px; /* Space between the icon and the heading */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.feature-item h3 {
  font-size: 1.5rem;
  color: #0078d7;
}

.feature-item p {
  font-size: 1rem;
  color: #555;
}

/* Features Page Styles */
.features-list {
  background: #ffffff;
  padding: 50px 20px;
}

.features-list h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #0078d7;
}

.features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  background: #f9f9f9;
}

.features-list h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.features-list p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Carousel Styles */
.carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  height: 25em;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-btn {
  position: absolute;
  top: 75%;
  transform: translateY(-50%);
  background: none;
  color: #362f89;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
}

.carousel-btn.prev {
  left: 10em;
}

.carousel-btn.next {
  right: 10em;
}

.carousel-btn:hover {
  background: #6a98ef;
}

/* Call-to-Action Section */
.cta {
  background: #0078d7;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta .btn-secondary {
  display: inline-block;
  background: #005a9e;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
}

.cta .btn-secondary:hover {
  background: #00457c;
}

.nav-links .btn-secondary {
  display: inline-block;
  background: #435ded;
  color: #fff !important;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  margin-left: 10px;
}

/* Pricing Section */
.pricing {
  background: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: row;
}

.pricing h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0078d7;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.pricing-hero {
  background: linear-gradient(135deg, #9853c9, #2ec9ce);
  justify-content: space-between;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.pricing-hero h3 {
  color: #fff !important;
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 2rem;
  color: #0078d7;
  margin: 20px 0;
}

.pricing-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.pricing-card .btn-primary {
  display: inline-block;
  background: #0078d7;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
}

.pricing-card .btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, #ab5ee2, #37e5eb);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
}

.pricing-card .btn-hero:hover {
  background: linear-gradient(135deg, #9853c9, #2ec9ce);
}

.pricing-card .btn-primary:hover {
  background: #005a9e;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

/* Contact Section */
.contact {
  background: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0078d7;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  display: inline-block;
  background: #0078d7;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background: #005a9e;
}

main {
  min-height: 40em;
}

/* Signup Section */
.signup {
  background: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
}

.signup h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0078d7;
}

.signup-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.signup-form label {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #333;
}

.signup-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.signup-form button {
  display: inline-block;
  background: #0078d7;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.signup-form button:hover {
  background: #005a9e;
}

/* Footer Section */
footer {
  background: #161616;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}
