@font-face {
  font-family: "poppins";
  src: url("./fonts/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "poppins", Arial, sans-serif;
  background-color: #f8f8f8;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #408786, #156a8b);
  padding: 10px 20px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-brand span {
  color: white;
  font-size: 16px;
  margin-right: 8px;
}

.navbar-brand img {
  height: 24px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-list li {
  position: relative;
}

.nav-list li a {
  position: relative;
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.3s ease;
  border-radius: 4px;
  font-size: 13px;
}

/* Animated underline */
.nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #c2f01e;
  transition: width 0.3s ease;
}

.nav-list li a:hover {
  color: #c2f01e;
}

.nav-list li a:hover::after {
  width: 100%;
}

.nav-list .version {
  pointer-events: none;
  color: white;
}

.welcome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.welcome h1 {
  font-size: 32px;
  color: #333;
}

.welcome img {
  width: 150px;
  height: auto;
}

/* Features section styling */
.features-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px auto;
  /* max-width: 1000px; */
  padding: 0 20px;
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

/* Make the <a> behave like a block with vertical layout */
.feature-box a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #333;
  transition: transform 0.7s ease, color 0.7s ease;
}

.feature-box a:hover {
  color: #009fff;
}

/* Image styling inside the <a> */
.feature-box a img {
  width: 220px;
  height: auto;
  border-radius: 100%;
  transition: transform 0.6s ease;
}

/* Scale image on hover */
.feature-box a:hover img {
  transform: scale(1.2);
}

/* Optional: adjust spacing between image and text */
.feature-box a span {
  text-transform: uppercase;
  transition: transform 0.7s ease, color 0.7s ease;
  margin-top: 12px;
  font-size: 16px;
}

.feature-box a:hover span {
  transform: translateY(20px);
}

.site-footer {
  background-color: #f0f0f0; /* Light gray background */
  padding: 16px 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;

  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
