@media (max-width: 767px) {
    .header-top{
        display: none;
    }
}


.process-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.process-item .icon {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #007BFF;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.process-item .content h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.process-item .content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pb-100{
    padding-top: 100px !important;
}



