  /* Work Process Css Start */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.grid-item {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.grid-item h3 {
    margin: 15px 0 10px;
    font-size: 1.4em;
    color: #3e9fd8;
}

.lightcode {
    color: #555;
}

.grid-item i {
    font-size: 2.5em;
    color: #1b6baa;
    margin-bottom: 10px;
}

.details {
    display: none;
    margin-top: 10px;
    color: #555;
    font-size: 0.9em;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #1b6baa; /* Change background color */
    color: #ffffff; /* Change text color */
}

.grid-item:hover h3,
.grid-item:hover h5,
.grid-item:hover i {
    color: #ffffff; /* Change text and icon color */
}

/* Work Process Css End */