* {
    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: linear-gradient(to right,#0a0a0a, #0a0a0a);
  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: #1ba1dd;
}

.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-radius: 5px;
  border: 1px solid #1873B5;
  left: 0;
  background-color: #F0F8FF;
  padding: 10px;
  display: none;
}

.dropdown-menu li {
  margin-bottom: 10px;
  width: 80px;
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #141414;
  font-weight: 600;
}

.dropdown-menu li a:hover {
  text-decoration: none;
  color: #1ba1dd;
}

.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;
  }
}
/* Ensure the main content container is centered */
.navv {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2px;
  margin-top: 10vh;
  margin-left: 5vh;
  font-weight: 600;
}
.navv .hh{
  color:#1ba1dd;
 
}

.navv a {
  text-decoration: none;
  color: #1ebeb6;
  margin-right: 15px;
}

.navv a:hover {
  color: black;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.epic-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  width: 100%;
  max-width: 1000px;
  margin: 20px 0;
}

.epic-block img {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.description {
  width: 50%;
  padding: 20px;
}

.description .title {
  font-size: 20px;
  font-weight: bold;
  color: #1ba1dd;
  margin-bottom: 10px;
}

.description p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Layout for blocks with image on left or right */
.epic-block.left {
  flex-direction: row;
}

.epic-block.right {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .epic-block img {
      width: 100%;
      margin-bottom: 20px;
  }

  .epic-block .description {
      width: 100%;
      text-align: center;
  }

  .epic-block.left, .epic-block.right {
      flex-direction: column;
  }
}



/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 1vh;
}

.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 Logo */
.footer-logo {
    max-width: 110px; /* Adjust size as needed */
    margin-bottom: 20px;
    display: block; /* Ensure proper alignment */
}

/* Social Icons */
.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 */
.footer-links {
    list-style: none;
    padding: 0;
}

.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 */
.copyright {
    text-align: center;
    margin-top: 30px;
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    /* Stack columns vertically */
    .col-md-4 {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Center-align the logo */
    .footer-logo {
        margin: 0 auto 20px;
    }

    /* Social Icons and Footer Links */
    .social-icons {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    /* Adjust padding */
    .footer {
        padding: 20px 0;
    }
}

/* Media Query for Extra Small Screens */
@media (max-width: 480px) {
    .footer {
        padding: 15px 0;
    }

    .footer-logo {
        max-width: 120px;
    }

    .social-icons li {
        margin-right: 8px;
    }

    .social-icons a {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 14px;
    }
}
