 .cey-section {
    height: 800px;
    background-color: #1E6E47;
    background-image: url(https://toursite.link/pinnacle/wp-content/uploads/2025/04/budda.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: auto;
    position: relative;
    width: 100%;
    overflow:hidden;
}

  .about-img {
    transform: scale(0.7);
    transition: transform 0.5s ease;
    width: 100%;
    transform-origin: bottom left;
    margin-top: 70px;
  }

  .cey-section:hover .about-img {
    transform: scale(1.0);
  }

 .about-text {
  position: absolute;
  top: 100px;
  right: 150px; /* Changed from left: 50px to right: 50px */
  max-width: 600px;
  background: white;
  padding: 30px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1;
  
}


  .cey-section:hover .about-text {
    opacity: 1;
    transform: translateY(30px);
  }

  .about-text h2 span {
    color: #F7941D;
    font-size: 40px;
    font-weight: 700;
     font-family: 'Philosopher', sans-serif;
  }

  .about-text h3 {
    font-size: 40px;
     color: #1E6E47;
  font-weight: 275;
  font-family: 'Poppins', sans-serif;
    margin: 10px 0;
  }

  .about-text p {
    color: #1E1E1E;
    line-height: 1.6;
    font-size: 20px;
		font-weight: normal;
  }

  .about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #F7941D;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }
  .about-btn:hover {
  background-color: #1e6e47; 
  color: #fff; 
  transition: background-color 0.7s ease, color 0.3s ease;
}



