/* Go2290 Custom Stylesheet */

body {
  /* font-family: 'Poppins', sans-serif; */
  color: #333;
  background-color: #fff;
  background-image: none;
  background-size: auto;
}

.text-primary {
  color: #8000ff !important;
}

/* Navigation */
.navbar {
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
  background-image: url('../img/truck-hero.webp');
  z-index: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: rgba(50, 0, 100, 0.8);
}
.hero:before {
  background-color: rgba(50, 0, 100, 0.8);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.hero h1 {
  font-size: 4rem;
  padding-top: 4rem;
}
.hero h2 {
  font-size: 2rem;
  padding-top: 4rem;
}
.hero a i.ion-chevron-right {
  padding-left: 5px;
}
.hero .requirements h5 {
  font-size: 1.5rem;
  padding-bottom: 1rem;
}
.hero .requirements-container {
  padding: 3rem 1rem;
}
.hero .requirements-item {
  border: 1px solid #e9ecef !important;
}
.hero p {
  font-size: 1.25rem;
}
.hero i.requirements {
  color: #ffd814;
  font-size: 4rem;
}
.hero-lower {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid #e9ecef;
}
.hero-lower a {
  color: #ffd814;
}
/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

/* Feature Boxes */
.feature-box {
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.feature-box:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* Steps */
.step-box {
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.step-box:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* Pricing */
.pricing-card {
  border-radius: 12px;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

/* Buttons */
.btn-primary {
  background-color: #ffd814;
  border-color: #ffd814;
  border-radius: 30px;
  color: #0c1117;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #ffc414;
  border-color: #ffc414;
  color: #0c1117;
}

.btn-light {
  border-radius: 30px;
  font-weight: 500;
}

/* Footer */
footer {
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
}
