body {
      font-family: 'Noto Sans Devanagari', sans-serif;
      margin: 0;
      background-color: #f5f5f5;
    }
    header {
      background-color: #1976d2;
      color: white;
      padding: 20px;
      text-align: center;
    }
    nav {
      background: #1565c0;
      padding: 12px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
    nav a {
      color: white;
      text-decoration: none;
      margin: 10px 15px;
      font-weight: bold;
    }
    nav a:hover {
      text-decoration: underline;
    }
    .container {
      padding: 30px;
    }
    h2 {
      color: #0d47a1;
    }
    .services {
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px #ccc;
      margin-bottom: 30px;
    }
    ul li {
      margin: 10px 0;
    }
   footer {
  background: #0d6efd;
  padding: 50px 20px;
  color: white;
  text-align: center;
  margin-top: 50px;
  position: relative;
  bottom: 0;
  width: 100%;
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

footer .footer-logo img {
  max-height: 60px;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
}
footer .footer-logo img:hover {
  transform: scale(1.1);
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  margin-top: 10px;
}
footer .footer-links a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
footer .footer-links a:hover {
  color: #ffc107;
  transform: translateY(-2px);
}

footer .footer-bottom {
  font-size: 0.9rem;
  opacity: 0.95;
  margin-top: 20px;
}