body {
    font-family: 'Roboto', sans-serif;
}

/* Custom Styles */
.carousel-item img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.parallax {
    background-image: url('../img/slider/image_4.webp');
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section {
    padding: 50px 0;
}

/* Sticky Header */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Scroll-to-Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

.scroll-top i {
    font-size: 24px;
    color: white;
}

/* Pause/Play Button */
.carousel-control-pause {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px; /* Adjusted padding for better sizing */
    border-radius: 50%;
    cursor: pointer;
    display: flex; /* Center icon horizontally and vertically */
    justify-content: center;
    align-items: center;
}

/* Icon Styles */
.carousel-control-pause i {
    font-size: 30px; /* Adjust icon size */
    color: #007bff; /* Change icon color if needed */
}


.gallery-image {
    transition: transform 0.3s, opacity 0.3s;
}

.gallery-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}



