body {
  background-color: #f8f9fa;
  color: #333;
}

.btn-primary {
  background-color: #003566;
  border-color: #003566;
}

.btn-primary:hover {
  background-color: #ffc300;
  color: #003566;
  border-color: #ffc300;
}

.hero-section {
  background: url("../assets/img/hero.jpg") center center/cover no-repeat;


  height: 100vh;
  position: relative;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-section .content {
  z-index: 2;
}

.hero-section h1, .hero-section p {
  color: white;
}

.card img {
  height: 200px;
  object-fit: cover;
}

#preloader {
  position: fixed;
  background: #fff;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* NAVBAR STYLING */
.navbar {
  background-color: rgba(47, 46, 46, 0.85);
  padding: 1.2rem 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
  transition: all 0.3s ease-in-out;
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: fadeInDown 0.8s ease-in-out;
}

.navbar.shrink {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.95);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffc300 !important;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.navbar-brand i {
  margin-right: 8px;
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  color: #fff !important;
  margin: 0 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: #ffc300;
  color: #003566 !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border-color: #ffc300;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffc300' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 195, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ANIMATIONS */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
