@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin:0 !important;
    padding:0;
    scroll-behavior:smooth;
    list-style:none;
    text-decoration:none;
    box-sizing: border-box;
}
:root{
    --red:#D62227;
    --orange:#f57a3c;
    --yellow:#FBCB16;
    --grey:#c3c5c7;
    --grd:linear-gradient(90deg,rgba(214, 34, 39, 1) 0%, rgba(243, 107, 29, 1) 50%, rgba(251, 203, 22, 1) 100%);
}
body{
  background-color:#ffffff;
    /* background-color:#121212; */
    /* color: #FFFFFF; */
    font-family: "Roboto", sans-serif;
}
 footer {
    background-color: #1a1a1abb;
  }
  p{
    color: #4a4a4afb;
  }
  a{
    text-decoration:none !important;
  }
  /* a, .highlight {
    color:var(--red); 
  } */
  .button-primary {
    background: linear-gradient(-45deg, #F36B1D 0%, #D62227 100%);
    color: #FFFFFF;
    padding:10px 20px;
    border-radius:10px;
    /* border:1px solid var(--orange); */
    transition: all 0.3s ease-in-out;
    text-decoration:none;
  }
  .button-primary:hover {
    background: linear-gradient(-45deg, #D62227 0%, #F36B1D 100%);
    /* border:1px solid white; */
  }
  .button-secondary{
    background-color:transparent;
    color: white;
    border:1px solid white;
    padding: 10px 20px;
    border-radius:10px;
    text-decoration:none;
    transition: all 0.3s ease-in-out;
  }
  .button-secondary:hover{
    background-color:var(--orange);
    border:1px solid var(--orange);

  }
  .custom-color {
    background-color: transparent;
    position: absolute;
    top: 0;
    z-index: 99;
    width: 100%;
}
  .logo{
    width:150px;
    height:43px;
  }
  .nav-link{
    color:rgb(16, 16, 16);
    /* font-size:18px; */
  }
  .navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color:var(--orange);
  }
  .nav-link:focus, .nav-link:hover{
    color:var(--orange);
  }
.banner{
    position: relative;
    background:url(../images/banner-image.webp);
    width:100%;
    height:100vh;
    background-size:cover;
    background-position:center;
    z-index:0;
}
.banner1{
  position: relative;
  background:url(../images/banner.png);
  width:100%;
  height:100vh;
  background-size:cover;
  background-position:center;
  z-index:0;
}
.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background-color:rgba(0, 0, 0, 0.234);
    z-index:1;
}
.content{
    position:absolute;
    width:100%;
    height:100%;
    /* top:50%;
    left:50%;
    transform:translate(-50%,-50%); */
    z-index:2;
}
.primary-font{
font-size:60px;
font-weight:800;
}
.full-width{
    width:100%;
    transform:scale(1.2);
    transition: all 0.3s ease-in-out;
}
.full-width:hover{
    transform:scale(1);
}
.org-color{
    color:var(--orange);
}
.red-color{
color:var(--red);
}
.about-btn{
  background-color:var(--orange);
    color: #FFFFFF;
    padding:10px 20px;
    border-radius:10px;
    border:1px solid var(--orange);
    transition: all 0.3s ease-in-out;
}
.about-btn:hover{
  background-color:var(--red);
}
.cta{
  width:100%;
  height:40vh;
  position: relative;
  background:url(../images/cta.webp);
  background-size: cover;
  background-position:center;
  z-index:0;
}
.over{
  position:absolute;
  width:100%;
  height:100%;
  z-index:1;
  background-color:rgba(0, 0, 0, 0.397);
}
.cont{
  position:absolute;
  height:100%;
  width:100%;
  z-index:5;
}


/* From Uiverse.io by gharsh11032000 */ 
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 25px;
  border: 2px solid ;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 10px;
  font-weight: 600;
  color:var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: var(--orange);
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 10px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(-45deg, #F36B1D 0%, #D62227 100%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: white;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 10px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: white;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px var(--orange);
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.card-wrap img{
  width:40px;
}
.card-wrap{
  min-height:221px;
  border:1px solid var(--orange);
  transform:scale(1);
  transition:all 0.3s ease-in-out;
}
.card-wrap:hover{
  transform:scale(1.05);
  border: 1px solid var(--red);
  /* box-shadow: 2px 5px 10px; */
 
}

/* From Uiverse.io by JulanDeAlb */ 
.hamburger {
  cursor: pointer;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 3em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}
.custom-back{
  padding-left:15px;
  border-radius:5px;
}
.navbar-toggler{
  color: transparent;
  border: none;
}

/* From Uiverse.io by gharsh11032000 */ 
.animated-button2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 25px;
  border: 2px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 10px;
  font-weight: 600;
  color: white;
  box-shadow: 0 0 0 2px white;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button2 svg {
  position: absolute;
  width: 24px;
  fill: white;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button2 .arr-1 {
  right: 10px;
}

.animated-button2 .arr-2 {
  left: -25%;
}

.animated-button2 .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(-45deg, #F36B1D 0%, #D62227 100%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button2 .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button2:hover {
  box-shadow: 0 0 0 12px transparent;
  color: white;
  border-radius: 12px;
}

.animated-button2:hover .arr-1 {
  right: -25%;
}

.animated-button2:hover .arr-2 {
  left: 10px;
}

.animated-button2:hover .text {
  transform: translateX(12px);
}

.animated-button2:hover svg {
  fill: white;
}

.animated-button2:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px var(--orange);
}

.animated-button2:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}
.why{
  /* background-color:var(--orange); */
  background: linear-gradient(-45deg, #F36B1D 0%, #D62227 100%);
  color:white;
  font-weight: 500;
  padding:10px 15px;
  border-radius:8px;
}
.tp-truck{
  position: absolute;
  right:-15%;
  width: 100%;
  top: 0%;
  z-index: 1;
}
.numbers{
  font-size:3rem;
  font-weight:500;
  color:white;
  /* border-bottom:1px solid white; */
  /* display: inline-flex; */
}
.line{
  background: linear-gradient(180deg,rgba(243, 107, 29, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(243, 107, 29, 1) 100%);
  width:5px;
  height:100%;
}
.custom-bottom{
  width:100%;
  height:2px;
  background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(243, 107, 29, 1) 50%, rgba(255, 255, 255, 1) 100%);
}
.fleet-icon{
  width:100%;
  transform:scale(1.04);
  transition: all 0.3s ease-in-out;
}
.fleet-icon:hover{
  transform:scale(1);
}
.testimonial_card {
  width: 100%;
  height: 100%;
  padding: 20px;
  color:white;
  background: linear-gradient(-45deg, #F36B1D 0%, #D62227 100%);
  border: 2px solid transparent;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transform-origin: right bottom;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial_card .main-content {
  flex: 1;
}

.rating svg {
  stroke: white;
  fill: white;
}

.testimonial_slider .swiper-slide {
  padding: 0 15px;
}

.test_prev,
.test_next {
  background: linear-gradient(-45deg, #F36B1D 0%, #D62227 100%);
  border: none;
  color: white;
  padding: 10px;
  border-radius: 100%;
}

.test_prev svg,
.test_next svg {
  stroke:white;
}
.location_div svg {
  width: 30px;
  height: 30px;
  stroke: var(--orange);
  stroke-width: 2px;
}
.con-wrap a{
  text-decoration:none !important;
  color:#4d4d4d;
}
.form_bg{
  background: linear-gradient(-45deg, #F36B1D 0%, #D62227 100%);
}
.book_btn{
  padding:10px 20px;
  transform:scale(1.02);
  transition:all 0.3s ease-in-out;
}
.book_btn:hover{
  transform:scale(1);
}
.foot-color{
  background: linear-gradient(-45deg, #F36B1D 0%, #D62227 100%);
}
.foot-logo{
  width:300px;
  height:80px;
}
.footer-link{
  text-decoration:none;
  color:white;
  font-size:18px;
}
.foot-contact svg{
  width: 30px;
  height: 30px;
  stroke: white;
  stroke-width: 2px;
}
.foot-contact h3{
  color:white;
}
.foot-line{
  width:100%;
  height:1px;
  background-color:white;
}