/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}

header {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
}

.logo img {
  width: 100px;
  height: auto;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover and Active Effects */
nav ul li a:hover {
  color: #007BFF;
  transform: scale(1.1); /* Slightly enlarge link on hover */
}

nav ul li a:active {
  color: #0056b3;
}

/* Banner */
.banner {
  text-align: center;
  padding: 50px;
  background: url('images/banner.jpg') no-repeat center center/cover;
  color: white;
}

.banner h2 {
  font-size: 2rem;
}

.banner p {
  font-size: 1.2rem;
}

/* Info Cards */
.info-cards {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  gap: 20px;
}

.card {
  background: #f9f9f9;
  padding: 15px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 30%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05); /* Enlarge the card slightly */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Add a shadow */
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

.card h3 {
  margin: 15px 0 10px;
  font-size: 18px;
  color: #333;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.card a:hover {
  color: #0056b3;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background: #333;
  color: white;
}
