.section-dividerx {
  position: relative;
  margin-top: 100px;
  width: 100%;
  border-radius: 15px;
  height: 50px; /* Adjust the height according to your design */
  background: linear-gradient(90deg, #a895e6, #dc8e8e, #c2e8e8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.divider-textx {
  position: relative;
  z-index: 2;
  color: #000000;
  font-size: 3em; /* Increased font size */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.glass-effectx {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(244, 223, 223, 0.1);
  z-index: 1;
}

.divider-light {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(5px);
}

.light1x {
  background: linear-gradient(90deg, #dddbe6, #f39c9c, #a4dfdf8f);
  animation: moveLeftRight1 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 0.5s;
  opacity: 0.3;
}

.light2x {
  background: linear-gradient(90deg, #dddbe6, #f39c9c, #a4dfdf8f);
  animation: moveLeftRight2 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 0.5s;
  opacity: 0.3;
}

.light3x {
  background: linear-gradient(90deg, #dddbe6, #f39c9c, #a4dfdf8f);
  animation: moveLeftRight3 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 0.5s;
  opacity: 0.3;
}

@keyframes moveLeftRight1 {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes moveLeftRight2 {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes moveLeftRight3 {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}


 