/*industries-part.min.css*/
.social-block .inner-box {
      position: relative;
      padding: 20px;
    }

    .social-block .inner-box .icon-box {
      position: relative;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin-bottom: 10px;
      display: inline-block;
      -webkit-transition: all 300ms ease;
      transition: all 300ms ease;
      background-color: #000;
    }

    .social-block .inner-box .icon-box .icon {
      font-size: 32px;
      line-height: 100px;
      color: #fff;
      -webkit-transition: all 300ms ease;
      transition: all 300ms ease;
    }

    .social-block .inner-box .title {
      margin-bottom: 0;
      font-size: 18px;
    }

    .social-block .inner-box .title br {
      display: none;
    }

    .process-section.style-two {
      padding-top: 280px;
      padding-bottom: 0;
      padding: 80px 0;
    }

    .process-block .inner-box .content-box {
      padding: 20px;
    }

    .process-block .inner-box .content-box .text {

      font-size: 14px;
      height: 150px;

    }
/* Upgraded card with glassmorphism */
.upgraded-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Subtle glow on hover */
.upgraded-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6366f1, #a855f7, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.upgraded-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d9f45f, #d9f45f, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.upgraded-card:hover::before {
  opacity: 1;
}

.upgraded-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgb(217 244 95 / 43%);
    box-shadow: 0 20px 60px rgb(217 244 95 / 23%);
}

/* Gradient icon background */
.upgraded-card .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #000;
  position: relative;
   background: linear-gradient(135deg, #D9F45F, #D9F45F);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.upgraded-card .icon-box.grad-blue {
  background: linear-gradient(135deg, #D9F45F, #D9F45F);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}


.upgraded-card .card-label {
  color: #e0e0e0;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.upgraded-card .card-desc {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}