body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0e0e0e;
    color: white;
  }
  
  .navbar {
    background-color: #1a1a1a;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  

.nav-links li a {
  color: white; /* Text color */
  text-decoration: none; /* Removes underline from links */
  font-weight: 500; /* Medium font weight */
  background-color: green; /* Background color of the link */
  border-radius: 3px; /* Rounded corners */
  padding: 10px 15px; /* Add padding for better spacing */
  transition: background-color 0.3s ease; /* Smooth transition for background color */
}
  
  .social-icons a {
    margin-left: 15px;
    color: #888;
    text-decoration: none;
    font-size: 18px;
  }


  .social-icons a img {
    width: 50px;
    height: 50px;
  }
  
  .hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 60px;
    flex-wrap: wrap;
  }
  
  .hero-content {
    max-width: 500px;
  }
  
  .hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 30px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 14px 26px;
    background-color: #4cd137;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 0 15px #4cd13788;
  }
  
  .hero-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #333;
  }
.hero-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}
  
  .brands {
    text-align: center;
    margin-top: 80px;
  }
  
  .brands p {
    color: #aaa;
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .brand-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .brand-logos img {
    width: 100px;
    opacity: 0.8;
    background-color: #1a1a1a;
    padding: 12px;
    border-radius: 8px;
  }
  
  
