/*
Theme Name: Click Commerce
Theme URI: https://clickcommerce.in
Author: Dkpotter(9588993023)
Author URI: https://clickcommerce.in
Description: We Help Brands Launch, Manage & Scale Across India's Leading Marketplaces.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clickcommerce
*/

/* 
 * The main styling for this theme is handled via Tailwind CSS (included via CDN in header.php) 
 * combined with custom styles in assets/css/main.css 
 */

/* Hero Image Slider */
@keyframes autoSlider {
  0% { opacity: 0; transform: scale(1.05); }
  10% { opacity: 1; transform: scale(1); }
  33% { opacity: 1; transform: scale(1); }
  43% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 0; transform: scale(0.95); }
}

.hero-slider-img {
    animation: autoSlider 15s infinite ease-in-out;
}
.hero-slider-img:nth-child(1) { animation-delay: 0s; }
.hero-slider-img:nth-child(2) { animation-delay: 5s; }
.hero-slider-img:nth-child(3) { animation-delay: 10s; }

/* Testimonials Marquee Slider */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); /* minus half the gap */ }
}
.animate-marquee {
  animation: marquee 35s linear infinite;
}
.animate-marquee:hover {
  animation-play-state: paused;
}
