
    .bonbloc-services-section {
        background-color: #E8FFFF
;
        padding: 60px 20px;
        font-family: 'Nunito', sans-serif !important;
    }
    .bonbloc-services-section, 
.bonbloc-services-section * {
    font-family: 'Nunito', sans-serif !important;
}


    .bonbloc-services-section h2 {
        text-align: center;
        
        margin-bottom: 50px;
        color: #111;
        font-size: 35px !important;
    font-weight: bold;
         font-family: 'Nunito', sans-serif !important;
    }

   .bonbloc-services-container {
    
    display: flex;
    align-items: flex-start;
    /*gap: 20px;*/
    max-width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    flex-wrap: nowrap; /* Prevent wrapping */
}

.category-tabs-container {
    flex: 0 0 250px;
   
    position: sticky;
    top: 20px;
}

.category-tabs-container h3 {
     font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}
    .category-tabs {
        display: flex;
        flex-direction: column;
       top:-50px;
        gap: 10px;
    }

    .tab-btn {
       
        padding: 30px;
        background-color: white;
        color: #007b9e;
        border: 1px solid #007b9e;
        border-radius: 10px;
        font-weight: 600;
        text-align: left;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .tab-btn.active {
        background-color: #007b9e !important;
        color: white !important;
        border: none !important;
    }

    .services-group {
        grid-column: span 3;
        width: 100%;
        display: contents;
        font-weight: 600;
        flex: 1;
   
    /*grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));*/
   
       
       
    }

    .service-box {
        background-color: #ffffff;
        border-radius: 10px;
        display: flex;
        align-items: stretch;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        min-height: 120px;
         /*margin-top: 10px; */
    }

    .service-image {
        flex: 0 0 100px;
        background-color: #d4f1ff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-image img {
        object-fit: cover;
        display: block;
    }

    .service-content {
        flex: 1;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        background-color: #ffffff;
    }

    .service-box h4 {
        margin: 0;
        font-size: 17px;
        font-weight: 700;
        color: #000;
    }

    .service-box a {
        display: inline-block;
        margin-top: 20px;
        padding: 6px 15px;
        background-color: #d4f1ff;
        color: #0f0f0f;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        width: 100px;
    }
    .services-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));*/
    gap: 20px;
    margin-top: 60px;
}


/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    
      .bonbloc-services-section h2 {
        text-align: center;
        
        margin-bottom: 10px;
        color: #111;
        font-size: 35px !important;
    font-weight: bold;
         font-family: 'Nunito', sans-serif !important;
    }

  .bonbloc-services-container {
    flex-direction: column !important;
    margin-top: 15px;
  }
   .services {
    display: none !important;
  }
  .category-tabs {
   display: none;
  }

  .tab-btn {
   
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .service-box {
    flex-direction: row;
    /*padding: 12px;*/
  }

  .service-content h4 {
    font-size: 14px;
  }

  .service-box a {
    display: none;
  }
}
/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
  .bonbloc-services-container {
    flex-direction: column;
    gap: 5px;
  }
  .services {
    display: none !important;
  }

  /* Hide the desktop tabs on mobile */
  .category-tabs {
    display: none;
  }

  /* Show all service groups on mobile */
  .services-group {
    display: block !important;
    margin-bottom: 30px;
  }

  /* Add category titles for mobile */
  .services-group::before {
    content: attr(data-cat-title);
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px;
    padding-bottom: 8px;
    /*border-bottom: 2px solid #007b9e;*/
  }

  /* Set category titles based on data attributes */
  .services-group[data-cat="oracle"]::before {
    content: "Oracle Services";
  }
  .services-group[data-cat="enterprise"]::before {
    content: "Enterprise Services";
  }
  .services-group[data-cat="managed"]::before {
    content: "Managed Services";
  }
  .services-group[data-cat="analytics"]::before {
    content: "Business Intelligence & Analytics";
  }
  .services-group[data-cat="digital"]::before {
    content: "Digital Services";
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 0;
  }

  .service-box {
    flex-direction: row;
    min-height: auto;
    /*padding: 12px;*/
  }

  .service-image {
    flex: 0 0 100px;
    /*padding: 20px;*/
  }

  .service-content {
    padding: 10px;
  }

  .service-box h4 {
    font-size: 14px;
  }

  .service-box a {
   display: none;
  }
  
}