/* General Styles */
body {
  font-family: "Arial", sans-serif;
  background-color: #f9f9f9 !important;
  color: #0d1b2a;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
.logo {
  width: 2rem;
  margin-right: 0.3rem;
  margin-bottom: 0.25rem;
}
.navbar {
  background-color: #0d1b2a;
}
.navbar-brand {
  font-size: 1.75rem;
  font-weight: bold;
  color: #3aafa9;
}
.navbar-nav .nav-link {
  color: #fff !important;
  font-size: 1.2rem;
  padding: 0 15px;
}

.nav-item {
  margin-left: 1rem;
}

.nav-item:hover {
  color: #3aafa9 !important;
}

.nav-item:hover .nav-link {
  color: #3aafa9 !important; /* Ensure the hover color applies to the link */
  text-decoration: none !important;
}

.navbar-nav .nav-link:hover {
  color: #3aafa9 !important; /* Add hover style directly on the nav-link as well */
}

.navbar-nav .nav-link.active {
  color: #3aafa9 !important; /* The color for the active link */
}

/* Footer */
footer {
  background-color: #0d1b2a;
  color: #fff;
  padding: 50px 0;
}
footer a {
  color: #3aafa9;
}
.social-icons i {
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}
.social-link {
  color: #3aafa9; /* Default icon color */
  transition: color 0.3s; /* Smooth transition for color change */
}

.social-link:hover {
  color: #8cd9d5; /* Change this to your desired hover color */
}

/* Optional: Change color on hover for icons specifically */
.social-link i {
  color: #3aafa9; /* Default color */
  transition: color 0.3s; /* Smooth transition for color change */
}

.social-link:hover i {
  color: #8cd9d5; /* Change this to your desired hover color */
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.carousel-caption {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
  padding: 20px; /* Add some padding for better spacing */
  border-radius: 10px; /* Optional: round the corners */
}

.carousel-caption h2,
.carousel-caption p {
  color: rgb(225, 225, 225); /* White text for better contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
}
