.icon-grid-top-content {
  text-align: center;
  padding-bottom: 60px;
}

.ig-top-heading h2 {
  margin-bottom: 20px;
}

.ig-top-desc p:last-of-type {
  margin: 0;,
}

.ig-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
}

.ig-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.ig-item-icon {
  width: 97px;
  height: 97px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin-bottom: 30px;
  animation: floatSoft 3.5s ease-in-out infinite;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
  will-change: transform;
}

.ig-item-icon img {
  width: 45px;
  height: 45px;
}

/* .ig-item:nth-child(2) .ig-item-icon {
  animation-delay: 0.6s;
}

.ig-item:nth-child(3) .ig-item-icon {
  animation-delay: 1.2s;
}

.ig-item-icon:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.05);
  opacity: 0.95;
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.1);
  }
} */

.ig-bottom-content {
  padding-top: 65px;
  text-align: center;
}

.ig-item-title h3 {
  margin-bottom: 20px;
}

.ig-bottom-desc h5{
  letter-spacing: -1.5px;
  color: var(--color-main);
}

.icon-grid-btns {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bg-blue .ig-top-heading *, 
.bg-blue .ig-bottom-desc *,
.bg-blue .ig-bottom-desc h5,
.bg-blue .ig-item-title h3{
  color: var(--color-white);
}

.bg-midnight-blue .ig-top-heading *, 
.bg-midnight-blue .ig-bottom-desc *,
.bg-midnight-blue .ig-bottom-desc h5,
.bg-midnight-blue .ig-item-title h3{
  color: var(--color-white);
}


@media (max-width: 991px){
  .ig-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .ig-item {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 767px){
  .ig-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 30px;
  }

  .icon-grid-top-content {
    padding-bottom: 30px;
  }

  .ig-bottom-content {
    padding-top: 50px;
  }

  .ig-item {
    padding-left: 0;
    padding-right: 0;
  }

  .ig-item-icon {
    width: 80px;
    height: 80px;
  }

  .ig-item-icon img {
    width: 35px;
    height: 35px;
  }
}