.services-overview {
    /* background-color: #0e1122; */
    background-color: #101931; /* Dark background color */
    background-color: #ffffff;
    padding: 90px 0;
  }
  
  .service-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .service-box {
    background-color: #181b32;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    width: 100%;
    min-height: 200px;
  }
  
  .service-box:hover {
    transform: translateY(-6px);
  }
  
  .service-box .text-content {
    flex: 1 1 50%;
    padding-right: 20px;
  }

  .service-box .text-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #ffffff;
  }

  .service-box .text-content h3 span {
    background: linear-gradient(90deg, #9F54FD 22.27%, #FFC69C 105.76%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    position: relative;
    z-index: 1;
    display: inline-block;
  }
  
  .service-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    /* color: #a472f8; */
  }
  
  .service-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #c7c7c7;
  }
  
  .service-box .image-content {
    flex: 1 1 50%;
    text-align: center;
  }
  
  .service-box .image-content img {
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
  }

  .highlight {
    color: #a472f8;
    text-decoration: underline;
  }


/* Mobile scaling for brief section  */
@media (max-width: 992px) {
  .service-box { gap: 16px; }
  .service-box .text-content, .service-box .image-content {
    flex: 1 1 100% !important;
    padding-right: 0 !important;
    text-align: left;
  }
  .service-box .image-content { text-align: center; }
  .service-box .image-content img { width: 100% !important; max-width: 520px !important; height: auto; }
}
@media (max-width: 480px) {
  .service-box { padding: 20px !important; }
}
