.navbar-nav .nav-link:hover {
    color: rgb(71, 169, 235); 
}


/* Custom CSS */
.dropdown-menu {
  background-color: black; /* white background */
}

.navbar-nav .nav-item.dropdown:hover .nav-link,
.navbar-nav .nav-item.dropdown:hover .dropdown-menu a:hover {
  color: rgb(71, 169, 235) !important; /* blue text color */
}


/* Example CSS */
nav {
    margin: 0;
    padding: 0;
}
/* CSS for small screens (phones) */
@media (max-width: 576px) {
    #myCarousel .carousel-item img {
      max-height: 300px; /* Adjust the maximum height of the images */
      width: auto; /* Let the width adjust automatically */
    }
    
    #myCarousel .carousel-caption {
      bottom: 0; /* Align the caption to the bottom of the carousel item */
    }
    
    #myCarousel .carousel-caption .btn {
      position: absolute; /* Position the button absolutely within the carousel caption */
      bottom: 20px; /* Adjust the distance from the bottom */
      font-size: 14px; /* Adjust the font size of the button */
      padding: 8px 16px; /* Adjust the padding of the button */
    }
  }
  
  /* Optional: Additional CSS for extra-small screens */
  @media (max-width: 375px) {
    #myCarousel .carousel-item img {
      max-height: 250px; /* Adjust the maximum height further for extra-small screens */
    }
  }
  
  /* CSS for Newsletter Form */
#newsletter {
  margin-top: 50px;
  text-align: center;
}

#newsletter h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

#newsletter input[type="email"] {
  width: 300px;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
}

#newsletter button[type="submit"] {
  padding: 10px 20px;
  background-color: #007bff;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#newsletter button[type="submit"]:hover {
  background-color: #0056b3;
}

.dropdown-menu.d-none {
  display: none;
}


