/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  line-height: 1.6;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #111;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
}

nav a {
  margin: 0 15px;
  color: #ddd;
  text-decoration: none;
}

.btn {
  background: linear-gradient(135deg, #00eaff, #4a90e2);
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* About Section */
.about-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.about-section h1 {
  font-size: 36px;
  color: #00eaff;
  margin-bottom: 20px;
}

.intro {
  color: #bbb;
  margin-bottom: 40px;
  font-size: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.about-card {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 234, 255, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.about-card h2 {
  color: #00eaff;
  margin-bottom: 12px;
}

.about-card p, .about-card ul {
  color: #ddd;
  font-size: 15px;
}

.about-card li {
  margin: 6px 0;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.4);
}

/* Team Section */
.team-section {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

.team-section h2 {
  font-size: 28px;
  color: #00eaff;
  margin-bottom: 15px;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.team-card {
  background: #0d0d0d;
  border: 1px solid rgba(0,234,255,0.3);
  padding: 20px;
  width: 260px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.team-card h3 {
  color: #00eaff;
  margin-bottom: 8px;
}

.team-card p {
  color: #ccc;
}

.team-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0,234,255,0.4);
}
