.elementor-43 .elementor-element.elementor-element-278b874{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-43 .elementor-element.elementor-element-278b874:not(.elementor-motion-effects-element-type-background), .elementor-43 .elementor-element.elementor-element-278b874 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-43 .elementor-element.elementor-element-0d81099{padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-0d81099 *//* 1. Set up the founder image wrapper as the anchor boundary */
.founders-image-container {
  position: relative !important;
  display: inline-block !important;
  z-index: 1;
}

/* 2. Ensure the actual founder image stays crisp and clips beautifully */
.founders-image-container img {
  border-radius: 50% !important; /* Forces a perfect circle profile image */
  position: relative !important;
  z-index: 2;
  display: block;
}

/* 3. Inject the continuous rainbow glowing aura behind the founder portrait */
.founders-image-container::before {
  content: "";
  position: absolute;
  /* Expands slightly past the image edges to create a frame effect */
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  
  /* Vibrant color wheel spectrum */
  background: conic-gradient(from 0deg, #ff0000, #ff7700, #ffdd00, #00ff00, #00ffff, #0000ff, #8a00ff, #ff00ff, #ff0000);
  
  /* Softens the edges into an ambient, elegant neon glow */
  filter: blur(12px);
  opacity: 0.85;
  z-index: -1;
  pointer-events: none;
  
  /* Drives the color cycle and subtle breathing pulse animation */
  animation: founderRainbowShift 5s linear infinite;
}

/* 4. The timeline handling color rotation and scale breathing */
@keyframes founderRainbowShift {
  0% {
    transform: rotate(0deg) scale(1);
    filter: blur(12px) hue-rotate(0deg);
  }
  50% {
    transform: rotate(180deg) scale(1.04); /* Soft breathing movement */
    filter: blur(15px) hue-rotate(180deg);
  }
  100% {
    transform: rotate(360deg) scale(1);
    filter: blur(12px) hue-rotate(360deg);
  }
}/* End custom CSS */