/* Sticky site header */
.header-area.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.header-area.header-sticky .header-bottom-2 {
  background-color: #fff;
  max-height: 200px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out, margin 0.3s ease-in-out;
}

/* When scrolled down, collapse the logo section on desktop so only menu is sticky */
@media (min-width: 992px) {
  .header-area.header-sticky.sticky-nav .header-bottom-2 {
    max-height: 0 !important;
    opacity: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    pointer-events: none;
  }
}

.header-area.header-sticky .header-top-2 {
  background-color: #e5f4d9;
}

.header-area.header-sticky .main-menu-wrap-2 .main-menu ul li ul.sub-menu {
  z-index: 1001;
}

/* Infinite Ticker at absolute bottom */
body {
  padding-bottom: 40px;
}

.ticker-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: 40px;
  background: linear-gradient(90deg, #1b5e20 0%, #2e7d32 50%, #1b5e20 100%);
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  border-top: 2px solid #fba622;
  padding-right: 40px;
}

.ticker-container {
  display: flex;
  width: 100%;
}

.ticker-track {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
  align-items: center;
  animation: ticker-animation-track 35s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  padding: 0 25px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ticker-track span i {
  color: #fba622;
  margin-right: 8px;
  font-size: 14px;
}

.ticker-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
  line-height: 1;
}

.ticker-close:hover {
  background: #fba622;
  color: #1b5e20;
}

@keyframes ticker-animation-track {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.hover-zoom {
  transition: transform 0.3s ease-in-out;
}

.hover-zoom:hover {
  transform: scale(1.05);
}

@keyframes arrow-dash {
  to {
    stroke-dashoffset: -50;
  }
}

.animated-arrow-path {
  stroke-dasharray: 12, 18;
  animation: arrow-dash 2s linear infinite;
}

.process-section-bg {
  background-color: #fbfbfb;
  background-image: radial-gradient(rgba(208, 90, 63, 0.16) 3px, transparent 3px);
  background-size: 32px 32px;
}
