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

body {
  font-family: Arial, sans-serif;
  color: #f1f1f1;
  background: #111;
  line-height: 1.6;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

header .logo {
  font-size: 1.3rem;
  font-weight: bold;
}

header nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.3s;
}

header nav a:hover,
header nav a.active {
  color: #00bcd4;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
  margin-top: 70px;
  /* Push content below header */
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 1rem;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  font-size: 2rem;
  font-weight: bold;
}

/* About Section */
.about-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1.2s ease;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1e90ff;
  text-align: center;
}

.about-section p {
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #e0e0e0;
}

/* Founders Section */
.founders-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 30px;
}

.founders-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #1e90ff;
  margin-bottom: 40px;
}

.founder-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.founder-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  padding: 25px;
  width: 320px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

.founder-card:nth-child(1) {
  animation-delay: 0.3s;
}

.founder-card:nth-child(2) {
  animation-delay: 0.6s;
}

.founder-card:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.08);
}

.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #222 url('https://www.w3schools.com/howto/img_avatar.png') center/cover no-repeat;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #1e90ff;
  border: 3px solid #1e90ff;
}

.founder-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.founder-role {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #ccc;
  font-style: italic;
}

.founder-bio {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 0.9rem;
  color: #bbb;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .founder-cards {
    flex-direction: column;
    align-items: center;
  }
}

.site-header nav ul  {
  gap : 0px !important
}