body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
  }
  

  .service-list {
      max-height: 80vh;
overflow-y: auto;
  }
  
  /* Service List */
  .service-list-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    padding: 15px;
    margin-bottom: 5px;
    background-color: transparent;
    border-radius: 8px;
    color: #333;
  }

  .service-list-item:hover {
    /* background-color: #000; */
    /* color: white; */
    transition: 0.25s ease-in ;
    /* transform: translateY(-1px); */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #000;
  }

  .service-list-item.active {
    background-color: transparent;
    color: #000;
    /* border:none; */
    border-left: 4px solid #000;
    font-weight: 600;
    border-color: #000;

  }

  .service-list-item h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
  }

  /* Service Details */
  .service-description {
    display: none;
    /* background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    transition: opacity 0.3s ease-in-out;

  }

  .service-description.active {
    display: block;
    opacity: 1;
  }

  .service-description h5 {
    font-weight: 600;
    font-size: 1.5rem;
    /* color: #007BFF; */
    /* margin-bottom: 20px; */
  }

  .service-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
  }

  .section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    text-align: center;
    color: #333;
    margin-bottom: 40px;
  }

  .service-description p a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
  }

  .service-description p a:hover {
    text-decoration: underline;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .service-description {
      padding: 20px;
    }
    .service-list-item {
      margin-bottom: 15px;
    }
  }

  /* @media (min-width: 768px) {
.sticky-sidebar {
  position: sticky;
  top: 80px;
}
} */


.main-btn {
    color: #333!important;
    border-color: #333!important;
}

.main-btn:hover {
    color: #fff!important;
    border-color: transparent!important;
}

.service-list-item i {
    margin-right: 8px;
  }