body {
      font-family: 'Times New Roman', serif;
      color: #333;
      background-color: #f8fafd;
    }

    .hero-section {
      background: linear-gradient(to top right, rgba(0,0,50,0.7), rgba(0,10,70,0.9)), url('assets/img/hr-hero.jpg') center/cover no-repeat;
      color: white;
      min-height: 60vh;
      display: flex;
      align-items: center;
      text-align: center;
    }
.custom-shape-divider-bottom-1718893656 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.custom-shape-divider-bottom-1718893656 svg {
  position: relative;
  display: block;
  width: calc(135% + 1.3px);
  height: 120px;
}


    .service-icon {
      width: 60px;
      height: 60px;
      background: #eef1f7;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      margin: 0 auto 15px;
    }

    .highlight-card:hover .service-icon {
      background: #dbe5f5;
    }

    .cta-hr {
      background: linear-gradient(135deg, #0a1f44, #1a2b5e);
      color: white;
    }
 .icon-circle-sm {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .transition-float {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .transition-float:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  }
  
 .fire-btn {
  position: relative;
  background: linear-gradient(45deg, #ff5722, #ffc107);
  color: white;
  border: none;
  font-weight: bold;
  transition: transform 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.fire-btn::before,
.fire-btn::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle, #ff9800 0%, transparent 70%);
  opacity: 0.5;
  animation: flames 1.5s infinite alternate ease-in-out;
}

.fire-btn::after {
  animation-delay: 0.75s;
}

@keyframes flames {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10px) scale(1.05);
    opacity: 1;
  }
}

.fire-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ff6d00;
}