body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth; /* Smooth scrolling for navigation */
}
/* Custom styles for hero section background image */
.hero-background {
    background-image: url('https://placehold.co/1920x1080/4A90E2/FFFFFF?text=Jasa+Setrika+Tulungagung'); /* Placeholder image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Style for scroll-to-top button */
#scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed position */
    bottom: 20px; /* Place at the bottom */
    right: 20px; /* Place at the right */
    z-index: 99; /* Ensure it's on top */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #4A90E2; /* Background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 50%; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}
#scrollToTopBtn:hover {
    background-color: #357ABD; /* Darker on hover */
}