.swiper-slide:not(:last-child) .history-item::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -34px;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border-radius: 9999px;
    background-color: white;
    border: 7px solid #e6ebeb;
    color: #dd8b1d;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card::before{
    position: absolute;
    width: 65px;
    height: 65px;
    content: "";
    background:   linear-gradient(357deg, #dd8b1d 50%, #e4a24a 100%);
    bottom: 0;
    right: 0;
    border-radius: 60% 0 60% 0;
}
.project-card-anchor::before{
    content: "";
    display: block;
    width: 80%;
    height: 80%;
    position: absolute;
    border-radius: 50px;
    top: -45px;
    right: -16px;
    box-shadow: inset -10px 15px 0 0 linear-gradient(357deg, #dd8b1d 50%, #021633a6 100%);
    transform: rotate(90deg);
}
.project-card-anchor i{
    transform: rotate(-35deg);
    display: inline-block;
}
.project-card-anchor::after{
   content: "";
    display: block;
    width: 80%;
    height: 80%;
    position: absolute;
    border-radius: 20px;
    bottom: -9px;
    left: -38px;
    box-shadow: inset -10px 15px 0 0 linear-gradient(357deg, #dd8b1d 50%, #021633a6 100%);
    transform: rotate(90deg);
}


/* keyframes (include -webkit- prefix for older safari) */
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    to   { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
  }
  @keyframes spin {
    from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    to   { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
  }

.service-card-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    background: #dd8b1d;
    position: relative;
    margin: 12px;
    transition: 0.4s;
}
.service-card-icon img {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin: 8px 9px;

}
.service-card-icon:after {
    content: '';
    position: absolute;
    border: 1px dashed #dd8b1d;
    inset: -12px;
    border-radius: 50%;
    -webkit-animation: spin 10s linear infinite;
    animation: spin 10s linear infinite;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}


.main-slider-two__item {
  position: relative;
  z-index: 3;


  background-position: center;
  background-size: cover;

  /* Mask */
  -webkit-mask: url('../images/banner/bg.svg');
  mask: url('../images/banner/bg.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: right bottom;
  mask-position: right bottom;
  -webkit-mask-size: cover;
  mask-size: cover;
  overflow: hidden;
}

.main-slider-two__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(16 22 39 / 78%);
  z-index: 1;
}
.text-shadow-soft {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
}
@keyframes gavelHeadTap {
  0%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px); /* higher lift */
  }
  50% {
    transform: translateY(5px); /* firm tap down */
  }
  60% {
    transform: translateY(0);
  }
}

.animate-gavel-tap {
  animation: gavelHeadTap 2s ease-in-out infinite;
}
@keyframes balance-swing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(4deg);
  }
  50% {
    transform: rotate(-4deg);
  }
  75% {
    transform: rotate(3deg);
  }
}

.animate-balance {
  animation: balance-swing 5s ease-in-out infinite;
  transform-origin: top center;
}
.services-section {
    background-image: linear-gradient(180deg, #dd8a1d40 50%, #dd8b1d 100%);
}
.services-section::before{
    background-image: url('../images/bg.webp');
    background-size: cover;
    background-position: center center;
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.1;
}

.industry-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  border: 1px solid rgba(221, 139, 29, 0.3);
  box-shadow: 0 0 25px rgba(221, 139, 29, 0.15);
}
.stats-bg {
    background-image: linear-gradient(180deg, #883492de 50%, #f79822 100%);
}
.calltoaction-section::before{
    background:#fefaf6;
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    height: 10rem;
}
@keyframes whatsappSmoothPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(72, 195, 86, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px 5px rgba(72, 195, 86, 0.3);
  }
}

#whatsapp a {
  animation: whatsappSmoothPulse 2s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden; /* prevent flicker */
  transform-origin: center; /* keeps scaling centered */
}


@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
