.service-container {
    background: #f09223;
    padding: 20px;
    border-radius: 8px;
  }

  .service-header {
    background: #273171;
    color: white;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 24px;
    position: relative;
  }

  .service-header::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #f09223;
  }

  .service-item {
    background: white;
    color: #273171;
    padding: 12px 20px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .service-item:hover {
    background-color: #000000;
    color: white;
  }

  .active-service {
    background-color: #273171;
    color: white;
  }

  .service-arrow {
    font-weight: bold;
  }
  .active-service {
    background-color: #000000;
    color: white;
  }
  .section-title {
    font-weight: 700;
    font-size: 2rem;
    color: #111;
  }
  .why-box {
    background-color: #fff;
    padding: 15px 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    height: 100%;
   
  }
  
  .why-icon {
    background-color: #ffb020; /* Your specified color */
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    font-size: 28px;
    color: #fff;
  }
  
  .why-content {
    flex: 1;
  }
  
  .why-icon img {
    width: 30px;
    height: 30px;
  }
  .why-content h5 {
    font-weight: 700;
    color: #111;
  }
  .why-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
  }
  .webscrew-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .webscrew-card:hover {
    transform: translateY(-5px);
  }
  
  .webscrew-icon {
    font-size: 40px;
    color: #f09223;
  }
  
  .webscrew-title {
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .webscrew-text {
    font-size: 15px;
    color: #333;
  }
  
  .webscrew-btn {
    background-color: #f09223;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
 
  