body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

a {
  color: #0057b7;
  transition: 0.2s;
}
a:hover {
  color: rgb(0, 62.7540983607, 132);
  text-decoration: none;
}

.navbar {
  background-color: #0057b7;
}
.navbar .nav-link {
  color: white !important;
}
.navbar .nav-link:hover {
  color: #fbbc05 !important;
}

.btn-custom {
  background-color: #0057b7;
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  transition: background 0.3s;
}
.btn-custom:hover {
  background-color: rgb(0, 67.6032786885, 142.2);
}

.card {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

body.dark-mode {
  background-color: #1e1e1e;
  color: #f1f1f1;
}
body.dark-mode .navbar {
  background-color: #222;
}
body.dark-mode .card {
  background-color: #2c2c2c;
  color: #fff;
}
body.dark-mode a {
  color: rgb(55.5, 150.3442622951, 255);
}

.social-icons {
  display: flex;
  gap: 100px;
  margin-top: 20px;
}
.social-icons a {
  font-size: 18px;
  background: #000;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: opacity 0.3s;
}
.social-icons a:hover {
  opacity: 0.7;
}
.social-icons a.facebook {
  background: #1877F2;
}
.social-icons a.instagram {
  background: linear-gradient(to right, #feda75, #d62976, #962fbf, #4f5bd5);
}
.social-icons a.linkedin {
  background: #0077B5;
}

@media (max-width: 768px) {
  .navbar-nav {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}/*# sourceMappingURL=custom.css.map */