* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* nav */

#product {
  color: #ffc642;
  text-decoration: underline;
}

/* mobile */

#productDropdown{
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

#productDropdown a{
  text-decoration: none;
}


/* nav end */

/* ---------------------  body --------------------- */

/* hero */
@media (max-width: 580px) {
  #hero {
    margin: 80px 0 8vw 0;
  }
}
@media (min-width: 580px) and (max-width: 770px) {
  #hero {
    margin: 80px 0 4vw 0;
  }
}

.hero {
  margin: 80px 0 8vw 0;
}

.hero img {
  width: 100%;
}

/* hero end */

/* product */

@media (max-width: 580px) {
  .product {
    margin: 80px auto 40px auto !important;
    flex-direction: column !important;
    width: 90vw !important;
    gap: 30px !important;
  }

  .image-gallery {
    flex-direction: column !important;
    width: 100% !important;
    gap: 15px !important;
  }

  .main-image-container {
    width: 100% !important;
    max-width: 320px !important;
    height: 280px !important;
    margin: 0 auto !important;
  }

  .thumbnail-container {
    flex-direction: row !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 8px !important;
    margin-top: 10px;
  }

  .thumbnail {
    width: 50px !important;
    height: 50px !important;
  }

  .Product_btns {
    width: 100% !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .Product_btns .productBrochure {
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 260px !important;
  }

  .product-details {
    width: 100% !important;
  }

  .product-details h2 {
    font-size: 20px !important;
    margin-top: 16px !important;
  }

  .product-details p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .detailFeatures h2 {
    font-size: 18px !important;
  }

  .detailFeatures p {
    font-size: 14px !important;
  }

  /* Responsive Specs Table Wrapper */
  .tableBox {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin-bottom: 20px !important;
    border: 1px solid #e6e6e6;
  }

  .product-table {
    width: 90vw !important;
    margin: 40px auto !important;
  }

  .product-table h2 {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
  }

  .product-applications,
  .end {
    width: 90vw !important;
    margin: 30px auto !important;
  }

  .product-applications h2,
  .end h2 {
    font-size: 20px !important;
  }

  .product-applications li,
  .end p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
}

@media (min-width: 580px) and (max-width: 880px) {
  .product {
    margin: 80px auto 40px auto !important;
    flex-direction: column !important;
    width: 90vw !important;
    gap: 40px !important;
  }

  .image-gallery {
    flex-direction: column !important;
    width: 100% !important;
    gap: 20px !important;
  }

  .main-image-container {
    width: 100% !important;
    max-width: 400px !important;
    height: 350px !important;
    margin: 0 auto !important;
  }

  .thumbnail-container {
    flex-direction: row !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 10px !important;
    margin-top: 12px;
  }

  .thumbnail {
    width: 60px !important;
    height: 60px !important;
  }

  .Product_btns {
    width: 100% !important;
    justify-content: center !important;
    gap: 20px !important;
  }

  .product-details {
    width: 100% !important;
  }

  .tableBox {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin-bottom: 20px !important;
    border: 1px solid #e6e6e6;
  }

  .product-table {
    width: 90vw !important;
    margin: 60px auto !important;
  }

  .product-applications,
  .end {
    width: 90vw !important;
    margin: 40px auto !important;
  }
}

.product {
  width: 85vw;
  /* border: solid 1px red; */
  margin: auto;
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  color: #000810 !important;
  text-decoration: none !important;
}

.image-gallery {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 10px;
}

.main-image-container {
  width: 400px;
  height: 400px;
  overflow: hidden;
  /* border: 1px solid #ccc; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.main-image-container img {
  max-width: 100%;
  max-height: calc(100% - 60px);
  object-fit: contain;
}

.thumbnail-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #007bff;
}

.Product_btns {
  /* border: solid 2px yellow; */
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.Product_btns .productBrochure {
  display: flex;
  width: 200px;
  height: 48px;
  padding: 16px 20px;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 31, 63, 1);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
}

.Product_btns .requestQuote {
  display: flex;
  width: 200px;
  height: 48px;
  padding: 16px 20px;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 198, 49, 1);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
}

.productCode {
  display: inline-flex;
  padding: 6px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #0da574;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.product-details h2 {
  margin-top: 24px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  
}

.product-details p {
  color: #4d5765;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.detailFeatures p {
  /* border: solid 1px red; */
  margin: 0;
  padding: 0;
}

/* product end */

/* table product */

.product-table {
  /* border: solid 1px red; */
  width: 76.5vw;
  margin: auto;
  margin-bottom: 30px;
  margin-top: 100px;
}

.product-table h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 50px;
}

table {
  border-collapse: collapse; /* Ensures no double lines */
  width: 100%;
  /* max-width: 500px; */
  background: white;
}

th,
td {
  border: 1px solid #e6e6e6 !important;
  padding: 10px;
  text-align: left;
  width: 65%;
}

th {
  border: 1px solid #e6e6e6 !important;
  font-weight: bold;
  width: 35%;
}

/* table end */

/* management */

@media (max-width: 580px) {

  #manage {
    /* border: solid 1px red; */
    padding: 100px 1vw 0 1vw;
  }

  #manage .manageBox {
    /* border: solid 1px red; */
    flex-direction: column;
  }

  #manage .manageBox img {
    width: 100%;
  }

}

@media (min-width: 580px) and (max-width: 880px) {
  #manage .manageBox {
    /* border: solid 1px red; */
    flex-direction: column;
  }

  #manage .manageBox img {
    width: 100%;
  }
}

.manage {
  /* border: solid 1px red; */
  padding: 100px 10.9vw 0 10.9vw;
}

.manageBox {
  /* border: solid 1px green; */
  display: flex;
  margin-top: 50px;
}

.mImgBox {
}

.manageBox img {
  width: 35.083vw;
  padding: 0;
  margin: 0;
}

.mText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.mText h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
}

.mText p {
  color: #4d5765;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* management end*/

/* expertiese */

.expertise{
  width: 80%;
  margin: auto;
}


.expertHead {
  /* border: solid 1px red; */
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 180px;
}

.expertHeadtext {
  /* border: solid 3px green; */
  width: 360px;
}

.consultBtn {
  padding: 18px 30px;
  background: #ffc631;
  color: #000810;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

.futureVideo {
  margin-top: 50px;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.futureVideo iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.futureVideo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineText {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lineText p {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  /* line-height: 22px; */
  margin: 0;
  padding: 0;
}

/* expertiese end */

/* partners */

@media (max-width: 580px){
 #partners .carouselSection-owl .owl-nav{
  display: none;
 }

  #partners .item.reviewerCar {
  background: #F8F8F8;
  width: 70vw;
  padding: 3.1vw;
/* border: solid red 1px; */
}

#partners .caroselBox p {
  color: #000810;
  font-size: 2.2vw;
  font-style: normal;
  font-weight: 500;
  line-height: 2.3vw;
  margin: 0;
  padding: 0;
}

}

@media (min-width: 580px) and (max-width: 780px){
  #partners .carouselSection-owl .owl-nav{
  display: none;
 }

  #partners {
    /* border: solid 1px red; */
    width: 90%;
  }

  #partners .item.reviewerCar {
  background: #F8F8F8;
  width: 50vw;
  padding: 3.1vw;
/* border: solid red 1px; */
}

#partners .caroselBox p {
  color: #000810;
  font-size: 1.9vw;
  font-style: normal;
  font-weight: 500;
  line-height: 2vw;
  margin: 0;
  padding: 0;
}

}


.partners {
  /* border: solid 3px red; */
  /* margin: auto; */
  /* height: 514px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  width: 72.448vw;
  margin: 180px auto;
}

.partnerhead {
  /* border: solid 3px red; */
}

.partnerBox {
  /* border: solid 3px red; */
  width: 100%;
}

.item.reviewerCar {
  /* background: #F8F8F8; */
  width: 300px;
/* padding: 1.1vw; */
/* border: solid red 1px; */
}

.caroselBox {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.caroselBox img {
  width: 100%;
  /* border: solid 1px red; */
}

.caroselBox h4 {
  margin: 0;
  padding: 0;
  color: rgba(0, 31, 63, 1);
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}

.caroselBox p {
  color: rgba(77, 87, 101, 1);
  font-size: 0.938vw;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
  padding: 0;
}

.caroselBox div{
  color: #0da574;
  cursor: pointer;
}

.carouselSection-owl{
  /* border: solid 1px red !important; */
  /* display: flex !important;
  flex-direction: column-reverse;
  position: relative; */
}

.carouselSection-owl .owl-nav button.owl-prev {
  border: solid 1px black !important;
  border-radius: 50% !important;
  width: 30px !important;
  height: 30px !important;
}

.carouselSection-owl .owl-nav button :hover{
  background-color: none !important;
  color: #000810 !important;
}

.carouselSection-owl .owl-nav button.owl-next {
  border: solid 1px black !important;
  border-radius: 50% !important;
  width: 30px !important;
  height: 30px !important;
}

.carouselSection-owl .owl-nav {
  /* border: solid 2px green !important; */
  position: absolute;
  background-color: white;
  font-size: large;
  font-weight: 700;
  top: -20%;
  right: 30px;

}

/* partners end carousel */

/* accordion */


@media (max-width: 580px){
  #accordion {
    /* border: solid 1px red; */
    width: 95%;
    flex-direction: column;
    gap: 40px;
  }

  #accordion .accordionLeft {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    /* border: solid 1px red; */
  }

  #accordion .accordionRight {
    width: 100%;
  }

  #accordion .accordionLeft p {
  color: #162739;
  font-size: 16px;
  /* font-style: normal; */
  font-weight: 400;
  line-height: 20px;
  margin-top: 14px;
}

#accordion .accordionLeft h1{
  /* border: solid 1px red; */
  width: 100%;
}

#accordionExample{
  width: 100% !important;
}

}

@media (min-width: 580px) and (max-width: 770px) {
  #accordion {
    width: 95%;
  }

  #accordion .accordionLeft {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  #accordion .accordionRight {
    width: 100%;
  }
}

.accordion {
  margin: 100px auto;
  width: 80vw;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 70px;
  /* border: solid 5px green; */
}

.accordionLeft {
  width: 480px;
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  /* border: solid 1px red; */
}

.accordionLeft p {
  color: #162739;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 16px;
}

.acontactBtn {
  display: flex;
  height: 61.716px;
  padding: 18px 30px;
  align-items: center;
  gap: 10px;
  background: #ffc631;
  color: #000810;
  width: 175px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  margin-top: 28px;
  cursor: pointer;
}

.accordionRight {
  /* border: solid 1px green; */
  width: 70%;
}

#accordionExample {
  /* display: flex; */
  flex-direction: column !important;
  margin: 0 !important;
  padding: 0 !important;
  /* border: orangered solid 1px !important; */
  width: 100%;
}

.accordion-header {
  width: 100%;
  border: 1px solid #c8c8c8;
  border-bottom: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.accordion-header:active {
  /* border: 1px solid #000810 !important; */
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.accordion-button:not(.collapsed) {
  color: rgba(13, 165, 116, 1) !important;
  background-color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border: 1px solid var(--brand-colour-3, #0da574) !important;
  border-bottom: none !important;
}

.accordion-body {
  width: 100%;
  border: 1.5px solid var(--brand-colour-3, #0da574) !important;
  border-top: none !important;
}

/* accordion end */