/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #f7f9fc;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Navbar */
  .navbar {
    background: #fff;
    padding: 20px 0;
  }
  
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .auth-buttons a {
    margin-left: 20px;
    padding: 10px 20px;
    border-radius: 4px;
  }
  
  .sign-in {
    color: #1a1a1a;
  }
  
  .sign-up {
    background: #0040ff;
    color: #fff;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Fill screen height */
    background: url('hero-placeholder (1).webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 100%;
  }
  
  .hero-left, .hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
  }
  
  .hero-left {
    color: #fff;
    background: rgba(0, 0, 0, 0.623); /* Optional overlay for readability */
    max-width: 600px;
  }
  
  .hero-left h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-left .highlight {
    color: #00aaff;
  }
  
  .hero-left p {
    margin-bottom: 30px;
    color: #eee;
  }
  
  .cta-btn {
    background: #0040ff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 4px;
    display: inline-block;
    text-align: center;   /* Ensures text is centered */
    font-weight: bold;
  }
  
  /* Hero Right stays empty for layout balance */
  
  /* Stats Section */
  .stats {
    background: #fff;
    padding: 60px 0;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    text-align: center;
  }
  
  .stat h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .stat p {
    color: #777;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    nav ul {
      gap: 15px;
    }
  
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-left, .hero-right {
      padding: 20px;
    }
  
    .hero-left {
      max-width: 100%;
    }
  
    .auth-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
  
    .auth-buttons a {
      margin: 0;
    }
  }
  /* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}
  