body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000;
  color: #fff;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 10px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-logo span {
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff4757;
}

.hero {
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #aaa;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px;
}

iframe {
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 12px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.gallery img {
  width: 300px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.03);
}

.founders {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px;
}

.founder {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}


.founder img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}


.founder p {
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.4;
}

.founder-info {
  max-width: 350px;
}


footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 0.9rem;
  color: #aaa;
}
main h1, main h2, section h1, section h2 {
  text-align: center;
  margin-top: 40px;
  font-size: 2.4rem;
}
.bio {
  font-size: 0.95rem;
  margin: 10px 0;
  color: #ccc;
}

.social-links a {
  color: #ff4757;
  font-size: 0.9rem;
  text-decoration: none;
  margin: 0 5px;
}

.social-links a:hover {
  text-decoration: underline;
}

footer .social-icons a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

footer .social-icons a:hover {
  color: #ff4757;
}

