body {
    font-family: 'Inter', sans-serif;
}
/* Custom scroll-behavior for smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Custom gradient text for a classy look */
.classy-text-gradient {
    background-image: linear-gradient(to right, #e2e8f0, #ffffff); /* Silver and white gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Custom button styling for a more refined look */
.classy-button {
    background-color: #27272a; /* Dark Gray */
    color: #d1d5db; /* Light Gray text */
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}
.classy-button:hover {
    transform: scale(1.05);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    color: #fff;
}
/* Custom card hover effect for a subtle glowing border */
.classy-card:hover {
    border-color: #ffffff; /* White border */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.01);
}
