

        /* Custom Testimonials styles */
        .testimonial-pattern {
            background:
                radial-gradient(circle at 20% 30%, rgba(16, 78, 168, 0.05) 0%, transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.05) 0%, transparent 25%);
            height: 100%;
        }

        .testimonial-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            max-width: 800px;
            overflow: hidden;
            border-top: 4px solid #104EA8;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .testimonial-img-container {
            position: relative;
            display: inline-block;
        }

        .quote-icon {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
        }

        .rating svg {
            margin: 0 2px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .carousel-control-prev:hover .carousel-control-prev-icon,
        .carousel-control-next:hover .carousel-control-next-icon {
            background-color: rgba(16, 78, 168, 0.2) !important;
        }

        .carousel-indicators [data-bs-target] {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 5px;
            border: none;
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .carousel-indicators .active {
            opacity: 1;
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .testimonial-card {
                margin: 0 15px;
            }

            .testimonial-card .card-body {
                padding: 2rem !important;
            }
        }
    