
.footer {
  background-color: black;
  color: white;
  padding: 20px 0;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid white;
  color: black;
  background-color: white;
  text-decoration: none;
  transition: 0.3s;
}
.social-icons a:hover {
  background-color: black;
  color: white;
  border-color: white;
}

.border-radius-20
{
  border-radius:20px;
}

@font-face {
  font-family: 'Bellagia';
  src: url('../fonts/Nesans-Semi-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  font-family: 'Bellagia', sans-serif;
}

.navbar-nav .nav-link {
  position: relative;
  text-decoration: none;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px; /* Adjust position of the underline */
  width: 100%;
  height: 2px; /* Thickness of the underline */
  background-color: #6C757D; /* Matches text color */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

/* Hover effect */
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

/* Active link effect */
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}