.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease-out, transform 1.8s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  background: url('images/Web-4x2.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position:relative;
  /* background-attachment: fixed; */
  
}

.hero-overlay {
  text-align: center;
  width: 100%;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
}


/* Responsive adjustments */
@media (max-width: 992px) {
  .hero {
    height: 300px;
  }

  .hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 250px;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 200px;
    padding: 0 5px;
  }

  .hero h1 {
    font-size: 22px;
  }
}



/* About Section */
.about-section {
  padding-top: 90px;
padding-left: 160px;
padding-right: 100px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.content {
  display: flex;
  align-items: center;
  gap: 100px;
}

.image img {
  margin-top: 30px;
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}

.text {
  max-width: 500px;
}

.text h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.text p {
  font-size: 18px;
  line-height: 1.3;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-section {
    padding-left: 60px;
    padding-right: 60px;
  }

  .content {
    gap: 60px;
    flex-direction: column;
    align-items: flex-start;
  }

  .text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .text h2 {
    font-size: 26px;
  }

  .text p {
    font-size: 16px;
  }

  .image img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text h2 {
    font-size: 22px;
  }

  .text p {
    font-size: 15px;
  }

  .content {
    gap: 30px;
  }
}



/* Highlight Section */
.highlight {
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 80px;
  background: url('images/Web-4x.jpg') center/cover no-repeat;
  position: relative;
  background-attachment: fixed;
}

.highlight h2{
  color: rgb(255, 221, 0);
  font-size: 40px;
  text-align: left;
  margin-bottom: 30px;
}
.highlight p{
  color: white;
  font-size: 24px;
  text-align: left;
  margin-top: -30px;

}




@media (max-width: 480px) {
  .highlight {
    padding: 30px 15px;
  }

  .highlight h2 {
    font-size: 24px;
  }

  .highlight p {
    font-size: 16px;
  }
  .highlight {
    margin-top: 80px;
    margin-bottom: 40px;
    padding: 80px;
    background: url('images/Web-4x.jpg') center/cover no-repeat;
    position: relative;
    background-attachment: fixed;
  }
  
}








.travel-experience {
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
  padding: 60px 40px;
  align-items: center;
  gap: 40px;
  margin-left: 60px;
  margin-right: 60px;
}

.green-commitment {
  flex-direction: row-reverse;
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
  padding: 60px 40px;
  align-items: center;
  gap: 40px;
  margin-left: 60px;
  margin-right: 60px;
}

.travel-img-left,
.green-img-right {
  flex: 1;
  min-width: 300px;
}

.travel-img-left img,
.green-img-right img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  position: relative;
  background-attachment: fixed;
}

.travel-content-right,
.green-text-left {
  flex: 1;
  min-width: 300px;
}

.travel-content-right h2,
.green-text-left h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #7a5c3c;
}

.travel-content-right p,
.green-text-left p {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 15px;
}




@media (max-width: 768px) {
  .travel-experience,
  .green-commitment {
    flex-direction: column !important;
    padding: 30px 20px;
    margin-left: 20px;
    margin-right: 20px;
  }
  /* Force full width on mobile */
  .travel-img-left,
  .green-img-right,
  .travel-content-right,
  .green-text-left {
    min-width: 100%;
  }

  /* Ordering for Travel section */
  .travel-img-left {
    order: 0;
  }

  .travel-content-right h2 {
    order: 1;
  }

  .travel-content-right p {
    order: 2;
  }

  /* Ordering for Green section */
  .green-img-right {
    order: -1;
  }

  /* .green-text-left h2 {
    order: 1;
  }

  .green-text-left p {
    order: 3;
  } */

  /* Text styling adjustments */
  .travel-content-right h2,
  .green-text-left h2 {
    text-align: center;
    font-size: 20px;
  }

  .travel-content-right p,
  .green-text-left p {
    text-align: justify;
    font-size: 14px;
  }
}
