/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
}

/* Navbar */
.navbar {
  background: #000;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 50px;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: 0.3s;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(to right, #00f0ff, #0077ff);
  transition: width 0.3s ease-in-out;
}

.nav-links li a:hover::after {
  width: 100%;
}
.nav-links li a:hover {
  color: #00f0ff;
}

/* Hamburger Icon - hidden by default (only for mobile) */
.hamburger {
  font-size: 26px;
  color: white;
  cursor: pointer;
  display: none;
}

/* Mobile Menu - Hidden on desktop */
.mobile-menu {
  display: none;
}

/* Show hamburger & mobile menu only on mobile */
@media (max-width: 991px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #111;
    z-index: 9999;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
  }

  .mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 60px;
  }

  .mobile-menu ul li a {
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
  }

  .mobile-menu ul li a:hover {
    color: #00f0ff;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }
}

/* Footer */
.absolve-footer {
  background: #001d3d;
  color: #ffffffcc;
  padding: 60px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-left {
  max-width: 400px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #ffffffcc;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00f0ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #ffffff88;
}
