.scrolling {
  animation: fadeInDown 0.9s 1;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 5px 2px rgb(0 0 0 / 10%);
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.scrolling.is-bg-transparent-text-white {
  background: rgba(1, 25, 255, 0.95);
}

.scrolling.is-bg-transparent-text-dark {
  background: rgba(255, 255, 255, 0.95);
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

.swiper-wrapper {
  transition-timing-function: linear;
}

/* Forces all swiper slides and cards to stretch equally */
.service-slider-one .swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}

.service-slider-one .swiper-slide {
  height: auto !important;
  display: flex !important;
}

.service-slider-one .swiper-slide>a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Swiper Slide Equal Height Fix */
.portfolio-slider-one .swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}

.portfolio-slider-one .swiper-slide {
  height: auto !important;
  display: flex !important;
}

.portfolio-slider-one .swiper-slide>div {
  width: 100%;
  height: 100%;
}

/* Lock all image wrappers to identical dimensions */
.section-team .pillar-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  /* Force uniform fixed height */
  overflow: hidden;
}

.section-team .pillar-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Crops rather than squishing/stretching */
  object-position: center;
}

/* Ensure equal text box positioning */
.section-team .pillar-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.section-team .pillar-title {
  min-height: 3.5rem;
  /* Reserves space so 1-line and 2-line titles align perfectly */
  display: flex;
  align-items: center;
}

.reveal-text {
  display: inline-block;
  position: relative;
  transform: translateY(100%);
  translate-origin: top left;
  animation: text-reveal 2s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

/* Other CSS */
.hero-slider .swiper-slide {
  overflow: hidden;
}

.hero-slider .swiper-slide .hero-bg-img {
  transform: scale(1.25);
  transition: all 1.5s ease;
}

.hero-slider .swiper-slide-active .hero-bg-img {
  transform: scale(1);
}

.hero-slider .swiper-slide h4,
.hero-slider .swiper-slide h1,
.hero-slider .swiper-slide p,
.hero-slider .swiper-slide a {
  transform: translateY(25%);
  opacity: 0;
  transition: all 0.65s ease;
  transition-delay: 1.25s;
}

.hero-slider .swiper-slide h4,
.hero-slider .swiper-slide-active h1,
.hero-slider .swiper-slide-active p,
.hero-slider .swiper-slide-active a {
  transform: translateY(0%);
  opacity: 1;
}

/* Style for the loader */
.fullpage_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0d0e1d;
  /* Light background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Ensure the loader is on top of everything */
}

/* Loader spinner */
.spinner {
  border: 4px solid #fff;
  /* Light gray */
  border-top: 4px solid #0119ff;
  /* Blue color for the spinner */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1s linear infinite;
}

/* Animation for the spinner */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* The ripple effect */
.ripple-button .ripple {
  animation: ripple-animation 2s infinite;
}

/* Ripple animation */
@keyframes ripple-animation {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}