/* GLOBAL & RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  background: #f9f9f9;
}

/* NAVBAR BASE */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background:   radial-gradient(80% 120% at 90% 30%, #0e2a47 0%,  #050b17 55%, #020814 100%);
  color: #fff;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}
.nav-links a:hover {
    color: #7cf03d;
}
.cta-btn {
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: rgba(168, 179, 252, 0.523);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* MOBILE MENU */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-left p {
    display: none; /* hide tagline on mobile */
  }
}

/* HERO SECTION */
.about-hero {
  background: #1a1a1a url('working_on_laptop.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;

}
.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ABOUT SECTION */
.about_container{
    margin-left: 30px;
    margin-right: 20px;
}
.about {
  margin: 3rem 0;
}
.about h2 {
  color: #222;
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
}
.about p {
  margin-bottom: 1.5rem;
}
.about ul {
  list-style: disc inside;
  margin-bottom: 1.5rem;
}
.about ul li {
  margin-bottom: 0.6rem;
}

/* CTA SECTION */
.cta {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 2.5rem 1rem;
  margin: 3rem 0;
}
.cta h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}
.cta .btn {
  display: inline-block;
  background-color: #0077ff;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.cta .btn:hover {
  background-color: #005dc1;
}

/* TEAM SECTION */
.team_container{
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.team {
  margin: 4rem 0;
  text-align: center;
}
.team h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #222;
}
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.team-member {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.team-member h3 {
  margin-bottom: 0.5rem;
  color: #111;
}
.team-member p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* FOOTER */
footer {
  background-color: #000;
  color: #aaa;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}
footer .footer-info p {
  margin-bottom: 0.4rem;
}
footer .footer-social a {
  margin: 0 0.8rem;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer-social a:hover {
  color: #fff;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
  }
  .navbar nav {
    margin-top: 0.8rem;
  }
  .hero.about-hero h1 {
    font-size: 2rem;
  }
  .hero.about-hero p {
    font-size: 1rem;
  }
  .about-hero{
    margin-top: -70px;
  }
}