.small-img {
    width: 100%;
    height: 200px; /* Set a fixed height for all images */
    object-fit: cover; /* Ensure images cover the area without distortion */
    border-radius: 25%;
}
.testimonial-area {
    background: url(img/bg/testimonial-bg.png) no-repeat center top / cover;
    padding-top: 120px;
    padding-bottom: 90px;
    position: relative;
}

.testimonial-area .section-title h3 {
    color: #333;
    font-size: 36px;
    margin-bottom: 20px;
}

.testimonial-area .section-title p {
    color: #555;
    font-size: 18px;
    margin-bottom: 50px;
}

.testimonial-active .single-testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 15px;
    text-align: center;
}

.testimonial-active .single-testimonial .qt-img {
    margin-bottom: 15px;
}

.testimonial-active .single-testimonial .qt-img img {
    max-width: 50px;
}

.testimonial-active .single-testimonial p {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-active .single-testimonial .testi-author h6 {
    color: #333;
    font-weight: bold;
}

/* Basic styles for the page */
body {
    font-family: Arial, sans-serif;
}


/* Modal styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.modal-content {
    background-color: orange;
    margin: 9% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 50%; 
    max-width: 400px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.3);
    animation-name: modalopen;
    animation-duration: 0.4s;
}

@keyframes modalopen {
    from {top: -300px; opacity: 0;}
    to {top: 0; opacity: 1;}
}

.close {
    color: #ef1313;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input, form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

form input[type="submit"] {
    background-color: #0ed4f2;
    color: white;
    border: none;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #11ceeb;
}
