 .nav-item.active,
      .nav-item.active i,
      .nav-item.active span {
        color: #f16727 !important;
      }
      .services-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        padding-top: 10px;
        padding-bottom: 40px;
      }

      .service-card {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        padding: 30px;
        flex: 1 1 300px;
        max-width: 360px;
        position: relative;
        transition: transform 0.4s ease;
        color: #000;
        overflow: hidden;
        z-index: 1;
      }

      .service-card:hover {
        transform: translateY(-10px);
        color: #fff;
      }

      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 20px;
        opacity: 0;
        transition: 0.5s ease;
        z-index: 0;
      }
      .service-card.bg-web::before {
        background: linear-gradient(
            rgba(0, 200, 150, 0.6),
            rgba(0, 0, 0, 0.7)
          ),url("./uploads/img/headbanner1.jpg");  
      }

      .service-card.bg-seo::before {
        background-image: linear-gradient(
            rgba(0, 200, 150, 0.6),
            rgba(0, 0, 0, 0.7)
          ),
          url("./uploads/img/headbanner1.jpg");
      }

      .service-card.bg-digital::before {
        background-image: linear-gradient(
            rgba(0, 200, 150, 0.6),
            rgba(0, 0, 0, 0.7)
          ),
          url("./uploads/img/headbanner1.jpg");
      }

      .service-card:hover::before {
        opacity: 1;
      }

      .service-card * {
        position: relative;
        z-index: 2;
      }

      .service-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #a401d2, hsl(23, 95%, 45%));
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
      }

      .service-icon i {
        color: #fff;
        font-size: 28px;
      }

      .service-number {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 48px;
        color: #ccc;
        font-weight: 700;
        opacity: 0.2;
        z-index: 2;
      }

      .service-card h3 {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 15px;
      }

      .service-card p {
        font-size: 16px;
        color: #555;
        margin-bottom: 20px;
        transition: color 0.3s ease;
      }

      .service-card:hover p,
      .service-card:hover h3 {
        color: #fff;
      }

      .action-btn {
        display: inline-block;
        padding: 10px 22px;
        background: linear-gradient(135deg, #a401d2, hsl(23, 95%, 45%));
        color: white;
        font-weight: 600;
        text-decoration: none;
        border-radius: 25px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: background 0.3s ease;
      }

      .action-btn:hover {
         background: linear-gradient(135deg, #a401d2, hsl(23, 95%, 45%));
        }

      .arrow-icon {
        margin-top: 20px;
        width: 50px;
        height: 50px;
        background: #d300c5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .arrow-icon i {
        color: #fff;
        font-size: 20px;
      }

      @media (max-width: 768px) {
        .service-card {
          max-width: 100%;
        }
      }
      .service-heading {
        text-align: center;
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 60px;
        color: #ffffff;
        background: linear-gradient(rgba(187, 200, 0, 0.6), rgba(0, 0, 0, 0.7)),
          url("./uploads/img/headbanner1.jpg")
            no-repeat center/cover;
        padding: 10%;
      }