* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none !important;
}

body {
  overflow-x: hidden !important;
}

p,
h6,
ul {
  padding: 0;
  margin: 0;
}

.bg-brand {
  background-color: #1498d6;
}

.brand-text {
  color: #1498d6;
}

.color_og {
  background-color: #1498d6;
}

.color-blue {
  color: #343c5c;
}

.bgcolor-dark {
  background-color: #343c5c;
}

.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 50px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: whatsapp-blink 2s infinite;
}

/* BLINK KEYFRAMES */
@keyframes whatsapp-blink {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3);
    opacity: 1;
  }

  50% {
    transform: translateY(10px);
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    opacity: 0.85;
  }

  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    opacity: 1;
  }
}

#service {
  scroll-margin-top: 100px;
}

.cstm_space {
  padding: 70px 0px;
}

/* header css start  */
.brand_logo img {
  width: 180px;
  cursor: pointer;
  padding: 4px 0px;
  background: white;
}

.top_icon_contact {
  width: 45px;
  height: 45px;
  display: flex;

  border-radius: 50%;
  border: 1px solid #fff;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
}

.contact_icon_hover:hover .top_icon_contact {
  background-color: #fff;
  color: #1498d6;
  border-color: #fff;
  transform: scale(1.1);
}

.top_content_contact span {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.top_content_contact a {
  color: #fff !important;
}

.icons_social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 40px;
  background-size: 100% 300%;
  background-position: 0% 5%;
  transition:
    background-position 0.5s,
    color 0.5s;
}

.icons_social a {
  color: #fff;
  background-color: #1498d6;
  border: 1px solid #fff;
}

.icons_social a:hover {
  color: #1498d6;
  background-color: #fff;
}

/* header css end  */

/* navbar css start  */
.cstm_nav {
  align-items: center;
}

.cstm_nav .nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  overflow: hidden;
  transition: color 0.3s ease;
}

.cstm_nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background-color: rgba(40, 58, 72, 0.2);
  transition: all 0.4s ease;
  z-index: -1;
  transform: translateX(-50%);
}

.cstm_nav .nav-link:hover::before {
  width: 120%;
}

.cstm_nav .nav-link:hover {
  color: #1498d6;
}

.cstm_nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #1498d6;
  z-index: 1;
}

.cstm_nav .nav-link.active {
  color: #1498d6 !important;
  font-weight: 600;
}

.dropdown-item.active,
.dropdown-item:active {
  color: white;
  text-decoration: none;
  background-color: #1498d6;
}

.cstm_nav .nav-link:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

.cstm_navbar {
  background: #fff !important;
  border-bottom: 2px solid #1498d6;
}

.cstm_nav li a {
  color: #000;
  padding: 14px 14px !important;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}

.cstm_nav li a:active {
  color: #fff !important;
  background-color: #1498d6;
}

.cstm_nav li a:focus {
  color: #fff !important;
  background-color: #1498d6;
}

.cstm_nav li a:hover {
  color: #1498d6;
  transition: color 0.3s ease;
}

.dropdown-item:hover {
  color: #fff !important;
  background-color: #1498d6 !important;
  transition: color 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
}

.dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

.nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
  transition: 0.3s ease-in-out;
}

.navbar-toggler {
  border: none !important;
  color: transparent !important;
  background-color: transparent;
}

.active-toggler {
  background-color: transparent !important;
}

.navbar-toggler {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  padding: 10px;
}

.custom-toggler-icon {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #1498d6;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.custom-toggler-icon::before,
.custom-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1498d6;
  transition: all 0.3s ease-in-out;
}

.custom-toggler-icon::before {
  top: -8px;
}

.custom-toggler-icon::after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 1080px) {
  .navbar_logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80px;
    margin-right: auto;
  }

  .top_header {
    display: none;
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: #f6fbff;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease-in-out;
    padding: 20px;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .close-menu {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: white;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 10px 0;
  }

  .navbar-toggler {
    border: none !important;
    background: transparent;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns%3D%27http://www.w3.org/2000/svg%27 viewBox%3D%270 0 30 30%27%3E%3Cpath stroke%3D%27rgba%28255, 255, 255, 1%27 stroke-width%3D%272%27 stroke-linecap%3D%27round%27 stroke-miterlimit%3D%2710%27 d%3D%27M4 7h22M4 15h22M4 23h22%27/%3E%3C/svg%3E");
  }

  .cstm_nav {
    align-items: start;
  }
}




.cstm_slider1,
.cstm_slider2 {
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* BACKGROUND IMAGES */
.cstm_slider1 {
  background-image: url("../image/slider1.jpg");
}

.cstm_slider2 {
  background-image: url("../image/slider2.jpg");
}

/* BLACK OVERLAY */
.cstm_slider1::before,
.cstm_slider2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.main {
  position: relative;
  z-index: 1;
}

main {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider {
  position: relative;
  height: 100%;
}

header {
  position: relative;
  z-index: 1000;
}

.item {
  width: 200px;
  height: 300px;
  list-style-type: none;
  position: relative;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
  transition:
    transform 0.1s,
    left 0.75s,
    top 0.75s,
    width 0.75s,
    height 0.75s;
}

.item .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  text-align: center;
  width: 80%;
  max-width: 700px;
}

/* FIRST & SECOND ITEM */
.item:nth-child(1),
.item:nth-child(2) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
}

/* CONTENT */
.content {
  width: min(40vw, 650px);
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  font:
    400 0.85rem helvetica,
    sans-serif;
  color: white;
  opacity: 0;
  display: none;
}

.content .title {
  line-height: 1.2;
  font-size: 55px;
  font-weight: 700;
}

.content .description {
  line-height: 1.4;
  margin: 1rem 0 1.5rem;
  font-size: 18px;
}

/* ACTIVE CONTENT */
.item:nth-of-type(2) .content {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* NAV */
.nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  user-select: none;
}

.nav .btn {
  background-color: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(0, 0, 0, 0.6);
  margin: 0 0.25rem;
  border-radius: 50%;
  cursor: pointer;
}

.nav .btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1026px) {
  .content .title {
    font-size: 23px;
  }

  .content .description {
    font-size: 15px;
  }
}

/* TABLET */
@media (min-width: 651px) and (max-width: 899px) {
  .content .title {
    font-size: 20px;
  }

  .content .description {
    font-size: 15px;
  }

  .item {
    width: 160px;
    height: 250px;
  }
}

/* MOBILE */
@media (max-width: 650px) {
  .content .title {
    font-size: 0.9rem;
  }

  .content .description {
    font-size: 0.65rem;
  }

  .item {
    width: 130px;
    height: 200px;
  }
}

@media (max-width: 500px) {
  main {
    height: 50vh;
  }

  .item:nth-child(1)::before,
  .item:nth-child(2)::before {
    background: rgba(0, 0, 0, 0);
  }
}

/* carsouel css end */
/* about css start */
.about_img img {
  padding: 10px;
  border: 3px solid #1498d6;
}

.about_heading h5 {
  color: #1498d6;
}

.about_heading h2 {
  font-size: 40px;
  color: #343c5c;
  font-weight: 600;
}

.about_contant p {
  font-size: 18px;
}

.cstm_count {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.cstm_count h1 {
  font-size: 120px;
  color: #1498d6;

  border: 10px solid #1498d6;
  border-radius: 50%;
  padding: 10px;
  line-height: 1;
}

.cstm_count p {
  color: #343c5c;
}

@media (max-width:500px){
  .about_img img {
  border: none;
}

}
/* about css end */



/* Need you towing */
.bg_img {
  background-image: url("../image/bg-img.jpg");
  background-size: cover;
  background-position: center;
  object-fit: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 2;
  padding: 50px;
}

.bg_img::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.need_service {
  height: auto;
  color: #fff;
}

.cstm_btn {
  margin: 30px;
}

/* Need you Towing and */

/* LEFT CONTENT */
.featured_badge {
  display: inline-block;
  background: #e7f1ff;
  color: #1498d6;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 15px;
}

.primary_btn {
  background: #1498d6;
  color: #fff;
  padding: 14px 34px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  border: 0;
}

.primary_btn:hover {
  background: #006594;
}

.secondary_btn {
  border: 2px solid #1498d6;
  color: #1498d6;
  padding: 12px 32px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.secondary_btn:hover {
  background: #1498d6;
  color: #fff;
}

/* work section css start  */

/* Filter Tabs */
.work_filter_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work_filter_list li {
  display: inline-block;
  margin-left: 15px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  color: #333;
}

.work_filter_list li.active,
.work_filter_list li:hover {
  background: #1498d6;
  color: #fff;
}

/* Cards */
.work_card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.work_card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

.work_card:hover img {
  transform: scale(1.08);
}

/* work section css end  */

/* quote section css start  */

.quote_section {
  background: #f1f6fe;
  position: relative;
  overflow: hidden;
}

.quote_title {
  font-size: 36px;
  font-weight: 800;
  color: #343c5c;
  margin: 0px 0px 12px 0px;
}

.quote_title span {
  color: #1498d6;
}

.quote_desc {
  color: #555;
  max-width: 520px;
}

.quote_info {
  list-style: none;
  padding: 0;
}

.quote_info li {
  margin-bottom: 10px;
  color: #343c5c;
  font-weight: 500;
}

.quote_info li a {
  margin-bottom: 10px;
  color: #343c5c;
  font-weight: 500;
}

.quote_info i {
  color: #1498d6;
  margin-right: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #343c5c;
  margin-right: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FORM */
.quote_form {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
}

.quote_form input,
.quote_form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
}

.quote_form textarea {
  min-height: 120px;
  resize: none;
}

/* IMAGE */
.quote_img {
  position: absolute;
  right: 40px;
  bottom: 0;
}

.quote_img img {
  max-height: 480px;
}

/* RESPONSIVE */
@media (max-width: 1026px) {
  .quote_title {
    font-size: 29px;
  }
}

@media (max-width: 991px) {
  .quote_img {
    display: none;
  }

  .quote_title {
    font-size: 30px;
  }
}

/* quote section css end  */

/* services css start */

.service_text h5 {
  color: #1498d6;
}

.service_text h1 {
  font-size: 50px;
}

/* GRID */

/* CARD */
.signage_card {
  height: 300px;
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(52, 60, 92, 0.12);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}


/* TOP BORDER GRADIENT */
.signage_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.signage_card:hover {
  box-shadow: 0 18px 40px rgba(52, 60, 92, 0.18);
}

/* TOP BORDER GRADIENT */

.signage_icon img {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1498d6;
  font-size: 30px;
}

.signage_card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #343c5c;
  font-weight: 600;
}

.signage_card p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.signage_card a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.signage_card button {
  position: absolute;
  right: -40px;
  bottom: 0;
  background-color: #1498d6;
  color: #fff;
  font-weight: bold;
  padding: 8px 14px;
  font-size: 14px;
  border: none;
  opacity: 0;
  transform: translateX(20px);
  transition:
    right 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.cstm_line {
  position: absolute;
  top: -30px;
  left: 0px;
  width: 4px;
  height: 30px;
  background-color: #1498d6;

  opacity: 0;
  transform: translateY(-10px);
  transition:
    top 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.signage_card:hover button {
  right: 0;
  opacity: 1;
  transform: translateX(0);
}

.signage_card2:hover button {
  right: 0;
  opacity: 1;
  transform: translateX(0);
}

.signage_card:hover .cstm_line {
  top: 0;
  opacity: 1;
  transform: translateY(0);
}

/* services css end */
.clints_syas {
  background-color: #f1f6fe;
  padding: 50px 0px;
}

.cstm_margin {
  margin: 70px 0px;
}

.clint_img img {
  width: 100px !important;
  border-radius: 50%;
}

.clints_text {
  margin: 10px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #1498d6;
  border-radius: 20px;
  z-index: 1;
}

/* SLIDE BACKGROUND */
.clints_text::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1498d6;
  transition: all 0.9s ease-in-out;
  z-index: -1;
}

/* HOVER BACKGROUND */
.clints_text:hover::before {
  bottom: 0;
}

/* TEXT COLOR CHANGE */
.clints_text h5 {
  transition: color 0.9s ease-in-out;
}

.clints_text:hover h5,
.clints_text:hover h6 {
  color: #fff;
}

.owl-nav {
  display: flex;
  justify-content: center;
  position: relative;
}

.owl-prev {
  position: absolute;
  left: -80px;
  top: -140px;
  font-size: 70px !important;
  margin: 0px 20px;
  color: #1498d6 !important;
}

.owl-next {
  position: absolute;
  right: -80px;
  top: -140px;
  font-size: 70px !important;
  margin: 0px 20px;
  color: #1498d6 !important;
}

@media (max-width: 1026px) {
  .owl-prev {
    left: -50px;
  }

  .owl-next {
    right: -50px;
  }
}

@media (max-width: 769px) {
  .nav {
    bottom: 1rem;
  }
}

@media (max-width: 500px) {
  .owl-nav {
    display: none;
  }
}

/* footer css start */
/* Brand Colors */
.cstm_fb {
  background: #1877f2;
}

.cstm_ig {
  background: linear-gradient(45deg, #f77737, #e1306c, #833ab4);
}

.cstm_wa {
  background: #25d366;
}

.cstm_yt {
  background: #ff0000;
}

/* TITLES */
.footer_bg h2 {
  position: relative;
}

.footer_bg h2::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #1498d6;
  display: block;
  margin-top: 6px;
}

/* LINKS */

.cstm_our_service ul li {
  margin-bottom: 8px;
}

.cstm_our_service ul li a {
  color: #fff;
  transition: 0.3s;
}

.cstm_our_service ul li a:hover {
  padding-left: 8px;
  border-left: 2px solid white;
}

/* footer css end */
/* about us section css start */

.about_conten {
  position: absolute;
  z-index: 2;
}

.call_box {
  width: 350px;
  background: #fff;
  padding: 20px;
  border-radius: 50px;
  margin: -60px auto 0;
  position: relative;
  z-index: 5;
  border: 0.2px solid grey;
}

.call_box span {
  color: rgb(20, 152, 214);
}

@media(max-width:500px) {
  .call_box {
    width: 300px !important;
    padding: 10px !important;
  }
  .long_heading p {
  font-size: 15px;
}

.long_heading ul li {
  font-size: 15px;
}
.long_content p{
  font-size: 15px;
}
}

/* about us section css end */
/* real estate service css start  */
.realestate_service {
  background: #f8fafc;
}

/* brand color */
.text-brand {
  color: #1498d6;
}

/* bullet points */
.service_points {
  padding-left: 0;
  list-style: none;
}

.service_points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  color: #333;
}

.service_points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1498d6;
  font-weight: 700;
}

/* service boxes (NOT heavy cards) */
.service_box {
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid #eef1f5;
  height: 100%;
}

.service_box h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* CTA background with fixed image */
.cta_box {
  position: relative;
  background: url("../image/slider2.png") center center / cover no-repeat;
  background-attachment: fixed;
  border-radius: 18px;
  overflow: hidden;
}

/* Black overlay */
.cta_overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 70px 25px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

/* real estate service css end  */

/* label printing css start  */
.service_sidebar {
  background: #f8f9fb;
  padding: 20px;
  border-radius: 10px;
}

.service_links li {
  margin-bottom: 10px;
}

.service_links a {
  display: block;
  padding: 10px 12px;
  background: #ffffff;
  border-radius: 6px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.service_links li.active a,
.service_links a:hover {
  background: #1498d6;
  color: #fff;
}

/* label printing css end  */

/* long haul trucking  */

.long_haul {
  height: 350px;
  background: url("../image/multi_cars_towing.jpg");
  background-size: cover;
  object-fit: cover;
  background-attachment: fixed;
  position: relative;
}

/* DARK OVERLAY */
.long_haul::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  /* z-index: -1; */
}

.long_content {
  position: absolute;
  z-index: 2;
}
.long_content p{
  font-size: 20px;
}

/* CURVE DESIGN */
.curve {
  height: 120px;
  background: rgb(20, 152, 214);
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  margin-top: -60px;
}

/* CALL BOX */
.call_box {
  width: 350px;
  background: #fff;
  padding: 20px;
  border-radius: 50px;
  margin: -60px auto 0;
  position: relative;
  z-index: 5;
  border: 0.2px solid grey;
}

.call_box span {
  color: rgb(20, 152, 214);
}

/* long haul trucking end */

/* long haul img and conten  */

.longhaul_new {
  background: #f8f9fa;
}

.long_heading p {
  text-align: justify;
  font-size: 18px;
}

.long_heading ul li {
  text-align: justify;
  font-size: 18px;
}

/* ROW STYLE */
.service_row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  border-left: 4px solid rgb(20, 152, 214);
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

/* ICON */

.icon_box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  color: rgb(20, 152, 214);
}

/* CONTENT */
.content_box h5 {
  font-weight: 600;
}

.content_box p {
  margin: 0;
  color: #666;
}

/* HOVER */
.service_row:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/*  long haul img and conten end */

/* long haul why choosing   */

.why_choose {
  background: #f5f5f5;
}

/* CARD */
.choose_card i {
  color: rgb(20, 152, 214);
}

.choose_card {
  padding: 25px;
  transition: 0.3s;
}

.choose_card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.choose_card p {
  color: #666;
}

/* HOVER */
.choose_card:hover {
  border-radius: 20px;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* long haul why choosing End */


/* Team drivers -(Expedited) */

.team_drive {
  height: 350px;
  background: url("../image/services-banner.jpg");
  background-size: cover;
  object-fit: cover;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
}

/* DARK OVERLAY */
.team_drive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Team drivers -(Expedited) End */