.scrolling {
  animation: fadeInDown 0.9s 1;
  -webkit-backdrop-filter: blur(10px);
  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;
}

.reveal-text {
  display: inline-block;
  position: relative;
  transform: translateY(100%);
  transform-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;
  }
}

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  33% {
    transform: translate(100px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-50px, 100px) scale(0.9);
  }

  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

.animate-blob {
  animation: blob 10s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

/* ===== Hamburger Menu Styles ===== */
.hamburger-line {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #1f2937;
  transition: all 0.3s ease;
  border-radius: 2px;
}

#hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

#hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

#hamburger-btn.active .hamburger-line:nth-child(3) {
  margin-top: 5px;
  transform: translateY(-10px) rotate(-45deg);
}

/* ===== Mobile Menu Styles ===== */
#mobile-menu {
  animation: slideDown 0.3s ease forwards;
  max-width: 100vw;
  overflow-x: hidden;
}

#mobile-menu.hidden {
  animation: slideUp 0.3s ease forwards;
  pointer-events: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.mobile-link {
  padding: 12px 0;
  display: block;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 16px;
}

.mobile-link:hover {
  color: #4f46e5;
}

/* ===== Smooth Scroll Behavior ===== */
html {
  scroll-behavior: smooth;
}

/* ===== Service Cards Hover Effects ===== */
.jos a {
  position: relative;
  overflow: hidden;
}

.jos a img {
  transition: transform 0.3s ease;
}

.jos a:hover img {
  transform: scale(1.1);
}

.jos a:hover {
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* ===== Form Styles ===== */
#contact-form input,
#contact-form textarea {
  background-color: #fff;
  border: 2px solid #e5e7eb;
}

#contact-form input:focus,
#contact-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  border-color: #4f46e5;
}

#contact-form label {
  color: #1f2937;
}

#contact-form button:hover {
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

/* ===== Form Message Feedback ===== */
#form-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
}

#form-message.success {
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

#form-message.error {
  background-color: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

/* ===== Smooth Transitions ===== */
* {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===== Custom Shadow ===== */
.shadow-customOne {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ===== Footer Styles ===== */
footer a {
  position: relative;
}

footer a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #24274a;
  transition: width 0.3s ease;
}

footer a:hover::after {
  width: 100%;
}

/* ===== CEO Message Section Styles ===== */
#about {
  position: relative;
}

#about .jos {
  animation-duration: 0.8s;
}

#about img {
  transition: transform 0.5s ease;
  transform-origin: center;
}

#about:hover img {
  transform: scale(1.05);
}

#about .display-heading {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.2;
  color: #0f172a;
}

#about blockquote {
  border-left: 4px solid #4f46e5;
  padding-left: 20px;
}

/* ===== Container Styles ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== Text Reveal Animation ===== */
@keyframes text-reveal {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Hero Title Fade-in Animation ===== */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 1.2s ease-out forwards;
}

.hero-title {
  line-height: 1.1;
}

.hero-subtitle {
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.6;
}