/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Navbar */
.navbar {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  font-weight: 500;
  transition: 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #f39c12 !important;
}

/* Header Section */
header {
  background: url("../img/header-bg.jpg") no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

header h1 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Sections */
.container h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

/* Card Styling */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.03);
}

/* Footer */
footer {
  background: #222;
  color: white;
  padding: 15px 0;
}

footer p {
  margin: 0;
  font-size: 14px;
}
