/* style.css */

body {
    font-family: 'Segoe UI', sans-serif;
}

.card {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
}

footer {
    margin-top: 50px;
}

.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}

section h2 {
  font-weight: 700;
  margin-bottom: 30px;
}

.hero {
  background: linear-gradient(-45deg, #0d1b2a, #1b263b, #415a77, #778da9);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: white;
  padding: 80px 0;
  text-align: center;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.top-bar i {
  font-size: 1rem;
}

/* Ensure page content is not hidden behind sticky footer */
.page-content-wrapper {
  padding-bottom: 70px; /* Adjust if footer height changes */
}

/* Ensure content is not hidden behind footer */
#page-content-wrapper {
  padding-bottom: 60px; /* same or slightly more than footer height */
}