* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    color: #0d1b2a;
    background-color: #ffffff;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #222;
    color: white;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
  }
  
  .logo img {
    width: 32px;
    height: 32px;
  }
  
  .logo span {
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
  }
  
  .login-btn {
    background-color: #ff9800;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    margin-left: 20px;
    transition: background-color 0.3s;
  }
  
  /* Hero section with full background image */
  .hero {
    height: 100vh;
    background-image: url('image/paint.jpeg'); /* Your uploaded image filename */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  /* Dark overlay for text readability */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .hero .overlay {
    position: relative;
    color: white;
    text-align: center;
    max-width: 700px;
    padding: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
  }
  
  .cta-btn {
    display: inline-block;
    background-color: #2a9d8f;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Footer */
  footer {
    background-color: #2b2b2b;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
  }

  .right-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .right-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-container {
    display: flex;
    align-items: center;
  }

  .nav-links li {
    margin: 0 15px;
  }

  .nav-links a:hover {
    color: #ff9800;
  }

  .login-btn:hover {
    background-color: #e68a00;
  }
  
  
  
  