.white-circle-back {
    position: relative;
    overflow: visible;
}

.white-circle-back::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.white-circle-back .gb-container-67268e03 {
    position: relative;
    z-index: 2;
}

.white-circle-back .gb-container-67268e03 {
    position: relative;
    height: 100%;
    width: 100%;
}

/* Large circle variant */
.white-circle-back-large {
    position: relative;
    overflow: visible;
}

.white-circle-back-large::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: white;
    border-radius: 50%;
    top: 26%;
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* Ensure all direct child containers are above the circle */
.white-circle-back-large > .gb-container {
    position: relative;
    z-index: 2;
}

/* Remove the specific container class targeting since we're using a different structure */
.white-circle-back-large .gb-container-67268e03 {
    position: relative;
    height: 100%;
    width: 100%;
}

/* Green and Blue circles variant */
.green-blue-circles {
    position: relative;
    overflow: visible;
}

.green-blue-circles::before,
.green-blue-circles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    width: 300px;
    height: 300px;
}

/* Blue circle (bottom) */
.green-blue-circles::before {
    background: var(--global-color-8);
    opacity: 0.8;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Green circle (top) */
.green-blue-circles::after {
    background: var(--accent);
    opacity: 0.8;
    top: 40%;
    left: 5%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Ensure all content is above the circles */
.green-blue-circles > * {
    position: relative;
    z-index: 2;
}

/* Ensure the parent alignfull container doesn't clip the circle */
.alignfull .green-blue-circles,
.alignfull .white-circle-back,
.alignfull .white-circle-back-large {
    overflow: visible;
}

/* Large green circle variant */
.large-green-circle {
    position: relative;
    overflow: visible;
}

.large-green-circle::before {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 50%;
    width: 800px; /* Large initial size */
    height: 800px;
    top: 50%;
    left: 0; /* Changed from -400px to 0 */
    transform: translate(-50%, -50%) scale(var(--circle-scale, 0.5));
    transform-origin: left center; /* Changed from right to left */
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    transition: transform 0.1s ease-out;
}

.large-green-circle > * {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for large green circle to prevent overlap */
@media (max-width: 1024px) {
    .large-green-circle::before {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 768px) {
    .large-green-circle::before {
        width: 400px;
        height: 400px;
        left: 10%; /* Move slightly inward on mobile */
    }
}

@media (max-width: 480px) {
    .large-green-circle::before {
        width: 350px;
        height: 350px;
        left: 20%; /* Move further inward on small mobile */
    }
}

/* Green circle bottom variant */
.green-circle-bottom {
    position: relative;
    overflow: visible;
    min-height: 300px; /* Ensure there's space for the circle */
}

.green-circle-bottom::before {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: 5%;
    transform: scale(var(--circle-scale, 0.5));
    transform-origin: bottom right;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    transition: transform 0.1s ease-out;
}

.green-circle-bottom > * {
    position: relative;
    z-index: 1;
}

/* Ensure the parent container doesn't clip the circle */
#Row-2 .green-circle-bottom {
    overflow: visible;
}

/* Text background animation */
.text-background-animation {
    position: relative;
    overflow: visible;
    padding: 2rem 0;
}

.text-background-animation::before,
.text-background-animation::after {
    content: '';
    position: absolute;
    z-index: 0;
    transition: transform 0.1s ease-out;
    pointer-events: none;
}

.text-background-animation::before {
    background: var(--accent);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) scale(var(--circle-scale, 0.5));
    transform-origin: left center;
}

.text-background-animation::after {
    background: var(--global-color-8);
    width: 200px;
    height: 400px;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%) scale(var(--rectangle-scale, 0.5));
    transform-origin: right center;
}

.text-background-animation h2 {
    position: relative;
    z-index: 1;
    mix-blend-mode: difference;
    color: white;
    margin: 0;
    padding: 0;
}

/* Ensure the container doesn't clip the shapes */
#Row-3 .text-background-animation {
    overflow: visible;
}

/* Removed .circle-text-mask, .circle, .rectangle styles as SVG masking is now used */

.svg-text-mask {
    width: 100%;
    height: auto;
    display: block;
    font-family: 'Poppins', sans-serif;
}

/* Team Slider Styles */
.team-slider-outer {
  position: relative;
  margin-left: auto;
  margin-right: 0;
  max-width: 100vw;
  overflow: visible;
  padding-top: 2rem;
}
.team-slider-nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}
.team-slider-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 2.5rem 0 1rem 0;
  margin-right: calc(-50vw + 50%);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  cursor: grab;
}
.team-slider-track:active {
  cursor: grabbing;
}
.team-slider-track::-webkit-scrollbar {
  display: none;
}
.team-slider-arrow {
  background: #8be900;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  padding: 0;
}
.team-slider-arrow svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  display: block;
}
.team-slider-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.team-slider-arrow:hover:not(:disabled),
.team-slider-arrow:focus:not(:disabled) {
  background: #6fd600;
  box-shadow: 0 4px 16px rgba(139,233,0,0.15);
}
.team-slide {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-width: 320px;
  max-width: 320px;
  overflow: visible;
}
.team-slide-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.team-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
  display: block;
}
.team-linkedin {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: box-shadow 0.2s;
}
.team-linkedin:hover {
  box-shadow: 0 4px 16px rgba(0,119,181,0.15);
}
.team-linkedin-icon svg {
  display: block;
}
.team-slide-info {
  padding: 1.25rem 1.25rem 1.5rem 1.25rem;
  width: 100%;
}
.team-slide-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.team-slide-job {
  color: #6b6b6b;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .team-slide, .team-slide-image-wrap {
    min-width: 240px;
    max-width: 240px;
  }
  .team-slider-track {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .team-slide, .team-slide-image-wrap {
    min-width: 180px;
    max-width: 180px;
  }
  .team-slider-track {
    gap: 0.5rem;
  }
  .team-slide-info {
    padding: 0.75rem 0.75rem 1rem 0.75rem;
  }
}

/* Green circle variant */
.green-circle-back {
    position: relative;
    overflow: visible;
}

.green-circle-back::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--accent);
    border-radius: 50%;
    top: 10%;
    left: 80%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.green-circle-back > * {
    position: relative;
    z-index: 2;
}

/* Ensure the parent alignfull container doesn't clip the circle */
.alignfull .green-circle-back {
    overflow: visible;
}

/* Large green circle right variant */
.large-green-circle-right {
    position: relative;
    overflow: visible;
}

.large-green-circle-right::before {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 50%;
    width: 600px; /* Large initial size */
    height: 600px;
    top: 40%;
    right: 10%; /* Position from right instead of left */
    transform: translate(50%, -50%) scale(var(--circle-scale, 0.5)); /* Changed translate X to positive to move from right */
    transform-origin: right center; /* Changed origin to right */
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    transition: transform 0.1s ease-out;
}

.large-green-circle-right > * {
    position: relative;
    z-index: 1;
}

/* Ensure the parent alignfull container doesn't clip the circle */
.alignfull .large-green-circle-right {
    overflow: visible;
}

/* Responsive adjustments for large green circle right to prevent overlap */
@media (max-width: 1024px) {
    .large-green-circle-right::before {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .large-green-circle-right::before {
        width: 300px;
        height: 300px;
        right: 20%; /* Move slightly inward on mobile */
    }
}

@media (max-width: 480px) {
    .large-green-circle-right::before {
        width: 300px;
        height: 300px;
        right: 30%; /* Move further inward on small mobile */
    }
}

/* Small green circle right variant */
.small-green-circle-right {
    position: relative;
    overflow: visible;
}

.small-green-circle-right::before {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 50%;
    width: 300px; /* Smaller size */
    height: 300px;
    top: 80%;
    right: 30%;
    transform: translate(50%, -50%) scale(var(--circle-scale, 0.5));
    transform-origin: right center;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    transition: transform 0.1s ease-out;
}

.small-green-circle-right > * {
    position: relative;
    z-index: 1;
}

/* Ensure the parent alignfull container doesn't clip the circle */
.alignfull .small-green-circle-right {
    overflow: visible;
}

/* Green circle bottom hero variant */
.green-circle-bottom-hero {
    position: relative;
    overflow: visible;
    min-height: 300px; /* Ensure there's space for the circle */
}

.green-circle-bottom-hero::before {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 50%;
    width: 500px;
    height: 500px;
    top: -305px;
    right: 5%;
    transform: scale(var(--circle-scale, 0.5));
    transform-origin: bottom right;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    transition: transform 0.1s ease-out;
}

.green-circle-bottom-hero > * {
    position: relative;
    z-index: 1;
}

/* Ensure the parent container doesn't clip the circle */
.alignfull .green-circle-bottom-hero {
    overflow: visible;
}

/* Blue Rectangle Animation */
.side-blue-rectangle {
  position: relative;
  overflow: visible;
}

.side-blue-rectangle::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 500px;
  background: var(--global-color-12, #00A7E1);
  left: -100px;
  top: 90%;
  transform: translateY(var(--rectangle-translate-y, -50%));
  z-index: -1;
  pointer-events: none;
  transition: transform 0.3s ease-out;
}

@media (max-width: 769px) {
  .side-blue-rectangle::before {
    width: 100px;
    height: 200px;
  }
}

/* Ensure parent containers don't clip the rectangle */
.alignfull .side-blue-rectangle,
.wp-block-group .side-blue-rectangle {
  overflow: visible;
}