.ai_tool_box_contain {
    max-width: 720px;
    background: #fdfdfd;
    margin: 16px auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    border: 2px solid gold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai_tool_box_contain:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.ai_tool_box_img img{
    height: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    width: 100%;
}

.ai_tool_box_img {
    transition: transform 0.3s ease;
}

.ai_tool_box_img:hover {
    transform: scale(1.02) rotate(1deg);
}

