@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #f2f2f2, #e0f7fa);
  color: #333;
}

/* Modern Navigation Bar */
.navbar {
  background: linear-gradient(to right, #ffffff, #e0f7fa); /* Light gradient background */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .brand {
  font-size: 1.8rem;
  font-weight: 600;
  color: #005f73; 
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar .brand:hover {
  color: #0a9396; 
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  color: #005f73; /* Dark teal for links */ /* Dark teal for links */
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  color: #0a9396; /* Lighter teal hover effect */
  transform: scale(1.1); /* Slight zoom effect */
}

.nav-links a.active {
  color: #0a9396; /* Highlight active link */
}