* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    font-family: Helvetica, sans-serif;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
    height: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: darkorange;
    border-radius: 10px;

}

::-webkit-scrollbar-thumb:hover {
    background-color: orange;
}



/* header btn */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: darkorange; 
    color: #ffffff;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    
  }  
  .btn:hover{
    color: #fff;
    background-color: #000;

  }
  .btn span{
    padding: 0 !important;
    margin: 0 !important;
  }
  .btn span i{
    font-size: 1.2rem;
    animation: vibration 1s linear infinite;
    margin-left: .5rem;
  }
  @keyframes vibration {
    0% {
        transform: translateX(0);
      }
      10% {
        transform: translateX(-5px);
      }
      20% {
        transform: translateX(0);
      }
      30% {
        transform: translateX(5px);
      }
      40% {
        transform: translateX(0);
      }
      50% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(0);
      }
  }
  .chorus{
    width: 10rem;
    height: 10rem;
    position: absolute;
    transform: translatey(12rem);
    opacity: .2;
  }
  .chorus2{
    width: 6rem;
    height: 6rem;
    position: absolute;
    transform: translate(33rem) translatey(23rem);
    opacity: .3;
  }
  .about{
    position: relative;
  }
  .chorus3{
    width: 6rem;
    height: 6rem;
    right: 0;
    top: 0;
    position: absolute;
    transform: translatex(-40rem) translatey(4rem) rotate(33deg);
    opacity: .3;
  }
  .chorus4{
    width: 5rem;
    height: 5rem;
    right: 0;
    top: 0;
    position: absolute;
    transform: translatex(-6rem) translatey(6rem) ;
    opacity: .2;
  }
/* header btn */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 6rem;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 87687;
}

.navbar .links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar .links a {
    color: #000;
    font-size: 1rem;
    transition: .5s ease;
}

.navbar .links a:hover{
    color: darkorange;
}

.navbar .logo img{
  width: 7rem;
}



  



.header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: top;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    padding: 2rem 6rem;
    padding-top: 9rem;
    /* background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,183,0,0.14907212885154064) 24%, rgba(255,255,255,1) 82%); */
    position: relative;
}

.header::after{
  content: "";
  width: 100%;
  height: 70rem;
  position: absolute;
  background-image: url(../assets/gradient.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  z-index: -12;
  transform: translateX(-20rem) translateY(-15rem);
  opacity: .75;
}

.header .left h1,
.header .left h1 span {
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.truck-icon{
    width: 4rem;
    height: 4rem;
    transform: rotate(-20deg) translateY(1rem);
}



.header .left p {
    font-size: 1.3rem;
    line-height: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.header .right .truck {
    transform: translateX(6rem);
    position: relative;
    width: 100%;
}





/* about section */
.about{
  padding: 2rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 7rem;
}
.about .left{
  transform: translateX(-6rem);
  width: 50%;
}
.about .left img{
  width: 40rem;
  transform: rotatey(180deg);
}
.about .right{
  text-align: right;
}
.about .right h1{
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: bolder;
}
.about .right p{
  font-size: 1.2rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}
.subscribe input{
  font-size: 1.1rem;
  padding: 15px;
  width: 20rem;
  margin-right: .5rem;
  border-radius: 5px;
  border: 1px solid lightgray;
  outline: navajowhite;
  background-color: rgba(211, 211, 211, 0.148);
  color: darkorange;
  transition: .5s ease;
}
.subscribe input:focus {
  background-color: rgba(255, 140, 0, 0.135);
  border: 1px solid rgba(255, 140, 0, 0.294);
}
.subscribe button{
  font-size: 1.1rem;
  padding: 15px;
  border: none;
  outline: none;
  border-radius: 5px;
  background-color: darkorange;
  color: #fff;
  font-weight: 500;
  transition: .5s ease;
}
.subscribe button:hover{
  background-color: #000;
  cursor: pointer;
}
/* about section */



/* get-started */
.get-started{
  padding: 2rem 6rem;
  /* margin-bottom: 4rem; */
}
.get-started .heading h1{
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5rem;
}
.get-started .items{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.get-started .items .item{
  text-align: center;
  padding: 1.8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(211, 211, 211, 0.389);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  flex-direction: column;
  cursor: pointer;
  transition: .5s ease;
  box-shadow: 5px 7px 20px -10px rgba(0, 0, 0, 0.157);
}
.get-started .items .item:hover{
  border-color: lightgray;
  transform: translateY(-14px) scale(1.03);
  box-shadow: 5px 7px 20px -10px rgba(0, 0, 0, 0.184);

}
.get-started .items .item img{
  width: 4.5rem;
}
.get-started .items .item h4{
  font-size: 1.3rem;
  font-weight: normal;
  color: #000;
}
.get-started .items .item p{
  font-size: 1.1rem;
  color: rgb(29, 28, 28);
  margin-bottom: 2rem;
}

/* get-started */


 .section {
	 width: 100%;
	 max-width: 1200px;
	 margin: 0 auto;
   padding: 2rem 4rem;
}
 .section .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
	 align-items: center;
}
 .card {
	 position: relative;
	 height: 400px;
	 width: 100%;
	 margin: 10px 0;
	 transition: ease all 2.3s;
	 perspective: 1200px;
}
 .card:hover .cover {
	 transform: rotateX(0deg) rotateY(-180deg);
}
 .card:hover .cover:before {
	 transform: translateZ(30px);
}
 .card:hover .cover:after {
	 background-color: black;
}
 .card:hover .cover h1 {
	 transform: translateZ(100px);
   color: black;
}
 .card:hover .cover .price {
	 transform: translateZ(60px);
}
 .card:hover .cover a {
	 transform: translateZ(-60px) rotatey(-180deg);
}
 .card .cover {
	 position: absolute;
	 height: 100%;
	 width: 100%;
	 transform-style: preserve-3d;
	 transition: ease all 2.3s;
	 background-size: cover;
	 background-position: center center;
	 background-repeat: no-repeat;
}
 .card .cover:before {
	 content: '';
	 position: absolute;
	 border: 5px solid rgba(255, 165, 55, 0.837);
	 box-shadow: 0 0 12px rgba(0, 0, 0, .3);
	 top: 20px;
	 left: 20px;
	 right: 20px;
	 bottom: 20px;
	 z-index: 2;
	 transition: ease all 2.3s;
	 transform-style: preserve-3d;
	 transform: translateZ(0px);
}
 .card .cover:after {
	 content: '';
	 position: absolute;
	 top: 0px;
	 left: 0px;
	 right: 0px;
	 bottom: 0px;
	 z-index: 2;
	 transition: ease all 1.3s;
	 background: rgba(0, 0, 0, .4);
}
 .card .cover.item-a {
	 background-image: url('../assets/support.jpg');
}
 .card .cover.item-b {
	 background-image: url('../assets/fleet.jpg');
}
 .card .cover.item-c {
	 background-image: url('../assets/time.jpg');
}
 .card .cover.item-d {
	 background-image: url('../assets/paper-work.jpg');
}
 .card .cover.item-e {
	 background-image: url('../assets/rate.jpg');
}

 .card .cover h1 {
	 font-weight: 600;
	 position: absolute;
	 bottom: 55px;
	 left: 50px;
	 color: white;
	 transform-style: preserve-3d;
	 transition: ease all 2.3s;
	 z-index: 3;
	 font-size: 2.5em;
	 transform: translateZ(0px);
}

 .card .card-back {
	 position: absolute;
	 height: 100%;
	 width: 100%;
	 background: #0b0f08;
	 transform-style: preserve-3d;
	 transition: ease all 2.3s;
	 transform: translateZ(-1px);
	 display: flex;
	 align-items: center;
	 justify-content: center;
}
 .card .card-back a {
	 transform-style: preserve-3d;
	 transition: ease transform 2.3s, ease background 0.5s;
	 transform: translateZ(-1px) rotatey(-180deg);
	 background: transparent;
	 border: 1px solid white;
	 font-weight: 200;
	 font-size: 1.3em;
	 color: white;
	 padding: 14px 32px;
	 outline: none;
	 text-decoration: none;
}
 .card .card-back a:hover {
	 background-color: white;
	 color: #0b0f08;
}
 
.features-benefits{
  margin: 3rem 0;
  padding: 4rem 0;
  background: rgba(255, 140, 0, 0.115);
  margin-top: 8rem;
  position: relative;
  padding-top: 0;
}

.numbers{
  display: flex;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  text-align: center;
  background-color: #fff;
  background-color: darkorange;
  color: #fff;
  border-radius: 10px;
  max-width: 90%;
  margin: auto;
  transform: translateY(-5rem);
  box-shadow: 0 0 30px -3px #8080805e;
  flex-wrap: wrap;
  gap: 1rem;
}
.numbers .item{
  flex-basis: 15%;
}
.numbers p{
  font-size: 13px;
  margin-top: .2rem;
  color: rgb(239, 239, 239);
}

.numbers h1{
  font-size: 2.2rem;
}

.features-benefits .heading h1{
  text-align: center;
  font-size: 2.3rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
.features-benefits .heading p{
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: gray;

}

.myfaq{
  background: rgba(255, 140, 0, 0.115);
  color: #4d5974;
  display: flex;
  margin: 4rem 0;
  position: relative;
  margin-top: 15rem;
  padding-top: 5rem;
  padding-bottom: 3rem;
}
.faqImg{
  position: absolute;
  top: 0;
  width: 45rem;
  z-index: 2;
  left: 23%;
  transform: translateY(-15rem);
}

.myfaq .heading h1{
  text-align: center;
  margin-bottom: 3rem;
  color: #000;
}


.container {
  margin: 0 auto;
  padding: 4rem 12rem;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid darkorange;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  padding-right: 1.5rem;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: darkorange;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: darkorange;
  border: 1px solid darkorange;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  text-transform:lowercase;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: darkorange;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}


.ourFleet{
  padding: 2rem 6rem;
  margin-bottom: 4rem;

}
.ourFleet .heading h1{
  text-align: center;
  margin-bottom: 4rem;
}

.cardImg {
  width: 100%;
  display: block;
  height: 12rem;
}
 .new-card-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
 .seccard {
  background-color: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 10px 30px 0 rgba(0, 0, 0, 0.034);
  border-radius: 15px;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
  transition: 0.15s ease-in;
}
 .seccard:hover,  .seccard:focus-within {
  border: 1px solid darkorange;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transform: translatey(-5px);
}
 .card-image {
  border-radius: 10px;
  overflow: hidden;
}
 .card-header {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 .card-header a {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.25;
  padding-right: 1rem;
  text-decoration: none;
  color: inherit;
  margin: auto;
  color: darkorange;
}
.card-header a:hover{
  text-decoration:underline darkorange;
  
}
 .card-header a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
 


/* reviews */
.myReviews{
  padding: 2rem 4rem;
  /* display: none; */
}

.myReviews .reviews{
  margin-top: 3rem;
  gap: 2rem;
}
.myReviews .heading{
  text-align: center;
}
.myReviews .reviews .review {
  border: 1px solid rgba(211, 211, 211, 0.524);
  padding: 1.5rem;
  border-radius: 10px;
  cursor:e-resize;
  margin: 0 1.5rem ;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.myReviews .reviews .review::after{
  content: "";
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-bottom-left-radius: 20rem;
  background-color: rgba(255, 140, 0, 0.115);
  right: 0;
  top: 0;
  transform: translateX(2rem) translateY(-4rem);
}
.myReviews .reviews .review .bottom .company{
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
}
.myReviews .reviews .review .bottom .company h4{
  font-size: 1.1rem;
  margin-bottom: .2rem;
}
.myReviews .reviews .review .bottom .company p{
  font-size: 12px;
  color: rgb(122, 119, 119);
}
.myReviews .reviews .review .bottom .stars i{
  color: darkorange;
  font-size: 1.5rem;
}
.myReviews .reviews .review .bottom {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 2rem;
  background-color: rgba(255, 140, 0, 0.115);
  padding: .5rem 0;
  border-radius: 10px;
}
.myReviews .reviews .review .bottom .left img{
  width: 4rem;
  height: 4rem;
  border: 3px dashed darkorange;
  border-radius: 50%;
}


.contact{
  padding: 2rem 4rem;
}


.contact .heading h1{
  text-align: center;
  margin-bottom: 5rem;
}

.contactcontent{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  justify-content: space-between;
  /* gap: 4rem; */

}
.contactcontent .left img{
  width: 100%;
  transform: rotatey(180deg);
  border-radius: 10px;
  width: 28rem;
}

.contactcontent .right form{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.contactcontent .right form input,
.contactcontent .right form select,
.contactcontent .right form textarea
{
  outline: none;
  width: 100%;
  border: 1px solid rgba(255, 140, 0, 0.203);
  padding: 1rem;
  border-radius: 10px;
  color: darkornage;
  font-size: 1.1rem;
  color: darkorange;
}

.contactcontent .right form select option{
  margin: 1rem !important;
}

.footersvg{
  transform: translateY(4px) !important;
}
.footer{
  padding: 2rem 4rem;
  background-color: rgba(66, 64, 64, 0.056);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5rem;
  background-image: url(../assets/footer-map.png);
  background-size: cover;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fefcf8;
  padding-bottom: 4rem;
}
.footer .widget1 img{
  width: 10rem;
  margin-bottom: 1rem;
}

.footer .widget1 h1{
  color: #000 !important;
}

.contactheading{
  font-size: 1.1rem;
  margin-bottom: .3rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.596);
}

.footer .widget2 h2,
.footer .widget4 h2{
  color: #000000;
  margin-bottom: 1.5rem;
}

.widget2 ul li{
  list-style-type: none;
  padding: .45rem 0;
 
}

.widget2 ul li a{
  color: black;
  transition: .5s ease;
}

.widget2 ul li a:hover{
  color: darkorange;
}
.widget3 ul li a{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .5rem;
}
.widget3 ul li a i{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


.contactinfo{
  margin-bottom: 1rem;
}

.conrow{
  margin-bottom: 1rem;
}



.copyright{
  padding: 1.5rem 1rem;
  text-align: center;
  background-color: #fefcf8;
}

.copyright a{
  color: darkorange;
}

.menu{
  display: none;
  font-size: 1.3rem;
  flex-direction: column;
}


.widget3{
  display: block;
}




* {
  font-family: Helvetica, sans-serif;
}





.agreement-new{
  padding: 1rem 2rem;
}

.whatweneed{
  margin: 1rem 0;
  margin-left: 1rem;
}

.whatweneed li{
  margin-bottom: .2rem;
}


.input{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: .5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
  word-wrap: break-word;
  white-space: normal;
}

.input input, .inputrow input{
  border: none;
  outline: none;
  border-bottom: 1px solid black;

}

.inputrow{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .5rem;
}

.small{
  font-size: .8rem;
}

.hh{
  margin:1rem 0;
  font-size: .9rem;
}


.ag-name{
  margin-bottom: 2rem;
}

.ag-title span{
  font-size: .9rem;
  text-decoration: underline !important;
}


.agreement-new ul{
  margin: 1rem 0;
  padding-left: 1rem;
}

.agreement-new ul li{
  padding: .2rem 0;
}

#signatureCanvas{
  border: 1px solid black;
  border-radius: 5px;
}

#preview-image {
  max-width: 10rem;
  max-height: 10rem;
  margin-top: 10px;
  border: 1px solid black;
  border-radius: 10px;
  padding: 10px;
  margin: auto;
  text-align: center;
  margin-top: 1rem;
}



.watermark {
  position: fixed;
  font-size: 24px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.033); /* Adjust the alpha value for transparency */
  pointer-events: none; /* Ensure the watermark doesn't interfere with other elements */
  transform-origin: center;
}

.watermark.rotate-45 {
  top: 20%;
  left: 10%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.watermark.a1{
  top: 30%;
  left: 20%;
}

.watermark.a2{
  top: 60%;
  left: 70%;
}

.watermark.a3{
  top: 80%;
  left: 20%;
}

.watermark.a4{
  top: 50%;
  left: 50%;
}

.Continue{
  background-color: darkorange;
  padding: .8rem 1rem;
  border-radius: 30px;
  outline: none;
  border: none;
  cursor: pointer;
  margin: auto;
  text-align: center;
  display: flex;
  margin-bottom: 1rem;
  color: #fff;
}