/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f1f0f;
    color: #d4ffd4;
    overflow-x: hidden;
    line-height: 1.6;
  }
  
  /* Keyframe Animations */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* Navbar */
  .nav-bar {
    background-color: #162d16;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 255, 0, 0.1);
    animation: fadeInUp 0.8s ease forwards;
  }
  
  /* Adjust logo alignment */
  #log {
    font-family: 'Playfair Display', serif;
    color: #81f581;
    font-size: 1.8rem;
  }
  
  /* Align nav items next to logo */
  .eren {
    display: flex;
    gap: 1rem;
  }
  
  
  .eren a button {
    background: transparent;
    border: 2px solid #81f581;
    color: #81f581;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .eren a button:hover {
    background-color: #1f3a1f;
    transform: scale(1.05);
  }
  
  /* Hero Section */
  .main {
    padding: 5rem 2rem;
    text-align: center;
    background: radial-gradient(circle, #112211 0%, #0f1f0f 100%);
    animation: fadeInUp 1s ease forwards;
  }
  
  #heading {
    font-size: 3rem;
    color: #a7ff9d;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
  }
  
  #Explore {
    padding: 1rem 2rem;
    background-color: #2ecc71;
    color: #0f1f0f;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  #Explore:hover {
    background-color: #3de98e;
    transform: scale(1.05);
  }
  
  /* Info Boxes */
  .info-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #101e10;
  }
  
  .box1, .box2, .box3 {
    background-color: #1a2d1a;
    border: 1px solid #264d26;
    border-radius: 12px;
    width: 300px;
    margin: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 255, 0, 0.05);
    transition: transform 0.4s ease;
    animation: fadeInUp 1s ease forwards;
  }
  
  .box1:hover, .box2:hover, .box3:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 6px 15px rgba(129, 245, 129, 0.2);
  }
  
  .actualinfo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .actualinfo img {
    width: 40px;
  }
  
  .renew h3 {
    color: #81f581;
  }
  
  .des b {
    font-weight: 400;
    font-size: 0.95rem;
    color: #d4ffd4;
  }
  
  /* Sustainable Section */
  .main2 {
    background: #131f13;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  #heading2 {
    font-size: 2.5rem;
    color: #a1ffa1;
    margin-bottom: 2rem;
  }
  
  .box-1-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  #suspng {
    width: 280px;
    max-width: 100%;
    filter: brightness(1.2) contrast(1.1);
    border-radius: 10px;
    animation: fadeInUp 1s ease forwards;
  }
  
  .sustainable b {
    font-weight: 400;
    font-size: 1.1rem;
    max-width: 600px;
    color: #c8ffc8;
    display: block;
  }
  
  /* JavaScript CTA */
  .jsdiv {
    text-align: center;
    margin: 3rem;
  }
  
  #jsdiv {
    padding: 1rem 2rem;
    background-color: #4caf50;
    color: #0f1f0f;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  #jsdiv:hover {
    background-color: #66ff66;
    transform: scale(1.05);
  }
  
  /* Footer */
  footer {
    background-color: #162d16;
    padding: 2rem 1rem;
    color: #a1ffa1;
    text-align: center;
    border-top: 1px solid #264d26;
    animation: fadeInUp 1s ease forwards;
  }
  
