/**
 * Basic CSS & JS Plugin Stylesheet
 */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.bcjp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.bcjp-heading {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.bcjp-text {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.e-gallery-item {
    width: 19%;
    max-height: 150px;
    float: left;
    margin: 5px;
}

@media only screen and (max-device-width: 480px) {
    .e-gallery-item {
        width: 48%;
        max-height: 150px;
        float: left;
        margin: 5px;
    }
}


















       .elementor-slide-button {
            display: inline-block;
            padding: 12px 30px;
            background: #ff6600;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: background 0.3s;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .elementor-slide-button:hover {
            background: #ff8533;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .swiper-pagination {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 10px;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
            display: inline-block;
        }

        .swiper-pagination-bullet.active {
            background: white;
        }

        .elementor-swiper-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(255, 255, 255, 0.3);
            color: white;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 24px;
        }

        .elementor-swiper-button:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .elementor-swiper-button-prev {
            left: 20px;
        }

        .elementor-swiper-button-next {
            right: 20px;
        }

        .elementor-screen-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        @media (max-width: 768px) {
            .elementor-widget-container {
                height: 400px;
            }

            .elementor-slide-heading {
                font-size: 32px;
            }

            .elementor-slide-description {
                font-size: 16px;
            }

            .swiper-slide-inner {
                padding: 0 5%;
            }
        }