/* Initial state for the entrance effect */
.sec-title,
.sub-title {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Active state when the element is in view */
.sec-title.in-view,
.sub-title.in-view {
  opacity: 1;
  transform: scale(1);
}
