.elementor-kit-6{--e-global-color-primary:#008C7E;--e-global-color-secondary:#0D0D0D;--e-global-color-text:#DAD3C9;--e-global-color-accent:#F9F9F9;--e-global-typography-primary-font-family:"Inter";--e-global-typography-primary-font-size:120px;--e-global-typography-primary-font-weight:500;--e-global-typography-primary-line-height:109px;--e-global-typography-secondary-font-family:"Inter";--e-global-typography-secondary-font-size:48px;--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-line-height:48px;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-size:24px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-size:36px;--e-global-typography-accent-font-weight:400;background-color:#F9F9F9;}.elementor-kit-6 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 */.team-card {
  position: relative;
  overflow: hidden;
  height: 100vh; /* adjust based on your design */
  cursor: pointer;
}

/* Image fills the entire card at first */
.team-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  transition: transform 0.5s ease;
}

/* On hover the image moves up by half of its height */
.team-card:hover .team-image {
  transform: translateY(-50%);
}

/* Content stays hidden below the image initially */
.team-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: #fff;
  height: 60%; /* matches the amount revealed */
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

/* On hover the content slides up into place */
.team-card:hover .team-content {
  transform: translateY(0);
}/* End custom CSS */