* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    /* Top Bar */
    .topbar {
      background-color: #ffc107;
      color: white;
      padding: 8px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .topbar .email {
      margin-left: 100px;
      font-size: 14px;
    }

    .topbar .social-icons {
      margin-right: 100px;
      display: flex;
      gap: 15px;
    }

    .topbar .social-icons a {
      color: white;
      text-decoration: none;
      font-size: 16px;
    }

    /* Navbar */
    .navbar {
      background-color: #000;
      color: orange;
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 36px;
      z-index: 999;
    }

    .navbar .logo {
      margin-left: 100px;
      font-size: 22px;
      font-weight: bold;
    }

    .navbar .nav-links {
      margin-right: 100px;
      display: flex;
      gap: 20px;
    }

    .navbar .nav-links a {
      color: orange;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }

    .navbar .nav-links a:hover {
      color: white;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 25px;
      cursor: pointer;
      margin-right: 20px;
      z-index: 1001;
    }

    .hamburger span {
      height: 3px;
      width: 25px;
      background: orange;
      margin: 4px 0;
      transition: all 0.3s ease;
      display: block;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      .topbar,
      .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .topbar .email,
      .navbar .logo {
        margin-left: 20px;
      }

      .topbar .social-icons {
        margin-right: 20px;
      }

      .hamburger {
        display: flex;
        margin-right: 20px;
      }

      .navbar .nav-links {
        position: absolute;
        top: 90px;
        right: 0;
        background-color: #000;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 10px 20px;
        display: none;
        margin: 0;
        gap: 10px;
      }

      .navbar .nav-links.active {
        display: flex;
      }

      .hamburger.close span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.close span:nth-child(2) {
  opacity: 0;
}
.hamburger.close span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
    }
      
     /* === Hero Section === */
    .hero {
      position: relative;
      height: 100vh;
      background: url('../img/hero-bg.jpg') center/cover no-repeat;
        
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.1); /* 10% opacity overlay */
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      height: 100%;
      padding: 40px;
      color: white;
        
       
    }

    .hero-left {
      flex: 1;
      min-width: 250px;
      max-width: 500px;
      padding: 20px;
         
    }

    .hero-left h1 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .hero-left p {
      font-size: 18px;
      margin-bottom: 20px;
        color: aliceblue;
    }

    .hero-left button {
      padding: 10px 20px;
      background: orange;
      color: white;
       border: 2px solid white ;
      cursor: pointer;
      font-size: 16px;
    }

      .hero-left button:hover {
      background-color: transparent;
      color: black;
     border: 2px solid orange;
          
    }
      
     .hero a {
         color: white;
  text-decoration: none;
}
      
      
      
      
    .hero-right {
      flex: 1;
      min-width: 250px;
      max-width: 500px;
      padding: 20px;
        
        
        
    }

    .hero-right img {
      max-width: 100%;
      height: auto;
      border: 5px solid white;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        
    } 
      
      
      
    @media (max-width: 768px) {
  .hero {
    height: 150vh;  /* 👈 Makes hero taller on mobile */
  }
}
  
     /* Footer */
.footer {
  background-color: orange;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}   