@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background: #f6f7fb;
  color: #1f2937;
    font-family: "Lato", sans-serif;

}

.navbar {
  max-width: 1100px;
  margin: 1.5rem auto;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
font-family: "Lato", sans-serif;
width: 95%;

}

.logo {
  font-weight: 600;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

.nav-button {
  padding: 0.6rem 1.2rem;
  background: #6366f1;
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
      transition:  all ease-in-out 0.5s;

}

.nav-button:hover {
    scale: 1.07;
}

.hero {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-text p {
  color: #4b5563;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.primary-btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
    transition:  all ease-in-out 0.5s;

}

.primary-btn:hover {
    scale: 1.05;
}

.hero-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}

.stat {
  background: #f9fafb;
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
}

.stat h2 {
  color: #6366f1;
  font-size: 1.8rem;
}

.features {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.features h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.feature-card h3 {
  margin-bottom: 0.8rem;
}

.cta {
  max-width: 1100px;
  width: 90%;
  margin: 6rem auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border-radius: 5px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #6b7280;
  font-size: 0.9rem;
}


/*These are some animations... */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards;
}

.fade-down {
  opacity: 0;
  transform: translateY(-5px);
  animation: fadeUp 0.8s ease-out forwards;
}

.fade-delay-1 { animation-delay: 0.2s; 
}
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media screen and (max-width: 900px) {
    .hero {
        grid-template-columns:  1fr ;
        text-align: center;
        max-width: 70%;
    }
}

@media screen and (max-width: 652px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
        margin-top: 10px;
    }

    .nav-button {
        margin-top: 10px;
    }
}
