html {
  scroll-behavior: smooth;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafc;
  color: #333;
  line-height: 1.6;
}

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

/* Header */
.header {
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 28px;
  font-weight: 600;
}

.nav {
  flex-grow: 1;
  margin-left: 50px;
}

.nav-list {
  display: flex;
  justify-content: space-around;
  list-style: none;
}

.nav-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px;
}

.nav-list li a:hover {
  color: #00bcd4;
}

.header-btn {
  background-color: #00bcd4;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.header-btn:hover {
  background-color: #008c9e;
}

/* Hero Section */
.hero {
  background-color: #0077b6;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
}

.hero-btn {
  background-color: #00bcd4;
  padding: 12px 30px;
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
  text-decoration: none;
}

.hero-btn:hover {
  background-color: #008c9e;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: #f9fafc;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.feature-desc-subtitle {
  font-size: 11px;
}

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

.feature {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 30%;
  margin: 0 10px;
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.feature p {
  font-size: 16px;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  text-align: center;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}

.pricing-table table th,
.pricing-table table td {
  padding: 20px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.pricing-table table th {
  background-color: #0077b6;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.pricing-table table td {
  text-align: center;
}

.pricing-table table td i {
  font-size: 18px;
  color: #0077b6;
}

.pricing-table table td p {
  margin: 20px 0;
  font-size: 18px;
  font-weight: bold;
}

.pricing-table .btn {
  display: inline-block;
  background-color: #0077b6;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.pricing-table .btn:hover {
  background-color: #005a88;
}

.pricing-table table tfoot td {
  font-weight: bold;
  background-color: #f0f5ff;
}


/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

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

.footer-nav {
  list-style: none;
  display: flex;
  gap: 15px;
}

.footer-nav li a {
  color: #fff;
  text-decoration: none;
}

.footer-nav li a:hover {
  color: #00bcd4;
}


/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: #f9fafc;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: #333;
  background-color: #f5f5f5;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0077b6;
  background-color: #fff;
}

.contact-form textarea {
  resize: none;
  height: 150px;
}

.contact-form button {
  background-color: #0077b6;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

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

/* About Us Section */
.about {
  background-color: #f8f8f8;
  padding: 80px 0;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.about-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.about-stats {
  display: flex;
  flex: 1;
  justify-content: space-around;
  text-align: center;
}

.stat {
  margin: 0 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #007bff;
}

.about-image {
  flex: 1;
  max-width: 400px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* Demo Section */
.demo {
  padding: 80px 0;
  background-color: #f0f5ff;
  text-align: center;
}

.demo h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.demo p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

/* testimonials section */
.testimonials {
  background-color: #f9f9f9;
  /* Light background for contrast */
  padding: 80px 0;
  text-align: center;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.testimonial-container {
  display: flex;
  justify-content: space-around;
  /* Space out the testimonial items */
  flex-wrap: wrap;
  /* Allow wrapping on smaller screens */
}

.testimonial-item {
  max-width: 250px;
  /* Limit width for readability */
  margin: 15px;
  /* Margin around each testimonial item */
  padding: 20px;
  border-left: 4px solid #0077b6;
  /* Accent line on the left */
  background-color: #fff;
  /* White background for each testimonial */
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

blockquote {
  font-style: italic;
  /* Italicize the text */
  color: #555;
  /* Darker gray for the quote text */
  margin: 5px;
  /* Remove default margins */
  position: relative;
  /* Relative positioning for the pseudo-element */
}

blockquote::before {
  content: '“';
  font-family: Georgia, 'Times New Roman', Times, serif;
  /* Large opening quote */
  font-size: 4em;
  /* Size of the quote */
  position: absolute;
  /* Position it relative to the blockquote */
  left: -20px;
  /* Move it to the left */
  top: -35px;
  /* Move it up */
  color: #F0F5FF;
  /* Color of the quote */
}

blockquote::after {
  content: '”';
  font-family: Georgia, 'Times New Roman', Times, serif;
  /* Large closing quote */
  font-size: 4em;
  /* Size of the quote */
  position: absolute;
  /* Position it relative to the blockquote */
  right: -10px;
  /* Move it to the right */
  bottom: -75px;
  /* Move it down */
  color: #F0F5FF;
  /* Color of the quote */
}