@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic styling */
body {
  font-family: 'Roboto', sans-serif;
  color: #212529;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #212529;
}

/* Header */
header {
  background-color: #FFFFFF5C;
  font-family: 'Poppins', sans-serif;
  position: sticky;
  top: 0;
  height: 90px;
  z-index: 10;
}

.header-container {
  padding: 10px 96px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: 71px;
  height: 69px;
}

.header-logo-container {
  display: flex;
  align-items: center;
  gap: 13px;
}

.header-logo-text {

  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;


  /* Primary */
  color: #003A6C;


}

.header-nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  width: 100%;


}

.header-nav-link {
  font-weight: 400;
  font-size: 18px;
  line-height: 250%;
  color: #003A6C;
  position: relative;
  transition: all 0.3s ease;
}

.header-nav-link.active {
  font-weight: 700;
}

.header-nav-link.active:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 14px;
  height: 1px;
  background-color: #003A6C;
  margin: 0 auto;
}

.header-nav-list li {
  position: relative;
}

.header-nav-list li:hover .header-nav-sublist {
  display: block;
  opacity: 1;
}
.header-nav-sublist h5{
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #003A6C;
  border-bottom: 1px solid #003A6C;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.header-nav-sublist {
  display: none;
  opacity: 0;
  position: absolute;
  top: 50px;
  left: -110px;
  right: 0;
  margin: 0 auto;
  background-color: #fff;
  z-index: 10;
  transition: all 0.3s ease;
  width: 400px;

}

.header-nav-sublist {
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.header-nav-sublist:after {
  top: -5px;
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  margin: 0 auto;
  z-index: 10;
  transform: rotate(45deg);
}

.header-nav-sublist li {
  list-style: none;
}

.header-nav-sublink {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 200%;
  color: #003A6C;
  transition: border-bottom 0.3s ease;
}

/* .header-nav-sublink:hover {
  font-weight: 700;
  border-bottom: 1px solid #003A6C;
} */

/* .header-nav-link:hover{
  font-weight: 700;
} */
.header-nav-link:hover:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 14px;
  height: 1px;
  background-color: #003A6C;
  margin: 0 auto;

}

.header-nav-button {
  max-width: 121px;
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003A6C;
  border: none;
  border-radius: 5px;

}

.header-nav-button a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;


  color: #FFFFFF;
}

.header-nav-container {
  width: 100%;
}
.header-nav-button-mobile{
  display: none;
}
/* Header */
.Magic360 span>a {
  display: none !important;
}

/* hero */
.new-hero {
  background-image: url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 625px;
  margin-top: -90px;
  display: flex;
  align-items: center;;
}

.new-hero-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.new-hero-content {
  max-width: 938px;
  width: 100%;
  padding-top: 90px;
  padding-left: 96px;
}

.new-hero-content h1 {

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;


  color: #FFFFFF;
  padding-bottom: 11px;


}

.new-hero-content p {

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;


  color: #D1D1D1;
  padding-bottom: 30px;


}

.new-hero-content button {
  max-width: 262px;
  width: 100%;
  height: 74px;
  padding: 10px;
  gap: 10px;
  border-radius: 15px;
  background-color: #003A6C;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;





}

/* hero */
/* hero-section */
.hero-section {
  background-image: url('../assets/productsImg/hero-1.jpg');
  padding: 25px 0;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.hero-section.roadgrada {
  background-image: url('../assets/productsImg/roadgrada/hero.jpg');

}

.hero-section.hooklift-solutions {
  background-image: url('../assets/productsImg/hooklift-solutions/Hooklift-Solutions-10.jpg');

}

.hero-section.truckloada {
  background-image: url('../assets/productsImg/truckloada/TruckLoada-2.jpg');

}

.hero-section.dumploada-hp {
  background-image: url('../assets/productsImg/dumploada-hp/DumpLoada-HP-6.jpg');

}

.hero-section.dumploada {
  background-image: url('../assets/productsImg/dumploada/DumpLoada-6.jpg');

}

.hero-section.wet-materials-by-products {
  background-image: url('../assets/productsImg/wet-materials-by-products/Wet-Materials-By-Products-1-1.jpg');

}

.hero-section.flowdrya-green-series {
  background-image: url('../assets/productsImg/flowdrya-green-series/FlowDrya-Green-Series-2-scaled.jpg');

}

.hero-section.flowdrya-international-series {
  background-image: url('../assets/productsImg/flowdrya-international-series/FlowDrya-International-Series-14.jpg');

}

.hero-section.heatex {
  background-image: url('../assets/productsImg/heatex/Heatex-2.jpg');

}

.hero-section.drying-stations {
  background-image: url('../assets/productsImg/drying-stations/Drying-Stations-1.jpg');

}

.hero-section.flowfeeda {
  background-image: url('../assets/productsImg/flowfeeda/FlowFeeda-5.jpg');

}

.hero-section.flowsteama {
  background-image: url('../assets/productsImg/flowsteama/FlowSteama-1-1.jpg');

}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px;
}

.hero-title {
  font-size: 32px;
  font-weight: 600;
}

.hero-description {
  font-size: 22px;
  font-weight: 400;
}

.hero-link {
  font-size: 22px;
  color: #005801;
  font-weight: 400;
}

.hero-link:hover {
  text-decoration: underline;
}

/* hero-section */

/* introduction-content */
.introduction-content {
  padding: 70px 96px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 112px;
}

.introduction-content-left-title {
  border-left: 12px solid #003A6C;
  padding-left: 12px;
  margin-bottom: 50px;
}

.introduction-content-left {
  max-width: 715px;
  width: 100%;
}

.introduction-content-left-title h2 {

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  color: #003A6C;
}

.introduction-content-left-description {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: justify;
  color: #2C2C2C;
  padding-bottom: 16px;
}

.introduction-content-right-item {
  max-width: 417px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.introduction-content-right-item h3 {

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  color: #003A6C;
}

.introduction-content-right-item p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000000;


}

.introduction-content-right-item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.introduction-content-right-item-icon {
  max-width: 100px;
  /* width: 100%; */
  max-height: 91px;


}

.introduction-content-right-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* introduction-content */
/* services-highlights */
.services-highlights-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 96px;
}

.services-highlights-title-container {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-bottom: 36px;
}

.services-highlights-title {
  text-wrap: nowrap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  color: #003A6C;


}

.services-highlights-line {
  width: 100%;
  height: 1px;
  background-color: #DFDFDF;
}

.services-highlights-card {
  max-width: 294px;
  width: 100%;
  border-radius: 15px;
  border: 1px solid #F4F4F4;
  background: #FFF;
  padding: 5px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.services-highlights-card-img {
  max-width: 284px;
  width: 100%;
  height: 170px;
  border-radius: 15px;
}
.services-highlights-card-content{
  padding: 11px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* height: 100%; */
  flex: 1;
}
.services-highlights-card-link-container{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.services-highlights-card-title {
  color: #000;
font-family: Poppins;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 150%;
padding-bottom: 7px;
}

.services-highlights-card-description {
  color:  #2C2C2C;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%;
padding-bottom: 20px;
}

.services-highlights-card-link {
  border-radius: 5px;
  background: #003A6C;
  max-width: 123px;
  width: 100%;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  color: #FFF;

/* CTA Buttons: 18px */
font-family: Poppins;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 27px */
}

.services-highlights-card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  /* padding: 2rem 0; */
}

/* services-highlights */
/* Industries Served  */
.industries-served-container{
  /* max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 96px; */
  background-color: #003A6C;
  display: flex;
  justify-content: space-between;
  padding: 0 0 0 calc((100% - 1248px) / 2);
}
.industries-served-right{
  flex-grow: 0;
}
.industries-served-img{
  max-width: 538px;
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.industries-served-left{
  max-width: 845px;
  width: 100%;
  padding-top: 47px;
  padding-right: 47px;
  padding-bottom: 75px;
  flex: 1;
}
.industries-served-title{
font-family: Poppins;
font-size: 32px;
font-weight: 700;
line-height: 48px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
padding-bottom: 18px;
color: #fff;
}
.industries-served-description{

font-family: Poppins;
font-size: 24px;
font-weight: 400;
line-height: 36px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color: #fff;

}

.industries-served-item-container{
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 24px; */
  max-width: 800px;
  width: 100%;
  /* height: 328px; */
}
.industries-served-item{
/* max-width: 394px;
width: 100%;
height: 328px; */
padding: 40px;


}
.industries-served-item:nth-child(1){
  border-right: 1px solid #034E8F;
  border-bottom: 1px solid #034E8F;

}
.industries-served-item:nth-child(2){
  border-bottom: 1px solid #034E8F;
}
.industries-served-item:nth-child(3){
  border-right: 1px solid #034E8F;
}
.industries-served-item:nth-child(4){
  /* border-left: 1px solid #fff; */
}
.industries-served-item-icon{
  width: 73px;
height: 73px;


}

.industries-served-item-title{

font-family: Poppins;
font-size: 24px;
font-weight: 400;
line-height: 36px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
padding-bottom: 18px;
color: #fff;

}
.industries-served-item-description{


/* Body Text: 18px (Regular weight) */
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 150%;
/* or 27px */

color: rgba(255, 255, 255, 0.5);


}
/* Industries Served  */

/* More Offer */
.more-offer-container{
  padding: 70px 96px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
   /* padding-bottom: 83px; */
}
.more-offer-content-container{
   padding-bottom: 83px;
}
.more-offer-item{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 58px;

}
.more-offer-item-left-container{
  flex: 1;
  width: 100%;
  position: relative;
}
.more-offer-item-right{
  flex: 1;
  width: 100%;
}
.more-offer-item-right-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.more-offer-title{
font-family: Poppins;
font-size: 28px;
font-weight: 600;
line-height: 42px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color: #003A6C;
border-left: 12px solid #003A6C;
padding-left: 20px;
margin-bottom: 24px;

}
.more-offer-item-left{
  max-height: 540px;
  overflow-y: auto;
  padding-right: 24px;
  position: relative;
  padding-bottom: 40px;
}



.more-offer-item-left::-webkit-scrollbar {
  height: 14px;
  width: 14px;
}
.more-offer-item-left::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #F4F3F3;
}

.more-offer-item-left::-webkit-scrollbar-track:hover {
  background-color: #F4F3F3;
}

.more-offer-item-left::-webkit-scrollbar-track:active {
  background-color: #F4F3F3;
}

.more-offer-item-left::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #C1BCBC;
}

.more-offer-item-left::-webkit-scrollbar-thumb:hover {
  background-color: #C1BCBC;
}

.more-offer-item-left::-webkit-scrollbar-thumb:active {
  background-color: #C1BCBC;
}
.more-offer-item-left-container:after{
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: 80px;
  width: 100%;
  margin-right: 24px;
  background: linear-gradient(190.49deg, #FFFFFF 8.17%, rgba(255, 255, 255, 0.67) 105.52%);


}

.more-offer-item-left p,
.more-offer-item-left li
{

font-family: Poppins;
font-size: 18px;
font-weight: 400;
line-height: 27px;
text-align: justify;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color: #535353;
padding-bottom: 40px;


}
/* .more-offer-title {} */
/* More Offer */
/* testimonials */

.testimonials{
  padding: 70px 96px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 140px;
  overflow: hidden;
}
.testimonials-title{

font-family: 'Poppins';
font-style: normal;
font-weight: 700;
font-size: 32px;
line-height: 150%;
/* identical to box height, or 48px */
text-align: center;

/* Primary */
color: #003A6C;
padding-bottom: 58px;


}
.testimonials-slider .slick-dotted.slick-slider{
      margin-bottom: 80px !important;
}
.testimonials-slider .slick-dots{
  bottom: -70px !important;
}

.testimonials-slider-item{
  max-width: 395px;
  width: 100%;
  margin: 10px 12px;
  height: auto;
  border-radius: 15px;
  padding: 22px 17px;
  box-shadow: 0px 4px 10px 0px #d4d4d4bd;
  /* display: flex !important;
  flex-direction: column !important;
  gap: 44px !important; */

}
.testimonials-slider-item-stars{
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testimonials-slider .slick-slide>div{
  display: flex !important;
}
.testimonials-slider-item-header-name{

font-family: Poppins;
font-size: 18px;
font-weight: 700;
line-height: 27px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}
.testimonials-slider-item-header{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1px;
  padding-bottom: 44px;
}

.testimonials-slider-item-description{
font-family: Poppins;
font-size: 16px;
font-style: italic;
font-weight: 400;
line-height: 24px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}
.testimonials-slider .slick-dots li button:before{
  content: '' !important;
  background-color: #003A6C !important;
    width: 35px !important;
height: 4px !important;
}
.testimonials-slider .slick-dots li{
  width: 35px !important;
height: 4px !important;
  border-radius: 5px !important;
  opacity: 0px !important;
  padding: 0px !important;

}
/* testimonials */
/* main */
main {
  /* padding-top: 128px; */
  min-height: calc(100vh - 128px);
}




/* services section */
.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(50% - 10px), 1fr));
  /* gap: 10px; */
}

.service-item {
  flex: 1 1 calc(50% - 20px);
  box-sizing: border-box;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 20px;
  color: white;
  position: relative;
  height: 600px;
  margin: 10px;
  /* Adjust height as needed */
}

.service-item.item-2 {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item.item-bg {
  height: auto;
  background-color: #f5f5f5;
}

.service-item.item-2 h2 {
  margin: 0;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.5); Overlay for text readability */
  z-index: 1;
}

.service-item h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #212529;
}

.service-item p {
  font-size: 16px;
  font-weight: 400;
  color: #212529;
  margin-bottom: 20px;
}

.service-item h2,
.service-item p,
.service-item a {
  position: relative;
  z-index: 2;

}

.service-item a {
  margin: 0 5px;
  color: #005801;
  text-decoration: none;
}

.service-item a:hover {
  text-decoration: underline;
}

.hookloada {
  background-image: url('../assets/service/service-01.jpeg');
}

.halfpipe {
  background-image: url('../assets/service/service-02.jpeg');
}

.flowdrya {
  background-image: url('../assets/service/service-03.jpeg');
}

.Ecosphare Innovationstv {
  background-image: url('../assets/service/service-04.jpeg');
}

.product-2 {
  background-image: url('../assets/productsImg/HookLoada-2.jpg');
}

.product-3 {
  background-image: url('../assets/productsImg/HookLoada-3.jpg');
}

.product-4 {
  background-image: url('../assets/productsImg/HookLoada-4.jpg');
}

.product-5 {
  background-image: url('../assets/productsImg/HookLoada-5.jpg');
}

.product-6 {
  background-image: url('../assets/productsImg/HookLoada-6.jpg');
}

.product-7 {
  background-image: url('../assets/productsImg/HookLoada-7.jpg');
}

.product-8 {
  background-image: url('../assets/productsImg/HookLoada-8.jpg');
}

.product-9 {
  background-image: url('../assets/productsImg/HookLoada-9.jpg');
}

.product-10 {
  background-image: url('../assets/productsImg/roadgrada/RoadGrada-2.jpg');
}

.product-11 {
  background-image: url('../assets/productsImg/roadgrada/RoadGrada-3.jpg');
}

.product-12 {
  background-image: url('../assets/productsImg/roadgrada/RoadGrada-10.jpg');
}

.product-13 {
  background-image: url('../assets/productsImg/roadgrada/RoadGrada-11.jpg');
}

.product-14 {
  background-image: url('../assets/productsImg/roadgrada/RoadGrada-12.jpg');
}

.product-15 {
  background-image: url('../assets/productsImg/roadgrada/RoadGrada-14.jpg');
}

.product-16 {
  background-image: url('../assets/productsImg/truckloada/TruckLoada-4.jpg');
}

.product-17 {
  background-image: url('../assets/productsImg/truckloada/TruckLoada-5.jpg');
}

.product-18 {
  background-image: url('../assets/productsImg/truckloada/TruckLoada-6.jpg');
}

.product-19 {
  background-image: url('../assets/productsImg/truckloada/TruckLoada-7.jpg');
}

.product-20 {
  background-image: url('../assets/productsImg/dumploada-hp/DumpLoada-HP-1.jpg');
}

.product-21 {
  background-image: url('../assets/productsImg/dumploada-hp/DumpLoada-HP-2.jpg');
}

.product-22 {
  background-image: url('../assets/productsImg/dumploada-hp/DumpLoada-HP-9.jpg');
}

.product-23 {
  background-image: url('../assets/productsImg/dumploada-hp/DumpLoada-HP-10.jpg');
}

.product-24 {
  background-image: url('../assets/productsImg/dumploada-hp/DumpLoada-HP-5.jpg');
}

.product-25 {
  background-image: url('../assets/productsImg/dumploada-hp/DumpLoada-HP-4.jpg');
}

.product-26 {
  background-image: url('../assets/productsImg/dumploada-hp/DumpLoada-HP-7.jpg');
}

.product-27 {
  background-image: url('../assets/productsImg/dumploada-hp/DumpLoada-HP-8.jpg');
}

.product-28 {
  background-image: url('../assets/productsImg/dumploada/DumpLoada-7.jpg');
}

.product-29 {
  background-image: url('../assets/productsImg/dumploada/DumpLoada-8.jpg');
}

.product-30 {
  background-image: url('../assets/productsImg/dumploada/DumpLoada-9.jpg');
}

.product-31 {
  background-image: url('../assets/productsImg/dumploada/DumpLoada-10.jpg');
}

.product-32 {
  background-image: url('../assets/productsImg/dumploada/DumpLoada-11.jpg');
}

.product-33 {
  background-image: url('../assets/productsImg/dumploada/DumpLoada-12.jpg');
}

.product-34 {
  background-image: url('../assets/productsImg/wet-materials-by-products/Wet-Materials-By-Products-8.jpg');
}

.product-35 {
  background-image: url('../assets/productsImg/wet-materials-by-products/Wet-Materials-By-Products-9\ \(1\).jpg');
}


/* services section */


/* main */






/* Footer Styles */
footer {
  background-color: #f8f9fa;
  position: relative;
  padding-top: 66px;
}

/* Newsletter Section */
.newsletter-section {
  background-color: #003B73;
  max-width: 693px;
  width: 100%;
  height: 116px;
  border-radius: 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;


}

.newsletter-container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.newsletter-container h3 {
 color: white;
font-family: Poppins;
font-size: 32px;
font-weight: 700;
line-height: 48px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}

.newsletter-form {
  display: flex;
  max-width: 416px;
  width: 100%;
 border: 1px solid #FFFFFF1C;
 background-color: #034883;
 border-radius: 15px;
}

.newsletter-form input {
  background-color: #034883;
  width: 100%;
  border: none;
  border-radius: 15px;
  padding: 12px 20px;
  font-size: 16px;
  color: white;
  outline: none;
}
.newsletter-form input::placeholder {
  color: #FFFFFF4D;
}
.newsletter-form button {
 min-width: 86px;
min-height: 76px;
max-width: 86px;
max-height: 76px;
border-radius: 15px;
 border: 1px solid #FFFFFF1C;
 background-color: #034883;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
 font-size: 40  px;
 /* font-weight: 700; */
 line-height: 36px;
 text-align: center;
 text-underline-position: from-font;
 text-decoration-skip-ink: none;
cursor: pointer;
}


/* Footer Main */
.footer-main {
  padding: 60px 0;
}

.footer-container {
  max-width: 1440px;
  padding: 0 96px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  flex: 0 0 417px;
}

.footer-logo img {
  width: 71px;
height: 69px;



}
.footer-logo-container{
  display: flex;
  align-items: flex-start;
  gap: 6px;
    margin-bottom: 35px;
}
.footer-logo-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: Poppins;
font-size: 28px;
font-weight: 600;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #003B73;
}
.footer-contact {


}
.footer-contact p{
   display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 14px;
}

.footer-contact a {
font-family: Poppins;
font-size: 18px;
font-weight: 400;
line-height: 27px;
text-align: left;
color: black;
text-underline-position: from-font;
text-decoration-skip-ink: none;

  text-decoration: none;
  display: block;
  /* margin-bottom: 10px; */
}

.footer-social {
  display: flex;
  gap: 15px;
  padding-top: 24px;
}

.footer-social a {
  color: #003B73;
  font-size: 14px;
  background-color: #BBBBBB14;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  width: 39px;
height: 39px;
display: flex;
align-items: center;
justify-content: center;


}

.footer-links {
  display: flex;
  gap: 60px;
  flex: 1;
}
.footer-links-column{
  max-width: 216px;
  width: 100%;
}
.footer-links-column h4 {
  color: black;
padding-bottom: 13px;
font-family: Poppins;
font-size: 28px;
font-weight: 600;
line-height: 42px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}

.footer-links-column ul {
  list-style: disc;
  list-style-position: inside;
  list-style-type: none;
  padding: 0;
  color: #003B73;
}

.footer-links-column ul li {
  margin-bottom: 0;
}

.footer-links-column ul a {
  font-family: Poppins;
font-size: 18px;
font-weight: 400;
line-height: 45px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color: #003B73;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links-column ul a:hover {
  color: #333;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid white;
  padding: 20px 0;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-links a,
.footer-bottom p {
color: black;
font-family: Poppins;
font-size: 14px;
font-weight: 400;
line-height: 21px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}

.footer-bottom-links {
  display: flex;
  gap: 15px;
  align-items: center;
}



.footer-bottom-links span {
  color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}


/* slider */
.product-item-card {
  max-width: 223px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-item-card.slick-slide {
  display: flex !important;
}

.slider-section {
  background-color: #f8f8f8;
  padding: 25px 0;
}

.slider-container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.slider img {
  max-width: 88px;
  height: 45px;
  width: 100%;

}

.slider a {
  text-align: center;
  font-size: 11px;
  margin-top: 10px;
}

.slick-next:before,
.slick-prev:before {
  color: #000000 !important;
}

/* slider */

/* hero-section */
.hero-section {
  background-image: url('../assets/productsImg/hero-1.jpg');
  padding: 25px 0;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.hero-section.roadgrada {
  background-image: url('../assets/productsImg/roadgrada/hero.jpg');

}

.hero-section.hooklift-solutions {
  background-image: url('../assets/productsImg/hooklift-solutions/Hooklift-Solutions-10.jpg');

}

.hero-section.truckloada {
  background-image: url('../assets/productsImg/truckloada/TruckLoada-2.jpg');

}

.hero-section.dumploada-hp {
  background-image: url('../assets/productsImg/dumploada-hp/DumpLoada-HP-6.jpg');

}

.hero-section.dumploada {
  background-image: url('../assets/productsImg/dumploada/DumpLoada-6.jpg');

}

.hero-section.wet-materials-by-products {
  background-image: url('../assets/productsImg/wet-materials-by-products/Wet-Materials-By-Products-1-1.jpg');

}

.hero-section.flowdrya-green-series {
  background-image: url('../assets/productsImg/flowdrya-green-series/FlowDrya-Green-Series-2-scaled.jpg');

}

.hero-section.flowdrya-international-series {
  background-image: url('../assets/productsImg/flowdrya-international-series/FlowDrya-International-Series-14.jpg');

}

.hero-section.heatex {
  background-image: url('../assets/productsImg/heatex/Heatex-2.jpg');

}

.hero-section.drying-stations {
  background-image: url('../assets/productsImg/drying-stations/Drying-Stations-1.jpg');

}

.hero-section.flowfeeda {
  background-image: url('../assets/productsImg/flowfeeda/FlowFeeda-5.jpg');

}

.hero-section.flowsteama {
  background-image: url('../assets/productsImg/flowsteama/FlowSteama-1-1.jpg');

}

/* .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px;
}

.hero-title {
  font-size: 32px;
  font-weight: 600;
}

.hero-description {
  font-size: 22px;
  font-weight: 400;
}

.hero-link {
  font-size: 22px;
  color: #005801;
  font-weight: 400;
}

.hero-link:hover {
  text-decoration: underline;
} */

/* hero-section */



/* savings-section */
.savings-section {
  text-align: center;
  padding: 40px;
  background-color: #f9f9f9;
}

.savings-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.savings-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.savings-section li {
  margin-bottom: 10px;
  font-size: 16px;
  text-align: center;
}

.speak-button {
  background-color: #006400;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.speak-button:hover {
  background-color: #004d00;
}

/* savings-section */


/* hero message section */
.hero-message {
  text-align: center;
  max-width: 1140px;
  margin: 40px auto;
  width: 100%;
}

.hero-message h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
}

.hero-message-description {
  font-size: 22px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  padding-top: 10px;
}

.hero-message-text {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  padding: 30px 0;
  line-height: 1.5;
}

.hero-message a {
  color: #005801;
  text-decoration: none;
}

.hero-message a:hover {
  text-decoration: underline;
}


/* hero message section */


/* productivity-section */
.productivity-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.productivity-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}

.productivity-section p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
}

/* productivity-section */




.Magic360-container {
  max-width: 100% !important;
}

.m360CrA253518740833 {
  display: none !important;
}

/* key-features-container */
.key-features-container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.savings-section .key-features-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.savings-section .key-features-subtitle {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.savings-section .key-features-text {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* key-features-container */

/* video-section */
.video-section {
  max-width: 1100px;
  margin: 0 auto;
  /* Center the section */
}

.video-section h2 {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  /* Center the title */
}

.video-section p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  /* Center the text */
}

.video-container video {
  width: 100%;
  height: auto;
}

.video-content {
  padding: 60px 0;
  text-align: center;
}

.video-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
}

.video-section .video-subtitle {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  padding-bottom: 10px;
}

.video-text {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* video-section */


/* table-section */
.table-section {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding-top: 100px;


}

.table-header {
  text-align: center;
  margin-bottom: 20px;
}

.table-header h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.table-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  text-align: left;
}

.table-section th,
.table-section td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.table-section th {
  background-color: #005801;
  color: white;
}

.table-section tr:nth-child(even) {
  background-color: #f2f2f2;
}

.table-section tr:hover {
  background-color: #ddd;
}

/* table-section */


.disclaimer-section {
  max-width: 1100px;
  margin: 20px auto;
  width: 100%;
  /* margin: 20px 0; */
  /* padding: 10px; */
  font-size: 12px;
  color: #000000;
  line-height: 1.5;
  text-align: left;
}

.disclaimer-text {
  font-style: italic;
}






/* single-img-section */
.single-img-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffff;
}

.service-item .single-img-section {
  background-color: transparent;
  padding: 0;
}

.service-item .single-img-section .content-item {

  padding: 20px;
}

.single-img-section .content-container {
  max-width: 1110px;
  margin: 0 auto;
}

.single-img-section .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
}

.single-img-section .section-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
}

.service-item .single-img-section .section-subtitle {
  font-size: 25px;
  margin-bottom: 16px;
  font-weight: 700;
}

.single-img-section .section-description {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 24px;
}

.single-img-section .section-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.single-img-section .content-item {
  padding-bottom: 60px;
}

.single-img-section .content-item:last-child {
  padding-bottom: 0;
}


.section-link {
  font-size: 16px;

}

.section-link:hover {
  color: #005801;
  text-decoration: underline;
}

.section-image-container {
  position: relative;
}

.section-image-title {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 22px;
}

/* single-img-section */


.product-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f8f8;
  padding: 20px 0;
}

.product-item-container {
  display: flex;
  gap: 50px;
}

.product-item {
  text-align: center;
}

.product-image {
  width: 112px;
  height: 45px;
}

.product-link {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  color: #333;
  text-decoration: none;
}

.product-link:hover {
  color: #005801;
  text-decoration: underline;
}

/* global */
.mx-auto {
  margin: 0 auto;
}

/*  */


/* contact */
.contact-section {
  background-color: #f8f8f8;
  margin: 60px 0 0 0;
  padding: 30px;
  max-width: 1110px;
  margin: 0 auto;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 60px;
}

.product-options {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.product-label {
  display: inline-block;
  text-align: center;
  margin: 10px;
  max-width: 120px;
  width: 100%;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 120px;
  width: 100%;
  cursor: pointer;
}

.product-label img {
  max-width: 100px;
  width: 100%;

}

.sub-item-icon {
  max-width: 60px;
  width: 100%;
}

.dumploada-enquiry {
  padding-bottom: 40px;
}

#select-modal-name {
  text-transform: uppercase;
}

.model-options {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.model-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  cursor: pointer;
}

.contact-section-header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-section-header-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-section-header-title {
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
}


.contact-form {
  display: none;
  gap: 30px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="file"],
.contact-form textarea {
  height: 40px;
  padding: 8px 12px;
  font-size: 16px;
  outline: 1px solid #ccc;
  /* Adjust width to fit two inputs per row */
  box-sizing: border-box;

  width: 100%;
}

.contact-form textarea {
  height: 152px;
}

/* .contact-form div {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
} */
.contact-form .agreement-container {
  margin-bottom: 30px;
  cursor: pointer;
}

.contact-form .agreement-container .agreement-label {
  cursor: pointer;
}

.contact-form button {
  font-size: 16px;
  padding: 10px 20px;
  cursor: pointer;
  background-color: #004D1F;
  color: white;
  border: none;
  width: 100%;
  font-weight: 500;
  transition: background-color 0.3s ease;
  max-width: 240px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 51px;
}

.contact-form button:hover {
  background-color: #003816;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(50% - 20px);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  margin-bottom: 30px;
}


.contact-hero {
  /* background-image: url('/assets/contact/Contact-1.jpg'); */
  background-size: cover;
  background-position: center;
  /* height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-hero h1 {
  font-size: 32px;
  font-weight: 500;
}

.office-location {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.office-container {
  max-width: 1160px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}

.office-img {
  width: 100%;
  /* max-width: 110px; */
}

.office-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;


}

.office-info.right {


  align-items: flex-end;
  text-align: end;
}

.office-info.left {
  align-items: flex-start;
  text-align: start;
}

/* .office-address.left{} */
.office-address {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.office-address h3 {
  font-size: 32px;
  font-weight: 500;
  color: #000000;
}

.office-address p {
  font-size: 22px;
  color: black;

}

.office-address a {
  color: #004d00;
  font-size: 22px;
}

.office-address a:hover {
  text-decoration: underline;
}

.slider-section .slick-next {
  right: 10px !important;
}

.slider-section .slick-prev {
  left: 10px !important;
}

/* contact */

.preview {
  background-color: #f1f1f1;
}





.desktop {
  display: block !important;
}

.mobile {
  display: none !important;
}







/* Firefox (uncomment to work in Firefox, although other properties will not work!)  */
/** {
  scrollbar-width: thin;
  scrollbar-color: #397524 #DFE9EB;
}*/

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

*::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #DFE9EB;
}

*::-webkit-scrollbar-track:hover {
  background-color: #B8C0C2;
}

*::-webkit-scrollbar-track:active {
  background-color: #B8C0C2;
}

*::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: #397524;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #62A34B;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #62A34B;
}