    .login-button {
      width: 100%;
      padding: 10px;
      background: #246122;
      border: none;
      color: #fff;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
    }
    
    .login-button:hover {
      background: #b3b0b0;
    }

      /*Sell title*/
  .sell-waste-title {
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 40px 30px;
    background: #f5fff9;
    margin: 40px auto;
  }

  .sell-waste-title img {
    width: 50px;
    margin-bottom: 15px;
    animation: bounce 1.5s infinite;
  }

  .sell-waste-title h2 {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .sell-waste-title p {
    font-size: 1.1rem;
    color: #dca72e;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }


   /*waste type cards*/
  .cards1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  .card1 {
    background-color: #f5fff9;
    border-radius: 10px;
    box-shadow: 0 2px 5px #2e7d32;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
  
  }
  .card1:hover {
    transform: translateY(-5px);
  }
  .card1 img {
    height: 50px;
    margin-bottom: 5px;
  }
  .card1 h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: #dca72e;
  }
  .card1 p {
    font-size: 0.95rem;
    color: #555;
  }
  footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
  }

  
    .circle-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 20px;
    }

    .circle {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background-color: #246122;
      color: #dca72e;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      transition: transform 0.3s;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .circle i {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .circle:hover {
      transform: scale(1.1);
      background-color: #388e3c;
    }

    .label {
      font-size: 14px;
      font-weight: bold;
    }

    @media (max-width: 600px) {
      .circle {
        width: 80px;
        height: 80px;
      }

      .circle i {
        font-size: 20px;
      }

      .label {
        font-size: 12px;
      }
    }

    /*funny*/
.funny-card-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    
  }

  .funny-card {
    text-align: center;
    background: #f5fff9;
    border: 3px dashed #8bc34a;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    animation: bounceIn 1s ease;
  }

  .funny-card img {
    width: 80px;
    margin-bottom: 15px;
    animation: wiggle 1.2s infinite;
  }

  .funny-card h3 {
    font-size: 1.5rem;
    color: #33691e;
    margin-bottom: 10px;
  }

  .funny-card p {
    font-size: 1rem;
    color: #dca72e;
  }

  @keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }

  @keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
  }


  /*card slide*/
  .motivation-slider {
    background-color: #f1f8f4;
    padding: 50px 20px;
    text-align: center;
  }

  .motivation-slider h2 {
    color: #2e7d32;
    margin-bottom: 30px;
    font-size: 2rem;
  }

  .scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .motivation-card {
    background: #f5fff9;
    border-radius: 10px;
    flex: 0 0 300px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    scroll-snap-align: start;
    transition: transform 0.3s;
  }

  .motivation-card:hover {
    transform: scale(1.03);
  }

  .motivation-card img {
    width: 50px;
    margin-bottom: 15px;
  }

  .motivation-card p {
    font-size: 1.05rem;
    color: #dca72e;
    font-weight: 500;
  }

  /* Hide scrollbar (optional) */
  .scroll-container::-webkit-scrollbar {
    display: none;
  }
  .motivation-slider {
    position: relative;
    overflow: hidden;
  }
  .arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    font-size: 1rem;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background 0.3s;
  }
  
  .arrow:hover {
    background: #2e7d32;
  }
  
  .arrow.left {
    left: 10px;
  }
  
  .arrow.right {
    right: 10px;
  }


.comment-section {
max-width: 700px;
margin: 0 auto;
background: #ffffff;
padding: 25px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.comment-section h2 {
color: #2d6a4f;
margin-bottom: 20px;
}

.comment-form {
margin-bottom: 30px;
}

.comment-form input,
.comment-form textarea {
width: 100%;
padding: 12px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 16px;
}

.comment-form button {
background-color: #40916c;
color: white;
border: none;
padding: 12px 25px;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
}

.comment-form button:hover {
background-color: #2d6a4f;
}

.comment {
background-color: #e6f4ea;
border-left: 5px solid #40916c;
padding: 15px 20px;
border-radius: 6px;
margin-bottom: 15px;
}

.comment h4 {
margin: 0;
font-size: 18px;
color: #1b4332;
}

.comment p {
margin: 5px 0 0;
font-size: 15px;
color: #333;
}

.timestamp {
font-size: 12px;
color: #777;
}


.footer {
background-color: #f5fff9;
color: #246122;
padding: 40px 20px 20px;
font-family: Arial, sans-serif;
}
    
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }
    
    .footer-about,
    .footer-links,
    .footer-contact {
      flex: 1 1 50px;
    }
    
    .footer-about h2 {
      color: #246122;
    }
    
    .footer-social {
      margin-top: 20px;
    }
    
    .social-icon {
      color: #246122;
      margin-right: 15px;
      font-size: 20px;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .social-icon:hover {
      color: #246122;
    }
    
    .footer-links ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-links a {
      color: #246122;
      text-decoration: none;
      display: block;
      margin-bottom: 10px;
      transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
      color: #246122;
    }
    
    .footer-contact p {
      margin: 5px 0;
    }
    
    .newsletter-form {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
    }
    
    .newsletter-form input {
      padding: 10px;
      margin-bottom: 10px;
      border: none;
      border-radius: 5px;
      font-size: 14px;
    }
    
    .newsletter-form button {
      padding: 10px;
      background-color: #246122;
      border: none;
      color: #fff;
      cursor: pointer;
      border-radius: 5px;
      font-size: 14px;
    }
    
    .newsletter-form button:hover {
      background-color: #246122;
    }
    
    .footer-bottom {
      text-align: center;
      border-top: 1px solid #246122;
      padding-top: 15px;
      margin-top: 30px;
      font-size: 14px;
      color: #246122;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
      }
      .footer-about, .footer-links, .footer-contact {
        text-align: center;
      }
      .footer-social {
        margin-top: 15px;
      }
    }