:root {
  --primary: #1eb496;
  --dark: #2c3e50;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f4f6f8;
  scroll-behavior: smooth;
}
.navbar {
  background: linear-gradient(to right, rgba(46, 204, 113, 0.9), rgb(63 82 97));
  border: none;
}
.navbar-nav {
  gap: 37px;
}

.nav-item {
  font-size: 21px;
  font-weight: 600;
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: #ffffff !important;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: rgb(63 82 97) !important;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important
;
    flex-basis: auto;
    justify-content: center;
    gap: -16px;
  }
}
.hero {
  background: linear-gradient(
    to right,
    rgba(46, 204, 113, 0.9),
    rgba(44, 62, 80, 0.9)
  );

  background-size: cover;
  color: white;
  padding: 120px 0;
  text-align: center;
}
.dropdown-menu.show {
  display: block;
  background: #d7d9db;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 600;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: #41b678;
}
.dropdown-item:focus,
.dropdown-item:hover {
  color: #dce0e3;
  background-color: #41af77;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.3rem;
  margin-top: 20px;
}

.btn-demo {
  background-color: white;
  color: var(--primary);
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-demo:hover {
  background-color: var(--primary);
  color: white;
}

.intro {
  padding: 60px 0;
  text-align: center;
}

.intro h2 {
  font-weight: bold;
  color: var(--dark);
}
/* 
.features-section {
  background: #d9d9d9;
  padding: 60px 0;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
} */
.features-section {
  padding: 80px 20px;
}

.feature-card {
  background: #d1d3d2;
  border-radius: 16px;
  text-align: center;
  padding: 35px 20px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.feature-card h5 {
  font-weight: 700;
  margin-top: 15px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}

.feature-icon {
  font-size: 45px;
  color: #3f5361;
}
.video-preview {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.cta {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 50px 0;
}

.cta h2 {
  font-weight: bold;
}
.lead {
  font-size: 1.25rem;
  font-weight: 400;
}
.pageheader {
  background: linear-gradient(to right, rgba(46, 204, 113, 0.9), rgb(63 82 97));
  border: none;
  color: white;
  height: 237px;
}
.footer {
  background-color: #3f5361;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.footer-link {
  color: #ccc;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  text-decoration: none;
  display: table-row-group;
}

.footer-link i {
  color: #1eb496;
  width: 20px;
}

.footer-link:hover {
  color: #1eb496;
}
a {
  color: rgb(4 4 4);
  text-decoration: none;
}
