.d-flex.align-items-center.main-sec {
    background: #fff;
    box-shadow: 0 0 5px #A0A0A0;
    padding: 22px 20px;
    min-height: 240px;
    margin-bottom: 25px;
}


.box-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }

    .seo-box {
      background: #fff;
      padding: 40px 20px 25px;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
      transform: translateY(30px);
      opacity: 0;
      animation: slideFadeIn 0.8s forwards;
      animation-delay: var(--delay);
    }

    .seo-box:hover {
      background: #7f14f6;
    }

    .seo-box:hover h3,
    .seo-box:hover p {
      color: #ffffff;
    }

  .icon-badge {
    position: absolute;
    top: 12px;
    left: 20px;
    background: #7f14f6;
    color: #fff;
    border-radius: 50%;
    padding: 16px;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: transform 0.3s, background 0.3s, color 0.3s;
    width: 50px;
    height
Specifies the height of the content area, padding area or border area (depending on 'box-sizing') of certain boxes.
Learn more

Don't show
: 50px;
}

    .seo-box:hover .icon-badge {
      transform: scale(1.1) rotate(8deg);
      background: #fff;
      color: #8e24aa;
    }

    .seo-box h3 {
      margin-top: 40px;
      font-size: 18px;
      margin-bottom: 12px;
      color: #222;
      transition: color 0.3s;
    }

    .seo-box p {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
      transition: color 0.3s;
    }

    @keyframes slideFadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .seo-box:nth-child(1) { --delay: 0s; }
    .seo-box:nth-child(2) { --delay: 0.1s; }
    .seo-box:nth-child(3) { --delay: 0.2s; }
    .seo-box:nth-child(4) { --delay: 0.3s; }
    .seo-box:nth-child(5) { --delay: 0.4s; }
    .seo-box:nth-child(6) { --delay: 0.5s; }

    @media (max-width: 768px) {
      .icon-badge {
        top: -18px;
        padding: 12px;
        font-size: 18px;
      }
    }



 .grid-container {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      max-width: 1200px;
      margin: auto;
    }

    .service-box {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      flex: 1 1 calc(33.333% - 25px);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
      min-height: 300px;
    }

    .service-box:hover {
      transform: translateY(-6px);
    }

    .icon-strip {
      background: #7f14f6;
      color: #fff;
      padding: 20px;
      font-size: 30px;
      text-align: center;
    }

    .service-content {
      padding: 20px 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .service-content h4 {
      margin: 0 0 10px;
      font-size: 18px;
      color: #222;
    }

    .service-content p {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
    }

    @media (max-width: 1024px) {
      .service-box {
        flex: 1 1 calc(50% - 25px);
      }
    }

    @media (max-width: 600px) {
      .service-box {
        flex: 1 1 100%;
      }
    }





.services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .service-card {
      background: #fff;
      padding: 30px 20px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
      text-align: center;
      position: relative;
      transition: all 0.35s ease;
      cursor: default;
    }

    .service-card i {
      font-size: 28px;
      color: #fff;
      background: #7f14f6;
      padding: 18px;
      border-radius: 50%;
      margin-bottom: 18px;
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      background: #7f14f6;
      color: #fff;
      transform: translateY(-8px);
    }

    .service-card:hover i {
      background: #fff;
      color: #7f14f6;
      transform: rotate(10deg) scale(1.1);
    }

    .service-card h4 {
      font-size: 17px;
      margin-bottom: 10px;
      color: #222;
      transition: color 0.3s;
    }

    .service-card p {
      font-size: 14px;
      color: #555;
      line-height: 1.5;
      transition: color 0.3s;
    }

    .service-card:hover h4,
    .service-card:hover p {
      color: #fff;
    }