/*testimonial carousel*/
        .banner {
            background: linear-gradient(135deg, #e11b22, #c40000);
            padding: 50px 20px;
            border: 10px solid #f4b63a;
        }

        .banner-content {
            max-width: 1200px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        /* TEXT */
        .text-section {
            flex: 1;
        }

        .text-section h1 {
            color: #fff;
            font-size: 42px;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .text-section p {
            color: #fff;
            font-size: 18px;
        }

        .text-section span {
            color: #ffd700;
            font-weight: bold;
        }

        /* RIBBON */
        .ribbon {
            background: linear-gradient(90deg, #ffd700, #f4b63a);
            padding: 15px 25px;
            margin-top: 20px;
            border-radius: 6px;
            display: inline-block;
        }

        .ribbon h2 {
            margin: 0;
            font-size: 20px;
            color: #000;
        }

        .ribbon p {
            margin: 5px 0 0;
            font-weight: bold;
            color: #000;
        }

        /* IMAGE */
        .image-section {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .circle {
            width: 260px;
            height: 260px;
            border-radius: 50%;
            border: 12px solid #ffd700;
            overflow: hidden;
        }

        .circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* SWIPER */
        .swiper-pagination-bullet {
            background: #fff;
            opacity: 0.7;
        }

        .swiper-pagination-bullet-active {
            background: #ffd700;
            opacity: 1;
        }

        /* ✅ TABLET */
        @media (max-width: 992px) {
            .text-section h1 {
                font-size: 32px;
            }

            .circle {
                width: 200px;
                height: 200px;
            }
        }

        /* ✅ MOBILE */
        @media (max-width: 768px) {
            .banner {
                padding: 30px 15px;
                border-width: 6px;
            }

            .banner-content {
                flex-direction: column;
                text-align: center;
            }

            .text-section h1 {
                font-size: 26px;
            }

            .text-section p {
                font-size: 14px;
            }

            .ribbon {
                padding: 10px 15px;
            }

            .ribbon h2 {
                font-size: 16px;
            }

            .circle {
                width: 160px;
                height: 160px;
                border-width: 8px;
                margin-top: 15px;
            }
        }

        /* ✅ SMALL MOBILE */
        @media (max-width: 480px) {
            .text-section h1 {
                font-size: 22px;
            }

            .text-section p {
                font-size: 13px;
            }
        }
    


/*banner section*/



