/* General styling for the popup */
#testimonials-popup {
    animation: slideInFromLeft 0.5s ease-in-out;
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 1rem;
    max-width: 100%;
    z-index: 1050;
}

/* Slide-in animation for the popup */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Styling for the card */
#testimonials-popup .card {
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#testimonials-popup .card-body {
    padding: 1rem;
    background-color: maroon;
}

#testimonials-popup .card-title {
    font-size: 1.1rem;
}

/* Excerpt text and button styling */
#testimonials-popup .card-text {
    font-size: 0.9rem;
    color: white;
    line-height: 1.4;
}

.view-more-btn {
    background-color: #f39c12;
    border: none;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding: 5px 10px;
    text-transform: uppercase;
}

.view-more-btn:hover {
    background-color: #e67e22;
    cursor: pointer;
}

/* Close button styling */
#testimonials-popup .btn-close {
    background-color: transparent;
    border: none;
    color: white;
}

/* Adjust modal content */
.modal-content {
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Media Query for Mobile Devices */
@media (max-width: 576px) {
    /* Adjust the popup width on mobile */
    #testimonials-popup {
        max-width: 100%;
        padding: 0.5rem;
    }

    #testimonials-popup .card-body {
        padding: 0.8rem;
    }

    /* Excerpt text size on mobile */
    #testimonials-popup .card-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Button size on mobile */
    .view-more-btn {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    /* Modal content adjustments */
    .modal-dialog {
        width: 90%;
        margin: 1rem auto;
    }

    #testimonials-popup .modal-body {
        font-size: 0.9rem;
    }
}

/* Media Query for Tablets and Larger Screens */
@media (min-width: 577px) {
    #testimonials-popup {
        max-width: 350px;
    }
}

/* resources/css/contact.css */
.contact-page {
    padding-top: 50px;
}

.contact-form {
    margin-top: 20px;
}

.contact-map {
    margin-top: 20px;
}
