/* styles.css */
.navbar {
    background-color: #0000003b; /* Black */
    padding: 1rem;
}

.navbar-brand {
    color: #FF0000; /* Red */
    font-weight: bold;
}

.nav-link {
    color: #fff;
    transition: color 0.2s ease-in-out;
}

.nav-link:hover {
    color: #008000; /* Green */
}

.hero {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    z-index: 1;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 24px;
}

.btn {
    border-radius: 0;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.btn-loadhub {
    background-color: #FF0000; /* Red */
    color: #fff;
    border: none;
}

.btn-loadhub:hover {
    background-color: #B30000; /* Darker Red */
}

.btn-truck-trailer {
    background-color: #008000; /* Green */
    color: #fff;
    border: none;
}

.btn-truck-trailer:hover {
    background-color: #004000; /* Darker Green */
}

.btn-yellow-machines {
    background-color: #FFFF00; /* Yellow */
    color: #000;
    border: none;
}

.btn-yellow-machines:hover {
    background-color: #B3B300; /* Darker Yellow */
}

.btn-agricmech {
    background-color: #0000FF; /* Blue */
    color: #fff;
    border: none;
}

.btn-agricmech:hover {
    background-color: #0000B3; /* Darker Blue */
}

.btn-mobile-workshop {
    background-color: #FFA07A; /* Light Orange */
    color: #000;
    border: none;
}

.btn-mobile-workshop:hover {
    background-color: #FF9900; /* Darker Orange */
}

.btn-equipsales {
    background-color: #800080; /* Purple */
    color: #fff;
    border: none;
}

.btn-equipsales:hover {
    background-color: #4B0082; /* Darker Purple */
}

/* styles.css */
.about {
    padding: 50px 0;
    background-color: #f7f7f7;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  }


  .about.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about h2 {
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .about p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .about ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .about li {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .about img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }

  /* styles.css */
  .departments {
    padding: 50px 0;
    background-image: url('../img/carousel-2.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    color: #fff;
  }
  
  .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 50px 0;
  }
  
  .department-btn {
    display: block;
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.2s ease-in-out;
  }
  
  .department-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  
  .department-btn i {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .department-btn h3 {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .department-btn p {
    font-size: 16px;
  }
  
  .btn-loadhub {
    background-color: #FF0000; /* Red */
  }
  
  .btn-truck-trailer {
    background-color: #008000; /* Green */
  }
  
  .btn-yellow-machines {
    background-color: #FFFF00; /* Yellow */
    color: #000;
  }
  
  .btn-agricmech {
    background-color: #0000FF; /* Blue */
  }
  
  .btn-mobile-workshop {
    background-color: #FFA07A; /* Light Orange */
    color: #000;
  }
  
  .btn-equipsales {
    background-color: #800080; /* Purple */
  }




  .how-it-works {
  padding: 50px 0;
  background-color: #f7f7f7;
}

.how-it-works h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

.how-it-works h3 {
  font-weight: bold;
  margin-bottom: 20px;
}

.step {
  margin-bottom: 20px;
  transition: transform 0.2s ease-in-out;
}

.step:hover {
  transform: scale(1.1);
}

.step i {
  font-size: 36px;
  margin-bottom: 10px;
  color: #008000; /* Green */
  transition: color 0.2s ease-in-out;
}

.step:hover i {
  color: #006400; /* Darker Green */
}

.step h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.step p {
  font-size: 16px;
  color: #666;
}

.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__delay-1s {
  animation-delay: 1s;
}

.animate__delay-2s {
  animation-delay: 2s;
}

.animate__delay-3s {
  animation-delay: 3s;
}

.animate__delay-4s {
  animation-delay: 4s;
}

.cta {
    padding: 50px 0;
    background-color: #f7f7f7;
    text-align: center;
  }
  
  .cta h2 {
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    margin-bottom: 20px;
  }
  
  .cta-buttons .btn {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
  }
  
  .cta-buttons .btn-primary {
    background-color: #008000; /* Green */
    border: none;
  }
  
  .cta-buttons .btn-primary:hover {
    background-color: #006400; /* Darker Green */
  }
  
  .cta-buttons .btn-secondary {
    background-color: #fff;
    border: 1px solid #008000; /* Green */
    color: #008000; /* Green */
  }
  
  .cta-buttons .btn-secondary:hover {
    background-color: #f7f7f7;
  }

  .modal-content {
    padding: 20px;
  }
  
  .modal-body form {
    margin-bottom: 20px;
  }
  
  .modal-body .form-group {
    margin-bottom: 20px;
  }
  
  .modal-body label {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .modal-body input[type="text"], .modal-body input[type="email"], .modal-body input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .modal-body button[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #008000; /* Green */
    color: #fff;
  }
  
  .modal-body button[type="submit"]:hover {
    background-color: #006400; /* Darker Green */
  }

  .footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
  }
  
  .footer h5 {
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .footer p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .social-media {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .social-media li {
    display: inline-block;
    margin-right: 20px;
  }
  
  .social-media a {
    color: #fff;
    font-size: 24px;
  }
  
  .social-media a:hover {
    color: #ccc;
  }
  
  .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
  }



  .load-hub {
    padding: 50px 0;
  }
  
  .load-hub h2 {
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #load-search-form {
    margin-bottom: 20px;
  }
  
  #load-table {
    margin-top: 20px;
  }

  .truck-trailer {
    padding: 50px 0;
  }
  
  .truck-trailer h2 {
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #truck-table, #trailer-table {
    margin-top: 20px;
  }



  .yellow-machines {
    padding: 50px 0;
  }
  
  .yellow-machines h2 {
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #yellow-machines-table {
    margin-top: 20px;
  }



  .agrimech {
    padding: 50px 0;
  }
  
  .agrimech h2 {
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #agrimech-table {
    margin-top: 20px;
  }

  .workshop {
    padding: 50px 0;
  }
  
  .workshop h2 {
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #workshop-table {
    margin-top: 20px;
  }



  .equipsales {
    padding: 50px 0;
  }
  
  .equipsales h2 {
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #equipsales-table {
    margin-top: 20px;
  }