@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*, body {
  font-family: "Mulish", sans-serif;
}
h1,h2,h3,h4,h5,h6 {
  font-family: "Poppins", sans-serif;
}
/* Custom Styles */
html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Navigation style for header menu */
.nav-link {
  position: relative;
  padding: 6px 12px;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(240, 173, 78, 0.15); /* Light amber fade */
  color: #f0ad4e;
}


.btn-primary {
  background: #0084DF;
}
.hero h1 {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -3px;
  word-spacing: 10px;
  line-height: 1em;
}
.hero p {
  font-size: 18px;
}
.hero img {
  margin-top: -20px;
}
.card-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 15px;
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-custom {
  transition: 0.3s;
}
.card-custom:hover {
  transform: translateY(-5px);
}
h6 {
  font-weight: 700;
}

@media screen and (max-width: 756px) {
  .hero h1 {
    font-size: 38px;
  }
}