
/* From Uiverse.io by catraco */
.container2 {
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    -45deg,
    #ffa500 0,
    transparent 30px,
    #ff4500 30px,
    transparent 60px,
    orange 120px,
    transparent 240px
  );
  background-color: orange;
}

.container3 {
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    -45deg,
    #3535359f 0,
    transparent 30px,
    #ff4500 30px,
    transparent 60px,
    #3535359f 120px,
    transparent 240px
  );
  background-color: #353535c4;
}

.container4 {
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    -45deg,
    #3535359f 0,
    transparent 30px,
    #a5761c 30px,
    transparent 60px,
    #3535359f 120px,
    transparent 240px
  );
  background-color: #353535c4;
}

.card {
    border-radius: 30px;
    background: #ffa500;
    box-shadow: 15px 15px 30px #976302d4,
                -15px -15px 30px #842401;
}

.card2 {
    border-radius: 30px;
    background: #232222a7;
    box-shadow: 15px 15px 30px #976302d4,
                -15px -15px 30px #842401;
}

.card3 {
    border-radius: 25px;
    background: #232222a7;
    /* box-shadow: 10px 10px 20px #976302d4,
                -10px -10px 20px #842401; */
}

.card4 {
    border-radius: 25px;
    background: #232222a7;
    box-shadow: 15px 15px 30px #976302d4,
                -15px -15px 30px #842401;
}

body.overflow-hidden {
    overflow: hidden;
}

.disabled-link {
    pointer-events: none;
    opacity: 0.5;
}

.reveal {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.7s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.7s ease;
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* seamless marquee */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: flex;
  flex-wrap: nowrap;         /* no wrapping */
  width: max-content;        /* shrink‐to‐fit all 8 cards */
  animation: marquee 100s linear infinite;
}



/* ////////////////-------------------------New css for ads template---------------------------/////////////////////////// */
/* @import "tailwindcss";
@import "tw-animate-css"; */

@custom-variant dark (&:is(.dark *));

:root {
  --background: #ffffff;
  --foreground: #4b5563;
  --card: #f9fafb;
  --card-foreground: #4b5563;
  --popover: #ffffff;
  --popover-foreground: #4b5563;
  --primary: #0891b2;
  --primary-foreground: #ffffff;
  --secondary: #84cc16;
  --secondary-foreground: #ffffff;
  --muted: #f9fafb;
  --muted-foreground: #4b5563;
  --accent: #84cc16;
  --accent-foreground: #4b5563;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #e5e7eb;
  --input: #f9fafb;
  --ring: rgba(8, 145, 178, 0.5);
  --chart-1: #0891b2;
  --chart-2: #84cc16;
  --chart-3: #4b5563;
  --chart-4: #f9fafb;
  --chart-5: #ffffff;
  --radius: 0.5rem;
  --sidebar: #f9fafb;
  --sidebar-foreground: #4b5563;
  --sidebar-primary: #ffffff;
  --sidebar-primary-foreground: #4b5563;
  --sidebar-accent: #84cc16;
  --sidebar-accent-foreground: #ffffff;
  --sidebar-border: #e5e7eb;
  --sidebar-ring: rgba(8, 145, 178, 0.5);
}

.dark {
  --background: #1f2937;
  --foreground: #f9fafb;
  --card: #374151;
  --card-foreground: #f9fafb;
  --popover: #1f2937;
  --popover-foreground: #f9fafb;
  --primary: #0891b2;
  --primary-foreground: #ffffff;
  --secondary: #84cc16;
  --secondary-foreground: #ffffff;
  --muted: #374151;
  --muted-foreground: #9ca3af;
  --accent: #84cc16;
  --accent-foreground: #1f2937;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #4b5563;
  --input: #374151;
  --ring: rgba(8, 145, 178, 0.5);
  --chart-1: #0891b2;
  --chart-2: #84cc16;
  --chart-3: #9ca3af;
  --chart-4: #374151;
  --chart-5: #1f2937;
  --sidebar: #374151;
  --sidebar-foreground: #f9fafb;
  --sidebar-primary: #1f2937;
  --sidebar-primary-foreground: #f9fafb;
  --sidebar-accent: #84cc16;
  --sidebar-accent-foreground: #1f2937;
  --sidebar-border: #4b5563;
  --sidebar-ring: rgba(8, 145, 178, 0.5);
}

@theme inline {
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);
}

@layer base {
  * {
    @apply border-border outline-ring/50;
  }
  body {
    @apply bg-background text-foreground;
  }
}

/* Custom animations for smooth product showcase */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.slide-animation {
  animation: slideLeft 20s linear infinite;
}

.slide-animation:hover {
  animation-play-state: paused;
}

/* Hero carousel fade transition */
@keyframes fadeInOut {
  0%,
  20% {
    opacity: 1;
  }
  25%,
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero-slide {
  animation: fadeInOut 4s ease-in-out infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 1.33s;
}

.hero-slide:nth-child(3) {
  animation-delay: 2.66s;
}


