.service-box {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15) !important;
}

.service-icon {
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-text {
    font-size: 14px;
    color: #555;
    text-align: justify;
}

.services-section {
    background: #f7f7f7;
    padding: 60px 0;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-col {
    flex: 0 1 30%;
    min-width: 280px;
}

.testimonial-carousel {
    background-color: #2596be !important;
    padding: 60px 20px;
    text-align: center;
}

.carousel-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #333;
    font-family: 'Open Sans', sans-serif !important;
}

.carousel-container {
    position: relative;
    overflow-x: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: hidden;

    padding-bottom: 10px;
}

.testimonial-card {
    min-width: 300px;

    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    box-sizing: border-box;
}


.testimonial-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.user {

    display: flex;
    align-items: center;
    margin-left: 20px;
}

.user-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #111;
}

.user-info p {
    margin: 2px 0 0;

    font-size: 0.85rem;
    color: #666;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 1;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.15);
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 90%;
    }
}