/* .bg-dark-grey.h_tabs{ 
background-color: var(--secondary-dark-grey) !important;  
} */

.btn-purple:hover,
.header-btn:hover {

  background-color: #1b2d69 !important;
}

/* 
.h_tabs a:hover {
color: var(--light-color) !important;
  background-color: var(--sky-color);
} */
/* 
.h_tabs a:hover img {
  filter: none !important;
} */

:root {

  --secondary-fade-grey: #1b2d69;
  --secondary-dark-grey: #1a1f3a;
  --sky-color: #74a4f6;
  --primary-color: #1a1f3a;

}

.submit-btn {
  color: #fff;
}


.submit-btn:hover {
  background-color: var(--light-color) !important;
  color: var(--secondary-dark-grey)
}

.btn-sky {
  color: var(--secondary-dark-grey);
}


.main_wrapper {
  color: var(--light-color);
  background-color: var(--secondary-fade-grey);
}

.main_wrapper .main-container.container {
  padding: 40px 20px 20px 20px;
  align-items: start;
  display: flex;
  min-height: calc(100vh - 80px);
  gap: 40px;
}


.main-container .content {
  overflow-x: hidden !important;

}




.bannerr {
  background-image: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url("/beta/assets/images/banner-bg-2.webp") !important;
}



/* Sidebar css */

.sidebar {
  border-radius: 20px;
  position: sticky;
  top: 170px;
  height: 100vh;
  width: 300px;
  background-color: var(--secondary-dark-grey);
  padding: 2rem;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.sidebar h3 {
  color: var(--light-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.toc-item+.toc-item {
  border-top: 1px solid var(--fade-grey);
}

.toc-main {
  background: transparent;
  color: white;
  padding: 0.8rem 0rem;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 12px;
}

.toc-main svg {
  height: 20px;
  width: 20px;
}

.toc-main img {
  height: 20px;
  width: 20px;
}

.toc-main:hover {
  transform: translateY(-1px);
}

.dropdown-icon {
  transition: transform 0.3s;
}

.toc-main.active .dropdown-icon {
  transform: rotate(180deg);
}


a.toc-main {

  padding-right: 20px;
  padding-left: 40px;
}

.toc-children {
  display: none;
  /* background: #f8fafc; */
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}

.toc-children.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }

  to {
    opacity: 1;
    max-height: 200px;
  }
}

.toc-child::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.toc-child::after {
  content: "";
  width: fit-content;
  height: 1px;
}

.toc-child {
  position: relative;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
  color: var(--light-color);
}

.toc-child:hover {
  padding-left: 2rem;
}

.toc-child.active {
  font-weight: 700;
  font-size: 16px;
}

.content {
  flex: 1;
  background-color: transparent;
  overflow-y: auto;
}


.product-bg {
  background-image: linear-gradient(#1f2937, #1f2937c0), url("/assets/images/products_bg.png");
  background-position: center bottom;
  background-size: 150% 150%;
  background-repeat: no-repeat;

}

/* benefit Section */



.benefit {
  color: var(--light-color);
  /* max-width: 800px; */
  margin: auto;
}

.benefit-item {
  /* background: white; */
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid var(--primary-color);
  overflow: hidden;
}

.benefit-question h3 {
  font-weight: 600;
}

.benefit-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--light-color);
  transition: background 0.3s;
  font-size: 16px;
  font-family: "AzeretMono", monospace;
}

.benefit-icon {
  transition: transform 0.3s;
  color: #8b5cf6;
}

.benefit-question.active .benefit-icon {
  transform: rotate(180deg);
}

.benefit-answer {
  padding: 7px 0px 0px 0px;
  line-height: 1.6;
  color: var(--light-color);
  font-size: 14px;
}

.benefit-answer li {
  color: var(--light-color);
}

@media (max-width: 768px) {
  .sidebar {
    position: relative;
    top: 0px;
    height: auto;
    width: 100%;
  }

  .content {
    flex: unset;
    width: 100%;
  }

  .content-section {
    padding: 0px 0px 0px 0px !important;
  }

  #benefit .container {
    padding: 0px;
  }

  .main_wrapper .main-container.container {
    flex-direction: column-reverse;
  }
}



/* dark-card */
.dark-card {
  background-color: var(--secondary-dark-grey);
  color: var(--text-light);
  border: 1px solid #5d398a40;
  border-radius: 20px;
  padding: 20px 30px;
  /* margin: 20px 0px; */
}

@media (min-width:1920px) {

  .toc-main {
    font-weight: 600;
    font-size: 18px !important;
  }

  .toc-child a {
    font-size: 18px !important;

  }

  .dark-card {
    padding: 40px !important;
  }
}

/* models_specifications */

.models_specifications h2 {
  margin-bottom: 14px;
}

.models_specifications {
  padding: 30px 0px;
}

.models_specifications .table-wrapper {
  background-color: var(--secondary-dark-grey);
  border-radius: 1rem;
  /* padding: 1rem; */
  margin: 2rem auto;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.models_specifications .styled-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  text-align: left;
  border-radius: 0.5rem;
  overflow: hidden;
}

.models_specifications .styled-table thead {
  background-color: var(--fade-grey);
  color: #fff;
}

.models_specifications .styled-table th,
.models_specifications .styled-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--fade-grey);
}

.models_specifications .styled-table tbody tr:last-child td {
  border-bottom: none;
}

/* Optional scrollbar styling */
.models_specifications .table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.models_specifications .table-wrapper::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 4px;
}

.h-300 {
  margin: auto;
  min-height: 300px;
  max-height: 350px;
  /* width: 100%; */
  object-fit: contain;
}

@media (min-width:1920px) {
  .downloads-file a.dark-card {
    padding: 20px !important;

  }

  .h-300 {
    margin: auto;
    height: 400px;
    /* width: 100%; */
    object-fit: contain;
  }

}

@media (min-width:2400px) {


  .h-300 {
    margin: auto;
    height: 400px;
    /* min-width: 100% ; */
    object-fit: contain;
  }

}

.h-200 {
  max-width: 160px;
  max-height: 160px;
  object-fit: contain;
}

.toc-child a {
  color: var(--light-color);
}

.toc-child a.active {
  color: var(--sky-color) !important;
}

.toc-children.show {
  display: block !important;
}

/* prd_specifications */

/* prd_specifications */

/* prd_specifications */

.prd_specifications {
  background-color: var(--secondary-dark-grey);
  font-family: system-ui, sans-serif;
  /* padding: 20px; */
  border-radius: 12px;
  /* max-width: 1000px; */
  margin: 20px auto;
}

.table-wrapper {
  overflow: auto !important;
}

.prd_specifications h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.prd_specifications tr:first-child {
  width: 25%;
}

.prd_specifications table {
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
}

.prd_specifications th,
.prd_specifications td {
  padding: 16px;
  font-size: 14px !important;
  text-align: left !important;
  vertical-align: top;
}

.prd_specifications th {
  font-weight: 600;
  /* font-size: 14px; */
  text-transform: capitalize;
  border: 1px solid #29303d;
}

.prd_specifications td {
  border: 1px solid #29303d;
  /* font-size: 14px; */
}

.prd_specifications .section-header {
  text-align: left;
  font-weight: bold;
  padding: 14px 16px;
  font-size: 15px;
}

.prd_specifications tr td,
th {
  background-color: #374151;
}

.spec-table,
.spec-table_0 {
  margin-top: 30px;
}

@media (max-width:768px) {
  .img-width {
    width: 100% !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
  }

  .float_right{ 
    margin-left: 0px !important;
  }
  .img-width img {
    margin-right: 0px !important;
    margin-left: 0px !important;
    width: 100% !important;
  }


  .spec-table,
  .spec-table_0 {
    width: 200% !important;
    margin-top: 30px;
  }
}

/* product gallery */

/* product_gallery */

.product_gallery img {
  cursor: pointer;
  min-height: 200px;
  max-height: 200px;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.product_gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.product_gallery .dark-card {

  transition: var(--transition);
}

.product_gallery .dark-card img {
  transition: var(--transition);
}


.product_gallery .dark-card:hover img {
  transform: scale(1.2);

}


.product_gallery .dark-card {
  overflow: hidden;
}







/* Modal styles */
#imageModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

#imageModal.active {
  display: flex;
}

#imageModal .splide {
  background: #fff;
  border-radius: 10px;
  overflow: visible;
  max-width: 800px;
  width: 100%;
  max-height: 500px;
  position: relative;
}

#imageModal .splide__slide img {
  padding: 50px;
  width: 100%;
  max-height: 500px;

  object-fit: contain;
}

#imageModal button.close-btn {
  position: absolute;
  top: 10px;
  right: 30px;
  background: #fff;
  border: none;
  font-size: 1.5rem;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s ease;
}

#imageModal button.close-btn:hover {
  background-color: #eee;
}

.splide__pagination {

  bottom: -50px !important;
}

.splide__arrow,
.splide__pagination {
  display: block !important;
  opacity: 1 !important;
  z-index: 1000;
}

.splide__arrow svg {
  fill: var(--light-color);
}

.splide__arrow {
  background: var(--sky-color);
  color: var(--light-color);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 1rem;
  line-height: 2.5rem;
  text-align: center;
  display: flex !important;
  justify-content: center;
  align-items: center;
}



.splide__arrow:hover {
  background: var(--dark-color);
}

.splide__pagination {
  bottom: -1.5rem;
  position: relative;
  margin-top: 1rem;
  text-align: center;
}

.splide__pagination__page {
  background: #ccc;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 4px;
  display: inline-block;
  cursor: pointer;
}

.splide__pagination__page.is-active {
  background: var(--sky-color);
}

/* request a quote  */

input,
textarea {
  background-color: var(--secondary-dark-grey);
}

.quote-form button {
  background-color: var(--sky-color);
}

.quote-form button:hover {
  background-color: var(--secondary-dark-grey);
}




/* ----------- */

.float-start {
  float: left;
  margin-right: 22px ;
}

.float_right {
  margin-left: 22px ;
  float: right;

}

.img_width {
  margin: 0px !important;
  max-width: 450px;
}

@media (max-width:768px) {

  .btn-sky {
    padding: 14px !important;
    font-size: 14px !important;
  }

  .float-start {
    margin: 0px;
    float: none;
    width: 100%;
  }

  .float_right {
    margin: 0px;
    float: none;
    width: 100%;

  }


  .h-300 {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

}


@media (min-width:1920px) {

  .sidebar {
    width: 500px;
  }


}