/* gaya pop-up testimonial */
.testimonial-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.testimonial-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
}

.testimonial-content h3 {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-content label {
    display: block;
    margin-bottom: 5px;
}

.testimonial-content input,
.testimonial-content textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.testimonial-content button {
    padding: 10px 20px;
    margin-right: 10px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.testimonial-content button.btn-primary {
    background-color: #01013D;
    color: #fff;
    border: none;
}

.testimonial-content button.btn-secondary {
    background-color: #ccc;
    color: #000;
    border: none;
}
