/*
 Theme Name:   Frutin Child
 Theme URI: https://themeholy.com/wordpress/frutin/
 Description:  This is a child theme for Frutin WordPress Theme
Author URI: https://themeforest.net/user/themeholy
 Author URI:   #
 Template:     frutin
 Version:      1.0
 Tags:         two-columns, three-columns, left-sidebar, right-sidebar, flexible-header, custom-background, custom-colors, custom-header, custom-menu, theme-options, editor-style, featured-images, microformats, post-formats,  sticky-post, threaded-comments, translation-ready
 Text Domain:  frutin-child
*/

/*  [ Add your custom css below ]
- - - - - - - - - - - - - - - - - - - - */


/*  Our Clients Logos in Home page
- - - - - - - - - - - - - - - - - - - - */

.carousel-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .carousel-header h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
        }

        /* Swiper container styles */
        .positionBasedCarousel.swiper {
            width: 100%;
            height: auto;
            padding: 60px 0px;
        }

        /* Logo slide styles */
        .positionBasedCarousel .swiper-slide {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.5s ease;
            transform: scale(0.8);
            filter: brightness(0.8);
            opacity: 0.8;
        }

       

        /* Center position styles (applied via JS based on position) */
        .positionBasedCarousel .swiper-slide.center-position {
            transform: scale(1.2);
            filter: brightness(1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            z-index: 10;
            opacity: 1;
            margin: 0 20px;
        }

        /* Center main slide (largest) */
        .positionBasedCarousel .swiper-slide.center-main {
            transform: scale(1.3) !important;
            filter: brightness(1) !important;
            z-index: 10 !important;
            opacity: 1 !important;
            transition: all 0.6s ease-in-out !important;
        }

        /* Center secondary slides (slightly smaller) */
        .positionBasedCarousel .swiper-slide.center-secondary {
            transform: scale(1.2) !important;
            filter: brightness(1) !important;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
            z-index: 5 !important;
            opacity: 1 !important;
            margin: 0 30px !important;
        }

        /* Logo image styles */
        .positionBasedCarousel .swiper-slide img {
            width: 100%;
            object-fit: contain;
            max-width: 160px;
        }

        /* Navigation buttons */
        .positionBasedCarousel .swiper-button-next,
        .positionBasedCarousel .swiper-button-prev {
            color: var(--an-dim-gray);
            background: rgba(255, 255, 255, 0.8);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

		.testi-section .swiper-button-next,
		.testi-section .swiper-button-prev {
			color: var(--an-dim-gray);
			background: rgba(255, 255, 255, 0.8);
			width: 50px;
			height: 50px;
			border-radius: 50%;
			backdrop-filter: blur(5px);
			box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		}

        .positionBasedCarousel .swiper-button-next::after,
        .positionBasedCarousel .swiper-button-prev::after {
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* Pagination dots */
        .positionBasedCarousel .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #ccc;
            opacity: 1;
        }

        .positionBasedCarousel .swiper-pagination-bullet-active {
            background: #eaeaea;
        }

        /* Controls container */
        .positionBasedCarousel .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
        }

        .positionBasedCarousel .control-btn {
            background: #545454;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .positionBasedCarousel .swiper-slide {
                width: 160px;
                height: 160px;
            }
        }

        @media (max-width: 992px) {
            .positionBasedCarousel .swiper-slide {
                width: 130px;
                height: 130px;
            }

            .positionBasedCarousel .swiper-slide.center-position {
                transform: scale(1.15);
            }
        }

        @media (max-width: 768px) {
            .positionBasedCarousel .swiper {
                padding: 30px 0;
            }

            .positionBasedCarousel .swiper-slide {
                width: 120px;
                height: 90px;
            }
        }

        @media (max-width: 576px) {
            .positionBasedCarousel .swiper-slide {
                width: 100px;
                height: 100px;
            }

            .positionBasedCarousel .swiper-button-next,
            .positionBasedCarousel .swiper-button-prev {
                width: 40px;
                height: 40px;
            }
        }