@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lilita+One&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rubik+Moonrocks&family=Sora:wght@100..800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lilita+One&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rubik+Moonrocks&family=Sora:wght@100..800&display=swap");

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-90 {
  margin-top: 90px;
}

.mt-120 {
  margin-top: 120px;
}

body {
  margin: 0px;
  padding: 0px;
  /* font-family: "Inter", sans-serif; */
  /* font-family: "Playfair Display", serif; */
}

/*------------headertop---------------*/

.haertopbg {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
   background-color: #FCFCFC; 

}

.headertoplogo {
  margin: 0px;
  padding: 15px 0px;
  width: 100%;
  display: block;
  background-color: #fff;
  clip-path: polygon(0 3%, 100% 0%, 85% 100%, 0% 100%);
  max-height: 120px;
  margin-top: -2px;
 box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}

.headertoplogo img {
  object-fit: cover;
  margin-left: 60px;
  width: 200px;
}

.headertopright {
  margin: 0px;
  padding: 0px;
  margin-left: -90px;
}

.headertoprighttop {
  margin: 0px;
  padding: 6px;
  background-color: #000000;
  color: #fefefe;
}

.headertoprighttopleft {
  margin: 0px;
  padding-left: 15%;
  display: flex;
  justify-content: space-between;
}

.headertoprighttoplefticon {
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 15px;
  padding-top: 15px;
}

.headertoprighttoplefticon i {
  color: #e11c09;
  line-height: 20px;
}

.headertoprighttoplefticon p,
.headertoprighttoplefticon p a {
  color: #fff;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
}

.haedertopright {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  padding-top: 15px;
}

.haedertopright ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: right;
}

.haedertopright ul li {
  margin: 0px;
  padding: 0px 14px;
  list-style: none;
}

.haedertopright ul li a {
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

/*----------------headernavigation------------------*/

.haedernav {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  padding-left: 10%;
}

.haedernav ul {
  margin: 5px 0px;
  padding: 0px;
  display: flex;
  margin-left: -14%;
  padding-top: 10px;
}

.haedernav ul li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.haedernav ul li a {
  margin: 0px;
  padding: 0px 25px;
  font-size: 16px;
  color: #01203f;
  text-decoration: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  font-weight: 500;
}

.haedernav ul li a:hover {
  color: #e11c09;
}

.headerbtn {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  position: relative;
}

.headerbtn1 {
  margin: 0px;
  padding: 15px 0px;
  width: 80%;
  display: block;
  background-color: #e11c09;
  outline: none;
  border: none;
  position: relative;
  color: #fff;
  font-family: "Inter", sans-serif;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.headerbtn1:hover {
  background-color: #1037b6;
}

.headerbtn1::before {
  position: absolute;
  content: "";
  top: 0;
  right: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 25px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #1037b6;
  border-right: 0;
  transition: all 0.5s ease-in-out;
  -webkit-taransition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.headerbtn1:hover::before {
  border-left: 30px solid #e11c09;
}



/* Overlay background */
#popup {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark transparent background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
}

/* Popup form container */
#popup form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 350px;
  max-width: 90%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease-in-out;
  margin-top: 10%;
  margin-left:40%;

}

/* Heading style */
#popup h2 {
  margin-top: 0;
  font-size: 20px;
  color: #333;
  text-align: center;
}

/* Input fields */
#popup input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* Submit button */
#popup button[type="submit"] {
  background: #4CAF50;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  font-size: 15px;
  margin-top: 10px;
}

#popup button[type="submit"]:hover {
  background: #45a049;
}

/* Close button */
#popup #close-popup {
  background: #f44336;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  font-size: 15px;
  margin-top: 10px;
}

#popup #close-popup:hover {
  background: #d7382e;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideIn {
  from {transform: translateY(-20px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}









/*-----------banner------------*/

.bannerbody {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.bannerbodyimg {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  background-image: url(../img/banner.jpg);
  height: 660px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bannerbodyleft {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
clip-path: polygon(0 0, 74% 0, 100% 100%, 0% 100%);
  background-color: #1037b6;
  min-height: 660px;

}

.bannerbodylefttext {
  padding-top: 15%;
  padding-left: 5%;
}

.bannerbodylefttexttop {
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 10px;

}

.bannerbodylefttexttopbox {
  margin: 0px;
  padding: 5px 15px;
  background-color: #e11c09;
}

.bannerbodylefttexttopbox h4 {
  color: #fff;
  font-size: 20px;
  font-family: "Inter", sans-serif;
}

.bannerbodylefttexttopbox1 {
  margin: 0px;
  padding: 0px;
  margin-top: 7px;
}

.bannerbodylefttexttopbox1 h4 {
  color: #fefefe;
  font-size: 20px;
  font-family: "Inter", sans-serif;
}

.bannerbodylefttexttopboxtext {
  margin: 15px 0px;
  padding: 0px;
}

.bannerbodylefttexttopboxtext h2 {
  color: #fff;
  font-size: 48px;
  font-family: "Inter", sans-serif;
}

.bannerbodylefttexttopboxtext h2 span {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 85px;
}

.bannerbodylefttexttopboxtext p {
  width: 60%;
  margin: 0px;
  padding: 0px;
  color: #fefefe;
  font-family: "Inter", sans-serif;
  margin-top: 20px;
}

.bannerbodybtn {
  margin: 20px 0px;
  padding: 0px;
  width: 25%;
  background-color: #fff;
  margin-top: 40px;
  position: relative;
}

.bannerbodybtn::before {
  position: absolute;
  content: "\f061";
  font-family: "fontawesome";
  top: 25%;
  left: 85%;
  width: 100%;
  z-index: 1;
}

.bannerbodybtn button {
  background-color: #e11c09;
  border: none;
  outline: none;
  width: 70%;
  margin: 0px;
  padding: 15px;
  color: white;
  font-weight: 500;
  position: relative;
}

.bannerbodybtn button::before {
  position: absolute;
  content: "";
  right: -25px;
  top: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 26px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 25px solid #e11c09;
  border-right: 0;
}

.aboutusleft {
  margin: 0px;
  padding: 0px;
  position: relative;
  inset: 20px;
}

.aboutusleft-img {
  margin: 0px;
  padding: 0px;
  width: 70%;
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/aboutus.jpg);
  height: 500px;
}

.aboutusleft-img::before {
  position: absolute;
  content: "";
  top: 45%;
  right: 20px;
  background-image: url(../img/aboutus1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  width: 45%;
  border: solid 5px #fff;
  z-index: 1;
}

.aboutusleft-img::after {
  position: absolute;
  content: "";
  top: 0;
  right: -10px;
  background-image: url(../img/about-shape2.png);
  width: 40%;
  height: 180px;
  background-repeat: no-repeat;
  background-position: center;
}

.aboutuslefticon {
  position: absolute;
  margin: 0px;
  padding: 0px;
  width: 150px;
  height: 150px;
  background: linear-gradient(to right, #ffffff, #e2e2e2);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  top: 62%;
  left: 40%;
  z-index: 2;
  animation: myanimtae infinite 6s;
}

@keyframes myanimtae {
  100% {
    transform: rotate(360deg);
  }
}

.aboutusright {
  margin: 0px;
  padding: 0px 50px;
  width: 100%;
  display: block;
}

.aboutusright h6 {
  color: #e11c09;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  position: relative;
  display: inline-block;
}

.aboutusright h6::before {
  position: absolute;
  content: "";
  background-color: #e11c09;
  width: 80%;
  height: 2px;
  top: 220%;
  left: 0;
  z-index: 1;
}

.aboutusright h6::after {
  position: absolute;
  content: "\f48b";
  top: 32px;
  left: 0px;
  font-family: "fontawesome";
  font-size: 20px;
  color: #e11c09;
  animation: movecar 9s linear infinite;
  -webkit-animation: movecar 9s linear infinite;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
}

@keyframes movecar {
  0%,
  100% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
  }

  50% {
    transform: translateX(50px);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
  }
}

.aboutusright h2 {
  color: #000000;
  font-size: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-top: 60px;
}

.aboutusright p {
  color: #131313;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  margin-top: 15px;
}

.aboutusright1 {
  margin-top: 20px;
  padding: 0px;
}

.aboutusright1left {
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 30px;
}

.aboutusright1lefticon {
  margin: 0px;
  padding: 0px;
}

.aboutusright1lefticon img {
  width: 290px;
}

.aboutusright1lefttext {
  margin: 0px;
  padding: 0px;
}

.aboutusright1lefttext h5 {
  color: #131313;
  font-size: 20px;
  font-family: "Inter", sans-serif;
}

.aboutusright1lefttext p {
  font-size: 15px;
  color: #131313;
  margin: 0px;
  padding: 0px;
}

.aboutusrightexpertise {
  margin: 0px;
  padding: 0px;
}

.aboutusrightexpertise ul {
  margin: 0px;
  padding: 0px;
  display: block;
}

.aboutusrightexpertise ul li {
  margin: 0px;
  padding: 6px 5px;
  list-style: none;
}

.aboutusrightexpertise ul li p {
  margin: 0px;
  padding: 0px;
  font-size: 15px;
  color: #474747;
  font-family: "Inter", sans-serif;
}

.aboutusrightexpertise ul li p i {
  color: #e11c09;
}

.aboutusrightexpertiseimg {
  margin: 0;
  padding: 0px;
}

.aboutusrightbtn {
  margin: 0px;
  padding: 0px 0px;
  width: 103%;
  background-color: #1037b6;
  margin-top: 20px;
  position: relative;
}

.aboutusrightbtn::before {
  position: absolute;
  content: "\f101";
  top: 30%;
  right: 20px;
  z-index: 1;
  color: #fff;
  font-family: "fontawesome";
}

.aboutusrightbtn button {
  background-color: #e11c09;
  width: 70%;
  border: none;
  outline: none;
  height: 100%;
  padding: 15px 0px;
  position: relative;
  color: #fff;
}

.aboutusrightbtn button::before {
  position: absolute;
  content: "";
  right: -25px;
  top: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 26px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 25px solid #e11c09;
  border-right: 0;
}

/*------------service----------------*/

.servicebg {
  margin: 0px;
  padding: 60px 0px;
  background-color: #000000;
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.servicebg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  background-image: url(../img/about-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  z-index: -1;
}

.servicetextcenter {
  margin: 0px;
  padding: 0px;
  text-align: center;
}

.servicetextcenter h5 {
  color: #fff;
  font-size: 20px;
  font-family: "Inter", sans-serif;
}

.servicetextcenter h2 {
  color: #fff;
  font-size: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-top: 10px;
}

.servicetextcenterline {
  margin: 0 auto;
  width: 10%;
  background-color: #e11c09;
  height: 2px;
  margin-top: 40px;
  z-index: 1;
  position: relative;
}

.servicetextcenterline::before {
  position: absolute;
  content: "\f48b";
  bottom: -10%;
  left: 0;
  width: auto;
  height: auto;
  font-family: "fontawesome";
  color: #e11c09;
  z-index: -1;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  animation: carmove1 linear infinite 20s;
  -webkit-animation: carmove1 linear infinite 20s;
}

@keyframes carmove1 {
  0%,
  100% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
  }

  50% {
    transform: translateX(100px);
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
  }
}

.servicebox {
  margin: 0px;
  padding: 0px;
  margin-top: 45px;
}

.serviceboxmain {
  margin: 0px;
  padding: 0px;
}

.serviceboxmainimg {
  margin: 0px;
  padding: 0px;
  width: 100%;
  position: relative;
}

.serviceboxmainimg img {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.serviceboxmainbox {
  margin: 0px;
  padding: 0px;
  position: absolute;
  bottom: -30px;
  right: 20px;
  background-color: #fefefe;
  padding: 10px;
  z-index: 2;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.serviceboxmainbox i {
  color: #e11c09;
  font-size: 20px;
}

.serviceboxmainbox::before {
  position: absolute;
  content: "";

  clip-path: polygon(0 100%, 0 0, 100% 0);
  background-color: #d4d4d4;
  right: -20px;
  bottom: 0;
  width: 20px;
  height: 30px;
}

.serviceboxmainboxtext {
  margin: 0px;
  padding: 10px 15px;
  background-color: #fff;
  min-height: 100px;
  padding-bottom: 25px;
}

.serviceboxmainboxtext h2 {
  color: #e11c09;
  font-size: 22px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin-top: 30px;
}

.serviceboxmainboxtext p {
  color: #01203f;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  margin-top: 15px;
  /*min-height: 144px;*/
}

/*-----------------trusted-------------------*/

.trustedleft {
  margin: 0px;
  padding: 0px;
  width: 95%;
  display: block;
  position: relative;
}

.trustedleftimg {
  margin: 0;
  padding: 0px;
  width: 100%;
  display: block;
}

.trustednumber {
  margin: 0px;
  padding: 10px;
  position: absolute;
  width: 25%;
  background-color: #e11c09;
  top: -30px;
  right: 20px;
  z-index: 1;
}

.trustednumber::before {
  position: absolute;
  content: "";
  z-index: 1;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  background-color: #1b1b23;
  height: 30px;
  position: absolute;
  right: -20px;
  top: 0;
  width: 20px;
}

.trustednumber h2 {
  color: #fff;
  font-size: 24px;
  font-family: "Inter", sans-serif;
}

.trustednumber h4 {
  color: #fff;
  font-size: 24px;
  font-family: "Inter", sans-serif;
}

.trushtedright {
  margin: 0;
  padding: 0px;
  width: 100%;
  display: block;
}

.trushtedright h5 {
  color: #e11c09;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.trushtedright h2 {
  color: #131313;
  font-size: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.trustedtruck {
  margin-top: 40px;
  width: 20%;
  background-color: #e11c09;
  height: 2px;
  position: relative;
}

.trustedtruck::before {
  position: absolute;
  content: "\f48b";
  font-family: "fontawesome";
  bottom: -2px;
  left: 10px;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  animation: mytuck2 linear infinite 9s;
  -webkit-animation: mytuck2 linear infinite 16s;
  color: #e11c09;
}

@keyframes mytuck2 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(80px);
    -webkit-transform: translateX(80px);
    -moz-transform: translateX(80px);
    -ms-transform: translateX(80px);
    -o-transform: translateX(80px);
  }
}

.trushtedright p {
  margin-top: 20px;
  font-size: 16px;
  color: #131313;
  font-family: "Inter", sans-serif;
}

.tushtedservice {
  margin: 20px 0px;
  padding: 0px;
}

.tushtedservice1 {
  margin: 40px 0px;
  padding: 0px;
  display: flex;
  gap: 15px;
}

.tushtedservice1icon {
  margin: 0px;
  padding: 0px;
}

.tushtedservice1icon img {
  width: 70px;
}

.tushtedservice1text {
  margin: 0px;
  padding: 0px;
}

.tushtedservice1text p {
  color: #131313;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.tushtedservicebtn {
  width: 35% !important;
  margin-top: -25px !important;
}

.tushtedservicebtnfos {
  font-size: 20px !important;
}

/*---------------mover&packer----------------*/

.moverpackertext {
  margin: 0px;
  padding: 0px;
  text-align: center;
}

.moverpackertext h2 {
  font-size: 200px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 200px;
  color: transparent;
  background: url(../img/50.jpg);
  background-clip: text;
  background-position: center;
}

.getintouchleft {
  background-color: #000000;
  margin: 0px;
  padding: 140px 80px;
  position: relative;
  z-index: 1;
}

.getintouchleft::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-image: url(../img/about-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.getintouchleft h4 {
  color: #fff;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.getintouchleft h2 {
  color: #fff;
  font-size: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.getintouchleft p {
  font-size: 16px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin-top: 20px;
}

.getintouchleft h6 {
  color: #fff;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  margin-top: 20px;
}

.getintouchleft h6 span {
  color: #e11c09;
}

.getintouchlefttruck {
  margin: 0px;
  padding: 0px;
  width: 20%;
  height: 2px;
  background-color: #e11c09;
  position: relative;
  margin-top: 30px;
}

.getintouchlefttruck::before {
  position: absolute;
  content: "\f48b";
  font-family: "fontawesome";
  bottom: -2px;
  left: 0;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  animation: mycar4 linear infinite 16s;
  -webkit-animation: mycar4 linear infinite 16s;
  color: #e11c09;
}
@keyframes mycar4 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(60px);
    -webkit-transform: translateX(60px);
    -moz-transform: translateX(60px);
    -ms-transform: translateX(60px);
    -o-transform: translateX(60px);
  }
}

.getintouchright {
  margin: 0px;
  padding: 60px 40px;
  background-color: #ebebeb;
  min-height: 570px;
  position: relative;
}

.getintouchrightbox {
  margin: 0px;
  padding: 60px 30px;
  position: absolute;
  top: 55px;
  left: -35px;
  z-index: 1;
  background-color: #e11c09;
  border: solid 10px #fff;
  width: 85%;
  height: auto;
}

.getintouchrightbox h4 {
  color: #fff;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.getintouchrightbox h2 {
  color: #fff;
  font-size: 36px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.getintouchrightboxtruck {
  margin: 0px;
  padding: 0;
  width: 20%;
  height: 2px;
  background-color: #fff;
  position: relative;
  margin-top: 30px;
}

.getintouchrightboxtruck::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "\f48b";
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  color: #fff;
  animation: mytruck5 linear infinite 16s;
  -webkit-animation: mytruck5 linear infinite 16s;
  font-family: "fontawesome";
}

@keyframes mytruck5 {
  0%,
  100% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
  }
  50% {
    transform: translateX(80px);
    -webkit-transform: translateX(80px);
    -moz-transform: translateX(80px);
    -ms-transform: translateX(80px);
    -o-transform: translateX(80px);
  }
}
.getintouchform {
  margin-top: 40px;
  padding: 0px;
}

.getintouchform input {
  width: 100%;
  display: block;
  background-color: white;
  padding: 8px;
  margin: 6px;
  font-size: 15px;
  color: #474747;
  font-family: "Inter", sans-serif;
  border: none;
  outline: none;
}

.getintouchform input:focus {
  outline: none;
  border: none;
}

.getintouchform textarea {
  width: 100%;
  display: block;
  background-color: white;
  padding: 8px;
  margin: 6px;
  font-size: 15px;
  color: #474747;
  font-family: "Inter", sans-serif;
  border: none;
  outline: none;
  height: 90px;
}

.getintouchform button {
  margin-top: 20px;
  width: 100%;
  display: block;
  padding: 15px 0px;
}

.getintouchform button:focus {
  outline: none !important;
  box-shadow: none !important;
}

/*------------------workingprocess---------------*/

.workingprocessbg {
  margin: 0px;
  padding: 80px 0px;
  background-color: #f6f6f6;
}

.workingprocesstextcenter {
  margin: 0px;
  padding: 0px;
  text-align: center;
  width: 50%;
  margin: 0 auto;
}

.workingprocesstextcenter h4 {
  color: #e11c09;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.workingprocesstextcenter h2 {
  color: #131313;
  font-size: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.workingprocessline {
  margin: 30px 0px;
  padding: 0px;
  width: 20%;
  height: 2px;
  background-color: #e11c09;
  position: relative;
  left: 40%;
}

.workingprocessline::before {
  position: absolute;
  content: "\f48b";
  bottom: -2px;
  left: 0;
  font-family: "fontawesome";
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  animation: mytruck6 linear infinite 16s;
  -webkit-animation: mytruck6 linear infinite 16s;
  color: #e11c09;
}

@keyframes mytruck6 {
  0%,
  100% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
  }
  50% {
    transform: translateX(90px);
    -webkit-transform: translateX(90px);
    -moz-transform: translateX(90px);
    -ms-transform: translateX(90px);
    -o-transform: translateX(90px);
  }
}

/*----------------faq---------------*/

.faqleft {
  margin: 0px;
  padding: 80px 40px;
  width: 100%;
  display: block;
  background-color: #000000;
  margin-top: 50px;
}

.faqleft h2 {
  color: #fff;
  font-size: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 70px;
}

.fqright {
  margin: 0px;
  padding: 40px 50px;
  background-color: #f5f5f5;
  margin-top: 50px;
}

/*-------------testimonial------------*/
.testimonialleft {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  overflow: hidden;
}

.testimonialleftimg {
  margin: 0px;
  padding: 50px 20px;
  width: 100%;
  display: block;
  background-image: url(../img/51.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 480px;
  position: relative;
  z-index: 1;
}

.testimoniallefttext {
  margin: 0px;
  padding: 40px;
  width: 80%;
  display: block;
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.692);
  border: 5px solid white;
  display: flex;
  gap: 35px;
}

.testimoniallefttext img {
  width: 1200px;
  height: 120px;
  object-fit: cover;
  margin-top: 60px;
}

.testimoniallefttext > h2 {
  color: #fff;
  font-size: 36px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 60px;
}

.testimonialright {
  margin: 0px;
  padding: 40px 40px;
}

.testimonialright h4 {
  color: #e11c09;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.testimonialright h2 {
  color: #1b1b23;
  font-size: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-top: 15px;
}

.testimonialrighttruck {
  margin-top: 20px;
  padding: 0px;
  width: 20%;
  background-color: #e11c09;
  height: 2px;
  position: relative;
}

.testimonialrighttruck::before {
  position: absolute;
  content: "\f48b";
  bottom: -2px;
  left: 0;
  transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  animation: myanimatetruck7 linear infinite 16s;
  -webkit-animation: myanimatetruck7 linear infinite 16s;
  font-family: "fontawesome";
  color: #e11c09;
}

@keyframes myanimatetruck7 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(80px);
    -webkit-transform: translateX(80px);
    -moz-transform: translateX(80px);
    -ms-transform: translateX(80px);
    -o-transform: translateX(80px);
  }
}

.testimonialbox {
  margin: 0px;
  padding: 0px;
  margin-top: 50px;
  padding: 0px;
}

.testimonialboxmain {
  margin: 0px;
  padding: 0px;
}

.testimonialboxmain i {
  font-size: 36px;
  color: #e11c09;
}

.testimonialboxmain p {
  margin-top: 20px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.testimonialboxmain h6 {
  color: #e11c09;
  font-size: 15px;
  font-style: italic;
}

/*--------------footer------------*/

.footerbg {
  margin: 0px;
  padding-top: 80px;
  padding-bottom: 20px;
  background-color: #000000;
  position: relative;
  z-index: 1;
}

.footerbg::before{

    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/footer-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.footerleft {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.footerleft p {
  color: #fff;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin-top: 25px;
}

.footermiddle {
  margin: 0px;
  padding: 0px;
  margin-left: 20%;
}

.footermiddle h2 {
  color: #fff;
  font-size: 24px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.footermiddle h2::before {
  position: absolute;
  content: "";
  top: 140%;
  left: 0;
  background-color: #e11c09;
  width: 50%;
  height: 2px;
  z-index: -1;
}

.footernav {
  margin-top: 20px;
  padding: 0px;
}

.footernav ul {
  margin: 0px;
  padding: 0px;
  display: block;
}

.footernav ul li {
  margin: 0px;
  padding: 8px 0px;
  list-style: none;
}

.footernav ul li a {
  margin: 0px;
  padding: 0px;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.footernav ul li a:hover {
  color: #e11c09;
}

.footerright {
  margin: 0px;
  padding: 0px;
}

.footerright h2 {
  color: #fff;
  font-size: 24px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.footerright h2::before {
  position: absolute;
  content: "";
  top: 140%;
  left: 0;
  background-color: #e11c09;
  width: 50%;
  height: 2px;
  z-index: -1;
}

.footerrightmain {
  margin: 0px;
  padding: 0px;
  margin-top: 35px;
}

.footerrightmainicon {
  margin: 8px 0px;
  display: flex;
  gap: 10px;
}

.footerrightmainicon i {
  color: #e11c09;
  line-height: 30px;
}

.footerrightmainicon p,
.footerrightmainicon p a {
  font-size: 16px;
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.footercopyright{

    margin: 0px;
    padding: 5px px;
    background-color: #000000;
    border-top: solid 1px #5e5e5e;
}


.footercopyrighttext{

    margin: 0px;
    padding: 0px;
    text-align: center;
    margin-top: 10px;
}

.footercopyrighttext p ,.footercopyrighttext p a {

    color: #fefefe;
    font-size: 14px;
    text-decoration: none;
      font-family: "Inter", sans-serif;
  font-weight: 500;
}

.responsivelogobox{

  margin: 0px;
  padding: 0px;
  display: none;
  width: 100%;
  display: block;
  background-color: #fff;

}

.responsivelogoboxmainlogo{

  display: none;
}

.responsivelogoboxmainbar{

  display: none;
}

.responsivelogoboxmain{

  display: none;

}

.bannerresbtn{

  margin: 0px;
  padding: 0px;
  display: none;
}

.resnavigation{

  margin: 0px;
  padding: 0px;
  display: none;

}



/*==========================aboutuspage===================*/

.aboutusbaner{

  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 250px;
  background-image: url(../img/aboutuspagebanner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
display: flex;
justify-content: center;
align-items: center;
}

.aboutusbaner::before{

  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,rgba(16, 55, 182, 0.925) 40%, transparent);
  z-index: -1;
}

.aboutusbannertext{

  margin: 0px;
  padding: 0px;
}

.aboutusbannertext h1{

  color: #f0f0f0;
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.aboutusbannertext h2 , .aboutusbannertext h2 a{

  color: #fff;
  font-size: 20px;
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

.aboutuspageleftabout{

  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

/*=================servicepage===================*/

.servicepagebox{

  margin: 0px auto;
  padding: 0px;
  width: 100%;
  max-width: 900px;
}


.serviceboximg{

  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;

}

.serviceboximg img{

  width: 100%;
  display: block;
  height: 550px;
  object-fit: cover;
}

.serviceboxtext{

  margin: 40px 0px;
  padding: 0px;
}

.serviceboxtext h2{

  color: #01203f;
  font-size: 32px;
   font-family: "Inter", sans-serif;
   text-align: center;
   font-weight: 500;
}

.serviceboxtext h4{

  color: #01203f;
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin-top: 30px;
}

.serviceboxtext p{

  font-size: 16px;
  color: #474747;
    font-family: "Inter", sans-serif;
  font-weight: 500;
}


.serviceboxtextmain{

  margin-top: 20px;
  padding: 0px;
  width: 30%;
}

.serviceboxtextmainboder{

  width: 100%;
  background-color: #bbbbbb;
  height: 2px;
  margin: 50px 0px;
}

/*========================gallerypage========================*/


.gallerybox{

  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  margin-bottom: 40px;
}


/*======================contactuspage=======================*/


.contactusbox{

  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.contactusboximg{

  margin: 0px;
  padding: 0px;
}

.contactustext{

  margin: 0px;
  padding: 20px;
  width: 100%;
  display: block;
  position: relative;
}

.contactustext1{

  width: 15%;
  margin: 0 auto;
  background-color: #e11c09;
  border: solid 5px #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 35px;
 position: absolute;
top: -20px;
 z-index: 10;
 left: 40%;
}

.contactustext1 i{

  color: #fff;
  font-size: 20px;
}


.contactustext2{

  margin-top: 50px;
  padding: 0px;
  text-align: center;
}

.contactustext2 h4{

  color: #e11c09;
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.contactustext2 p ,.contactustext2 p a {

  color:#1b1b23;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    text-decoration: none;
}

/*--------------map&form--------------*/


.mapbox{

  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}


.contactusformright{

  margin: 0px;
  padding: 0px 40px;
}

.contactusformright h6{

  color: #e11c09;
  font-size: 20px;
 font-family: "Inter", sans-serif;
 font-weight: 500;
}

.contactusformright h2{

  color: #01203f;
  font-size: 48px;
   font-family: "Inter", sans-serif;
 font-weight: 500;
}

.contactusformrightmain{

  margin-top: 20px;
  padding: 0px;
}

.contactusformrightmain input{
  width: 100%;
  display: block;
  border: solid 1px #e11c09;
  font-size: 15px;
  color: #474747;
  font-family: "Inter", sans-serif;
  margin: 6px 0px;
  padding: 8px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.contactusformrightmain textarea{
  width: 100%;
  display: block;
  margin: 0px;
  padding: 8px;
  height: 120px;
  border: solid 1px #e11c09;
  font-size: 15px;
  color: #474747;
  font-family: "Inter", sans-serif;
  margin: 6px 0px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.contactusformrightmain button{

  margin-top: 20px;
  width: 100%;
  padding: 6px 0px;
  font-size: 16px;
}

#circlePath{

  color: #000000;
  white-space: unset;
}


 textPath {
        white-space: nowrap; /* or pre, pre-line, pre-wrap */
    }

@media (max-width:991px){

.dis-none{

  display: none;
}

.responsivelogobox{

  display: block;
  padding: 20px 30px;
}

.responsivelogoboxmain{

  display: flex;
  justify-content: space-between;
}


.responsivelogoboxmainlogo{

  margin: 0px;
  padding: 0px;
  display: block;
}

.responsivelogoboxmainbar{

  margin: 0px;
  padding: 0px;
  display: block;
}

.responsivelogoboxmainbar i{

  font-size: 24px;
  cursor: pointer;
  margin-top: 8px;

}

.bannerbodyleft{

      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
      padding-top: 50px;
}

.bannerbodybtn{

  width:auto;
}
.bannerbodylefttexttopboxtext{

  margin-top: 40px;
  text-align: center;
}
.bannerbodylefttexttopboxtext h2{

  font-size: 32px;
}

.bannerbodylefttexttopboxtext h2 span{
  font-size: 36px;
}

.bannerbodylefttexttopboxtext p{

  text-align: center;
  width: 100%;
}

.aboutusleft-img::after{

  display: none;
}

.aboutusright{

  margin-top: 180px;
}

.aboutusleft-img::before{
  width: 65%;
}

.aboutuslefticon{

  left: 15%;
}

.aboutusright h2{
  font-size: 28px;
}

.aboutusrightexpertiseimg{

  margin-top: 30px;
}

.servicetextcenterline{

  width: 20%;
}

@keyframes carmove1 {
  0%,
  100% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
  }

  50% {
    transform: translateX(60px);
    -webkit-transform: translateX(60px);
    -moz-transform: translateX(60px);
    -ms-transform: translateX(60px);
    -o-transform: translateX(60px);
}
}

.trushtedright{
  margin-top: 30px;
}

.trushtedright h2{

  font-size: 28px;
}

@keyframes mytuck2 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(50px);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
}
}

.tushtedservicebtn{
  width: 55% !important;
}

.getintouchleft h2{

  font-size: 28px;
  margin-top: 20px;
}
.getintouchleft{

  padding: 70px 20px;
}

@keyframes mycar4 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(30px);
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px);
}
}

.getintouchrightbox{
  left: 0;
  width: 100%;
  position: relative;
  top: 20px;
}
.workingprocesstextcenter{
  width: 100%;
}
.workingprocesstextcenter h2{

  font-size: 28px;
  margin-top: 20px;
}

@keyframes mytruck6 {
  0%,
  100% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
  }
  50% {
    transform: translateX(60px);
    -webkit-transform: translateX(60px);
    -moz-transform: translateX(60px);
    -ms-transform: translateX(60px);
    -o-transform: translateX(60px);
}
}
.faqleft h2{

  font-size: 28px;
  line-height: 40px;
}

.testimoniallefttext > h2{

  font-size: 28px;
}

.testimoniallefttext{

  left: 40px;
}

.testimonialright h2{

  font-size: 28px;
}

@keyframes myanimatetruck7 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(40px);
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
}
}

.footermiddle{

  margin-left: 0;
}

.mt-res-top{

  margin-top: -30px !important;
}

.tushtedservicebtn{

  margin-top: 20px !important;
}

.getintouchleft h6 span{

 line-height: 25px;
}

.getintouchrightbox h2{

  font-size: 28px;
}

@keyframes mytruck5 {
  0%,
  100% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
}
}

.servicetextcenter h2{

  font-size: 28px;
}

.servicebg::before{

  display: none;
}

.res-text-center{

  text-align: center;
}
.bannerbodyimg{

  height: auto;
}

.aboutusleft{

  inset: 0;
}

.trustednumber{
  width: 40%;
}

.moverpackertext h2{

  font-size: 72px;
  line-height: 100px;
}

.mt-120{

  margin-top: 60px;
}

.bannerresbtn{

  display: block;
  text-align: center;
  margin-top: 40px;
}

.bannerresbtn button{

  background-color: #e11c09 !important;
  color: white !important;
  padding: 10px 30px;
  font-size: 20px;

} 

.bannerbodybtn{

  display: none;
}

.resnavigation{
  display: block;
  margin: 0px;
  padding: 20px 0px;
  width: 250px;
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  background-color: #fff;
  z-index: 999;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.resnavigation ul{

  margin: 0px;
  padding: 0px 15px;
  display: block; 
}

.resnavigation ul li{

  margin: 0px;
  padding: 10px 0px;
  list-style: none;
}

.resnavigation ul li a{

  margin: 0px;
  padding: 0px;
  font-size: 16px;
  color: #131313;
  text-decoration: none;
  cursor: pointer;
}

.resnavigation.main{

  left: 0;
}

.testimoniallefttext{

  flex-direction: column;
}

.workingprocessbg{

  padding-bottom: 20px;
}
.testimoniallefttext img{

  margin-left: 20%;
}

.aboutusright1{

  margin-top: 40px !important;
}

.serviceboxtextmain{
  width: 70%;
}

.serviceboximg img{

  height: 350px;
}

.contactusformright h2{

  font-size: 28px;
}

.contactusformright{

  margin-bottom: 30px;
}
.aboutusbannertext{

  text-align: center;
}
#popup form {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 350px;
    max-width: 90%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-in-out;
    margin-top: 36%;
    margin-left: 5%;
}

}