@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300..800&family=Outfit:wght@300..800&display=swap');

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

.loader-block {
  height: 100vh;
  width: 100%;
  text-align: center;
  align-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  background: var(--primary);
  transition: 2s;
}

.loader-block.hidden {
  left: -300vw;
  visibility: hidden;
}

.loader {
  font-size: 80px;
  display: inline-block;
  font-weight: bold;
  color: var(--sec-lit);
  box-sizing: border-box;
  text-shadow: 0 0 2px #FFF, 0 0 1px #FFF, 0 0 1px #FFF;
  letter-spacing: 2px;
  position: relative;
}

.loader::after {
  content: 'Wakaabout...';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  animation: animloader 6s linear infinite;
}

@keyframes animloader {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

:root {
  --primary: #ffffff;
  --secondary: #000000;
  --accent: red;
  --accent-lit: #ff0c0c13;
  --sec-lit: #00000010;
  --ff: "Inter", sans-serif;
  --ff-heading: "Outfit", sans-serif;
}

a,
input {
  text-decoration: none;
  outline: none;
}

body {
  background-color: var(--primary);
  font-family: var(--ff);
  background-image:
    radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.05) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--secondary);
}

maiN {
  margin-top: 10%;
}

h1,
h2,
h3,
h4,
h5,
h6,
legend {
  font-family: var(--ff-heading);
}

.special {
  color: var(--primary);
  font-style: normal;
  font-weight: bold;
}

fieldset {
  border: none;
  border-top: 3px solid var(--accent);
  text-align: center;
  width: 50%;
  margin: auto;
}

fieldset legend {
  font-size: 25px;
  padding: 0 10px;
}

li,
a {
  list-style: none;
  text-decoration: none;
}

button {
  cursor: pointer;
}

/* nav bar */
.cover-bg {
  background-color: transparent;
  position: fixed;
  display: none;
}

header {
  position: fixed;
  top: 2vh;
  z-index: 200;
  width: 100%;
  margin: auto;
}

header nav.match {
  background-color: var(--accent);
  align-items: center;
}

header .harm-block {
  display: none;
}

.cancel {
  display: none;
}

header .menu {
  background-color: var(--secondary);
  margin: auto;
  width: 95%;
  height: 15vh;
  align-content: center;
  z-index: 100;
  border-radius: 15px;
}

.menu nav {
  display: flex;
  height: 10vh;
  justify-content: space-between;
  width: 95%;
  margin: auto;
  /* background-color: aqua; */
}

.nav-logo {
  align-content: center;
  color: var(--accent);
}

.nav-logo img {
  width: 35%;
  /* margin-top: 5%; */
  /* margin-left: 5%; */
}

.nav-logo2 {
  width: 35%;
  padding-left: 3%;
  cursor: pointer;
}

.nav-list {
  display: flex;
  gap: 30px;
  width: 90%;
  justify-content: end;
  align-items: center;
}

.nav-list a {
  color: var(--primary);
  font-size: 18px;
  transition: 300ms;
  position: relative;
  font-style: italic;
  font-weight: 500;
  align-items: center;
  /* color: var(--text); */
}

.nav-list a::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: 300ms;
  border-radius: 2px;
  transform: translateY(15px);
}

.nav-list a:hover::before {
  width: 90%;
  transform: translateY(8px);
}

.nav-list a.nav_locate {
  color: var(--accent);
}


/* nav ends */
/* section{
  height: 100vh;
} */
/* elephant-sector */
.elephant-sector {
  background-image: linear-gradient(to left, #8057000e, rgba(0, 0, 0, 0.37), #0f0300), url(./public/elephant-img.jpg);
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-repeat: no-repeat;
  align-content: end;
  text-align: start;
  padding-left: 3%;
  padding-bottom: 2%;
  color: var(--primary);
  /* background-position: ; */
}


.elephant-sector h2 {
  align-items: center;
  font-size: 40px;
}

.elephant-sector a {
  color: var(--accent);
  font-size: 25px;
}

.elephant-sector span {
  color: var(--primary);
  font-size: 25px;
}

/* Footer Styles */
footer {
  background-image: linear-gradient(#000000e7), url(public/footer-bg.png);
  width: 100%;
  height: fit-content;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--primary);
  padding-top: 3%;
  font-family: var(--ff);
  margin-top: 5%;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 95%;
  margin: auto;
  gap: 50px;
}

.footer-section {
  min-width: 20%;
}

.footer-section h3 {
  font-size: 25px;
  margin-bottom: 2%;
  color: var(--primary);
  position: relative;
  padding-bottom: 1%;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background-color: var(--accent);
  /* Changed to secondary for better visibility */
}

.footer-section.about {
  width: 35%;

}

.footer-section p {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var();
  font-size: 20px;
}

.footer-btn {
  color: var(--accent);
  display: block;
  width: fit-content;
  font-size: 15px;
  padding: 3% 6%;
  border-radius: 8px;
  background-color: transparent;
  border: 2px solid var(--accent);
  align-items: center;

}

/* Social Icons */
.socials {
  display: flex;
  gap: 20px;
  margin-top: 0;
}

.socials a {
  color: white;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.socials a:hover {
  color: var(--accent);
  transform: translateY(-5px);
}

.icon {
  width: 20px;
  height: 20px;
}

.tel-icon {
  width: 20px;
}

.footer-tel {
  font-size: 15px;
}

/* Links */
.links ul {
  padding: 0;
  list-style: none;
}

.links ul li {
  margin-bottom: 12px;
}

.links ul li a {
  color: #e0e0e0;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 20px;
}

.links ul li a:hover {
  color: var(--accent);
  padding-left: 8px;
  text-shadow: 0 0 10px rgba(253, 168, 49, 0.3);
}

/* Contact */
.contact p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact p a {
  color: #e0e0e0;
  transition: 0.3s;
}

.contact p a:hover {
  color: var(--secondary);
}

.sub-form {
  margin-top: 5%;
}

.sub-form h5 {
  font-size: 20px;
}

.sub-form .sub-inp-block {
  border: 1px solid var(--accent);
  border-radius: 15px;
  display: flex;
  width: 100%;
  align-content: center;
  align-items: center;
  padding: 1% 2%;
  margin-top: 2%;
}

.sub-inp-block input {
  height: 6vh;
  background-color: transparent;
  width: 80%;
  border: none;
  color: var(--primary);
}

.sub-inp-block button {
  padding: 0 5%;
  height: 6vh;
  background-color: var(--accent);
  border: none;
  border-radius: 10px;
  color: var(--primary);
}

.footer-logo {
  width: 350px;
  margin-top: 5%;
}


/* Bottom Bar */
.footer-bottom {
  text-align: center;
  height: 8vh;
  opacity: .6;
  margin-top: 2%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: var(--text);
  align-content: center;
}

.logout-btn {
  color: var(--accent);
  font-size: 15px;
}



@media (max-width: 798px) {

  .loader {
    font-size: 50px;
  }

  /* nav bar */

  header {
    padding-bottom: 0;
    width: 100%;
  }

  header .harm-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3%;
    position: fixed;
    right: 0px;
    top: 0;
    font-size: 30px;
    z-index: 50;
    color: var(--accent);
    background-color: var(--secondary);
    width: 100%;
    height: 10vh;
  }

  header .harm {
    cursor: pointer;
  }

  .harm-block.active {
    display: none;
  }

  .cover-bg {
    /* backdrop-filter: blur(20px); */
    background-color: #000000ba;
    position: fixed;
    width: 100%;
    height: 100dvh;
    display: block;
    left: 180vw;
    transition: 500ms;
    top: 0;
    z-index: 4;
  }

  .cover-bg.active {
    left: 0vw;
  }

  header {
    top: 0;
    height: 100vh;
    width: 60%;
    align-content: start;
    border-radius: 0 3px 0px 0;
    transition: 1000ms;
    left: -100vw;
    background-color: var(--secondary);
  }

  header.active {
    left: 0vw;
  }

  .nav-logo img {
    width: 35%;
  }

  header .menu {
    margin-left: 5%;
  }

  .menu nav {
    flex-direction: column;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1%;
    margin-left: 3%;
  }

  .nav-list li {
    margin-top: 3%;
    width: 100%;
  }

  .nav-list a {
    font-size: 15px;
    display: block;
    width: 100%;
    /* color: aqua; */
  }

  .nav-list a:hover::before {
    width: 30%;
    transform: translateY(8px);
  }


  /* elephant-sector */
  .elephant-sector {
    width: 100%;
    height: 40vh;
    padding-left: 4%;
    padding-bottom: 3%;
  }

  .elephant-sector h2 {
    align-items: center;
    font-size: 25px;
  }

  .elephant-sector a {
    font-size: 15px;
  }

  .elephant-sector span {
    font-size: 15px;
  }

  /* Footer Styles */
  footer {
    padding-top: 10%;
    margin-top: 15%;
  }

  .footer-content {
    width: 100%;
    margin: auto;
    gap: 30px;
  }

  .footer-section {
    min-width: 95%;
  }

  .footer-section h3 {
    font-size: 20px;
    margin-bottom: 1%;
  }

  .footer-section.about p {
    width: 80%;
  }

  .footer-btn {
    padding: 2% 8%;
  }

  .footer-section p {
    font-size: 15px;
    line-height: 1.5;
    /* margin-bottom: 20px; */
  }

  /* Social Icons */
  .socials {
    display: flex;
    gap: 20px;
  }

  .socials a {
    width: 30px;
    height: 30px;
  }

  .tel-icon {
    width: 25px;
  }

  .footer-tel {
    font-size: 16px;
  }

  /* Links */
  .links ul li a {
    font-size: 15px;
  }

  .footer-section.contact p {
    line-height: .5;
  }

  .sub-form {
    margin-top: 5%;
  }

  .sub-form .sub-inp-block {
    border: 1px solid var(--accent);
    border-radius: 15px;
    display: flex;
    width: 80%;
    align-content: center;
    align-items: center;
    padding: 1% 2%;
    margin-top: 2%;
  }

  .sub-inp-block input {
    height: 6vh;
    background-color: transparent;
    width: 80%;
    border: none;
    color: var(--primary);
  }

  .sub-inp-block button {
    padding: 0 5%;
    height: 6vh;
    background-color: var(--accent);
    border: none;
    border-radius: 10px;
    color: var(--primary);
  }

  .logout-btn {
    color: var(--accent);
    font-size: 12px;
  }
}

/* nav ends */

@media (max-width: 600px) {
  .loader {
    font-size: 35px;
  }

  /* nav bar */
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 5%;
    color: var(--accent);
    font-size: 13px;
  }

  .nav-logo img {
    width: 60%;
  }

  .nav-list {
    margin-top: 5%;
  }

  .nav-list li {
    margin-bottom: 1%;
    margin-left: 5%;
    /* background-color: aqua; */
  }

  .nav-list a {
    font-size: 15px;
  }

  .elephant-sector {
    /* height: 40vh; */
    padding-left: 4%;
    padding-bottom: 3%;
  }

  /* footer phone */
  .footer-section {
    margin-left: 3%;
    padding-top: 1%;
  }

  .footer-section h3 {
    font-size: 20px;
    margin-bottom: 0%;
    padding-bottom: 1%;
  }

  .footer-content p,
  .links ul li a {
    font-size: 15px;
  }

  .footer-section.about p {
    width: 95%;
  }

  .footer-section.contact p {
    line-height: .8;
    margin-top: 1%;
  }

  .footer-btn {
    padding: 3% 10%;
  }

  .socials {
    margin-top: 2%;
  }

  .socials a {
    width: 30px;
  }

  .sub-form .sub-inp-block {
    width: 90%;
  }

  .footer-bottom {
    font-size: 12px;
  }


}