/* =========================================
   Global Theme & Variables
   ========================================= */
:root {
  /* Professional theme based on logo - deep navy and gold accents */
  --primary: #1a365d;
  --secondary: #2c5282;
  --accent: #3182ce;
  --text: #1a202c;
  --bg: #ffffff;
  --light-bg: #f7fafc;
  --border: #cbd5e0;
  --yellow: #d69e2e;
  --yellow-dark: #b7791f;
  --gold: #d69e2e;
  --gold-light: #f6e05e;
  --navy: #1a365d;
  --navy-dark: #0f2027;
  --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.15);
  --shadow-md: 0 4px 16px rgba(26, 54, 93, 0.2);
  --shadow-lg: 0 8px 32px rgba(26, 54, 93, 0.25);
  /* Legacy red variables for compatibility */
  --red: #dc2626;
  --red-dark: #b91c1c;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 8px 14px;
  z-index: 1000;
  border-radius: 4px;
  text-decoration: none;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
}

/* =========================================
   Global Reset & Base
   ========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a:focus,
button:focus,
[tabindex]:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* =========================================
   Layout Container
   ========================================= */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* =========================================
   Header & Navigation
   ========================================= */
.site-header {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--secondary) 50%,
    var(--navy-dark) 100%
  );
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--gold);
  width: 100%;
  overflow: visible;
  max-width: 100vw;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  position: relative;
  z-index: 1;
  gap: 15px;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 50px;
  position: relative;
  flex-shrink: 1;
  min-width: 0;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  display: block;
  flex-shrink: 0;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(214, 158, 46, 0.5);
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: all 0.3s;
  padding: 10px 18px;
  border-radius: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 70%;
}

.nav a:hover {
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   Hero Section
   ========================================= */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 999px;
  outline: none;
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 5px;
}

.nav-toggle-bar:nth-child(1),
.nav-toggle-bar:nth-child(3) {
  transform-origin: center center;
}

/* Animate hamburger into an X when nav is open */
.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  background-image: url("images/background_image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 260px;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  color: #ffffff;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 18px;
  color: #e2e8f0;
  margin: 0 0 32px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 40px;
  line-height: 1.08;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   Categories / Products Section
   ========================================= */
.categories-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 100%);
  position: relative;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 3px solid var(--border);
  position: relative;
}

.category-tab {
  text-decoration: none;
  padding: 18px 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-bottom: 4px solid transparent;
  margin-bottom: -33px;
  position: relative;
}

.category-tab h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.category-tab::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transition: transform 0.4s ease;
  border-radius: 2px;
}

.category-tab.active::before,
.category-tab:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.category-tab.active h2 {
  color: var(--primary);
  transform: scale(1.05);
}

.category-tab:hover h2 {
  color: var(--navy-dark);
}

.category-content {
  min-height: 500px;
}

.category-intro {
  text-align: center;
  color: #666;
  font-size: 18px;
  font-weight: 400;
}

.category-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* =========================================
   Mission Section
   ========================================= */
.mission-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
  position: relative;
}

.mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mission-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
  font-weight: 400;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy-dark) 100%);
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  font-size: 15px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary) 100%);
}

.btn:active {
  transform: translateY(-1px);
}

.primary-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--yellow-dark) 100%);
  color: #1a202c;
}

.primary-btn:hover {
  background: linear-gradient(135deg, var(--yellow-dark) 0%, var(--gold) 100%);
}

.ghost-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: none;
  color: #ffffff;
}

.ghost-btn:hover {
  background: rgba(0, 0, 0, 0.25);
  box-shadow: var(--shadow-md);
}

/* =========================================
   Retail & Wholesale Timeline
   ========================================= */
.timeline-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 100%);
  text-align: center;
  position: relative;
}

.timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 70px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.timeline-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.timeline-item:hover::before {
  transform: scaleX(1);
}

.timeline-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.timeline-year {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.timeline-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0;
  font-weight: 400;
}

/* =========================================
   Brands Carousel
   ========================================= */
.brands-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
  position: relative;
}

.brands-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.brands-carousel-container {
  overflow: hidden;
  margin-top: 60px;
  position: relative;
  padding: 40px 0;
  width: 100%;
}

.brands-carousel {
  display: flex;
  gap: 40px;
  align-items: center;
  will-change: transform;
  width: fit-content;
  animation: scrollBrands 30s linear infinite;
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-logo {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.brand-logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =========================================
   Product Cards
   ========================================= */
.product-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  border: 2px solid transparent;
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

/* =========================================
   Where to Find Us
   ========================================= */
.where-to-find {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
  text-align: center;
  position: relative;
}

.where-to-find::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.where-to-find h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin: 25px 0;
  letter-spacing: 1px;
}

.availability {
  font-size: 24px;
  font-weight: 800;
  color: white;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--red-dark) 50%,
    var(--yellow) 100%
  );
  padding: 15px 40px;
  display: inline-block;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
  box-shadow: var(--shadow-md);
  margin-top: 20px;
  transition: all 0.3s;
}

.availability:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--secondary) 50%,
    var(--navy-dark) 100%
  );
  color: #fff;
  padding: 80px 0 30px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 1px;
}

.footer-column p {
  color: #ccc;
  line-height: 1.9;
  margin-bottom: 15px;
  font-weight: 400;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-column a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  margin: 0;
  font-size: 14px;
}

/* =========================================
   Utility Text & Status Messages
   ========================================= */
.status-message {
  text-align: center;
  color: #666;
  font-size: 18px;
  padding: 60px 0;
  font-weight: 400;
}

/* =========================================
   Back to Top Button
   ========================================= */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy-dark) 100%);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  z-index: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary) 100%);
}

/* =========================================
   Responsive Breakpoints
   ========================================= */

@media (prefers-reduced-motion: reduce) {
  .brands-carousel {
    animation: none;
    transform: none;
  }

  .hero-title,
  .hero-content,
  .timeline-item,
  .product-card,
  .brand-logo {
    animation: none;
    transition: none;
  }
}

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* Show nav when nav-open is set on .site-header (tablet & mobile) */
  .site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 12px 20px 16px;
    background: linear-gradient(
      135deg,
      var(--navy) 0%,
      var(--secondary) 50%,
      var(--navy-dark) 100%
    );
    box-shadow: var(--shadow-md);
    gap: 4px;
  }

  .site-header.nav-open .nav a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .section-title {
    font-size: 42px;
  }
}

/* Tablets & Large Mobiles */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
    background-attachment: scroll; /* override fixed on mobile to avoid blur */
    background-position: center top;
    background-size: cover;
  }

  .hero-title {
    font-size: 42px;
    letter-spacing: 1px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .category-tabs {
    flex-direction: column;
    gap: 10px;
    border-bottom: none;
  }

  .category-tab {
    margin-bottom: 0;
    border-bottom: none;
    border-left: 4px solid transparent;
    padding-left: 25px;
    padding-right: 25px;
  }

  .category-tab::before {
    display: none;
  }

  .category-tab.active,
  .category-tab:hover {
    border-left-color: var(--primary);
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 36px;
  }

  .mission-content h2 {
    font-size: 38px;
  }

  .mission-section,
  .timeline-section,
  .brands-section,
  .where-to-find,
  .site-footer {
    padding-top: 80px;
    padding-bottom: 70px;
  }

  .categories-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .category-tabs {
    margin-bottom: 40px;
    padding-bottom: 10px;
  }

  .category-products-grid {
    gap: 24px;
    margin-top: 30px;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
    margin-bottom: 28px;
  }

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

  .category-products-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 15px 30px;
    font-size: 14px;
  }

  .brand-logo {
    width: 140px;
    height: 90px;
  }

  .brands-carousel {
    animation-duration: 20s;
  }

  .timeline-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0;
    font-weight: 400;
  }
}
