:root {
  --primary: #d21a26;
  --secondary: #e88834;
}

.ind-hero {
  position: relative;
  background: url("") center/cover;
  /* YOU WILL PUT YOUR BANNER IMAGE HERE */
  color: #fff;
}

.ind-hero:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(210, 26, 38, 0.85),
    rgba(0, 0, 0, 0.8)
  );
}
/* Mobile only */
@media (max-width: 767px) {
  .ind-hero {
    margin-top: 60px;
  }
}
.title-bar {
  border-left: 5px solid var(--primary);
  padding-left: 10px;
  text-transform: uppercase;
}

.product-img {
  border: 4px solid #f1f1f1;
  border-radius: 10px;
}

.feature-box {
  border-left: 4px solid var(--primary);
  background: #fafafa;
  transition: 0.3s;
}

.feature-box:hover {
  background: #fff0f1;
}

.range-strip {
  background: linear-gradient(45deg, var(--primary), #7a0f16);
  color: white;
}

.feature-box {
  border-left: 4px solid var(--primary);
  background: #fafafa;
  transition: 0.3s;
  font-weight: 500;
}

.feature-box i {
  color: #d21a26;
  /* Your primary red */
}

.feature-box:hover {
  background: #fff0f1;
  transform: scale(1.02);
}

.title-bar {
  border-left: 5px solid #d21a26;
  padding-left: 10px;
  text-transform: uppercase;
}

/* ADVANTAGE CARDS */

.adv-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.adv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Icon Circle */

.adv-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 28px;
  color: #fff;

  background: linear-gradient(45deg, #d21a26, #e88834);
}

/* Bottom Color Bar Effect */

.adv-card:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background: #d21a26;
  transition: 0.3s;
}

.adv-card:hover:after {
  width: 100%;
}

/* BRAND FAQ STYLING */

.brand-faq .accordion-item {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}

.brand-faq .accordion-button {
  border-left: 5px solid #d21a26;
  font-weight: 600;
  color: #000;
  background: #fafafa;
  transition: 0.3s;
}

.brand-faq .accordion-button i {
  color: #d21a26;
}

.brand-faq .accordion-button:not(.collapsed) {
  background: #fff0f1;
  color: #000;
}

.brand-faq .accordion-button:focus {
  box-shadow: none;
}

.brand-faq .accordion-body {
  border-left: 5px solid #e88834;
  background: #fff;
}

.brand-faq .accordion-item:hover .accordion-button {
  background: #fff0f1;
}
