li{
  text-decoration:none !important;
  /*list-style: none !important;*/
}


a{
  text-decoration:none !important;
}


.custom-navbar {
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-navbar .navbar-nav .nav-link {
  color: black !important;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease-in-out;
}

.custom-navbar .navbar-nav .nav-link:hover {
  color: #28a745 !important;
}

.custom-navbar .navbar-nav .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #28a745;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
}

.custom-navbar .navbar-nav .nav-link:hover::after,
.custom-navbar .navbar-nav .nav-link.active::after {
  width: 100%;
}

.custom-navbar .navbar-toggler {
  border: none;
  background: none;
  outline: none;
}

.custom-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.8)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 10px;
    border-radius: 5px;
  }

  .navbar-nav {
    text-align: center;
  }
}

.hero-section {
  position: relative;
  background: url("https://guardianautotransport.com/wp-content/uploads/2019/06/Shipping-your-car.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  z-index: 1;
  flex-wrap: wrap;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}









.quote-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  width: 100%;
  color: black;
  text-shadow: none;
}

.btn-green {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
  color: white !important;
}

.btn-green:hover {
  background-color: #218838 !important;
  border-color: #1e7e34 !important;
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    height: auto;
  }

  .hero-text {
    margin-bottom: 30px;
  }

  .quote-card {
    width: 90%;
    max-width: 100%;
  }
}

.service-card {
  height: 100%;
  /* Ensures uniform height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Keeps content aligned properly */
  text-align: center;
  /* Centers text */
  padding: 15px;
  /* Adds spacing */
  border: 1px solid #ddd;
  /* Optional: Adds a subtle border */
  border-radius: 8px;
  /* Optional: Rounds corners */
}

.service-card img {
  width: 150px;
  /* Adjust size as needed */
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  /* Makes the image circular */
  margin: 0 auto;
  /* Centers the image */
  display: block;
  /* Ensures proper alignment */
}

.service-card h4,
.service-card p {
  margin: 10px 0;
}

/* .services-section {
            padding: 50px 0;
            text-align: center;
        }
        .service-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-align: center;
        } */
.retrieve-quote-section {
  background: url("https://tse1.mm.bing.net/th?id=OIP.6GH3K0-uYpy9Q6mFsBEUEgHaEK&pid=Api&P=0&h=220") no-repeat center center/cover;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-rated-section {
  padding: 50px 0;
  text-align: center;
}

.top-rated-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.booking-section {
  position: relative;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  width: 100%;
}

.booking-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: black;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .booking-section {
    padding: 50px 10px;
  }

  .booking-card {
    width: 90%;
    max-width: 100%;
  }
}

.expert-section {
  position: relative;
  background: url("{{ asset('images/back_ground_home.jpg') }}") center/cover no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: white;
  text-align: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
  max-width: 90%;
}

.content h2 {
  font-size: 2rem;
  font-weight: bold;
}

.content p {
  font-size: 1.1rem;
  margin-top: 10px;
  margin-bottom: 20px;
}

.btn-green {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

.btn-green:hover {
  background-color: #218838;
}

.stats-container {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-box {
  background: white;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  width: 120px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blue-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #007bff;
}

.green-text {
  font-size: 1rem;
  color: #28a745;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content h2 {
    font-size: 1.8rem;
  }

  .content p {
    font-size: 1rem;
  }

  .stats-container {
    bottom: -30px;
    gap: 15px;
  }

  .stat-box {
    width: 110px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .expert-section {
    height: auto;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .overlay {
    max-width: 100%;
    padding: 20px;
  }

  .stats-container {
    position: static;
    transform: none;
    margin-top: 20px;
  }

  .stat-box {
    width: 100px;
    padding: 8px;
  }

  .blue-text {
    font-size: 1.5rem;
  }

  .green-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .content h2 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 0.9rem;
  }

  .btn-green {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .stat-box {
    width: 90px;
    padding: 6px;
  }

  .blue-text {
    font-size: 1.3rem;
  }

  .green-text {
    font-size: 0.8rem;
  }
}

.btn-green-s {
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
}

.info-section {
  padding: 50px 0;
}

.info-card {
  text-align: center;
  padding: 20px;
}

.info-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  /* Adjust height as needed */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.card-title {
  margin-bottom: 10px;
  /* Adjust for equal spacing */
  font-weight: bold;
}

.card-text {
  margin-top: 10px;
  /* Adjust for equal spacing */
}

.shadow-box {
  background-color: white;
  padding: 60px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.heading-link.active {
  color: green;
  /* Change the color to highlight */
  font-weight: bold;
}

.bg-image {
  background: url("{{ asset('images/contact_us.jpg') }}") center/cover no-repeat;
  height: 100vh;
}

.heading-link {
  cursor: pointer;
  /* Pointer cursor for better UX */
  transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.heading-link:hover {
  color: #28a745;
  /* Green color on hover */
  transform: scale(1.1);
  /* Slight zoom effect */
}

.bg-dark-blue {
  /* background-color: hsl(234,100%,4%); */
  background-color: hsl(234, 100%, 4%);
}