  body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0f2f2f;
    padding: 10px 20px;
    color: white;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: bold;
  }

  .logo img {
    width: 40px;
  }

  .nav-links {
    display: flex;
    gap: 30px;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
  }

  .search-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 5px 10px;
    gap: 8px;
  }

  .search-container input {
    border: none;
    outline: none;
    padding: 8px;
    width: 220px;
  }

  .search-btn {
    background: #1c8c7c;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
  }

  .clear-btn {
    background: #e0e0e0;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
  }

  .hero {
    position: relative;
    height: 100vh;
    background: url('city.avif') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
  }

  .hero-content {
    position: relative;
    max-width: 600px;
    margin-left: 80px;
  }

  .hero h1 {
    font-size: 60px;
    font-weight: bold;
    margin: 0 0 20px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .btn {
    background: #1c8c7c;
    padding: 12px 20px;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
  }

  .socials {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
  }

  .socials i {
    color: white;
    font-size: 18px;
    cursor: pointer;
  }
  .search-icon{
    color: black;
  }
  i{
    color: white;
  }
.about {
    position: relative;
    height: 100vh;
    background: url('city.avif') no-repeat center center/cover;
    color: white;
    display: flex; 
  }
  
  .about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
  }
  
  .about-content {
    position: relative;
    padding: 60px 80px;
  }
  
  .about h1 {
    font-size: 70px;
    margin-bottom: 20px;
  }
  
  .about-text {
    max-width: 900px;
    line-height: 1.6;
    margin-bottom: 60px;
  }
  
  .team-section {
    display: flex;
    align-items: flex-start;
    gap: 50px;
  }
  
  .team-section h2 {
    font-size: 60px;
    line-height: 1.1;
  }
  
  .team-cards {
    display: flex;
    gap: 40px;
  }
  
  .card {
    text-align: center;
    max-width: 200px;
  }
  
  .card i {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .card h3 {
    margin: 10px 0 5px;
  }
  
  .card p {
    font-size: 14px;
  }
  
  .card span {
    display: inline-block;
    margin-top: 10px;
    background: #1c8c7c;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
  }

#contactForm {
    background: rgba(10, 25, 40, 0);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 2rem 3rem ;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1.2rem;
  }
  
  .field-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  
  .field-group label {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
  } 
  
  #contactForm input,
  #contactForm textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.88rem;
    padding: 0.65rem 0.9rem;
    outline: none;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    width: 100%;
  }
  
  #contactForm input::placeholder,
  #contactForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.85rem;
  }
  
  #contactForm input:focus,
  #contactForm textarea:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.07);
  }
  
  #contactForm textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
  }
  
.results-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 80px;
}

.cards {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.cards img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.cards h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #333;
}

.cards p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
