/* css file */
.navbar-brand {
  font-weight: bold;
  color: #f9c74f !important;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f1f1f1;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://source.unsplash.com/1600x900/?nature,night");
  background-size: cover;
  background-position: center;
  color: white;
  height: 90vh;
  padding: 250px 0;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.btn-animated {
  position: relative;
  display: inline-block;
  color: white;
  padding: 10px 20px;
  font-size: 1.2rem;
  text-transform: uppercase;
  overflow: hidden;
  background: #007bff;
  border-radius: 5px;
  transition: all 0.4s ease;
}
.btn-animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-100%);
  transition: all 0.4s ease;
}
.btn-animated:hover::before {
  transform: translateY(0);
}
.section {
  padding: 50px 15px;
}
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
footer {
  background: linear-gradient(to right, #c6c6c9, #858189);
  color: white;
  padding: 20px 0;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
