@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
}

body {
    background-color: #f5f5f5;
}

.hubungi-kami {
    display: inline-block; /* penting untuk transform */
    animation: hubungi 2s ease-in-out;
}

@keyframes hubungi {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(15deg);
    }
    50% {
        transform: scale(1.1) rotate(-15deg);
    }
    75% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@media (max-width: 768px) {
    .card {
        width: 100%;
    }
}
@media (max-width: 425px) {
    .partner-img {
        height: 30px;
    }
}
.gallery {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
.icon-x {
    font-size: 1.5rem;
    line-height: 1;
}

/* Untuk tablet */
@media (max-width: 768px) {
    .gallery {
        width: 150px;
        height: 110px;
    }
}

/* Untuk smartphone */
@media (max-width: 425px) {
    .gallery {
        width: 120px;
        height: 90px;
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.hubungi-kami:hover {
    animation-play-state: paused;
}


