/* page */
/* Overlay for breadcrumb */
.breadcrumb.section-bg-two.position-relative::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}

/* Ensure container content is above overlay */
.breadcrumb.section-bg-two > .container {
  position: relative;
  z-index: 1;
}

/* Heading animation */
.splitTextStyleOne {
  position: relative;
  display: inline-block;
  overflow: hidden;
  animation: slideInFromBottom 0.8s ease forwards;
  opacity: 0;
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Features cards */
.features-four-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  cursor: pointer;
  border-radius: 40px;
  padding: 1rem 3.375rem 11.25rem 3.375rem; /* Approx px from tw-px-54-px tw-pb-180-px */
  position: relative;
  background: #fff;
  height: 100%;
}

.features-four-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  z-index: 5;
}

/* Button link style */
a.text-crm {
  transition: color 0.3s ease;
}
a.text-crm:hover {
  color: #007bff;
  text-decoration: none;
}

/* Job image styling */
.features-four-item img {
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
  max-width: 40%;
  position: absolute;
  bottom: 0;
  border-radius: 1.25rem;
}

.features-four-item:hover img {
  transform: scale(1.05);
}

/* Position adjustments for images */
.tw-start-45 {
  left: 45%;
}
.tw-end-0 {
  right: 0;
}
.tw-me-5 {
  margin-right: 1.25rem;
}
.tw-me-8 {
  margin-right: 2rem;
}
.tw-me-10 {
  margin-right: 2.5rem;
}

/* Benefits section styling */
.benefits-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
  padding: 5rem 0;
  margin: 4rem 0;
}

.benefits-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.benefits-image:hover {
  transform: translateY(-5px);
}

/* Responsive fixes */
@media (max-width: 991px) {
  .features-four-item {
    padding-bottom: 7.5rem !important; /* 120px */
    height: auto !important;
  }
  .features-four-item img {
    max-width: 80% !important;
    position: static !important;
    margin: 2rem auto 0 auto;
    display: block;
  }
  .benefits-section {
    padding: 3rem 0;
    margin: 2rem 0;
  }
}



/* form */
  /* Animations */
  .animate-fade-in {
    animation: fadeIn 0.7s ease forwards;
    opacity: 0;
  }

  .animate-slide-in {
    animation: slideInFromBottom 0.7s ease forwards;
    opacity: 0;
  }

  .animate-slide-up {
    opacity: 0;
    animation: slideUpFadeIn 0.5s ease forwards;
  }

  .animate-slide-up:nth-child(1) { animation-delay: 0.1s; }
  .animate-slide-up:nth-child(2) { animation-delay: 0.2s; }
  .animate-slide-up:nth-child(3) { animation-delay: 0.3s; }
  .animate-slide-up:nth-child(4) { animation-delay: 0.4s; }
  .animate-slide-up:nth-child(5) { animation-delay: 0.5s; }
  .animate-slide-up:nth-child(6) { animation-delay: 0.6s; }

  /* Button hover */
  .btn-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
  }

  /* Keyframes */
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  @keyframes slideInFromBottom {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes slideUpFadeIn {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
