
body {
    background: linear-gradient(135deg, #c5eff5, #ecf7fd);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

h2 {
    font-family: 'Cooper Black';
}

.card-custom {
  background: linear-gradient(145deg, #ffffff, #e6f2ff);
  border-radius: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.language-selector {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #dee2e6;
}

.custom-navbar {
  background: linear-gradient(90deg, #fcfcfd, #ecf5fe);
  padding: 0.75rem 1rem;
  border-bottom: 2px solid #e0e0e0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.custom-navbar .nav-link {
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 8px 12px;
}

.custom-navbar .nav-link:hover {
  background-color: #dff2fc;
  color: #0077b6 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}