* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

#spinner.hide {
    opacity: 0;
    visibility: hidden;
}

.hero {
  background-color: #4CAF50;
  color: white;
  padding: 40px 0;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}


.parallax-slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

#plant {
  position: relative;
  height: 1000px;
  width: 1000px;
  margin-left: 130px;
}

#3dbox {
    backround-color: grey;
    
    
}


#plantgrid {
  position: left;
  height: 300px;
  width: 300px;
  margin-left: 130px;
  align-self: center;
}


.wrapper {
  position: center;
  display: grid;
  grid-template-columns: 365px 365px 370px;
  grid-gap: 10px;
  background-color: #ffffff49;
  color: #444;
}

.box {
  background-color: #caecb6;
  color: #fff;
  border-radius: 5px;
  padding: 50px;
  font-size: 150%;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.layer1 {
  background-image: url('pix1.png');
  z-index: 1;
}

.layer2 {
  background-image: url('pix2.png');
  z-index: 2;
}

.layer3 {
  background-image: url('pix3.png');
  z-index: 3;
}

.parallax-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  text-align: center;
}

h1 {
  font-size: 4rem;
}

p {
  font-size: 1.5rem;
  margin-top: 20px;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
}


nav {
    position: fixed;
    z-index: 99;
    width: 100%;
    padding: 30px 0;
    transition: all 0.5s ease;
}

/* Styling the header */
header {
  background-color: #4CAF50;
  color: white;
  padding: 40px 0;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: 600;
}

/* Container for content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.menu-container {
    max-width: 1170px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;

}



/* Main section styling */
section {
  margin-top: 40px;
  text-align: center;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #4CAF50;
  font-weight: 600;
}

section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

/* Key features styling */
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  width: 30%;
  margin: 20px 0;
  transition: transform 0.3s ease-in-out;
}

.feature:hover {
  transform: scale(1.05);
}

.feature h3 {
  font-size: 1.8rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature p {
  font-size: 1rem;
  color: #666;
}

/* Call-to-action section */
.cta {
  background-color: #fffff;
  color: white;
  padding: 40px;
  margin-top: 50px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.cta h2 {
  font-size: 2.5rem;
  color: #4CAF50;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 30px;
}

/* Button */
.cta button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.cta button:hover {
  background-color: #45a049;
}

/* Media Queries for responsiveness */
@media screen and (max-width: 768px) {
  .feature {
    width: 80%;
  }

  header h1 {
    font-size: 2.5rem;
  }

  section h2 {
    font-size: 2rem;
  }
}
