
.services {
    background-color: #f8f9fa;
    padding: 50px 20px;
    text-align: center;
    width: 100%;
  }
  
  .services .container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .services h2 {
    font-size: 36px;
    margin-bottom: 20px;
    width: 100%;
    color: #333;
  }
  
  .services .service-item {
    flex: 1 1 calc(50% - 100px);
    box-sizing: border-box;
    margin: 10px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    min-width: 600px;
  }

  .services .service-item a {
    font-size: 14px;
    padding: 10px; 
    color: aliceblue; 
    background-color:  #5195c1; 
    text-decoration: none;

  }

  .services .service-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
  }
  
  .services .service-item i {
    font-size: 50px;
    color: #3498db;
    margin-bottom: 10px;
  }
  
  .services .service-item span {
    font-size: 14px;
    margin-bottom: 0px;
    padding: 0px;
  }

  .services .service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .services .service-item p {
    font-size: 15px;
    color: #777;
  }

  .services .service-item li {
    font-size: 12px;
    color: #777;
  }


  .services .btn {
    background-color: #1568e4;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
  }
  .services .btn:hover {
    background-color: #2980b9;
  }
  
  @media (max-width: 992px) {
    .services .service-item {
      flex: 1 1 calc(50% - 20px);
      min-width:360px;
    }
  }
  
  @media (max-width: 768px) {
    .services .service-item {
      flex: 1 1 100%;
      min-width:360px;
    }
  }
  
  @media (max-width: 600px) {
    .services .service-item {
      flex: 1 1 100%;
      min-width:360px;
    }
  }
  