/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background: #000;
  color: #fff;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

header {
  background: transparent;
  padding: 1rem 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 1.25rem;
}

.logo img {
  width: 110px;
  height: 70px;
}


.hero {
  padding: 5rem 1rem 6rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 300;
  color: #eee;
}

.btn {
  background: #fff;
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ccc;
  color: #000;
  cursor: pointer;
}
.staff {
  padding: 3rem 1rem 5rem;
  text-align: center;
}

.staff h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
}

/* Featured member styling */
.staff-featured {
  margin-bottom: 3rem;
}

.staff-featured .staff-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid #fff;
}

.staff-featured .staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-featured h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #fff;
}

.staff-featured p {
  font-size: 0.95rem;
  font-weight: 300;
  color: #ccc;
}

/* Grid members styling */
.staff-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.staff-member {
  max-width: 180px;
}

.staff-member .staff-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #fff;
}

.staff-member .staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-member h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #fff;
}

.staff-member p {
  font-size: 0.95rem;
  font-weight: 300;
  color: #ccc;
}



.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
  gap: 2rem;
  padding: 2rem 0 5rem;
}

.stat strong {
  font-size: 1.75rem;
  display: block;
  color: #fff;
}

.stat span {
  color: #fff;
  font-weight: 300;
}

.portfolio {
  background: rgba(255 255 255 / 0.05);
  padding: 3rem 1rem;
  border-radius: 8px;
  margin-bottom: 5rem;
  color: #fff;
}

.portfolio h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 2rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.portfolio-grid .quarter {
  background: rgba(255 255 255 / 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  color: #000;
  font-weight: 700;
}

.portfolio-grid .quarter h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

p {
  color: #fff;
}
.feedback {
  padding: 3rem 1rem 5rem;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.feedback h2 {
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.feedback-list blockquote {
  border-left: 3px solid #fff;
  margin-bottom: 2rem;
  padding-left: 1rem;
  font-style: italic;
  color: #ddd;
}

.feedback-list footer {
  margin-top: 0.5rem;
  color: #fff;
  font-weight: 600;
  text-align: right;
}

footer {
  border-top: 1px solid #333;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a,
.social a {
  margin-right: 1rem;
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover,
.social a:hover {
  color: #ccc;
}
