body {
    font-family: 'Inter', sans-serif;
    background-image: url('../../img/pallabhav.png');
    background-repeat: no-repeat;
    background-position: top center;   /* Start image from top */
    background-attachment: scroll;     /* Move with the page */
    background-size: contain;          /* Show full image without zooming */
    min-height: 100vh;
    background-color: #ffffff;         /* White background */
}




/* Custom scrollbar (optional) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #60a5fa;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3b82f6;
}
