* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: white;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

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

.logo img {
  width: 30px;
}

.nav-links a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.search-bar {
  display: flex;
  gap: 10px;
}

.search-bar input {
  padding: 5px 10px;
  border-radius: 20px;
  border: none;
}

.search-bar button {
  background-color: #007f7f;
  color: white;
  padding: 6px 15px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 60px 40px 60px;
  position: relative;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
}

.hero-content p {
  margin-top: 20px;
  font-size: 16px;
  max-width: 480px;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 25px;
  background-color: #007f7f;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
}

/* Social Icons */
.social-icons {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}
.about-page {
  height: 100vh;
  background: url('../assets/images/background.jpg') no-repeat center center/cover;
  padding: 100px 40px 40px 40px;
  position: relative;
  color: white;
}

.about-heading {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.about-text {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  line-height: 1.6;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 25px;
  border-radius: 10px;
}

/* Team Section */
.team-section {
  margin-top: 50px;
  text-align: center;
}

.team-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.team-section h2 span {
  color: #00cccc;
}

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

.team-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  width: 220px;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.team-card .badge {
  display: inline-block;
  background: #2b64f2;
  padding: 6px 12px;
  border-radius: 20px;
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
  color: white;
}
.contact-page {
  height: 100vh;
  background: url('../assets/images/background.jpg') no-repeat center center/cover;
  padding: 100px 40px 40px 40px;
  position: relative;
  color: white;
}

.contact-heading {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-subtext {
  font-size: 16px;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin-left: auto;
  margin-right: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  background: transparent;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 30px;
  background-color: #007f7f;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #009999;
}
#results {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
  justify-content: center;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 15px;
  width: 300px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
#results {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
/* Responsive styles */
@media (max-width: 1024px) {
  .hero {
    padding: 80px 40px 30px 40px;
    flex-direction: column;
    justify-content: center;
    height: auto;
  }

  .hero-content h1 {
    font-size: 48px;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
    text-align: center;
  }

  .social-icons {
    left: 10px;
  }

  .contact-form {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    order: 3;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-links a {
    margin: 10px 12px;
  }

  .search-bar {
    order: 2;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .search-bar input {
    width: 60%;
  }

  .hero {
    padding: 80px 20px 20px 20px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .about-page,
  .contact-page {
    padding: 80px 20px 20px 20px;
  }

  .about-heading,
  .contact-heading {
    font-size: 36px;
  }

  .about-text {
    padding: 20px;
    font-size: 14px;
  }

  .team-cards {
    justify-content: center;
  }

  .team-card {
    width: 180px;
  }

  .contact-form {
    max-width: 100%;
    margin: 20px auto 0 auto;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .logo img {
    width: 25px;
  }

  .nav-links {
    width: 100%;
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links a {
    margin: 8px 0;
    font-size: 14px;
  }

  .search-bar {
    order: 3;
    width: 100%;
    margin-top: 10px;
  }

  .search-bar input {
    width: 100%;
  }

  .hero {
    padding: 70px 15px 20px 15px;
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .about-heading,
  .contact-heading {
    font-size: 28px;
  }

  .about-text,
  .contact-subtext {
    font-size: 14px;
  }

  .team-card {
    width: 100%;
    max-width: 280px;
  }

  .contact-form {
    margin: 20px 0 0 0;
    padding: 15px;
  }
}


