@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
html, body {
 font-family: 'Poppins', sans-serif;

}


.sub-header, .navbar,.bg-dark
{
background-color: rgb(45, 1, 71) !important;
}

.nav-link, nav-link a
{
color:white;
}

.siteLogo {
    height: 130px;
}



.nav-link {
  position: relative;
  color: #fff;
  text-decoration: none;
  padding-bottom: 5px;
}

/* Alt çizgi için pseudo element */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}

/* Hover, active veya focus olunca çizgi genişlesin */
.nav-link:hover::after,
.nav-link:active::after,
.nav-link:focus::after {
  width: 100%;
}
.nav-link:hover, .nav-link:active,.nav-link:focus{ 
color:white;
}