.rounded-image {
    border-radius: 10px;
    overflow: hidden;
}
.review-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.review-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.review-header .username {
    font-weight: bold;
    margin-left: 10px;
    font-size: 12px; 
}
.review-header .date {
    font-size: 12px;
    color: gray;
    margin-left: 10px;
}
.review-body {
    font-size: 13px;
    color: #333;
}
.review-rating {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.review-rating .star {
    color: #ffc107;
}
.review-rating .rating-value {
    font-weight: bold;
    margin-left: 5px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}
@media (min-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}
.gallery-item {
    background-color: #dbeffe;
    border-radius: 10px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.gallery-img-wrapper {
    width: 100%;
    padding-top: 100%; 
    position: relative;
}
.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}
.gallery-info {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
}
.gallery-info h3 {
    margin: 10px 0 5px;
    font-size: 1.2em;
    color: #333;
}
.gallery-info p {
    margin: 0;
    color: #777;
}
.gallery-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-info::before {
    opacity: 1;
}
@media (max-width: 600px) {
    .gallery-img-wrapper {
        padding-top: 100%; 
    }
}
@media (max-width: 400px) {
    .gallery-info h3 {
        font-size: 1em;
    }
}
.gallery-container {
display: flex;
overflow-x: auto;
white-space: nowrap;
padding: 20px;
gap: 20px;
}
.gallery-item {
flex: 0 0 auto;
width: 300px;
}
.gallery-img-wrapper {
width: 100%;
height: 200px;
overflow: hidden;
border-radius: 10px;
}
.gallery-img-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
}
.gallery-info h3 {
font-size: 1.2rem;
margin: 10px 0 5px;
}
.gallery-info p {
font-size: 1rem;
color: #555;
}
#hero {
background: linear-gradient(120deg);
background-size: 200% 200%;
animation: gradientWave 10s ease infinite;        
position: relative;
}
@keyframes gradientWave {
0% {
    background-position: 0% 0%;
}
50% {
    background-position: 100% 100%;
}
100% {
    background-position: 0% 0%;
}
}
#hero h1 {
font-size: 36px;
font-weight: bold;
color: white;
text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}
.whatsapp-button {
background: linear-gradient(120deg, #25D366, #128C7E);
color: white;
border: none;        
border-radius: 30px;
font-size: 18px;
cursor: pointer;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.whatsapp-button:hover {
transform: scale(1.1);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
background: linear-gradient(120deg, #128C7E, #25D366);
}  
/* Style untuk tombol scroll */
.scroll-button {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 0, 0.2); /* Background hitam transparan */
color: white;
border: none;
font-size: 30px;
padding: 20px;
cursor: pointer;
border-radius: 15%; /* Membuat tombol berbentuk lingkaran */
transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
z-index: 10; /* Pastikan tombol berada di depan elemen lain */
}
/* Tombol kiri */
.scroll-left {
left: 20px; /* Tombol kiri berada di kiri */
}
/* Tombol kanan */
.scroll-right {
right: 20px; /* Tombol kanan berada di kanan */
}
/* Efek hover */
.scroll-button:hover {
background-color: rgba(0, 0, 0, 0.9); /* Lebih gelap saat hover */
transform: translateY(-50%) scale(1.05); /* Membesarkan tombol sedikit tetapi tidak bergeser */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Menambahkan bayangan */
}
/* Efek active (saat tombol diklik) */
.scroll-button:active {
transform: translateY(-50%) scale(0.95); /* Menyusut sedikit saat klik */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); /* Bayangan lebih kecil saat klik */
}
/* Menambahkan efek transisi */
.scroll-button {
transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
