

.top-bar {
      background: linear-gradient(90deg, #0d6efd, #00c6ff);
      color: #fff;
      padding: 10px 0;
    }

    .call-text {
      font-size: 18px;
      font-weight: 500;
    }

    .call-number {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      margin-left: 8px;
      transition: 0.3s;
    }

    .call-number:hover {
      color: #ffd700;
    }
    .custom-navbar {
    background-color: #2c5c86;
    padding: 12px 0;
  }

  .custom-link {
    color: #fff;
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  /* Hover Effect (Rounded Box) */
  .custom-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  /* Active link style (optional but looks premium) */
  .custom-link.active {
    background-color: #ffffff;
    color: #2c5c86;
  }

  /* Fix toggler icon color */
  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler-icon {
    filter: invert(1);
  }
  .hero-section {
  height: 90vh;
  background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('/img/truckingHero.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

/* Heading */
.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

/* Subtext */
.hero-subtitle {
  font-size: 18px;
  margin-top: 15px;
  color: #ddd;
}

/* Button */
.hero-btn {
  background-color: #2c5c86;
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover Effect */
.hero-btn:hover {
  background-color: #fff;
  color: #2c5c86;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.services-section {
  background-color: #f8f9fa;
}

/* Heading */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c5c86;
}

.section-subtitle {
  max-width: 600px;
  margin: 10px auto 0;
  color: #666;
  font-size: 16px;
}

/* Card */
.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

/* Icon */
.service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  background-color: #2c5c86;
  color: #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-card:hover p {
  color: #ddd;
}
.about-section {
  background-color: #ffffff;
}

/* Title */
.about-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c5c86;
}

/* Text */
.about-text {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

/* Button */
.about-btn {
  background-color: #2c5c86;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover */
.about-btn:hover {
  background-color: #1a3f5f;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Image */
.about-img {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.contact-section {
  background-color: #f8f9fa;
}

/* Heading */
.contact-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c5c86;
}

/* Line under heading */
.title-line {
  width: 80px;
  height: 4px;
  background-color: #2c5c86;
  margin-top: 8px;
  border-radius: 5px;
}

/* Subtitle */
.contact-subtitle {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
}

/* Card */
.contact-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Icon */
.contact-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Links */
.contact-card a {
  text-decoration: none;
  color: #2c5c86;
  font-weight: 500;
}

/* Hover Effect */
.contact-card:hover {
  transform: translateY(-10px);
  background-color: #2c5c86;
  color: #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.contact-card:hover a {
  color: #fff;
}
.footer-section {
  background: linear-gradient(135deg, #2c5c86, #1a3f5f);
  color: #fff;
  padding: 60px 0 20px;
}

/* Logo */
.footer-logo {
  font-weight: 700;
  margin-bottom: 15px;
}

/* Text */
.footer-text {
  font-size: 14px;
  color: #ddd;
}

/* Headings */
.footer-heading {
  margin-bottom: 15px;
  font-weight: 600;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

/* Hover Effect */
.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Contact */
.footer-contact a {
  color: #ddd;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 14px;
  color: #ccc;
}


   /* Mobile adjustments */
    @media (max-width: 576px) {
      .call-text {
        font-size: 16px;
      }

      .call-number {
        font-size: 18px;
      }
    }
    /* Mobile spacing */
  @media (max-width: 991px) {
    .custom-link {
      display: block;
      margin: 5px 0;
      text-align: center;
    }
  }
  /* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: auto;
    padding: 80px 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}
/* Responsive */
@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .about-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 26px;
  }

  .about-text {
    font-size: 15px;
  }
}
/* Responsive */
@media (max-width: 576px) {
  .contact-title {
    font-size: 28px;
  }
}
/* Responsive */
@media (max-width: 576px) {
  .footer-section {
    text-align: center;
  }
}