:root {
  --primary: #0ea5e9;
  --primary-hover: #0284c7;
  --primary-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #020817;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #eaeceb;
  color: #020817;
  font-family: "Inter", sans-serif;
}

.nav-container {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
}

.nav-item {
  position: relative;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  transition: color 0.3s ease;
  color: rgba(2, 8, 23, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item:hover {
  color: var(--primary);
}

.nav-item.active {
  color: var(--primary);
}

/* The Lamp Effect Highlighter */
#lamp-highlighter {
  position: absolute;
  height: 100%;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 9999px;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.lamp-top {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 4px;
  background: var(--primary);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.lamp-glow-1 {
  position: absolute;
  width: 48px;
  height: 24px;
  background: rgba(14, 165, 233, 0.2);
  border-radius: 9999px;
  filter: blur(8px);
  top: -8px;
  left: -8px;
}

.lamp-glow-2 {
  position: absolute;
  width: 32px;
  height: 24px;
  background: rgba(14, 165, 233, 0.2);
  border-radius: 9999px;
  filter: blur(8px);
  top: -4px;
}

.lamp-glow-3 {
  position: absolute;
  width: 16px;
  height: 16px;
  background: rgba(14, 165, 233, 0.2);
  border-radius: 9999px;
  filter: blur(4px);
  top: 0;
  left: 8px;
}

/* Mobile Icon adjustments */
.nav-item .icon {
  display: none;
}

@media (max-width: 768px) {
  .nav-item span {
    display: none;
  }

  .nav-item .icon {
    display: inline-block;
  }

  .nav-item {
    padding: 0.5rem 1rem;
  }
}

/* Hero Section Styles */
.hero-section {
  padding: 6rem 1rem;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-outline {
  border: 1px solid var(--border);
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--muted);
}

.hero-stats {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* =========================================
   NEW Hero Section Styles
   ========================================= */

.hero-section-new {
  padding: 3rem 1rem 3rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container-new {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-badge {
  text-align: center;
  font-size: 0.875rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 500;
  background: white;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.hero-main-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-main-wrapper {
    grid-template-columns: 310px 1fr 310px;
    gap: 4rem;
  }
}

/* Feature Cards (Left Side) */
.hero-feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  order: 2;
  align-content: start;
}

@media (min-width: 1024px) {
  .hero-feature-cards {
    order: 1;
    grid-template-columns: 150px 150px;
    grid-template-rows: auto auto;
    gap: 1rem;
  }
}

/* Masonry-style 2-column layout */
.hero-feature-cards .feature-card:nth-child(1) {
  /* Made by an Envato Elite - Top right */
  grid-column: 2;
  grid-row: 1;
}

.hero-feature-cards .feature-card:nth-child(2) {
  /* Vite - Left side, spans 2 rows */
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
}

.hero-feature-cards .feature-card:nth-child(3) {
  /* Tailwind CSS - Bottom right */
  grid-column: 2;
  grid-row: 2;
}

.feature-card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  min-height: 175px;
  justify-content: space-between;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.feature-card-header {
  display: flex;
  align-items: center;
}

.feature-card-label {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
  font-weight: 500;
}

.feature-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center Content */
.hero-center-content {
  text-align: center;
  order: 1;
}

@media (min-width: 1024px) {
  .hero-center-content {
    order: 2;
  }
}

.hero-title-new {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1e293b;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-title-new {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title-new {
    font-size: 3rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-actions-new {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary-new {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary-new {
  background: #1e293b;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.3);
}

.btn-secondary-new:hover {
  background: #334155;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
}

/* Stats Cards (Right Side) */
.hero-stats-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  order: 3;
  align-content: start;
}

@media (min-width: 1024px) {
  .hero-stats-cards {
    grid-template-columns: 150px 150px;
    grid-auto-rows: 80px;
    gap: 1rem;
    align-items: start;
  }
}

/* Masonry-style layout for stats with staggered positioning */
.hero-stats-cards .stat-card:nth-child(1) {
  /* 40+ Prebuilt Websites - Top left */
  grid-column: 1;
  grid-row: 1 / span 2;
}

.hero-stats-cards .stat-card:nth-child(2) {
  /* 6500+ Total Sections - Right side, taller, starts lower */
  grid-column: 2;
  grid-row: 2 / span 3;
}

.hero-stats-cards .stat-card:nth-child(3) {
  /* 1900+ Total Pages - Bottom left */
  grid-column: 1;
  grid-row: 3 / span 2;
}

.hero-stats-cards .stat-card:nth-child(4) {
  /* 10+ Mega Menu - Bottom right, closer */
  grid-column: 2;
  grid-row: 4 / span 2;
}

.stat-card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  min-height: 175px;
  justify-content: space-between;
}

.stat-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.stat-card-label {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
  font-weight: 500;
}

.stat-card-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}

/* Floating Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-shape {
  position: absolute;
  animation: float 4s ease-in-out infinite;
  z-index: 0;
}

.delay-1 {
  animation-delay: 0.5s;
}

.delay-2 {
  animation-delay: 1s;
}

/* Image Collage */
.collage-container {
  position: relative;
  height: 400px;
  width: 100%;
}

@media (min-width: 640px) {
  .collage-container {
    height: 500px;
  }
}

.collage-card {
  position: absolute;
  background: var(--muted);
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.5s ease-out,
    opacity 0.5s ease-out;
}

.collage-card img {
  border-radius: 0.75rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-img-1 {
  width: 12rem;
  height: 12rem;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 10;
}

.collage-img-2 {
  width: 10rem;
  height: 10rem;
  right: 0;
  top: 33%;
  z-index: 5;
}

.collage-img-3 {
  width: 8rem;
  height: 8rem;
  bottom: 0;
  left: 0;
  z-index: 5;
}

@media (min-width: 640px) {
  .collage-img-1 {
    width: 16rem;
    height: 16rem;
  }

  .collage-img-2 {
    width: 14rem;
    height: 14rem;
  }

  .collage-img-3 {
    width: 12rem;
    height: 12rem;
  }
}

/* Entry Animations */
.hero-reveal {
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-intro {
  padding: 4rem 0 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.portfolio-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.portfolio-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.portfolio-heading .highlight-text {
  font-size: 8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0;
}

.portfolio-heading .sub-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: -0.02em;
  margin: 0;
}

@media (max-width: 768px) {
  .portfolio-intro {
    padding: 2rem 0 4rem;
  }

  .portfolio-heading .highlight-text {
    font-size: 5rem;
  }

  .portfolio-heading .sub-heading {
    font-size: 2rem;
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(40px, 40px);
  }
}

.animate-grid {
  animation: gridMove 20s linear infinite;
}

.portfolio-item-wrapper {
  padding: 0.5rem;
  width: 100%;
  height: 382.58px;
  border: 1px solid #d4d4d8;
  border-radius: 36px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Prevent shrinking in the grid */
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-item-wrapper:hover {
  transform: scale(1.01);
  border-color: #0ea5e9;
}

.portfolio-card {
  position: relative;
  cursor: pointer;
  background: white;
  border-radius: 1.5rem;
  padding: 0.5rem;
  /* p-2 */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  overflow: hidden;
  text-decoration: none;
  /* Ensure it looks like a card even if it's an 'a' tag */
}

.portfolio-card-image {
  position: relative;
  width: 100%;
  height: 286px;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #f1f5f9;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card-content {
  padding: 1rem 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.portfolio-card-trust {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  text-align: center;
}

.portfolio-card-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0.3;
  filter: grayscale(1);
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-card-logos {
  opacity: 0.6;
}

.portfolio-card-logos i {
  font-size: 1.5rem;
}

.portfolio-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding-top: 1rem;
}

.portfolio-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.02em;
}

.portfolio-card-badge {
  background: #bef264;
  color: #365314;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1.4rem;
  border-radius: 1rem;
  box-shadow: none;
}

/* Redefining existing neumorphic classes to not conflict or be replaced */
.neumorphic-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* =========================================
   Glowing Effect & Feature Grid
   ========================================= */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-item {
  position: relative;
  min-height: 14rem;
  list-style: none;
}

.glowing-card-border {
  position: relative;
  height: 100%;
  border-radius: 1.25rem;
  padding: 1px;
  /* Thinner border for cleaner look */
  background: transparent;
}

@media (min-width: 768px) {
  .glowing-card-border {
    border-radius: 1.5rem;
    padding: 1px;
  }
}

.glowing-card-content {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.5);
  background-color: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease;
}

.dark .glowing-card-content {
  background-color: #000;
  /* Pure black like in screenshot */
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.dark .glowing-card-content h3 {
  color: #fff;
}

.dark .glowing-card-content p,
.dark .glowing-card-content h2 {
  color: #94a3b8;
}

/* The Glowing Effect Container */
.glowing-effect {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  /* Hidden by default, script toggles opacity */
  transition: opacity 0.3s ease;
}

.glowing-effect.active {
  opacity: 1;
}

/* The actual glow line */
.glow-line {
  position: absolute;
  inset: calc(-1 * var(--glowingeffect-border-width));
  border-radius: inherit;
  border: var(--glowingeffect-border-width) solid transparent;
  background: var(--gradient);
  background-attachment: fixed;
  opacity: var(--active);
  transition: opacity 0.3s;

  /* Masking magic */
  -webkit-mask-clip: padding-box, border-box;
  mask-clip: padding-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: intersect;
  /* Use intersect for standard */

  -webkit-mask-image:
    linear-gradient(#0000, #0000),
    conic-gradient(from calc((var(--start) - var(--spread)) * 1deg),
      transparent 0deg,
      #fff,
      transparent calc(var(--spread) * 2deg));

  mask-image:
    linear-gradient(#0000, #0000),
    conic-gradient(from calc((var(--start) - var(--spread)) * 1deg),
      transparent 0deg,
      #fff,
      transparent calc(var(--spread) * 2deg));
}

.carousel-section {
  padding: 0;
  overflow: hidden;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.rfm-marquee-container {
  display: flex;
  flex-direction: row;
  position: relative;
  width: var(--width);
  transform: var(--transform);
}

.rfm-marquee {
  flex: 0 0 auto;
  min-width: var(--min-width);
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
  animation-play-state: var(--play);
  animation-delay: var(--delay);
  animation-direction: var(--direction);
}

/* Removed pause on hover to maintain continuous motion as requested */

.rfm-child {
  transform: var(--transform);
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.carousel-item-saas {
  border-radius: 1.5rem;
  overflow: hidden;
  flex-shrink: 0;
  height: 580px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .carousel-item-saas {
    height: 350px;
  }
}

.marquee-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 450px;
  /* Increased to match taller images */
  background: linear-gradient(180deg, rgba(234, 236, 235, 0) 0%, #eaeceb 85%);
  pointer-events: none;
  z-index: 2;
}

.gallery-card {
  position: relative;
  height: 350px;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--muted);
  border: 1px solid var(--border);
  text-decoration: none;
  display: block;
}

.gallery-image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  transition: height 0.5s ease;
}

.gallery-card:hover .gallery-image-wrapper {
  height: 50%;
}

.gallery-image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-card:hover .gallery-content {
  opacity: 1;
  transform: translateY(0);
}

.gallery-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.gallery-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition:
    transform 0.5s ease,
    background 0.2s;
  background: white;
}

.gallery-card:hover .gallery-arrow {
  transform: rotate(-45deg);
}

/* =========================================
   Animated Testimonials Columns
   ========================================= */

.testimonial-column {
  position: relative;
  overflow: hidden;
}

.testimonial-scroll {
  display: flex;
  flex-direction: column;
  /* Animation controlled by JavaScript based on scroll */
  transition: transform 0.1s linear;
}

/* =========================================
   Utility Classes for Inline Styles
   ========================================= */

/* Transition Delays */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

/* Min Heights */
.min-h-900 {
  min-height: 900px;
}

/* Mask Gradients */
.mask-gradient-vertical {
  mask-image: linear-gradient(to bottom,
      transparent,
      black 25%,
      black 75%,
      transparent);
  -webkit-mask-image: linear-gradient(to bottom,
      transparent,
      black 25%,
      black 75%,
      transparent);
}

/* Marquee Animation Classes */
.marquee-visible {
  opacity: 1;
  filter: blur(0px);
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0px);
}

.marquee-container {
  --pause-on-hover: running;
  --pause-on-click: running;
  --width: 100%;
  --transform: none;
}

.marquee-animation {
  --play: running;
  --direction: normal;
  --duration: 80s;
  --delay: 0s;
  --iteration-count: infinite;
  --min-width: auto;
  --pause-on-hover: running;
}

.marquee-child {
  --transform: none;
}