.container-xxl {
    padding: 60px 0;
}

.text-center h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #132D55;
    margin-bottom: 20px;
    position: relative;
}

.text-center h1::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #e74c3c;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.text-center p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-carousel {
    margin-top: 40px;
}

.testimonial-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-item::before {
    content: '\f10d'; /* Font Awesome quote-left icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: #e74c3c;
    opacity: 0.2;
}

.testimonial-item::after {
    content: '\f10e'; /* Font Awesome quote-right icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    color: #e74c3c;
    opacity: 0.2;
}

.testimonial-item p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-style: italic;
}

.client-info {
    text-align: center;
    padding-top: 15px;
    border-top: 2px solid #e74c3c;
}

.client-info h3 {
    font-size: 1.3rem;
    color: #132D55;
    margin-bottom: 5px;
}

.client-info span {
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 500;
}

.owl-nav {
    margin-top: 20px;
    text-align: center;
}

.owl-nav button {
    background: #e74c3c !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    font-size: 1.2rem !important;
    transition: background 0.3s ease;
}

.owl-nav button:hover {
    background: #28608f !important;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    background: #ccc !important;
    border-radius: 50% !important;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    display: inline-block;
}

.owl-dot.active {
    background: #e74c3c !important;
}

@media (max-width: 768px) {
    .text-center h1 {
        font-size: 2rem;
    }

    .text-center p {
        font-size: 1rem;
    }

    .testimonial-item {
        padding: 25px;
    }

    .testimonial-item p {
        font-size: 1rem;
    }

    .client-info h3 {
        font-size: 1.1rem;
    }

    .client-info span {
        font-size: 0.8rem;
    }
}