/* Parallax effect */
.parallax {
    background-image: url('https://via.placeholder.com/1500');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    height: 300px;
}

/* Service Card Hover Effect */
.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Custom Button Styles */
button:hover {
    background-color: #004c8c;
}

/* Parallax effect for card */
.service-card {
   
    background-size: cover;
    background-attachment: fixed;
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.service-card:hover {
    transform: scale(1.05); /* Zoom in effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Shadow effect */
}


#about {
    position: relative;
    overflow: hidden;
}

#about .absolute {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* CSS untuk Parallax */
.parallax {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
