:root {
  --primary-color: #6c63ff; /* Changed to a softer yet appealing shade of blue */
  --primary-dark: #4b47b6;
  --text-color: #333; /* Darker text color for better readability */
  --background-color: #f9fafb;
  --white: #ffffff;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
}

html {
  scroll-behavior: smooth;
}

.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-item img {
  max-height: 2.5rem;
}

.hero {
  background-color: var(--primary-color); /* Hero section with primary color */
  color: var(--white); /* White text for better contrast */
}

.hero-body {
  padding: 8rem 1.5rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
}

.title {
  color: var(--white); /* White title in hero section */
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.title-2 {
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.title-3 {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 600px;
}

.subtitle-2 {
  font-size: 1.25rem;
  line-height: 1.5;
}

.button.main-btn {
  background-color: var(--primary-dark);
  border-color: transparent;
  color: var(--white);
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.button.main-btn.is-outlined {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.button.main-btn.is-outlined:hover {
  background-color: var(--white);
  color: var(--primary-dark);
}

.box {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 2rem;
  background-color: var(--white);
}

.form-section {
  background-color: var(--background-color);
}

.textarea {
  border-radius: 8px;
  min-height: 150px;
}

#fetching-ans {
  display: none;
}

.footer {
  background-color: var(--white);
  padding: 3rem 0;
}

.pricing-box {
  transition: transform 0.3s ease;
}

.pricing-box:hover {
  transform: translateY(-5px);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-box ul {
  list-style-type: none;
  padding: 0;
}

.pricing-box li {
  margin-bottom: 0.5rem;
}

.pricing-box li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .button.is-large {
    font-size: 1rem;
  }
}
