*{
  margin:0;
  padding:0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  border:none;
  outline:none;
  scroll-behavior: smooth;
  font-family:-apple-system, sans-serif;

}
:root {
  --bg-color:#000;
  --snd-bg-color:#111;
  --text-color:#fff;
  --main-color:chartreuse;
}
html {
  font-size:62.5%;
  overflow-x:hidden;

}
body {
  background:var(--bg-color);
  color:var(--text-color);

}
section {
  min-height:100vh;
  padding:10rem 8% 2rem;
}

/*Header Section Code */
header {
  position:fixed;
  width:100%;
  top:0;
  right:0;
  z-index:1000;
  display: flex;
  justify-content: space-between;
  align-items:center;
  padding:2rem 9%;
  background:rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
} 
.logo {
  font-size:3rem;
  color:var(--text-color);
  font-weight:800;
  cursor:pointer;
  transition:scale(1.1);


}
.logo:hover {
  transform:scale(1.1);
}
span {
  color:var(--main-color)
}
.navbar {
  display :flex;
}
.navbar a {
  font-size:1.8rem;
  font-weight:500;
  color:var(--text-color);
  margin-left: 4rem;
  transition: all 0.5s ease;
  border-bottom: 3px solid transparent;
}
.navbar a:hover,
.navbar a.active {
  color:var(--margin-color);
  border-bottom:3px solid var(--main-color);
}

.nav-btn {
  padding: 10px 20px;
  background-color: #4CAF50; /* Green background */
  color: white;
  text-decoration: none;
  font-size: 16px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.nav-btn:hover {
  background-color: #45a049; /* Slightly darker green */
}


.nav-btn:hover {
  background:var(--main-color);
  color:var(--text-color);
  box-shadow:0 0 18px var(--margin-color);
}

#menu-icon {
  font-size: 3.6rem;
  color:var(--main-color);
  cursor:pointer;
  display:none;
}
/* Home Section Code */
.home {
  display : flex;
  justify-content:center;
  align-items:center;

}
.home-content h3 {
  font-size: 5rem;
  font-weight: 700;
}
.home-content span {
  font-size:4rem;
  font-weight:550;

}
span {
  color:var(--main-color);

}
.home-content h1{
  font-size: 5.6rem;
  font-weight:700;
  line-height:1.3;
}
.home-img img{
  width:45vw;
  margin-top: 50px;
  margin-bottom: 30px;

}

.home-img::before {
  content:'HEALTHYGROW';
  position:absolute;
  top:10%;
  left:49.5%;
  transform:translatex(-50%);
  font-size:20rem;
  font-weight: 400;
  line-height: 20rem;
  color:var(--text-color);
  opacity: 0.1;
  z-index: -1;
}
.home-content p {
  font-size:1.6rem;
  margin-bottom:2rem;
  margin-top:2rem;

}
.btn {
  display:inline-block;
  padding:1rem 2.8rem;
  background:var(--main-color);
  border-radius:1rem;
  box-shadow: none;
  font-size: 1.6rem;
  box-shadow: none;
  font-size:1.6rem;
  color:var(--bg-color);
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.5s ease;
  margin-top: 9px;
  margin-bottom: -30px;
}
.btn:hover {
  color:var(--text-color);
  box-shadow:0 0 1.6rem var(--main-color);
}
.btn {
  display:inline-block;
  padding:1rem 2.8rem;
  background:var(--main-color);
  border-radius:1rem;
  box-shadow: none;
  font-size: 1.6rem;
  box-shadow: none;
  font-size:1.6rem;
  color:var(--bg-color);
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.5s ease;
  
}
.read-mor-btn {
  display:inline-block;
  padding:1rem 2.8rem;
  background:var(--main-color);
  border-radius:1rem;
  box-shadow: none;
  font-size: 1.6rem;
  box-shadow: none;
  font-size:1.6rem;
  color:var(--bg-color);
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.5s ease;
}
.read-mor-btn:hover {
  color:var(--text-color);
  box-shadow:0 0 1.6rem var(--main-color);
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .home {
    flex-direction: column;
    text-align: center;
  }

  .home-img img {
    width: 60vw;
  }

  header {
    padding: 1.5rem 5%;
  }

  .navbar a {
    margin-left: 2rem;
    font-size: 1.6rem;
  }
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
  html {
    font-size: 50%;
  }

  .logo {
    font-size: 2.4rem;
  }

  #menu-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--snd-bg-color);
    flex-direction: column;
    display: none;
  }

  .navbar a {
    margin: 1.5rem 0;
    font-size: 1.8rem;
  }

  .navbar.active {
    display: flex;
  }

  .home-img img {
    width: 80vw;
  }

  .home-content h1 {
    font-size: 4.5rem;
  }

  .home-content h3 {
    font-size: 3.5rem;
  }

  .home-content span {
    font-size: 3rem;
  }

  .home-content p {
    font-size: 1.4rem;
  }

  .btn, .read-mor-btn {
    font-size: 1.4rem;
    padding: 0.8rem 2rem;
  }

  .home-img::before {
    font-size: 8rem;
    line-height: 10rem;
    top: 30%;
    left: 50%;
  }
}


.responsive-logo {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.responsive-logo img {
  height: 70px;
  max-width: 100%;
}


@media (max-width: 768px) {
  .responsive-logo {
    margin-top: 60px;
  }

  .responsive-logo img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .responsive-logo {
    margin-top: 40px;
  }

  .responsive-logo img {
    height: 50px;
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section.home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  flex-wrap: wrap;
  background-color: #000000;
}

.home-content {
  flex: 1 1 300px;
  padding: 1rem;
}

.home-content h1,
.home-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.home-content .btn {
  padding: 0.75rem 1.5rem;
  background-color: #ff4d4d;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

.home-img {
  flex: 1 1 300px;
  text-align: center;
  padding: 1rem;
  margin-bottom: -200px;
}

.home-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
  section.home {
    flex-direction: column;
    text-align: center;
  }

  .home-content h1,
  .home-content h3 {
    font-size: 1.5rem;
  }

  .home-content .btn {
    font-size: 0.9rem;
  }
}


    h2, h1, p {
      text-align: center;
      margin: 20px;
    }

    h2 {
      font-size: 6vw;
    }

    h1 {
      font-size: 5vw;
    }

    p {
      font-size: 4vw;
      line-height: 1.6;
    }

    .intro-btn {
      text-align: center;
      margin: 30px auto;
    }

    .intro-btn a {
      font-size: 4vw;
      background-color: chartreuse;
      color: #201b1b;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 8px;
    }

    hr {
      width: 60%;
      margin: 25px auto;
    }

    .image-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin: 20px 0;
    
    }

    .image-row img {
      width: 90%;
      max-width: 300px;
      border-radius: 25px;
    }

    .video-container {
      text-align: center;
      margin-top: 40px;
    }

    .video-container video {
      width: 90%;
      max-width: 700px;
      border-radius: 10px;
    }

    /* Responsive text for larger screens */
    @media (min-width: 768px) {
      h2 {
        font-size: 30px;
      }

      h1 {
        font-size: 30px;
      }

      p {
        font-size: 20px;
      }

      .intro-btn a {
        font-size: 20px;
      }
    }
    .center-text {
    text-align: center;
    }
    

 
  /* Container Styling */
  .home {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 30px;
  }

  /* Content Section */
  .home-content {
    flex: 1 1 400px;
    text-align: center;
  
  }

  .home-content h3, .home-content h1 {
    margin: 10px 0;
  }

  .home-content h1 {
    font-size: 2.5em;
  }

  .home-content .multiple-text {
    color: #4CAF50;
    font-weight: bold;
  }

  .btn {
    margin-top: 20px;
    padding: 10px 25px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .btn:hover {
    background-color: #388E3C;
  }

  /* Image Section */
  .home-img {
    flex: 1 1 400px;
    text-align: center;
  }

  .home-img img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* Responsive Text Alignment */
  .center-text {
    text-align: center;
    margin-top:-2000px;
    margin-bottom: -3000px;
  }

  /* Mobile View: Stack elements */
  @media (max-width: 768px) {
    .home {
      flex-direction: column;
      padding: 15px;
    }

    .home-content h1 {
      font-size: 2em;
    }

    .btn {
      font-size: 16px;
      padding: 10px 20px;
    }
  }


    .home-img {
      margin-bottom: -200px;
      
    }