header nav {
  padding: 10px 20px;
  background-color: transparent;
  margin-top: 20px;
  transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transition for background and shadow */
}

header.scrolled nav {
  background-color: white; /* Change to white when scrolled */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

header .navbar-brand img {
  width: 40px;
  height: 40px;
}

header .navbar-nav .nav-item {
  margin-right: 15px;
}

header .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

header .navbar-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #bb4e43;
  white-space: nowrap;
  transition: 0.3s;
}

header .navbar-nav .nav-link:hover,
header .navbar-nav .nav-link.active {
  color: #eca501;
}

header .navbar-nav .nav-link.contact-active {
  background-color: #bb4e43;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  width: 100px;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  text-align: center;
}

.navbar-nav .nav-link.contact-active:hover {
  background-color: #eca501;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.hero {
  width: 100%;
  height: 100vh;
  background: url("../assets/img/hero-bg.png") top center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.hero-section {
  background-color: #fff;
  color: #fff;
  height: 100vh;
}

.hero-section h1 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #bb4e43;
}

.hero-section p {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: #bb4e43;
}

.hero-section .btn {
  background-color: #e73649;
  color: #fff;
  border: none;
}

.hero-section .btn:hover {
  background-color: #f2f2f2;
  color: #bb4e43;
}

.learn-more-button {
  background-color: #bb4e43;
  color: #fff;
  padding: 13px 15px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  max-width: 200px;
  width: 100%;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  text-align: center;
}

.learn-more-button:hover {
  background-color: #eca501;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 20px 0;
  }

  .hero-section h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero-section p {
    font-size: 16px;
    text-align: center;
  }

  .hero-section img {
    max-height: 60vh;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-section p {
    font-size: 14px;
  }
}

.contact .info-box {
  color: #444444;
  background: #fafbff;
  padding: 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #E73649;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #e73649;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
