.title{
  font-family: "Gilory Font Family", Sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.1em;
    word-spacing: 5px;
    padding-top: 130px;
    position: relative;
    top: 40px;
    
  text-align: center;
}





.hiw-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding-top: 70px;
}

.hiw-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 800px;
  text-align: left;
  gap: 20px;
}

.hiw-item img {
  width: 100px;
  height: auto;
  border-radius: 10px;
}

.hiw-item p {
  flex: 1;
  font-size: 1rem;
  color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hiw-item {
      flex-direction: column;
      text-align: center;
  }
  .hiw-item img {
      width: 80px;
  }
  .title{
    font-size:30px;
}
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* When element is in view */
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* When scrolling out of view (fade out more dramatically) */
.scroll-reveal:not(.visible) {
  opacity: 0;
  transform: translateY(50px); /* Moves further down when disappearing */
  transition: opacity 2s ease-out, transform 2s ease-out; /* Slower fade-out */
}

