.orange-gradient-1 {
  background: radial-gradient(50% 50% at 50% 50%, #FDFC47 0%, #00E155 100%);
  filter: blur(55px);
}

.orange-gradient-2 {
  background: radial-gradient(50% 50% at 50% 50%, #00E155 0%, #FDFC47 100%);
  filter: blur(55px);
}


/* Custom CSS for accordion */
.accordion-item .accordion-header {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.accordion-header {
  column-gap: 20px;
}

.accordion-header h5 {
  flex: 1;
}

.accordion-header .accordion-icon {
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(-45deg);
}

.accordion-item.active .accordion-icon.is-blue {
  background-color: #321ca4;
}

.accordion-icon.is-blue {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #eaedf0;
}

.accordion-icon.is-blue img:last-child {
  position: absolute;
  opacity: 0;
}

.accordion-item.active .accordion-icon.is-blue img:last-child {
  opacity: 1;
}

.accordion-icon.is-chevron {
  position: relative;
  width: 30px;
  height: 30px;
}

.accordion-icon.is-chevron img:first-child {
  opacity: 1;
}

.accordion-icon.is-chevron img:last-child {
  opacity: 0;
}

.accordion-header .accordion-icon.is-chevron {
  transform: rotate(0deg);
}

.accordion-item.active .accordion-icon.is-chevron img:first-child {
  opacity: 0;
}

.accordion-item.active .accordion-icon.is-chevron img:last-child {
  opacity: 1;
}

.accordion-icon.is-outline-green {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-icon-plus {
  position: relative;
}

.accordion-icon-plus::before,
.accordion-icon-plus::after {
  position: absolute;
  content: "";
  background: #fff;
  transition: all 0.5s ease;
  width: 20px;
  height: 1px;
  top: 0px;
  left: -10px;
}

.accordion-icon-plus::after {
  transform: rotate(90deg);
}

.accordion-item.active .accordion-icon.is-outline-green {
  border-color: #39ff14;
  transform: rotate(0);
}

.accordion-item.active .accordion-icon.is-outline-green .accordion-icon-plus::before {
  background: #39ff14;
}

.accordion-item.active .accordion-icon.is-outline-green .accordion-icon-plus::after {
  transform: rotate(0deg);
  opacity: 0;
}

.accordion-content {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.accordion-item.active .accordion-content {
  height: auto;
  transition: all 0.5s ease;
  opacity: 1;
  transform: translateY(0px);
  margin-top: 15px;

}

.accordion-item.is-2:has(.active),
.accordion-item.is-3:has(.active) {
  border: none;
  box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.footer-text-slider {
  animation: horizontal-slide-from-right-to-left 20s linear infinite;
  display: inline-flex;
  width: max-content;
}

.footer-text-slider > * {
  flex-shrink: 0;
}

.horizontal-slide-from-right-to-left {
  animation: horizontal-slide-from-right-to-left linear 20s infinite;
}

.horizontal-slide-from-left-to-right {
  animation: horizontal-slide-from-left-to-right linear 20s infinite;
}

@keyframes horizontal-slide-from-right-to-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes horizontal-slide-from-left-to-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.sticky-menu.nav-hidden {
  animation: fadeInDown 0.9s 1;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* Custom styles for nav-link-item */
.site-menu-main .nav-link-item {
  color: #fff !important;
  transition: color 0.3s ease;
}

/* Floating Avatars Styles */
.floating-avatars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible; /* Changed from hidden to visible to allow avatars to extend beyond container */
}

.floating-avatar {
  position: absolute;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  animation: appearIn 0.6s ease-out forwards, floatAndPulse 15s ease-in-out infinite;
  cursor: pointer;
}

.floating-avatar:hover {
  opacity: 1;
  transform: scale(1.2);
}

.avatar-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0.1s, 0s;
}

.avatar-2 {
  top: 15%;
  right: 20%;
  animation-delay: 0.2s, -2s;
}

.avatar-3 {
  top: 25%;
  left: 15%;
  animation-delay: 0.3s, -4s;
}

.avatar-4 {
  top: 30%;
  right: 15%;
  animation-delay: 0.4s, -6s;
}

.avatar-5 {
  top: 20%;
  left: 30%;
  animation-delay: 0.5s, -8s;
}

.avatar-6 {
  top: 5%;
  right: 30%;
  animation-delay: 0.6s, -10s;
}

.avatar-7 {
  top: 35%;
  left: 25%;
  animation-delay: 0.7s, -12s;
}

.avatar-8 {
  top: 25%;
  right: 25%;
  animation-delay: 0.8s, -14s;
}

.avatar-9 {
  top: 8%;
  left: 40%;
  animation-delay: 0.9s, -1s;
}

.avatar-10 {
  top: 12%;
  right: 40%;
  animation-delay: 1.0s, -3s;
}

.avatar-11 {
  top: 18%;
  left: 10%;
  animation-delay: 1.1s, -5s;
}

.avatar-12 {
  top: 22%;
  right: 10%;
  animation-delay: 1.2s, -7s;
}

.avatar-13 {
  top: 28%;
  left: 35%;
  animation-delay: 1.3s, -9s;
}

.avatar-14 {
  top: 32%;
  right: 35%;
  animation-delay: 1.4s, -11s;
}

.avatar-15 {
  top: 7%;
  left: 50%;
  animation-delay: 1.5s, -13s;
}

.avatar-16 {
  top: 15%;
  right: 50%;
  animation-delay: 1.6s, -15s;
}

.avatar-17 {
  top: 38%;
  left: 18%;
  animation-delay: 1.7s, -2.5s;
}

.avatar-18 {
  top: 40%;
  right: 18%;
  animation-delay: 1.8s, -4.5s;
}

@keyframes appearIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

@keyframes floatAndPulse {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(5px, -8px) scale(1.05);
    opacity: 0.5;
  }
  50% {
    transform: translate(-3px, -15px) scale(1.1);
    opacity: 0.7;
  }
  75% {
    transform: translate(8px, -10px) scale(1.05);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
}

.site-menu-main .nav-link-item:hover {
  color: #00E155 !important;
}

/* Social media icon hover colors */
.instagram-hover:hover {
  filter: brightness(0) saturate(100%) invert(37%) sepia(61%) saturate(2211%) hue-rotate(300deg) brightness(91%) contrast(101%) !important;
}

.linkedin-hover:hover {
  filter: brightness(0) saturate(100%) invert(30%) sepia(98%) saturate(1548%) hue-rotate(177deg) brightness(96%) contrast(101%) !important;
}
