.testimonial-slider-widget {
    background: #f9f9f9; /* Light background for contrast */
    padding: 30px; /* Generous padding */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
    position: relative; /* Positioning for slider controls */
}

.testimonial-title {
    font-size: 24px; /* Title font size */
    font-weight: 700; /* Bold title */
    margin-bottom: 20px; /* Spacing below title */
    text-align: center; /* Centered title */
    color: var(--theme-color); /* Darker text for readability */
}

.testimonial-slider {
    overflow: hidden; /* Hide overflowing content */
}

.testimonial-item {
    display: none; /* Hide all items by default */
    text-align: center; /* Center text in testimonials */
    padding: 20px; /* Padding around testimonials */
}

.testimonial-item.active {
    display: block; /* Show the active item */
}

.testimonial-content blockquote {
    font-size: 18px; /* Font size for quotes */
    font-style: italic; /* Italic for quotes */
    margin: 0 0 15px; /* Spacing around quotes */
    color: #555; /* Soft color for quotes */
}

.client-info {
    display: flex; /* Flexbox for layout */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    margin-top: 15px; /* Spacing above client info */
}

.client-photo {
    width: 50px; /* Fixed width for client photos */
    height: 50px; /* Fixed height for client photos */
    border-radius: 50%; /* Circular images */
    margin-right: 10px; /* Space between photo and text */
}

.client-name {
    font-weight: 600; /* Bold for client name */
    color: #333; /* Darker text for readability */
}

.client-designation {
    font-size: 14px; /* Font size for designation */
    color: #888; /* Lighter color for designation */
}

/* Slider controls */
.slider-controls {
    display: flex; /* Flexbox for controls */
    justify-content: center; /* Center controls */
    margin-top: 20px; /* Space above controls */
}

.slider-controls button {
    background: -webkit-linear-gradient(0deg, rgba(5, 14, 121, 0.9) 5%, #050e79ba) !important;
    color: #fff; /* Button text color */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 15px; /* Padding for buttons */
    cursor: pointer; /* Pointer on hover */
    font-size: 16px; /* Font size for buttons */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.slider-controls button:hover {
    background-color: #e91e63; /* Darker color on hover */
}
.slider-controls {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center the buttons horizontally */
    margin-top: 20px; /* Space above controls */
}

.slider-controls button {
    background-color: #ff4081;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 9px 18px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin: 0 10px;
}

.slider-controls button:hover {
    background-color: #e91e63; /* Darker color on hover */
}























