
/* Menu end */

/* Background image on parent wrapper */
.hero-wrapper {
  background: url("/assets/img/warehouse-banner-bg-new.png") no-repeat center
    center;
  background-size: cover;
  color: white;
  overflow: hidden;
}

.hero-section {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding-top: 50px;
  padding-bottom: 50px;
  justify-content: center;
  position: relative;
}
/* Common style for decorative images */
.hero-decor {
  position: absolute;
  z-index: 1; /* behind text but above background */
  max-width: 150px; /* control size */
  height: auto;
  opacity: 0.85; /* slightly transparent for subtle look */
}

/* Top-left image */
.hero-decor-left {
  top: 20px;
  /* left: 20px; */
}

/* Bottom-right image */
.hero-decor-right {
  bottom: 20px;
  right: 0px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-decor {
    max-width: 100px;
    opacity: 0.6; /* lighter for mobile */
  }
}
.hero-content {
  position: relative;
  z-index: 1; /* above overlay */
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
}

/* Banner section start */
.gradient-btn:not(:hover) {
  animation: zoomOut 0.6s forwards;
}
.gradient-btn:hover {
  animation: zoomIn 0.6s forwards;
  box-shadow: 0 25px 50px -12px rgb(34 197 94 / 25%);
}
.gradient-btn {
  background: linear-gradient(90deg, rgb(22 163 74), #059669);
  color: #fff !important;
  padding: 20px 40px !important;
  border-radius: 12px;
  font-weight: 700 !important;
  text-decoration: none;
  transform: scale(1);
}
.gradient-btn:hover {
  animation: zoomIn 0.6s forwards;
  box-shadow: 0 25px 50px -12px rgb(34 197 94 / 25%);
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes zoomOut {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
/* Hero wrapper with diagonal line pattern */
.time-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  padding: 80px 0;
  background:
    radial-gradient(
      120% 140% at 10% 0%,
      rgba(38, 180, 130, 0.25),
      rgba(11, 24, 20, 0.96) 50%
    ),
    repeating-linear-gradient(
      160deg,
      rgba(46, 240, 165, 0.12) 0 2px,
      rgba(0, 0, 0, 0) 2px 20px
    ),
    linear-gradient(180deg, #081510, var(--bg-dark) 60%, #0a1a15);
}
.time-hero .container {
  max-width: 980px;
}

/* Outlined pill at top */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 2px solid #15a24b;
  background: unset;
  backdrop-filter: blur(2px);
  font-weight: 700;
  color: #079766;
}

/* Gradient headline */
.hero-title {
  font-weight: 400;
  line-height: 1.15;
  margin: 18px 0 10px;
  letter-spacing: 0.3px;
}
.gradient-green {
  background: linear-gradient(90deg, #3d952e, #48b914, #0b927a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* sub title */
.hero-sub-title {
  color: #0c3426;
  font-weight: 600 !important;
}
/* Subhead */
.hero-sub {
  color: #099863;
  max-width: 860px;
  margin: 0 auto 18px;
}

/* CTA */
.btn-cta {
  background: var(--cta);
  border: none;
  color: #062015;
  font-weight: 800;
  padding: 0.9rem 1.3rem;
  border-radius: 0.75rem;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.25),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}
.btn-cta:active {
  transform: translateY(0);
}

/* Typographic scaling */
@media (min-width: 992px) {
  .hero-title {
    font-size: 60px;
  }
}
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-cta {
    transition: none;
  }
}

/* Banner section end */

/* bm help start */

/* Unique Namespace: bm-help */
.bm-help-section {
  background: linear-gradient(180deg, #ffffff 50%, #f4fffa 100%);
}

.bm-help-title {
  font-weight: 700;
  font-size: 2rem;
  color: #0c3426 !important;
}

.bm-help-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e4f7ee;
}

.bm-help-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: #1a6b3a;
}

/* ICON styles */
.bm-help-icon {
  font-size: 2.5rem;
  color: #1a6b3a;
  margin-bottom: 15px;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}
.bm-help-icon img {
  width: 80px;
  height: fit-content;
  min-height: 100%;
}
.bm-help-box:hover .bm-help-icon {
  transform: scale(1.05) rotate(5deg);
  color: #00c176;
}

/* Heading + Text */
.bm-help-heading {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #0d503d;
}

.bm-help-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* bm help end */

/* bm planner start */

/* Section Background */
.bm-planner-section {
  background: #e8f1ff; /* light blue for contrast */
}

/* Title */
.bm-planner-title {
  font-weight: 700;
  font-size: 2rem;
  color: #0c3426 !important;
}

/* Card Style */
.bm-planner-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: bm-fadeup 0.8s forwards;
}

/* Staggered animation delays */
.bm-planner-card:nth-child(1) {
  animation-delay: 0.2s;
}
.bm-planner-card:nth-child(2) {
  animation-delay: 0.4s;
}
.bm-planner-card:nth-child(3) {
  animation-delay: 0.6s;
}

/* Hover effect (zoom-glow) */
.bm-planner-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 65, 150, 0.15);
}

/* Icon */
.bm-planner-icon {
  font-size: 3rem;
  color: #2b73d6;
  background: #e8f1ff;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  transition:
    transform 0.4s ease,
    background 0.4s ease;
}
.bm-planner-icon img {
  width: 40px;
}
/* Pulse + color change on hover */
.bm-planner-card:hover .bm-planner-icon {
  transform: scale(1.15);
  background: #2b73d6;
  color: #fff;
  animation: bm-pulse 1.2s infinite;
}

.bm-planner-card:hover .bm-planner-icon img {
  filter: brightness(0) invert(1);
}
/* Headings & Text */
.bm-planner-heading {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0d3650;
}

.bm-planner-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Animations */
@keyframes bm-fadeup {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bm-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* bm planner end */

/* bm forecast section start */

/* Section Background */
.bm-forecast-section {
  background: #fff;
}

/* Title */
.bm-forecast-title {
  font-weight: 700;
  font-size: 2rem;
  color: #0c3426 !important;
}

/* Block Layout */
.bm-forecast-block {
  opacity: 0;
  transform: translateX(-40px);
  animation: bm-slidein 0.8s forwards;
}
.bm-forecast-block:nth-child(2) {
  animation-delay: 0.2s;
}
.bm-forecast-block:nth-child(3) {
  animation-delay: 0.4s;
}
.bm-forecast-block:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes bm-slidein {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Left Heading */
.bm-forecast-heading {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* Data Card */
/* Forecast Card container */
.bm-forecast-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Mini statistic box (left ones) */
.bm-forecast-mini {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  flex: 0 0 auto;
  justify-content: space-between;
}
.bm-forecast-mini .text-success {
  color: #12843b !important;
  gap: 10px;
}
.bm-forecast-mini h4 {
  font-size: 20px !important;
}
.bm-forecast-mini small {
  color: #878787;
  font-size: 15px;
  font-weight: 600;
}
.bm-forecast-mini small .small {
  font-weight: normal !important;
}
.bm-forecast-mini-2 {
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Small icon on top */
.bm-mini-icon {
  font-size: 14px !important;
  /* width: 40px; */
  /* height: 40px; */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.bm-mini-icon img {
  width: 40px;
  border-radius: 10px;
  padding: 10px;
}
.bm-mini-icon.text-success img {
  background-color: #f0fdf4;
}
.bm-mini-icon.text-primary img {
  background-color: #b5e9ff;
}
/* Right side distribution column */
.bm-forecast-distribution {
  background: #f9fafc;
  border-radius: 10px;
  padding: 20px;
  flex: 1;
  justify-content: space-around;
}
.bm-forecast-distribution img {
  width: 15px;
}
.bm-forecast-distribution .small {
  font-size: 14px;
  font-weight: normal;
}
.bm-forecast-distribution.two {
  background-color: unset;
  padding-top: 0px;
  padding-bottom: 0px;
}
.bm-forecast-distribution.two .bg-success {
  background-color: #f0fdf4 !important;
  color: #0c3426 !important;
}
.bm-forecast-distribution.two .bg-success .text-success {
  color: #2dc467 !important;
}
.bm-forecast-distribution.two .bg-warning {
  background-color: #fefbe8 !important;
  color: #6f620e !important;
}
.bm-forecast-distribution.two .bg-warning .text-warning {
  background-color: #fefbe8 !important;
  color: #988e4b !important;
}
.bm-forecast-distribution.two .bg-light {
  background-color: #f9fafc !important;
}
.bm-forecast-distribution .p-2 {
  font-size: 14px !important;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.bm-forecast-distribution.three {
  background-color: unset;
  padding-top: 0px;
  padding-bottom: 0px;
}
.text-success.small {
  color: #12843b;
  font-weight: normal;
}
.bm-forecast-bar {
  font-size: 14px !important;
  margin-bottom: 8px;
}

.bm-forecast-bar .progress {
  height: 6px;
  border-radius: 6px;
  background-color: #f0f0f0;
}

.bm-forecast-bar .progress-bar {
  border-radius: 6px;
}

/* bm forecast section end */

/* bm adapts start */
.bm-adapts-section {
  background: #f9fcff;
  overflow: hidden;
}

.bm-adapts-title {
  font-weight: 700;
  /* font-size: 2rem; */
  color: #0c3426;
  text-align: center;
}

.bm-adapts-item h6 {
  font-size: 18px;
  margin-bottom: 4px;
  /* color: #0d503d; */
}

.bm-adapts-item p {
  font-size: 18px;
  /* color: #555; */
}

/* Simple fade-in animation for list items */
.bm-adapts-item {
  opacity: 0;
  transform: translateX(-20px);
  animation: adapt-fadein 0.7s forwards;
}
.bm-adapts-item:nth-child(1) {
  animation-delay: 0.2s;
}
.bm-adapts-item:nth-child(2) {
  animation-delay: 0.4s;
}
.bm-adapts-item:nth-child(3) {
  animation-delay: 0.6s;
}
.bm-adapts-item:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes adapt-fadein {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Right side illustration subtle hover effect */
.bm-adapts-img {
  max-width: 90%;
  transition: transform 0.4s ease;
}
.bm-adapts-img:hover {
  transform: scale(1.03) rotate(-1deg);
}
/* bm adapts end */

/* Cta start */

.quick-demo-cta {
  background: #fff;
}
.cta-title {
  font-weight: 800;
  color: #022213; /* dark green-ish like your theme */
  letter-spacing: 0.2px;
  margin-bottom: 60px !important;
}

/* black CTA button */
.btn-cta-black {
  display: inline-block;
  background: #000000;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  padding: 20px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.btn-cta-black:hover {
  background: #151515;
  transform: translateY(-2px) !important;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 -2px 0 rgba(255, 255, 255, 0.08);
  color: #d3d3d3;
}
.btn-cta-black:active {
  transform: translateY(0);
}
.btn-cta-black:focus-visible {
  outline: 3px solid #7bf2a1;
  outline-offset: 2px;
}
/* Cta end */

/* Footer section */

/* Footer section */
