body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
  }

  /* Top contact bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 50px;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  color: white;
  font-size: 14px;
}

.left-info span {
  margin-right: 20px;
}

.right-social a {
  color: white;
  margin-left: 10px;
  text-decoration: none;
  font-size: 18px;
}

/* Main Navigation bar */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  background-color: rgba(255, 255, 255, 0.7); /* semi-transparent white */
}

.logo-left img,
.logo-right img {
  height: 60px;
  margin: 0 5px;
}

.nav-links a {
  margin: 0 15px;
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.nav-links a:hover {
  text-decoration: underline;
}

.background-image {
  background-image: url('../images/background1.jpg'); /* Replace with your background */
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

  header {
    height: 500px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  header h1 {
    font-size: 3em;
    margin: 0.5em 0 0.2em;
  }
  
  header p {
    font-size: 1.5em;
  }
  
  .button {
    background-color: #fdb813;
    color: white;
    padding: 0.7em 1.5em;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    margin: 1em 0;
  }
  
  .section {
    padding: 30px 20px;
    text-align: center;
  }
  
  .section h2 {
    margin-bottom: 20px;
    font-size: 2em;
  }
  
  .profile-pic {
    width: 200px;
    height: auto;
    border-radius: 100px;
  }
  
  .team-container,
  .portfolio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .card {
    background: #f5f5f5;
    padding: 20px;
    width: 220px;
    border-radius: 10px;
    text-align: center;
  }
  
  .card img {
    width: 100%;
    border-radius: 5px;
  }
  
  .testimonials {
    background: #f9f9f9;
    padding: 30px 20px;
  }
  
  footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
  }

  .responsive-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    margin: 2em 0;
  }

  .responsive-text, .responsive-image {
    flex: 1 1 400px; /* Grow, shrink, and min width */
    max-width: 600px;
  }

  .responsive-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .testimonials {
    text-align: center;
    padding: 30px 30px;
    background-color: #fff;
  }
  
  .testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .testimonials .subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  .testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .testimonial {
    max-width: 280px;
    background: #fff;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .testimonial .quote {
    font-size: 2rem;
    color: #f4a300;
  }
  
  .testimonial .message {
    font-style: italic;
    margin: 20px 0;
    color: #333;
    text-align: center;
  }
  
  .client {
    text-align: center;
    margin-top: 20px;
  }
  
  .client .checkmark {
    width: 50px;
    height: 50px;
    background-color: #f4a300;
    color: #000;
    font-size: 24px;
    border-radius: 50%;
    line-height: 50px;
    margin: 0 auto 10px auto;
  }
  
  .client h3 {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .client p {
    margin: 0;
    color: #888;
  }

  @media (max-width: 768px) {
    .testimonial-grid {
      flex-direction: column;
      align-items: center;
    }
  }
