.elementor-kit-13{--e-global-color-primary:#006AB7;--e-global-color-secondary:#0086A4;--e-global-color-text:#3A3A3A;--e-global-color-accent:#006AB7;--e-global-color-2e74f21:#0086A426;--e-global-color-41b4bc5:#E1ECE3;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-13 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Initial state before entering viewport */
#water-section {
  background-color: white; /* start white */
  background-image: none; /* hide GIF initially */
  transition: background-color 2s ease, background-image 2s ease;
}

#water-section #blue-section .water-text {
  color: #006AB7; /* start blue */
  transition: color 2s ease;
}

/* When in viewport */
#water-section.in-view {
  background-color: transparent;
  background-image: url('https://two.test-unit.website/wp-content/uploads/2025/10/Water-Bubble.gif'); /* replace with your GIF link */
}

#water-section.in-view #blue-section .water-text {
  color: #ffffff; 
}




/* Initial background state */
#blue-section {
  background-color: transparent;
}

/* When in view, trigger the background color animation */
#blue-section.in-view {
    background-color:#07b8f1;
  animation: backBlue 5s ease-in-out forwards;
}

/* Define the animation keyframes */
@keyframes backBlue {
  0% {
    background-color: transparent;
  }
  100% {
    background-color:#07b8f1;
}
}/* End custom CSS */