.hero-section { background: linear-gradient(to right, #007bff, #0056b3); }
.tool-card {
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.icon-box {
    font-size: 40px;
    color: #007bff;
}


.btn:focus, .form-select:focus, .form-control:focus, button:focus, textarea:focus, input:focus, select:focus{
    box-shadow: none!important;
}