*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    overflow-x: hidden;
}


/* Fonts */

  @font-face {
    font-family: Pop-100;
    src: url('fonts/Poppins/Poppins-Thin.ttf');
  }
  @font-face {
    font-family: Pop-200;
    src: url('fonts/Poppins/Poppins-ExtraLight.ttf');
  }
  @font-face {
    font-family: Pop-300;
    src: url('fonts/Poppins/Poppins-Light.ttf');
  }
  @font-face {
    font-family: Pop-400;
    src: url('fonts/Poppins/Poppins-Regular.ttf');
  }
  @font-face {
    font-family: Pop-500;
    src: url('fonts/Poppins/Poppins-Medium.ttf');
  }
  @font-face {
    font-family: Pop-600;
    src: url('fonts/Poppins/Poppins-SemiBold.ttf');
  }
  @font-face {
    font-family: Pop-700;
    src: url('fonts/Poppins/Poppins-Bold.ttf');
  }
  @font-face {
    font-family: Pop-800;
    src: url('fonts/Poppins/Poppins-ExtraBold.ttf');
  }
  @font-face {
    font-family: Amarante;
    src: url('fonts/Amarante/Amarante-Regular.ttf');
  }


  .pop-200{
    font-family: Pop-200;
  }
  .pop-300{
    font-family: Pop-300;
  }
  .pop-400{
    font-family: Pop-400;
  }
  .pop-500{
    font-family: Pop-500;
  }
  .pop-600{
    font-family: Pop-600;
  }
  .pop-700{
    font-family: Pop-700;
  }
  .amr-font{
    font-family: Amarante;
  }







/* common css */



.text-justify{
  text-align: justify;
}
.p-relative{
    position: relative;
}
.text-up{
  text-transform: uppercase;
}
.w-fit{
    width: fit-content;
}
.flex-col{
    flex-direction: column;
}
a{
    text-decoration: none;
}
.lt-green{
    background-color: #8AA03E1A;
}
.fs-13{
    font-size: 13px;
}
.fs-12{
    font-size: 12px;
}
.fs-14{
    font-size: 14px;
}
.fs-15{
    font-size: 15px;
}
.fs-20{
    font-size: 20px;
}
.fs-23{
    font-size: 23px;
}
.text-green{
    color: #8AA03E;
}
.obj-cover{
    object-fit: cover;
}
.br-10{
    border-radius: 10px;
}
.br-gray{
    border-right: 0.5px solid #88888880;
}
.bg-green{
    background-color: #8AA03E;
}
.text-red{
  color: #FE2923;
}
.bg-red{
  background-color: #FE2923;
}
.bg-gray{
  background-color: #272727;
}
.sec-head{
  font-size: 36px;
  font-family: Pop-600;
}





/* card carousel */

.item-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 9;
}

.scroll-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  /* background-color: #00000025; */
  cursor: pointer;
  font-size: 1.5rem; /* Size of the arrow */
  font-weight: 800;
  color: #030303; /* Grey color for the arrow */
  transition: color 0.3s ease; /* Smooth transition for hover effect */
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 99;
}

.scroll-btn img {
  width: 50px;
  height: 50px;
}

.scroll-btn:hover {
  color: #000000; /* Darker grey when hovering */
}

.card-wrapper {
  display: flex;
  overflow: hidden; /* Hide scrollbar */
  scroll-behavior: smooth;
  white-space: nowrap;
  width: 100%;
  max-width: 85vw; /* Adjust based on your design */
  box-sizing: border-box;
  position: relative; /* For positioning scroll buttons */
  flex-wrap: nowrap !important;
}

.card-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Webkit browsers */
}

.prev{
  left: 2%;
  top: 40%;
}
.next{
  right: 2%;
  top: 40%;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////// */


/* Navbar */

.logo{
    width: 90%;
}

.active-nav{
  /* color: #ff7e79 !important; */
  border-bottom: 2px solid #fff;
}

.navbar-toggler{
  background-color: #ffffffd1;
}

.dropdown-menu{
  background-color: #000000c7;
}
.dropdown-item:hover{
      background-color: #787878;

}




/* Hero */
.hero {
    width: 100%;
    height: 750px;
}
.video-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.video-wrapper video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.hero-about{
  position: absolute;
  left: 5%;
  bottom: 30%;
  z-index: 10;
}
.hero-about h1{
  font-size: 52px;
}
.hero-about h2{
  font-size: 70px;
  color: #FE2923;
  text-shadow: 0px 0px 20px #FE2923;
  margin-top: -20px;
}

.book-now{
  border: 3px solid #FE2923;
  width: 350px;
  /* height: 60px; */
  border-radius: 15px;
  padding-top: 0.6rem ;
  padding-bottom: 0.6rem ;
  font-size: 24px;
  color: #fff;
  text-shadow: 0px 0px 5px #fff;
  box-shadow: 0px 0px 10px #FE2923, 0px 0px 10px #FE2923 inset;
}
.book-now:hover{
  color: #fff;
  text-shadow: 0px 0px 10px #fff;
  box-shadow: 0px 0px 15px #FE2923, 0px 0px 15px #FE2923 inset;

}



/* About us */
.know-more{
  border-radius: 10px;
}
.know-more:hover{
  color: #fff;
}
.about-text {
  width: 850px;
  position: absolute;
  top: 16%;
  left: 27%;
}
.about-text h1{
  font-size: 36px;
  border-bottom: 5px solid #000;
}
.about-text hr{
  margin-bottom: 1rem;
  margin-top: -9px;
  opacity: 1;
}


/*  */




/* why choose us */
.choose{

  h2{
    border-bottom: 5px solid #FE2923;
  }
  hr{
    margin-bottom: 1rem;
    margin-top: -1px;
    opacity: 0.8;
    color: #FE2923;
  }
}

.choose-box{
  width: 350px;
  height: 350px;
  border-radius: 20px;
  transition: all 0.3s ease; 
}
.choose-box:hover{
  box-shadow: 0px 0px 15px #FE2923;
}
.choose-box img{
  width: 100px;
  height: 100px;
}



/* servicees */

.service{

  h2{
    border-bottom: 5px solid #FE2923;
  }
  hr{
    margin-bottom: 1rem;
    margin-top: -1px;
    opacity: 0.8;
    color: #FE2923;
  }
}

.gray-box{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80vh;
  background-color: #0000001A;
}
.ser-tick{
  /* width: 500px; */
  width: 90%;
  border-radius: 100px;

  i{
    font-size: 60px;
    text-shadow: 4px 4px 0px #00000040;
  }

  h3{
    font-size: 28px;
  }
}

.truck-img-box , .works{
  position: relative;
  z-index: 9;
}

.works{
  border-radius: 20px;
}

.checks {
  margin-left: 3rem;
  i{
    font-size: 25px;
  }
}



/* past */

.past{

  h2{
    border-bottom: 5px solid #9587DE;
  }
  hr{
    margin-bottom: 1rem;
    margin-top: -1px;
    opacity: 0.8;
    color: #9587DE;
  }
}

  /* //////slider css////// */
      
  


  /* /////slider css//// */

    :root {
      /* Max desktop size for ACTIVE slide per spec */
      --slide-active-w: 500px;
      --slide-active-h: 300px; /* 500x300 */
      --slide-side-scale: 0.75; /* inactive cards slightly smaller */
      --slide-side-opacity: 0.6; /* dim inactive */
      --slide-gap: 1.5rem;      /* space between cards (visual offset) */
      --slide-transition: 0.5s; /* animation duration */
      --arrow-size: 48px;
      --arrow-bg: #8B1D1D;      /* sample brand color */
      --arrow-bg-hover: #a22626;
    }

   

    

    

  

    /* --- Carousel Layout Wrapper --- */
    .pc-carousel-wrapper {
      position:relative;
      max-width:100%;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-inline:auto;
      /* Reserve vertical space = active height so layout doesn't jump */
      height:var(--slide-active-h);
    }

    /* Track holds absolutely-positioned cards */
    .pc-carousel-track {
      position:relative;
      width:100%;
      max-width:calc(var(--slide-active-w) + (var(--slide-active-w) * var(--slide-side-scale)) + 4 * var(--slide-gap));
      height:100%;
      margin-inline:auto;
    }

    /* Base card style */
    .pc-card {
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%, -50%) scale(var(--slide-side-scale));
      width:min(100%, var(--slide-active-w));
      height:var(--slide-active-h);
      border-radius:1.25rem;
      overflow:hidden;
      transition:
        transform var(--slide-transition) ease,
        opacity var(--slide-transition) ease,
        box-shadow var(--slide-transition) ease;
      opacity:var(--slide-side-opacity);
      box-shadow:0 0 0 rgba(0,0,0,0);
      cursor:pointer;
    }

    /* Image fills card */
    .pc-card img {
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
    }

    /* Overlay for fade */
    .pc-card::after {
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      opacity:1;
      transition:opacity var(--slide-transition) ease;
    }
    /* Left (prev) gradient fades toward center */
    .pc-card.prev::after {
      background:linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 60%);
    }
    /* Right (next) gradient fades toward center */
    .pc-card.next::after {
      background:linear-gradient(to left, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 60%);
    }
    /* Default (when many slides) fallback overlay */
    .pc-card.off::after {
      background:rgba(0,0,0,.65);
    }

    /* ACTIVE CARD */
    .pc-card.active {
      transform:translate(-50%, -50%) scale(1);
      opacity:1;
      z-index:3;
      box-shadow:0 0 25px rgba(0,0,0,.65);
    }
    .pc-card.active::after {
      opacity:0; /* no fade */
    }

    /* PREV + NEXT positions */
    .pc-card.prev {
      z-index:2;
      transform:translate(calc(-50% - 55%), -50%) scale(var(--slide-side-scale));
    }
    .pc-card.next {
      z-index:2;
      transform:translate(calc(-50% + 55%), -50%) scale(var(--slide-side-scale));
    }
    /* NOTE: 55% works well to show ~half of side slides; adjust to taste */

    /* If >3 slides, any not in prev/active/next get hidden */
    .pc-card.off {
      z-index:1;
      opacity:0;
      transform:translate(-50%, -50%) scale(0.5);
      pointer-events:none;
    }

    /* --- Nav Arrows --- */
    .pc-carousel-arrow {
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      width:var(--arrow-size);
      height:var(--arrow-size);
      border-radius:50%;
      border:none;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:1.75rem;
      line-height:1;
      color:#fff;
      background:var(--arrow-bg);
      transition:background 0.2s ease, transform 0.2s ease;
      z-index:5;
    }
    .pc-carousel-arrow:hover {
      background:var(--arrow-bg-hover);
      transform:translateY(-50%) scale(1.05);
    }
    .pc-carousel-arrow:active {
      transform:translateY(-50%) scale(0.95);
    }
    .pc-carousel-arrow.pc-prev { left:-1.75rem; }
    .pc-carousel-arrow.pc-next { right:-1.75rem; }

    /* On very narrow screens, pull arrows in */
    @media (max-width:576px) {
      :root {
        --slide-side-scale:0.6;
        --slide-side-opacity:0.4;
        --slide-gap:1rem;
        --arrow-size:36px;
      }
      .pc-carousel-arrow.pc-prev { left:0; }
      .pc-carousel-arrow.pc-next { right:0; }
      .pc-card {
        height:auto; /* allow responsive height */
        aspect-ratio:5/3; /* maintain ratio on mobile */
      }
      .pc-carousel-wrapper { height:auto; padding-block:1rem; }
      .pc-carousel-track { height:auto; aspect-ratio:5/3; }
    }

    /* Show All button spacing */
    .pc-show-all-wrapper {
      margin-top:3.5rem;
    }

















/* testmonials */
.test{

  h2{
    border-bottom: 5px solid #FE2923;
  }
  hr{
    margin-bottom: 1rem;
    margin-top: -1px;
    opacity: 0.8;
    color: #FE2923;
  }
}

.gray-box2{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 35vh;
  background-color: #0000001A;
}

.test-box{
  width: 300px;
  height: 280px;
  border-radius: 20px;
  background-color: #fff;
  text-wrap-mode: wrap;
  box-shadow: 0px 0px 20px 0px #0000001A;
}

.quote{
  height: 30px;
  width: 37px;
  /* object-fit: cover; */
}

.test-box p i{
  font-size: 30px;
}
.test-slider .card-wrapper{
  max-width: 72vw;
}
.test-prev{
  left: 0%;
  top: 40%;
}
.test-next{
  right: 0%;
  top: 40%;
}
.show-all{
  border-radius: 10px;
  position: relative;
  z-index: 9;
  display: block;
  width: 250px;
  padding-top: 1.2rem ;
  padding-bottom: 1.2rem ;

  /* height: 60px; */
}




/* contact */
.contact{

  h3{
    border-bottom: 5px solid #FE2923;
  }
  hr{
    margin-bottom: 1rem;
    margin-top: -1px;
    opacity: 0.8;
    color: #FE2923;
  }
}
.con-box{
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px #0000001A;
  border-radius: 10px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.con-box h5{
  font-size: 28px;
}

.con-box form button{
  width: 180px;
  height: 40px;
}
.con-box form button:hover{
 background-color: #cf1610;
}

.con-box .form-control{
  /* border: 2px solid #54BA4F; */
  background-color: #FE29231A;
  border: none;
}

.con-box .form-control::placeholder{
  font-size: 14px;
  font-family: Pop-200;
  color: #8b8b8b;
}



/* footer */
.foot-logo{
  width: 250px;
}



/* ////////////////////////// */
/* About Page */

.about-hero{
  width: 100%;
  height: 60vh;
  
  img{
    object-fit: cover;
    width: 100%;
    height: 60vh;
  }
}
.abt-overlay{
  width: 100%;
  height: 60vh;
  position: absolute;
  left: 0%;
  top: 0%;
  background-color: #000000ad;

  h2{
    font-size: 55px;
  }
}

.abt-box{
  border-radius: 10px;
  background-color: #FE2923;

  i{
    font-size: 60px;
  }
}


.abt{

  h2{
    border-bottom: 5px solid #FE2923;
  }
  hr{
    margin-bottom: 1rem;
    margin-top: -1px;
    opacity: 0.8;
    color: #FE2923;
  }
}

.about{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}






/* ///////////////////////////////////////////////////// */
/* Contact page */

.contact-page{

  h2{
    border-bottom: 5px solid #FE2923;
  }
  hr{
    margin-bottom: 1rem;
    margin-top: -1px;
    opacity: 0.8;
    color: #FE2923;
  }
}
.con-det-box{
  width: 300px;
  height: 300px;
  border-radius: 20px;
  background-color: #fff;

  i{
    font-size: 55px;
  }
}



/* /////////////////////////// */
/* past campaign page */


.past-page{

  h2{
    border-bottom: 5px solid #9587DE;
  }
  hr{
    margin-bottom: 1rem;
    margin-top: -1px;
    opacity: 0.8;
    color: #9587DE;
  }
}

.gallery-box{
  width: 95%;
  height: 250px;
}

.img-vid{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  border-radius: 20px;
}
.img-vid video ,.img-vid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.past-text-box{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: fit-content;
  z-index: 9;
  background: linear-gradient(180deg,#ffffff00 0%, #212020bf 66%, #212121 92%);
  border-radius: 0px 0px 20px 20px;
  opacity: 0;
  text-wrap-mode: wrap;
  transition: 0.5s ease-in-out;

  p{
    font-size: 14px;
  }
}

.gallery-box:hover {
  .past-text-box{
    opacity: 1;
  }
}



/* /////////////////////////// */
/* ***ad campaign**** */

.ad-box{
  width: 100%;
  height: 275px;
  overflow-y: scroll;
}
.ad-box::-webkit-scrollbar {
  display: none;
}

.ad-box2{
  width: 100%;
  height: 275px;
  overflow-y: scroll;
}
.ad-box2::-webkit-scrollbar {
  display: none;
}






















/* /////////////////////////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////////////////////////// */


/* **************Media Query***************** */

  /* ****max-widths**** */

  @media(max-width:1100px){
    .choose-box {
      width: 300px;
      height: 300px;
    }
    .choose-box img{
      width: 80px;
      height: 80px;
    }
    .ser-tick {
      i {
          font-size: 55px;
          text-shadow: 4px 4px 0px #00000040;
      }
      h3 {
        font-size: 26px;
      }
    }
    .checks h6{
      font-size: 14px;
    }
    .test-slider .card-wrapper {
      max-width: 80vw;
    }
    .quote {
      height: 22px;
      width: 30px;
    }
    .test-box h6{
      font-size: 13px;
    }
    .test-box p i {
      font-size: 25px;
    }
    .test-box {
    width: 260px;
    height: 260px;
    }
    .sec-head2{
      font-size: 32px;
    }
    .about-text h1 {
      font-size: 30px;
      border-bottom: 5px solid #000;
    }
    .about-text{
      width: 640px;
      position: absolute;
      top: 12%;
      left: 26%;

      h4{
        font-size: 16px;
        margin-bottom: 0.25rem;
        margin-top: -5px;

      }
      h6{
        font-size: 12px;
        margin-bottom: 0.25rem;
      }
      p{
        font-size: 12px;
      }
    }
    .gray-box {
      height: 30vh;
    }
    .gray-box2 {
      height: 15vh;
    }
    .hero-about {
      position: absolute;
      left: 5%;
      bottom: 20%;
      z-index: 10;
    }
    .hero {
      width: 100%;
      height: 670px;
    }
    .logo {
      width: 65%;
    }

    .about-hero {
      height: 35vh;

      img {
          object-fit: cover;
          width: 100%;
          height: 35vh;
      }
    }
    .abt-overlay {
      height: 35vh;
    }
    .abt-box{
      height: 250px;
    }
    .past-text-box{
      h3{
        font-size: 18px;
      }
      p{
        line-height: 14px;
      }
    }
  }


  @media(max-width:900px){
    .truck{
      height: 400px;
    }
    #about {
      width: 100%;
      height: 400px;
    }
    .about-text {
      width: 520px;
      position: absolute;
      top: 12%;
      left: 25%;
    }
    .about-text {
      h1 {
      font-size: 25px;
      }
      h4 {
        font-size: 15px;
        margin-bottom: 0.25rem;
        margin-top: -7px;
      }
      p {
        font-size: 11px;
      }
      .know-more{
        font-size: 12px;
      }
    }
    .choose-box {
      width: 225px;
      height: 235px;
  
      img {
        width: 35px;
        height: 35px;
      }
      h5 {
        font-size: 14px;
      }
      p{
        font-size: 10px;
      }

    }
    .ser-tick {
      i {
        font-size: 35px;
        text-shadow: 4px 4px 0px #00000040;
      }
      h3 {
        font-size: 18px;
      }
    }
    .sec-head2 {
      font-size: 22px;
    }
    .checks {
      margin-left: 14px;
      i{
        font-size: 16px;
      }
    }
    .checks h6 {
      font-size: 11px;
    }
    .test-prev {
      left: -5%;
      top: 40%;
    }
    .test-next {
        right: -6%;
        top: 40%;
    }
    .test-box {
      width: 200px;
      height: 230px;

      h6 {
       font-size: 12px;
     }
     h5{
      font-size: 12px;
    }
      p i{
       font-size: 16px;
     }
    }
    .navbar-collapse{
      background: linear-gradient(90deg,#000000 0%, #24242447 25%, #ffffff00 49%, #0a0a0a96 75%, #212121 100%);
      padding-left: 1rem;
    }
    .abt-box {
        height: 300px;
    }
    .con-det-box{
      width: 230px;
      height: 250px;

      i {
        font-size: 40px;
      }
    }
  }

  @media(max-width:800px){
    .test-slider .card-wrapper {
      max-width: 85vw;
    }
    .gray-box2 {
      height: 20vh;
    }
    .test-prev {
      left: -4%;
      top: 40%;
    }
    .test-next {
        right: -5%;
        top: 40%;
    }
    .video-wrapper video {
      min-width: 100%;
      max-width: 120%;
      min-height: 100%;
      object-fit: cover;
    }
  }


  @media(max-width:576px){

    .hero-about {
      position: absolute;
      left: 0%;
      bottom: 20%;
      z-index: 10;
      background-color: #000000a3;
      padding-left: 1rem;
      padding-bottom: 1rem;
    }
    .truck {
      height: auto;
    }
    .about-text{
      top: 9%;
      left: 30%;

      h1 {
        font-size: 30px;
      }

      hr, h4, h6 , p , .know-more {
        display: none !important;
      }
    }

    #about {
      height: fit-content;
      width: 100%;
    }
    .choose-box {
      width: 350px;
      height: 350px;

      h5{
        font-size: 20px;
      }
      p{
        font-size: 14px;
      }
    }
    .choose-box img {
      width: 80px;
      height: 80px;
    }
    .gray-box {
      height: 55vh;
    }
    .checks {
      margin-left: 0px;
    }
    .test-box {
      /* width: 300px; */
      width: 280px;
      height: 280px;

      h6 {
        font-size: 14px;
      }
      .quote {
        height: 30px;
        width: 37px;
      }
      h5 {
        font-size: 14px;
      }
      p i {
        font-size: 20px;
      }
    }
    .test-prev {
      left: -1%;
      top: 40%;
    }
    .test-next {
        right: -2%;
        top: 40%;
    }
    .con-det-box {
      width: 300px;
      height: 300px;

      i{
        font-size: 55px;
      }
    }
    .checks{
      display: none;
    }
    .why-div{
      flex-direction: column;
    }
    .ad-box {
      i {
          font-size: 50px;
      }
    }
    .foot-logo {
      width: 200px;
      margin-bottom: 1rem;
    }
    .abt-overlay {
        h2 {
            font-size: 45px;
            margin-top: 1.5rem;
        }
    }
  }


  @media(max-width:450px){
  

  }



  @media(max-width:370px){

    .logo {
        width: 50%;
    }
    .about-text {
      top: 7%;
      left: 30%;
    }
    .gray-box2 {
      height: 30vh;
    }
    .test-box {
      width: 235px;
      height: 280px;

      .quote {
        height: 25px;
        width: 32px;
      }
    }
    .test-prev {
        left: -2%;
        top: 40%;
    }
    .gray-box {
      height: 70vh;
    }
    .book-now {
      width: 300px;
    }
    .hero-about h1 {
      font-size: 45px;
    }
    .hero-about h2 {
      font-size: 65px;
    }
  }






  /* ****min-widths**** */

  @media(min-width:800px){
    .contact-page{
      h2{
        margin-top: 5rem !important;
      }
    }
    .past-page{
      h2{
        margin-top: 5rem !important;
      }
    }
  }

  @media(min-width:576px){
    .about-text2{
      display: none;
    }
    .checks2{
      display: none;
    }
  }