 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body, html {
      height: 100%;
      width: 100%;
      overflow-x: hidden;
    }

    .container {
      display: flex;
      height: 100%;
    }
h4{
     font-family: "Poppins", sans-serif;
      font-size: 12px;
      color: #877777;
      margin: 0 0 10px 20px;
    }
    .sidebar {
      width: 220px;
      background: #f6f9f6;
      padding: 20px 15px;
      border-right: 1px solid #eee;
      transition: transform 0.3s ease;
    }

    .sidebar .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 30px;
    }
    .sidebar .logo img{
      width: 50px;
      height: 50px;
      border-radius: 50%;
     
    }
     .sidebar .logo h3{
      font-family: "Poppins", sans-serif;
      color: #2d6a4f;
      font-size: 24px;
       font-weight: 400;
    }

    .sidebar nav ul {
      list-style: none;
    
    }
.sidebar nav ul  a {
      text-decoration: none;
      color: inherit;
    }
    .sidebar nav ul li {
      padding: 12px 5px;
      display: flex;
      align-items: center;
      gap: 10px;
      
      color: #2d6a4f;
      font-size: 15px;
      cursor: pointer;
    }

    .main-content {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      background-color: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);           
      border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .topbar .logo-inline {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin:auto;
    }
    .topbar .logo-inline img {
      width: 85px;
      height: 85px;
      border-radius: 50%;
    }
    
    .topbar .top-buttons button {
      margin-left: 10px;
      padding: 8px 14px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
    }

    .topbar .contact {
      background-color: #ffffff;
      border: 1px solid #ccc;
    }

    .topbar .buy {
      background-color: #38b000;
      color: white;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
   .hamburger img{
      width: 30px;
      height: 30px;
      display: block;
      margin: auto;
   }
   .icons {
      width: 30px;
      height: 30px;
      
    }
    .hamburger span {
      height: 3px;
      width: 25px;
      background: #333;
      margin: 4px 0;
    }

    .hero {
      position: relative;
      flex: 1;
      background: url('img/product.jpg') no-repeat center center/cover;
    }

    .overlay {
      background-color: rgba(69, 123, 59, 0.7);
      width: 100%;
      height: 100%;
      padding: 60px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }

    .overlay h2 {
      font-size: 3rem;
    }

    .overlay h2 span {
      color: #fcbf49;
    }

    .overlay h4 {
      margin-top: 10px;
      font-size: 1.3rem;
      color: #ffffff;
    }

    .overlay p {
      max-width: 600px;
      margin: 20px auto;
      font-size: 1rem;
      line-height: 1.6;
    }

    .buttons{
      margin-top: 20px;
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .orders {
      background-color: #fcbf49;
      border: none;
      padding: 12px 20px;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      color: #000;
    }

    .learn {
      background-color: #ffffff;
      border: none;
      color: #333;
      padding: 12px 20px;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      color: #000;
    }
    

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .sidebar {
        position: absolute;
        height: 100vh;
        top: 0;
        left: 0;
        background: #f6f9f6;
        transform: translateX(-100%);
        z-index: 1000;
      }

      .sidebar.active {
        transform: translateX(0);
      }

      .topbar {
        flex-direction: row;
        justify-content: space-between;
      }

      .hamburger {
        display: flex;
      }

      .overlay h2 {
        font-size: 2rem;
      }

      .overlay h4 {
        font-size: 1.1rem;
      }

      .overlay p {
        font-size: 0.9rem;
      }
    }