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

body {
      font-family: 'Poppins', sans-serif;
      background-color: #fef9e7;
      height: 100%;
      width: 100%;
      overflow-x: hidden;
    }
    /* ------------------------------------------------------------------- */
    .container {
      display: flex;
      height: 100%;
      margin: 0;
      padding: 0;
    }
    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;
      padding: 0;
    }
    .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;
    }
.icons {
      width: 30px;
      height: 30px;
      
    }
    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      background: transparent;
      
    }

    .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;
   }
    /* --------------------------------------------------------------------------------------- */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('hero.jpg') no-repeat center center/cover;
      color: white;
      text-align: center;
      padding: 100px 20px;
    }
    .btn-green {
      background-color: #4CAF50;
      color: white;
    }
    .story-section {
      padding: 60px 20px;
      background-color: #fef9e7;
    }
    .feature-card {
      border: 1px solid #ddd;
      border-radius: 10px;
      text-align: center;
      padding: 30px;
      background: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }
    .feature-card:hover {
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transform: translateY(-8px);
    }
    .feature-icon {
      font-size: 2rem;
      color: green;
      margin-bottom: 10px;
    }
    #founders {
      position: relative;
      
    }
    #found{
      position: absolute;
      bottom: 1px;
      left: 10%;
      transform: translateX(-50%);
      background-color: #f6f9f6;
      box-shadow: yellow 0px 0px 3px;
      padding: 20px 20px;
      border-radius: 5px;
      height:60px;
      width:125px;
     
    }
    #found h1 {
       font-size:14px;
      font-family: "Poppins", sans-serif;
      font-weight: bold;
      color: rgb(52, 145, 6);
    }
     #found h2 {
       font-size:10px;
      font-family: "Poppins", sans-serif;
      font-weight: bold;
      color: rgb(52, 145, 6);
    }
    .list-unstyled{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    /* Footer */
    .contain{
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        margin-right: auto;
        margin-left: auto;
    }
   
        .footer {
            background: #1f2937;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        .footer p {
            margin-bottom: 0.5rem;
        }
    @media (max-width: 768px) {
      .navbar-brand, .nav-link {
        font-size: 1rem;
      }
    }
     @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;
      }
    }