* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.black-hr-line {
  width: 100%;
  height: 2px;
  background-color: #000;
}
.kumbh-sans {
  font-family: "Kumbh Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.revalia-regular {
  font-family: "Revalia", sans-serif;
  font-style: normal;
}
.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.sarpanch-regular {
  font-family: "Sarpanch", sans-serif;
  font-style: normal;
}
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
a {
  text-decoration: none;
}
body {
  position: relative;
  background: #022a2a;
}

/* header */

.header {
  width: 100%;
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 999;
  padding-bottom: 23px;
}
.header nav {
  width: 90%;
  height: 60px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.header nav .logo-nav-cont {
  display: flex;
  align-items: end;
  gap: 12rem;
}
.header nav .logo-nav-cont .logo h1 {
  font-size: 20px;
}
.header nav .logo-nav-cont #nav-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.header nav .logo-nav-cont #nav-menu ul li a {
  color: #fff;
  font-size: 17px;
}
.header nav .contact a {
  color: #fff;
  font-size: 17px;
  position: relative;
}
.header nav .contact a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 100%;
  background: #686868;
}
.mob-contact {
  display: none;
}
.menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 998;
  display: none;
}
.overlay-active {
  display: block !important;
}
#nav-menu {
  transition: right 0.3s ease-in-out;
}
.menu-btn svg{
  height: 25px;
  width: 25px;
  color: #fff;
}

@media screen and (max-width: 1403px) {
  .header nav {
    width: 95%;
  }
  .header nav .logo-nav-cont {
    gap: 9rem;
  }
}

@media screen and (max-width: 1216px) {
  .header nav .logo-nav-cont {
    gap: 7rem;
  }
}

/* MOBILE NAV STYLES */
@media screen and (max-width: 980px) {
  .header nav .logo-nav-cont #nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  #nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }

  .header nav .logo-nav-cont #nav-menu ul li a {
    color: #000; /* Fix contrast on white background */
  }

  .mob-contact {
    display: block;
  }

  .menu-btn {
    display: block;
  }

  nav .contact {
    display: none;
  }

  .header nav .logo-nav-cont {
    width: 95%;
    justify-content: space-between;
  }
}

/* IMPORTANT: Must be outside media query */
.nav-active {
  right: 0 !important;
}

#nav-menu.nav-active {
  z-index: 1000;
}
