body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

/* .servic {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
} */

.servic {
    display: flex; /* Use flexbox to arrange items in a row */
    flex-wrap: wrap; /* Allow items to wrap onto the next line if necessary */
    justify-content: space-between; /* Space items evenly */
}

/* .servic-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    width: 300px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
} */

.servic-item {
    flex: 1; /* Allow items to grow and fill available space */
    margin: 10px; /* Add some margin for spacing */
    min-width: 200px; /* Set a minimum width for each card */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add some shadow for depth */
    padding: 20px; /* Add padding inside each card */
    background-color: #fff; /* Background color for cards */
    border-radius: 5px; /* Rounded corners */
}

.servic-item.visible {
    opacity: 1;
    transform: translateY(0);
}

h3 {
    color: #333;
    margin-top: 0;
}

p {
    color: #666;
}

.animated-button {
    display: inline-block;
    padding: .75rem 1.25rem;
    border-radius: 10rem;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: .15rem;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    &:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #37517e;
      border-radius: 10rem;
      z-index: -2;
    }
    &:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background-color: darken(#0cf, 15%);
      transition: all .3s;
      border-radius: 10rem;
      z-index: -1;
    }
    &:hover {
      background-color: rgb(0, 158, 198);
      &:before {
        width: 100%;
      }
    }
  }
  

  .icon-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .icon-box:hover {
    transform: translateY(-10px);
  }


  .container {
    width: 100%;
    max-width: 1200px;
    /* padding: 20px; */
}

.section-bg {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.icon-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 100%;
    margin-bottom: 20px; /* Space between tiles */
}

.icon {
    font-size: 40px;
}

@media (max-width: 768px) {
    .icon-box {
        padding: 15px; /* Adjust padding for smaller screens */
    }
}