* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-image: url('./images/bg.jpg');
  background-attachment: fixed; /* This makes the background static */
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  overflow-y: scroll; /* Ensures the page is scrollable */
  
}

.page1{
  min-height: 100vh;
}


/* Header Section */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}
.header img.logo {
  width: 200px;
  position: relative;
  top: 30px;
}
.products {
  font-weight: bold;
  color: #244033;
  font-size: 2em;
  margin: 80px 0px 0px 80px;
}
.products span {
  margin: 0 15px;
}

.products-phone{
  display: none;
}

/* Contact Us Section (Top Right Corner) */
.follow-us {
  flex-direction: column;
  background: #2f4f2f;
  align-items: center;
  display: flex;
  border-bottom-left-radius: 30px;
  padding: 30px;
  z-index: 10;
  position: sticky;
}
.follow-us p {
  margin-bottom: 5px;
  font-weight: bold;
  color: #ffffff;
}
.follow-us a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
  font-size: 1.1em;
}
.follow-us i {
  margin-right: 5px;
  font-size: 1.5em;
}



/* Main Content */
.main-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 50px ;
}
/* .main-content img.animal-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
} */
.title {
  font-size: 2.5em;
  color: #244033;
  font-weight: bold;
  background-color: #244033;
  color: white;
  padding: 15px 40px;
  border-top-right-radius: 10px; 
  border-bottom-right-radius: 10px; 
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 70px;
}
.description {
  color: #244033;
  font-size: 2em;
  margin: 0px 100px;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
}

/* Contact Section */
.contact-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 20px 0;
}
.contact-box {
  background-color: #244033;
  color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  width: 200px;
  margin: 10px;
  font-size: 1em;
  text-wrap: wrap;
  text-decoration: none;
}
.contact-box i {
  margin-right: 8px;
  font-size: 1.2em;
  text-wrap: wrap;
}
.contact-box p {
  margin: 5px 0;
  text-wrap: wrap;
}

.animal-image{
  height: 550px;
  width: 550px;
  border-radius: 25px;
}

.social-image{
  height: 20px;
  width: 20px;
  margin: 0px 4px 2px 0px;
  position: relative;
  top: 4px;
}
.description-2 {
  color: #244033;
  font-size: 2.2em;

  line-height: 1.5em;
  font-weight: bold;
}
.title-2 {
  color: #244033;
  font-size: 2.4em;
  line-height: 2em;
  font-weight: bold;
  text-align: center;
  margin-bottom:40px ;
}

.three-box{
  flex-direction: row;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.boxes{
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 500px;
  width: 300px;
}

.page2{
  min-height: 100vh;
}

.box-logo{
  height: 200px;
  width: 200px;
}

@media (max-width: 600px) {
  .main-content {
    display: flex;
    flex-direction: column;
    padding: 0px;
  }
  .header{
    display: flex;
    flex-direction: column;
  }
  .products{
    display: none;
  }
  .header{
    height: 100%;
  }
  .products-phone{
    display: block;
    font-weight: bold;
  color: #244033;
  font-size: 1.5em;
  }
  .products-phone span{
    margin: 5px;
  }

  .animal-image {
    width: 300px;
    height: 300px;
    margin: 5px;
  }

  .contact-section {
    flex-direction: row;
    justify-content: space-around;
  }

  .three-box{
    flex-direction: column;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .contact-box, .boxes {
    max-width: 200px;
  }

  .title {
    font-size: 2.2em;
    color: #244033;
    font-weight: bold;
    background-color: #244033;
    color: white;
    padding: 25px;
    border-top-right-radius: 10px; 
    border-bottom-right-radius: 10px; 
    display: inline-block;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .description{
    margin: 0px 50px;
  }
  .header img.logo {
    top:0px;
  }
  .follow-us {
    flex-direction: column;
    background: #2f4f2f;
    align-items: center;
    display: flex;
    border-radius: 20px;
    padding: 30px;
    z-index: 10;
    position: sticky;
    margin-bottom: 20px;
  }
  .boxes{
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 450px;
    width: 300px;
  }
}