* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #1e1e2f, #12121a);
  color: white;
}

::-webkit-scrollbar {
  display: none;
}

.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;

  display: flex;
  width: 80%;
  height: 60px;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  margin-top: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  transition: 0.3s ease;
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 40px rgba(0, 245, 196, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.logo {
  width: 120px;
  padding-top: 6px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  transition: 0.3s;
}

.navbar a:hover {
  color: #00f5c4;
}

.nav-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 650px) {
  nav .logo {
    display: none;
  }

  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-links {
    gap: 2px;
  }
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: 0.3s;
  padding: 6px 4px;
}

/* Hover */
.nav-links a:hover {
  color: white;
}

/* Active Link */
.nav-links a.active {
  color: #00f5c4;
}

/* Animated underline */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #00f5c4, #5b8cff);
  transition: 0.3s ease;
}

.nav-links a.active::after {
  width: 100%;
}

/* FOOTER */
.footer {
  margin-top: 80px;
  padding: 80px 10% 20px 10%;
  background: linear-gradient(135deg, #0f0f18, #1a1a2e);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

@media (max-width: 1146px) {
  .footer-container {
    justify-content: center;
  }
}

.footer-info {
  display: flex;
  align-items: start;
  flex-direction: column;
  max-width: 500px;
}

.footer-info p {
  opacity: 0.7;
  margin-top: 4px;
}

@media (max-width: 650px) {
  .footer-info p {
    font-size: 1.1em;
  }
}

.footer-contact {
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 40px 40px 40px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  width: 400px;
}
.footer-contact h3 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #00f5c4;
}

.footer-contact input,
.footer-contact textarea {
  width: 100%;
  padding: 12px 12px 12px 0;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  outline: none;
  transition: 0.3s;
}

.contact-inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
}

.footer-contact input:focus,
.footer-contact textarea:focus {
  background: rgba(0, 245, 196, 0.1);
  box-shadow: 0 0 10px rgba(0, 245, 196, 0.5);
}

.footer-contact textarea {
  resize: none;
  height: 100px;
}

.footer-contact button {
  font-family: inherit;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #00f5c4, #5b8cff);
  color: rgb(255, 255, 255);
  font-weight: bolder;
  cursor: pointer;
  transition: 0.3s;
}

@media (max-width: 650px) {
  .footer-contact h3 {
    font-size: 1.5em;
  }
}

.footer-contact button:hover {
   transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 120px;
  opacity: 0.5;
  font-size: 14px;
}

.footer-links,
.footer-contact-info,
.footer-social {
  margin-top: 25px;
}

.footer-links h4,
.footer-contact-info h4,
.footer-social h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #00f5c4;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
}

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

.footer-contact-info p {
  margin: 5px 0;
  opacity: 0.7;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  transition: 0.3s;
}

.social-icons a:hover {
  background: linear-gradient(90deg, #00f5c4, #5b8cff);
  color: black;
  transform: translateY(-3px);
}
