
.navbar-nav .nav-item .nav-link{
  color: white;
  font-weight: 400
}
.nav-link{
  position: relative;
}
.nav-link::after{
  content: '';
  opacity: 0;
  height: 2px;
  width: 100%;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.4s linear;
}
.nav-link:hover::after{
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left;
}
.nav-item a{
  margin: 5px;;
}
.navbar{
  background-image: linear-gradient(135deg, #1E293B, #3B82F6);
}
marquee{
  border: 2px;
  background-image: linear-gradient(to right,#004080 , #1E293B);
  line-height: 40px;
  color: white;
  font-size: 1rem;
}
.row p{
  text-align: justify;
  margin: 0 0 15px 0;
}

.image img{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.footer{
  background-color: #1E293B;
  color: white;
  padding: 20px 0;
  text-align: center;
}
.footer .social-icons i{
  margin: 0 10px;
  margin-top: 10px;
  color: white;
  font-size: 2rem;
}
.footer .social-icons i:hover{
  color: #004080;
}
.email-form input[type="email"] {
  padding: 12px;
  border-radius: 8px;
  width: 250px;
  font-size: 16px;
  margin-right: 10px;
}
.email-form button {
padding: 12px 20px;
background-color: #3B82F6;
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
transition: background 0.3s;
}

.email-form button:hover {
background-color: #2563EB;
}