
        /* carousel  */

        .cim-platform-carousel-header {
            text-align: center;
            padding: 20px;
        }

        .cim-platform-carousel-header h1 {
            font-size: 42px;
            font-weight: 700;
            color: #ff1a1a;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .cim-platform-carousel-header p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            font-weight: 400;
        }

        /* swiper  */

        .cim-platform-swiper {
            width: 100%;
            padding: 20px 0;
        }

        .cim-platform-swiper .swiper-slide {
            display: flex;
            flex-direction: column;
            height: 350px;
            border-radius: 4px;
            overflow: hidden;
            background-color: #ffffff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .cim-platform-swiper .swiper-slide:hover .cim-platform-card-image {
            transform: scale(1.1);
        }

       /* card  */

        .cim-platform-card-image {
            width: 100%;
            height: 80%;
            flex: 1;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
            
        }

        .cim-platform-card-footer {
            background-color: #ff1a1a;
            color: #ffffff;
            padding: 10px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            z-index: 1;
        }

        .cim-platform-card-title {
            font-size: 18px;
            font-weight: 600;
            flex: 1;
        }

        .cim-platform-card-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cim-platform-card-icon svg {
            width: 100%;
            height: 100%;
            stroke: #ffffff;
            fill: none;
            stroke-width: 2;
        }

       
/* responsive */
        @media (max-width: 1024px) {
            .cim-platform-carousel-header h1 {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .cim-platform-carousel-header h1 {
                font-size: 28px;
            }

            .cim-platform-swiper .swiper-slide {
                height: 300px;
            }

            .cim-platform-card-title {
                font-size: 16px;
            }
        }



        .cim-platform-swiper .swiper-button-next,
        .cim-platform-swiper .swiper-button-prev {
            display: none !important;
        }
