:root {
	--theme-form-field-padding: 0 25px
}

textarea {
	--theme-form-field-padding: 20px 25px
}


/* contact form */
.ct-contact-form {
	--theme-form-text-initial-color: rgba(255, 255, 255, 0.5);
	--theme-form-text-focus-color: rgba(255, 255, 255, 1);
	--theme-form-field-border-initial-color: transparent;
	--theme-form-field-background-initial-color: #121b1f;
	--theme-form-field-background-focus-color: #121b1f;
}

.ct-contact-form .ff-btn-submit {
	width: 100%;
	--theme-button-text-initial-color: var(--theme-palette-color-4);
	--theme-button-background-initial-color: #fff;
}

.wp-block-newspack-blocks-homepage-articles .post-thumbnail img {
    height: auto;
    width: 100%;
	border-radius: 20px;
}









\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
/* Store Card Grid Section */

.story-details{
  text-align: left !important;
}
.story-details{
  text-align: left !important;
}

.wp-block-cooltimeline-timeline-block{
width: 100%;}





 :root {
            --slider-gap: 20px;
            --slide-width: calc(14.285% - 14.28px);
            --active-scale: 1;
            --inactive-scale: 0.85;
            --active-opacity: 1;
            --inactive-opacity: 0.6;
            --border-radius: 12px;
            --primary-color: #CB43A5;
            --primary-hover: #a3327d;
            --text-color: #133452;
            --text-secondary: #888;
            --border-color: rgba(94, 82, 64, 0.2);
            --bg-color: #fcfcf9;
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 16px rgba(203, 67, 165, 0.3);
            --transition-speed: 0.5s;
            --transition-easing: cubic-bezier(0.16, 1, 0.3, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .testimonials-slider {
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            padding: 40px 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* CAROUSEL */
        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .carousel-track {
            display: flex;
            gap: var(--slider-gap);
            transition: transform var(--transition-speed) var(--transition-easing);
            padding: 20px 0;
        }

        .carousel-slide {
            flex: 0 0 var(--slide-width);
            min-width: 120px;
            text-align: center;
            cursor: pointer;
            opacity: var(--inactive-opacity);
            transform: scale(var(--inactive-scale));
            transition: all 0.3s ease;
            position: relative;
        }

        .carousel-slide.active {
            opacity: var(--active-opacity);
            transform: scale(var(--active-scale));
            z-index: 10;
        }

        .carousel-slide img {
            width: 100%;
            height: auto;
            aspect-ratio: 1;
            object-fit: cover;
            border-radius: var(--border-radius);
            border: 3px solid transparent;
            display: block;
        }

        .carousel-slide.active img {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-md);
        }

        /* NAVIGATION ARROWS */
        .carousel-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            pointer-events: none;
            padding: 0 10px;
        }

        .nav-arrow {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--border-color);
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text-color);
            transition: all 0.3s ease;
            pointer-events: all;
            z-index: 20;
            font-weight: bold;
        }

        .nav-arrow:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: rgba(203, 67, 165, 0.05);
        }

        /* CONTENT SECTION */
        .slider-content {
            display: flex;
            flex-direction: row;
            align-items: center;
            text-align: left;
            gap: 50px;
            justify-content: center;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            max-width: 400px;
            aspect-ratio: 9 / 16;
            border-radius: 16px;
            overflow: hidden;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .video-wrapper iframe,
        .video-wrapper video {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 16px;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .play-icon:hover {
            background: white;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-icon::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 30px solid var(--primary-color);
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
            margin-left: 8px;
        }

        .text-content {
            flex: 1;
            max-width: 600px;
        }

        .testimonial-name {
            font-size: 50px;
            font-weight: 600;
            color: #CB43A5;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .testimonial-title {
            font-size: 30px;
            color: #000000;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .testimonial-desc {
            font-size: 20px;
            line-height: 1.6;
            color: #000000;
        }

        /* CONTROLS - BOTTOM */
        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .control-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--border-color);
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text-color);
            transition: all 0.3s ease;
            z-index: 20;
            font-weight: bold;
        }

        .control-btn:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: rgba(33, 128, 168, 0.05);
        }

        /* DOTS */
        .dots-container {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #bbb;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .dot.active {
            background: #666;
            transform: scale(1.3);
        }

        .dot:hover {
            background: #666;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .testimonials-slider {
                padding: 30px 15px;
            }

            .testimonial-name {
                font-size: 44px;
            }

            .testimonial-title {
                font-size: 28px;
            }

            .testimonial-desc {
                font-size: 18px;
            }

            .video-wrapper {
                max-width: 350px;
            }

            .slider-content {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .slider-controls {
                gap: 20px;
            }

            .carousel-slide {
                flex: 0 0 calc(20% - 16px);
                min-width: 80px;
            }

            .testimonial-name {
                font-size: 28px;
            }

            .testimonial-title {
                font-size: 18px;
            }

            .testimonial-desc {
                font-size: 14px;
            }

            .slider-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .text-content {
                max-width: 100%;
            }

            .video-wrapper {
                max-width: 100%;
                max-height: 400px;
            }

            .nav-arrow,
            .control-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .carousel-slide {
                flex: 0 0 calc(25% - 15px);
                min-width: 70px;
            }

            .testimonial-name {
                font-size: 20px;
            }

            .testimonial-title {
                font-size: 14px;
            }

            .testimonial-desc {
                font-size: 12px;
            }

            .video-wrapper {
                max-height: 300px;
            }

            .slider-controls {
                gap: 15px;
            }
        }














/* Cards Hover*/


.hover-card {
  transition: all 0.35s ease;
}

.hover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}

.hover-card:hover {
  transform: translateY(-10px) scale(1.02);
}