/*
Theme Name: The Laundry
Theme URI: https://kitekgroup.com/
Author: KiTek Group
Author URI: https://kitekgroup.com/
Description: A premium, dynamic one-page SPA WordPress theme for The Laundry in Bangalore.
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: thelaundry
*/

/* Multi-page Routing Styles */
.page-view {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.page-view.active {
    display: block;
    opacity: 1;
}

/* Testimonial Slider Animations */
.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .testimonial-slide {
        min-width: 50%;
    }
}
@media (min-width: 1024px) {
    .testimonial-slide {
        min-width: 33.333333%;
    }
}

/* Floating Icons pulse effect */
.pulse-icon {
    animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.pulse-icon-blue {
    animation: pulse-animation-blue 2s infinite;
}
@keyframes pulse-animation-blue {
    0% { box-shadow: 0 0 0 0 rgba(0, 114, 188, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 114, 188, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 114, 188, 0); }
}