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

:root {
  --torquoise: hsl(192, 31%, 39%);
  --tor-dark: #273d52;
  --text: #222222;
  --muted: #666666;
  --bg: #ffffff;
  --bg-light: #f7f7f7;
  --border: #e5e5e5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

/* .container {
  width: min(1100px, 90%);
  margin: 0 auto;
} */

.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 0.5 2rem;
}



.logo img {
  width: 400px;
  height: auto;
  object-fit: contain;
}



.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  
}


.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: #9a9a9a;
  font-size: 1.05rem;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-links a:hover {
  background-color: #efefef;
  color: var(--torquoise);
}

section {
  padding: 4rem 2rem;
}

.construction-box {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid #d0e3e5;
  background: #eef6f7;
  border-radius: 10px;
}

/* .section-light {
  background: var(--bg-light);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
} */

#home {
  padding: 5rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

#home h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--tor-dark);
}

#home p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1rem;
}

#home .construction-box {
  max-width: 500px;
  margin: 2rem auto 0;
  text-align: left;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

.team-card {
 
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.avatar {
    width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--torquoise);
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  letter-spacing: 1px;
  }



.footer {
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}


@media (max-width: 900px) {
  
  .nav-content {
    min-height: 70px;
    padding: 0 1rem;
  }

  .logo img {
    width: 250px;
    height: auto;
  }

  #home {
  padding: 3rem 1rem;
}

#home h1 {
  font-size: 1.6rem;
}

#home p {
  font-size: 0.95rem;
}


  .nav-links a {
    height: 65px;
    padding: 0 1rem;
    font-size: 0.95rem;
  }
  section {
    padding: 3rem 1.5rem;
  }

  section h2 {
    font-size: 1.7rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card {
    padding: 1.2rem;
  }

  .team-card h3 {
    font-size: 1.05rem;
  }

  .team-card p {
    font-size: 0.9rem;
  }

  .avatar {
    width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--torquoise);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  letter-spacing: 1px;
  }
 
}


@media (max-width: 600px) {
   .nav-content {
    min-height: 60px;
  }

  .logo img {
    width: 150px;
    height: auto;
  }

  .nav-links a {
    height: 55px;
    padding: 0 0.8rem;
    font-size: 0.85rem;
  }
  section {
    padding: 2.5rem 1rem;
  }

  section h2 {
    font-size: 1.4rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    padding: 1rem;
  }

  .team-card h3 {
    font-size: 0.95rem;
  }
  .team-card p {
    font-size: 0.8rem;
  }

  .avatar {
    width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--torquoise);
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  letter-spacing: 1px;
  }

  .footer {
    font-size: 0.85rem;
    padding: 1rem 0;
  }



}


