* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
    background-color: #F0F8FF;
    /* color: #f0f0f0; */
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: black;
  color: #FFFFFF;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 5.5vh;
  background-size: 400% 400%; /* Makes the gradient larger for animation */
  animation: moveGradient 6s infinite alternate; /* Adjust timing and direction */
}
@keyframes moveGradient {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 0%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.logo-bio {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 500;
}

.logo img {
  height: 4.5vh;
}

.logo a {
  color: #f7f7f7;
  text-decoration: none;
}

.logo a:hover {
  color: aqua;
}

.nav-links {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-grow: 1;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links a {
  text-decoration: none;
  color: #f7f7f7;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: rgb(51, 182, 182);
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #FFFFFF;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  text-decoration: none;
  color: #000;
}

.dropdown-toggle:hover {
  text-decoration: none;
  color: #000;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  border: 1px solid #1873B5;
  left: 0;
  background-color: #F0F8FF;
  padding: 10px;
  display: none;
}

.dropdown-menu li {
  margin-bottom: 10px;
  width: 90px;
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #141414;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  text-decoration: none;
  /* background-color: #9fa9ad; */
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
      display: none; /* Hide links by default */
      flex-direction: column;
      position: absolute;

      top: 60px; /* Adjust based on navbar height */
      left: 0;
      width: 100%;
      background: linear-gradient(to right, #0a0a0a, #0c81b8);
      padding: 10px 0;
  }
  .navbar {
    height: 59px;
  }

  .nav-links.active {
      display: flex; /* Show links when active */
  }

  .hamburger {
      display: block; /* Show hamburger icon */
  }

  .logo img {
      margin-left: 80px;
      height: 2.3rem;
  }
}
.nav {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2px;
    margin-top: 10vh;
    margin-left: 5vh;
    font-weight: 600;
}
.nav .hh{
    color: #1ebeb6;
   
}

.nav a {
    text-decoration: none;
    color: #1ebeb6;
    margin-right: 15px;
}

.nav a:hover {
    color: black;
}
.quote{
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 20vh;

}
.under {
  height: 100px;
  width: 100%;
 
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 4rem;
    font-style: italic;
    font-weight: bold;
    font-family: Georgia;
  
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 50vh;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 1vh;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .col-md-4 {
    width: 33.33%;
    padding: 0 15px;
  }
  
  .footer-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .social-icons {
    list-style: none;
    padding: 0;
    display: flex;
  }
  
  .social-icons li {
    margin-right: 10px;
  }
  
  .social-icons a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #1ba1dd;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  .footer-logo {
    max-width: 100px; /* Adjust size as needed */
    margin-bottom: 20px; /* Add spacing below the logo */
    display: block; /* Ensure proper alignment */
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #1ba1dd;
  }
  
  .copyright {
    text-align: center;
    margin-top: 30px;
  }
 