/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
  }
  
  /* Top Section Background for Navbar + Hero */
  .top-section {
    background-image: url('Images/hero.png'); /* Replace with your image file name */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    min-height: 100vh;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    position: relative;
    z-index: 2;
    background-color: transparent;
  }
  
  .logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
  }
  
  .nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #FF7F00;
  }
  
  .cta-button {
    background-color: #FF7F00;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e46f00;
  }
  
  /* Hero Content */
  .hero-content {
    max-width: 600px;
    padding: 80px;
    padding-top: 100px;
  }
  
  .hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ffffff;
  }
  
  .hero-btn {
    background-color: #FF7F00;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .hero-btn:hover {
    background-color: #e46f00;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      gap: 10px;
      padding:50px;
    }
}