.clt-form {
    max-width: 900px;
}

.clt-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.clt-row input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.clt-btn {
    background: linear-gradient(to right, black, #2ca5a9);
    color: white;
    padding: 14px 30px;
    border-radius: 40px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.clt-success {
    background: #e6fff2;
    color: #0a7a3c;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-weight: 500;
}



/* Testimonial Form */
.clt-testimonial-form {
    max-width: 600px;
    margin: auto;
}

.clt-testimonial-form input,
.clt-testimonial-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.clt-testimonial-form button {
    background: linear-gradient(to right, black, #3aa6b9);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
}

/* Testimonial Cards */
.clt-testimonial-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.clt-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.clt-feedback {
    font-style: italic;
    margin-bottom: 10px;
}

.clt-card h4 {
    margin: 0;
    font-weight: bold;
}

.clt-card span {
    color: gray;
    font-size: 14px;
}



.clt-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.clt-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}