﻿/* General styles */
.testimonial_area {
    background-image: url('../img/dash2.jpg');
    padding: 2.5rem;
    background-size: cover;
    background-position: center;
}

.contact-form-wrapper {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    color: #fff;
}

/* Text styles */
.section-tittle h2 {
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 1rem 0;
}

.section-tittle p {
    color: #fff;
    margin: 1rem 0;
}

/* Input and button styles */
.input-group .form-control {
    padding: 10px;
    border: 1px solid #ccc;
}

.input-group .btn {
    padding: 10px 20px;
    border-radius: 0px;
    color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .testimonial_area {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 15px;
    }

    .section-tittle h2 {
        font-size: 1.5rem;
    }

    .section-tittle p {
        font-size: 1rem;
    }

    .input-group .form-control {
        padding: 8px;
    }

    .input-group .btn {
        padding: 8px 15px;
    }
}
