@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
body {
  margin: 0;
  padding: 0;
  background-color: #121212;
}
.flex {
  display: flex;
  align-items: center;
}
.jcsb {
  justify-content: space-between;
}
.jccenter {
  justify-content: center;
}
.jcstart {
  justify-content: flex-start;
}
.jcend {
  justify-content: flex-end;
}
.mb-1 {
  margin: 0 0 1rem 0;
}
.header {
  background: #1e1e1e;
  border-bottom: 1px solid #2a2a2a;
  padding: 1rem 0;
  height: 80px;
  width: 100%;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.menu {
  color: #b3b3b3;
  font-weight: 500;
  width: 50%;
  gap: 3rem;
}
.link {
  cursor: pointer;
  color: #b3b3b3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.link.active {
  color: #a020f0;
}
.link:hover {
  color: #a020f0;
}

.maincontent {
  height: auto;
  width: 100%;
}

.container {
  width: 85%;
  margin: auto;
}

.hero {
  height: 100vh;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #121212, #1e1e1e);
  background-image: url(earth.gif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #a020f0;
}

.hero p {
  margin-bottom: 2rem;
  color: #b3b3b3;
}
.herocontainer {
  width: 50%;
  padding: 20px;
  border: 1px solid #2a2a2a;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10.7px);
  -webkit-backdrop-filter: blur(10.7px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #a020f0;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #e07be0;
}

.section {
  padding: 4rem 1rem;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #c576f6;
}

.section p {
  color: #b3b3b3;
}

.bg-secondary {
  background: #1e1e1e;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #121212;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  transition: 0.3s;
}

.card:hover {
  background: #2d2d2d;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #c576f6;
}

/* Contact */
.contact-info {
  list-style: none;
  margin-top: 1rem;
  color: #b3b3b3;
}

.contact-info li {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: #1e1e1e;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #2a2a2a;
  font-size: 0.9rem;
  color: #b3b3b3;
}

/* Team Section */
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.team-card {
  background: #121212;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  text-align: center;
  transition: 0.3s;
}

.team-card:hover {
  background: #2d2d2d;
  transform: translateY(-5px);
}

.team-card h3 {
  color: #c576f6;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.team-card p {
  color: #b3b3b3;
  font-size: 0.95rem;
}

/* About Section */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-values .value {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 1.5rem;
  transition: 0.3s;
}

.about-values .value:hover {
  background: #2d2d2d;
  transform: translateY(-4px);
}

.about-values h3 {
  color: #c576f6;
  margin-bottom: 0.5rem;
}

.about-values p,
.about-values ul {
  color: #b3b3b3;
  font-size: 0.95rem;
}

.about-values ul {
  list-style: disc;
  padding-left: 1.2rem;
}

.about-values li {
  margin-bottom: 0.5rem;
}
.menu-icon,
.menu-close {
  display: none;
}

@media (max-width: 480px) {
  body,
  .header {
    overflow-x: hidden;
  }
  p {
    margin: 0 0 15px 0;
  }
  .menu {
    position: fixed;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #121212;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0 0 0;
    top: 0;
  }
  .menu.mobile-active {
    transform: translateX(5%);
  }
  .menu-icon,
  .menu-close {
    display: block;
    font-size: 26px;
    color: #ffffff;
  }
  .container {
    width: 95%;
  }
  .herocontainer {
    width: 99%;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
}
