/* ------------------------------------------------
  Project:   Labozu - Laboratory & Science Research HTML5 Template
  Author:    ThemeHt
------------------------------------------------ */

/* ------------------------
    Table of Contents

  1. General
  2. Typography
  3. Text color
  4. Background color
  5. Banner Slider
  6. List Icon
  7. Contact Form
  8. Extra
  9. Responsive Css
------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&display=swap");

:root {
  --themeht-primary-color: #8b4513;
  --themeht-secondary-color: #d4af37;
  --themeht-text-color: #000812;
  --themeht-body-color: #4f4f4f;
  --themeht-white-color: #ffffff;
  --themeht-bg-dark-color: #010101;
  --themeht-bg-light-color: #f6f7ff;
  --themeht-border-light-color: #e5e5e5;
  --themeht-rgba-color: rgba(255, 255, 255, 0.9);
  --themeht-typography-body-font-family: "Plus Jakarta Sans", sans-serif;
  --themeht-typography-secondary-font-family: "Familjen Grotesk", sans-serif;
}

/* ------------------------
    General
------------------------*/

body {
  scroll-behavior: smooth;
  font-family: var(--themeht-typography-body-font-family);
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 30px;
  color: var(--themeht-body-color);
  overflow-x: hidden;
}

.page-wrapper {
  overflow-x: hidden;
}

/* ------------------------
    Typography
------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--themeht-typography-secondary-font-family);
  font-weight: normal;
  margin-top: 0px;
  font-style: normal;
  margin-bottom: 20px;
  color: var(--themeht-text-color);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

.h1,
h1 {
  font-size: 70px;
  line-height: 80px;
  font-weight: 600;
}

.h2,
h2 {
  font-size: 33px;
  line-height: 41px;
  font-weight: 600;
}

.h3,
h3 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
}

.h4,
h4 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
}

.h5,
h5 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

.h6,
h6 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

ul {
  margin-left: 0;
}

label {
  display: inline-block;
  color: var(--themeht-text-color);
  font-size: 16px;
  margin-bottom: 7px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
  }
}

/* ------------------------
    Helper class
------------------------*/
p {
  line-height: 1.7;
}

.lead {
  font-weight: normal;
  font-size: 17px;
  line-height: 30px;
}

.z-index-0 {
  z-index: 0;
  position: relative;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

section {
  padding: 83px 53px;
  position: relative;
}

.rounded {
  border-radius: 24px !important;
}

.img-border {
  border: 10px solid var(--themeht-white-color);
}

/* ------------------------
    Text color
------------------------*/
.text-theme {
  color: var(--themeht-primary-color);
}

.text-black {
  color: var(--themeht-text-color) !important;
}

.text-grey {
  color: var(--themeht-body-color);
}

.text-muted {
  color: #979797 !important;
}

/* ------------------------
    Background color
------------------------*/
.white-bg {
  background-color: var(--themeht-white-color) !important;
}

.dark-bg {
  background-color: var(--themeht-bg-dark-color);
}

.light-bg {
  background-color: var(--themeht-bg-light-color);
}

.primary-bg {
  background-color: var(--themeht-primary-color);
}

.secondary-bg {
  background-color: var(--themeht-secondary-color);
}

.transparent-bg {
  background-color: inherit !important;
}

.border-light {
  border-color: var(--themeht-border-light-color) !important;
}

/* ------------------------
    Banner
------------------------*/
[data-bg-img] {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-slider {
  background-color: var(--themeht-bg-dark-color);
}

.banner-slider .slider-img {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
}

.banner-content {
  padding: 200px 0;
  position: relative;
  z-index: 9;
}

.slider-img::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    90deg,
    #ffffff 42%,
    #ffffff80 50%,
    rgb(255 255 255 / 0%) 60%
  );
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  z-index: 9;
}

.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
  transform: scale(0);
  width: 50px;
  height: 50px;
  background-image: none !important;
  border-radius: 100%;
  line-height: inherit;
  background: var(--themeht-primary-color);
  border: none;
}

.banner-slider .swiper-button-next:hover,
.banner-slider .swiper-button-prev:hover {
  background: var(--themeht-bg-dark-color);
}

.banner-slider .swiper-button-next:after,
.banner-slider .swiper-button-prev:after {
  font-size: 20px;
  color: var(--themeht-white-color);
  line-height: 50px !important;
}

.banner-slider .swiper-button-next:hover:after,
.banner-slider .swiper-button-prev:hover:after {
  color: var(--themeht-white-color);
}

.banner-slider:hover .swiper-button-next,
.banner-slider:hover .swiper-button-prev {
  transform: scale(1);
}

.banner-slider.swiper:hover .swiper-button-prev {
  left: 10px;
}

.banner-slider.swiper:hover .swiper-button-next {
  right: 10px;
}

#banner-pagination {
  position: absolute !important;
  right: 150px;
  left: inherit;
  margin: 0;
  text-align: right;
  width: auto;
  bottom: 50px;
  font-size: 18px;
  color: var(--themeht-white-color);
}

.banner-slider .themeht-btn + .themeht-btn {
  margin-left: 20px;
}

.banner-slider h6 {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}

.banner-slider h1 {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}

.banner-slider p {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
}

.banner-slider .btn-box {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}

.banner-slider .swiper-slide-active h6 {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 500ms;
}

.banner-slider .swiper-slide-active h1 {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 1000ms;
}

.banner-slider .swiper-slide-active p {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 1500ms;
}

.banner-slider .swiper-slide-active .btn-box {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 2000ms;
}

.banner-content {
  padding: 200px 0 200px 150px;
  position: relative;
  z-index: 9;
}

.banner-content .banner-text {
  width: 50%;
}

.banner-slider h2 {
  font-weight: 700;
  font-size: 55px;
  line-height: 55px;
  color: var(--themeht-primary-color);
}

.banner-slider h2 span {
  font-weight: 600;
  color: var(--themeht-text-color);
  display: block;
}

.banner-content p {
  max-width: 80%;
  margin: 0;
}

/* ------------------------
    Error
------------------------*/
.error-path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: dash 5s linear alternate infinite;
}

.error-path path {
  stroke: var(--themeht-primary-color);
}

.error-path path:nth-child(2) {
  stroke: var(--themeht-primary-color);
}

.error-path path:nth-child(3) {
  stroke: var(--themeht-secondary-color);
}

/* ------------------------
    Timeline
------------------------*/
.main-timeline:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--themeht-border-light-color);
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
}

.timeline_item {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}

.timeline-order-1 {
  order: 3;
}

.timeline-order-2 {
  order: 2;
  left: 20px;
}

.timeline-order-3 {
  order: 1;
}

.main-timeline .timeline-icon {
  width: 40px;
  height: 40px;
  position: relative;
  right: 20px;
  font-size: 30px;
  background: var(--themeht-white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--themeht-primary-color);
  border-radius: 50%;
  z-index: 9;
}

.main-timeline .date-content {
  width: 50%;
  position: relative;
}

.main-timeline .date-content:before {
  content: "";
  width: 50%;
  height: 1px;
  background: var(--themeht-border-light-color);
  margin: auto 0;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
}

.main-timeline .timeline-order-1:before {
  content: "";
  width: 50%;
  height: 1px;
  background: var(--themeht-border-light-color);
  position: absolute;
  padding-right: 30px;
  margin-right: 50% !important;
}

.main-timeline .date {
  display: flex;
  line-height: 1;
  font-weight: 700;
  font-size: 30px;
  color: var(--themeht-white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  align-items: center;
  justify-content: center;
  background: var(--themeht-primary-color);
  border-radius: 50%;
  width: 125px;
  height: 125px;
  z-index: 1;
}

.main-timeline .timeline-content {
  padding: 20px 20px;
}

@media (max-width: 640px) {
  .timeline {
    flex-direction: column !important;
  }

  .main-timeline:before {
    margin-left: 1px;
  }

  .main-timeline .timeline-icon {
    margin: auto 2px;
  }

  .main-timeline .timeline-content {
    padding: 40px 30px;
  }

  .timeline-order-1 {
    order: 2;
  }

  .timeline-order-2 {
    order: 1;
    left: -1em;
  }

  .timeline-order-3 {
    order: 3;
  }

  .timeline-order-1b {
    order: 2;
  }

  .timeline-order-2b {
    order: 1;
    left: -1em;
  }

  .timeline-order-3b {
    order: 3;
  }

  .main-timeline .timeline-order-1:before {
    width: 100%;
  }

  .main-timeline .timeline-order-1b:before {
    width: 100%;
  }

  .main-timeline .timeline-order-1b:before {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--themeht-border-light-color);
    position: absolute;
    top: 0;
    padding-right: 30px;
    bottom: 0;
    margin-right: 50% !important;
  }

  .main-timeline .date {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 350px) {
  .timeline-icon {
    visibility: hidden;
  }

  .main-timeline .date-content:before {
    visibility: hidden;
  }

  .date-content {
    left: -15px;
  }
}

/* ------------------------
    Video
------------------------*/
.video-btn {
  display: flex;
  align-items: center;
}

.video-btn-icon {
  position: relative;
  display: inline-block;
  z-index: 9;
}

.video-btn-icon > i {
  color: var(--themeht-primary-color);
  font-size: 30px;
}

.video-btn span {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--themeht-text-color);
  margin-left: 10px;
  flex-shrink: 0;
}

.video-btn.style-2 {
  position: relative;
  display: inline-block;
}

.video-btn.style-2 .play-btn {
  animation: ripple-white 1s linear infinite;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  position: relative;
}

.video-btn.style-2 .play-btn i {
  font-size: 34px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--themeht-white-color);
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.2s ease-out !important;
  transform: translate3d(-50%, -50%, 0);
}

/* ------------------------
    List Icon
------------------------*/
.list-icon.style-1 li {
  position: relative;
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}

.list-icon.style-1 li:last-child {
  margin-bottom: 0;
}

.list-icon.style-1 li i {
  color: var(--themeht-primary-color);
  font-size: 20px;
  line-height: 1;
  margin-right: 10px;
  flex-shrink: 0;
}

.list-icon.style-2 li {
  position: relative;
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}

.list-icon.style-2 li:last-child {
  margin-bottom: 0;
}

.list-icon.style-2 li i {
  color: var(--themeht-primary-color);
  font-size: 18px;
  line-height: 1;
  margin-right: 10px;
}

/* ------------------------
 Marquee Text
------------------------*/
.marquee-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}

.marquee-text {
  animation: marquee 40s linear infinite;
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.marquee-text span {
  font-size: 150px;
  line-height: 150px;
  margin: 0 30px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--themeht-primary-color);
}

.marquee-text span:nth-child(2n + 2) {
  color: var(--themeht-white-color);
  text-shadow:
    -1px -1px 0 var(--themeht-text-color),
    1px -1px 0 var(--themeht-text-color),
    -1px 1px 0 var(--themeht-text-color),
    1px 1px 0 var(--themeht-text-color);
}

.marquee-wrap:before {
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 100%;
  content: "";
  z-index: 9;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 1%,
    rgba(255, 255, 255, 1) 98%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c4ef17', endColorstr='#c4ef17', GradientType=1);
}

.marquee-wrap:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  content: "";
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 99%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c4ef17', endColorstr='#c4ef17', GradientType=1);
}

/* ------------------------
    Countdown
------------------------*/
.countdown {
  margin: 50px 0;
  padding: 50px 0;
  display: table;
  width: 100%;
  border-top: 2px dashed var(--themeht-border-light-color);
  border-bottom: 2px dashed var(--themeht-border-light-color);
}

.countdown > li {
  font-weight: 700;
  text-align: center;
  list-style-type: none;
  display: table-cell;
  width: auto;
}

.countdown > li span {
  font-size: 70px;
  font-weight: 700;
  line-height: 60px;
  display: inline-block;
}

.countdown > li p {
  font-size: 20px;
  display: inline-block;
  line-height: 30px;
  margin-bottom: 0;
  color: var(--themeht-text-color);
}

.coming-soon .subscribe-form {
  margin: 0 auto;
}

/* ------------------------
 Shape & Animation
------------------------*/
.animated-icon-shape {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: -1;
}

.small-circle-animation {
  animation: small-animation 2s infinite linear;
  position: absolute;
  width: 60px;
}

.animated-icon-shape img:nth-child(1) {
  left: 6%;
  top: 10%;
}

.animated-icon-shape img:nth-child(2) {
  left: 2%;
  bottom: 15%;
  animation: small-animation2 2s infinite linear;
}

.animated-icon-shape img:nth-child(3) {
  right: 6%;
  top: 5%;
  animation: small-animation2 2s infinite linear;
}

.animated-icon-shape img:nth-child(4) {
  right: 2%;
  bottom: 20%;
}

.animated-icon-shape.style-2 img:nth-child(2) {
  left: auto;
  right: 2%;
  bottom: 20%;
}

#particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.link-about {
  border: 1px solid var(--themeht-border-light-color);
  border-radius: 4px;
  padding: 20px 30px 20px 20px;
}

.link-about span {
  padding: 5px 15px;
  background-color: var(--themeht-bg-dark-color);
  border-radius: 4px;
  color: var(--themeht-white-color);
  margin-right: 10px;
}

.link-about a {
  color: var(--themeht-primary-color);
  margin-left: 10px;
  font-weight: 700;
  text-decoration: underline !important;
}

.testimonial-sec-bg {
  background-image: url("../images/03.webp");
  background-position: 66% 87%;
  background-repeat: no-repeat;
  background-size: 1460px 1260px;
}

.testimonial-sec-bg.style-2 {
  background-position: 96% 70%;
  background-size: 1170px 1260px;
}

.sonar-wrapper {
  z-index: 0;
  position: absolute;
  right: 70px;
  bottom: 20%;
}

.sonar-emitter {
  position: relative;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 9999px;
  background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
}

.sonar-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

.sonar-wave {
  animation: sonarWave 2s linear infinite;
}

.spinner {
  position: absolute;
  left: 100px;
  top: 30%;
}

.spinner::after,
.spinner::before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  top: 50%;
  animation: up 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
  left: 50%;
  background: var(--themeht-primary-color);
}

.spinner::after {
  background: var(--themeht-secondary-color);
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  animation: down 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

.image-video-sec {
  padding: 400px 0 120px;
}

.bg-dark-gradient-overlay {
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.bg-dark-gradient-overlay:before {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(7%, #141622),
    to(transparent)
  );
  background: linear-gradient(to top, #141622 7%, transparent 100%);
  opacity: 0.75;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
}

.ht-first-letter::first-letter {
  font-size: 30px;
  line-height: 30px;
  padding: 8px;
  margin-top: 5px;
  border-radius: 5px;
  display: inline-block;
  float: left;
  font-weight: 700;
  margin-right: 8px;
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

/* ------------------------
 Clients Logo
------------------------*/

.clients-logo {
  text-align: center;
}

.clients-logo img {
  width: 100px;
  -webkit-filter: contrast(0%);
  filter: contrast(0%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
}

.clients-logo:hover img {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

.client-text {
  text-align: center;
  position: relative;
}

.client-text:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  background: var(--themeht-border-light-color);
  width: 70%;
  height: 1px;
}

.client-text span {
  background: var(--themeht-white-color);
  padding: 5px 40px;
}

.client-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}

.client-swiper .swiper-slide {
  display: flex;
  align-items: center;
  width: auto !important;
  padding: 0 50px;
}

/* ------------------------
Extra
------------------------*/
.contact-info {
  padding: 30px;
}

.contact-info li {
  padding-left: 50px;
  padding-top: 5px;
  position: relative;
  margin-bottom: 20px;
}

.contact-info li:last-child {
  margin-bottom: 0;
}

.contact-info li i {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 50px;
  font-size: 36px;
  color: var(--themeht-primary-color);
  display: inline-block;
}

.contact-info li span {
  font-size: 12px;
  line-height: 1;
  color: var(--themeht-body-color);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.contact-info li p {
  margin-bottom: 0;
  line-height: 24px;
  color: var(--themeht-text-color);
}

.contact-info li a {
  color: var(--themeht-text-color);
}

.contact-info li a:hover {
  color: var(--themeht-primary-color);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

label {
  font-size: 14px;
  line-height: 1;
  color: var(--themeht-text-color);
}

.form-control {
  height: 55px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--themeht-text-color);
  background-color: var(--themeht-white-color);
  border: 1px solid var(--themeht-border-light-color);
}

textarea.form-control {
  height: 120px;
  border-radius: 4px;
}

.form-control:focus {
  box-shadow: none;
  background: none;
  border-color: var(--themeht-primary-color);
}

select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  height: 55px !important;
  color: var(--themeht-body-color);
}

iframe {
  width: 100%;
  border: none;
  pointer-events: auto;
}

.iframe-h {
  height: 500px !important;
}

.iframe-h-2 {
  height: 600px !important;
}

.map iframe {
  border: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-filter: brightness(100%) contrast(100%) saturate(50%) blur(0px)
    hue-rotate(0deg);
  -moz-filter: brightness(100%) contrast(100%) saturate(50%) blur(0px)
    hue-rotate(0deg);
  -ms-filter: brightness(100%) contrast(100%) saturate(50%) blur(0px)
    hue-rotate(0deg);
  -o-filter: brightness(100%) contrast(100%) saturate(50%) blur(0px)
    hue-rotate(0deg);
  filter: brightness(100%) contrast(100%) saturate(50%) blur(0px)
    hue-rotate(0deg);
}

.help-block.with-errors {
  position: absolute;
  color: red;
  right: 15px;
  font-size: 10px;
  line-height: 14px;
}

.form-control::-webkit-input-placeholder {
  color: var(--themeht-body-color);
}

.form-control::-moz-placeholder {
  color: var(--themeht-body-color);
}

.form-control:-ms-input-placeholder {
  color: var(--themeht-body-color);
}

.form-control:-moz-placeholder {
  color: var(--themeht-body-color);
}

.service-section::before {
  content: "";
  position: absolute;
  left: 10%;
  right: auto;
  top: 0;
  width: 80%;
  height: 100%;
  background: var(--themeht-bg-light-color);
  margin: 0 auto;
  z-index: -1;
  border-radius: 24px;
}

.about-img-shape {
  width: 550px;
  height: 550px;
  background-size: cover;
  clip-path: polygon(
    45% 1.33975%,
    46.5798% 0.60307%,
    48.26352% 0.15192%,
    50% 0%,
    51.73648% 0.15192%,
    53.4202% 0.60307%,
    55% 1.33975%,
    89.64102% 21.33975%,
    91.06889% 22.33956%,
    92.30146% 23.57212%,
    93.30127% 25%,
    94.03794% 26.5798%,
    94.48909% 28.26352%,
    94.64102% 30%,
    94.64102% 70%,
    94.48909% 71.73648%,
    94.03794% 73.4202%,
    93.30127% 75%,
    92.30146% 76.42788%,
    91.06889% 77.66044%,
    89.64102% 78.66025%,
    55% 98.66025%,
    53.4202% 99.39693%,
    51.73648% 99.84808%,
    50% 100%,
    48.26352% 99.84808%,
    46.5798% 99.39693%,
    45% 98.66025%,
    10.35898% 78.66025%,
    8.93111% 77.66044%,
    7.69854% 76.42788%,
    6.69873% 75%,
    5.96206% 73.4202%,
    5.51091% 71.73648%,
    5.35898% 70%,
    5.35898% 30%,
    5.51091% 28.26352%,
    5.96206% 26.5798%,
    6.69873% 25%,
    7.69854% 23.57212%,
    8.93111% 22.33956%,
    10.35898% 21.33975%
  );
}

.about-img-shape-small {
  width: 200px;
  height: 200px;
  background-size: cover;
  clip-path: polygon(
    45% 1.33975%,
    46.5798% 0.60307%,
    48.26352% 0.15192%,
    50% 0%,
    51.73648% 0.15192%,
    53.4202% 0.60307%,
    55% 1.33975%,
    89.64102% 21.33975%,
    91.06889% 22.33956%,
    92.30146% 23.57212%,
    93.30127% 25%,
    94.03794% 26.5798%,
    94.48909% 28.26352%,
    94.64102% 30%,
    94.64102% 70%,
    94.48909% 71.73648%,
    94.03794% 73.4202%,
    93.30127% 75%,
    92.30146% 76.42788%,
    91.06889% 77.66044%,
    89.64102% 78.66025%,
    55% 98.66025%,
    53.4202% 99.39693%,
    51.73648% 99.84808%,
    50% 100%,
    48.26352% 99.84808%,
    46.5798% 99.39693%,
    45% 98.66025%,
    10.35898% 78.66025%,
    8.93111% 77.66044%,
    7.69854% 76.42788%,
    6.69873% 75%,
    5.96206% 73.4202%,
    5.51091% 71.73648%,
    5.35898% 70%,
    5.35898% 30%,
    5.51091% 28.26352%,
    5.96206% 26.5798%,
    6.69873% 25%,
    7.69854% 23.57212%,
    8.93111% 22.33956%,
    10.35898% 21.33975%
  );
  position: absolute;
  right: -2%;
  bottom: 5%;
}

.about-counter {
  background-color: var(--themeht-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 200px;
  height: 200px;
  background-size: cover;
  clip-path: polygon(
    45% 1.33975%,
    46.5798% 0.60307%,
    48.26352% 0.15192%,
    50% 0%,
    51.73648% 0.15192%,
    53.4202% 0.60307%,
    55% 1.33975%,
    89.64102% 21.33975%,
    91.06889% 22.33956%,
    92.30146% 23.57212%,
    93.30127% 25%,
    94.03794% 26.5798%,
    94.48909% 28.26352%,
    94.64102% 30%,
    94.64102% 70%,
    94.48909% 71.73648%,
    94.03794% 73.4202%,
    93.30127% 75%,
    92.30146% 76.42788%,
    91.06889% 77.66044%,
    89.64102% 78.66025%,
    55% 98.66025%,
    53.4202% 99.39693%,
    51.73648% 99.84808%,
    50% 100%,
    48.26352% 99.84808%,
    46.5798% 99.39693%,
    45% 98.66025%,
    10.35898% 78.66025%,
    8.93111% 77.66044%,
    7.69854% 76.42788%,
    6.69873% 75%,
    5.96206% 73.4202%,
    5.51091% 71.73648%,
    5.35898% 70%,
    5.35898% 30%,
    5.51091% 28.26352%,
    5.96206% 26.5798%,
    6.69873% 25%,
    7.69854% 23.57212%,
    8.93111% 22.33956%,
    10.35898% 21.33975%
  );
}

.about-counter .counter {
  padding: 0 50px;
}

.about-counter .counter span {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  color: var(--themeht-white-color);
  display: inline-block;
}

.about-counter .counter h6 {
  color: var(--themeht-white-color);
  margin: 5px 0 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}

.working-hours-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0 9px;
  position: relative;
}

.primary-bg .working-hours-item {
  color: var(--themeht-white-color);
}

.about1-img-shape {
  clip-path: polygon(
    45% 1.33975%,
    46.5798% 0.60307%,
    48.26352% 0.15192%,
    50% 0%,
    51.73648% 0.15192%,
    53.4202% 0.60307%,
    55% 1.33975%,
    89.64102% 21.33975%,
    91.06889% 22.33956%,
    92.30146% 23.57212%,
    93.30127% 25%,
    94.03794% 26.5798%,
    94.48909% 28.26352%,
    94.64102% 30%,
    94.64102% 70%,
    94.48909% 71.73648%,
    94.03794% 73.4202%,
    93.30127% 75%,
    92.30146% 76.42788%,
    91.06889% 77.66044%,
    89.64102% 78.66025%,
    55% 98.66025%,
    53.4202% 99.39693%,
    51.73648% 99.84808%,
    50% 100%,
    48.26352% 99.84808%,
    46.5798% 99.39693%,
    45% 98.66025%,
    10.35898% 78.66025%,
    8.93111% 77.66044%,
    7.69854% 76.42788%,
    6.69873% 75%,
    5.96206% 73.4202%,
    5.51091% 71.73648%,
    5.35898% 70%,
    5.35898% 30%,
    5.51091% 28.26352%,
    5.96206% 26.5798%,
    6.69873% 25%,
    7.69854% 23.57212%,
    8.93111% 22.33956%,
    10.35898% 21.33975%
  );
}

:root {
  --vx-primary-color: #8b4513;
  /* Brown */
  --vx-secondary-color: #d4af37;
  /* Gold */
  --vx-card-hover-bg: #fff3e0;
  /* Light hover background */
  --vx-img-hover-opacity: 0.8;
}

.vx-services-section {
  padding: 80px 20px;
  text-align: center;
}

.vx-services-section h6 {
  color: var(--vx-primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 10px;
}

.vx-services-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.vx-services-section h2 span {
  color: var(--vx-primary-color);
}

/* Grid */
.vx-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

/* Card Container */
.vx-service-card {
  position: relative;
  width: 100%;
  max-width: 353px;
  overflow: visible;
  transition: background 0.4s ease;
  border-radius: 20px;
}

/* Image Background */
.vx-service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  z-index: 1;
  position: relative;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

/* Card Content Always Visible */
.vx-service-content {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  margin-top: -60px;
  /* overlaps image */
  padding: 60px 20px 20px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: background 0.4s ease;
}

/* Centered Icon */
.vx-icon-circle {
  position: absolute;
  top: 120px;
  /* slightly higher */
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-color: var(--vx-primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #fff;
  border: 4px solid #fff;
  z-index: 3;
  transition:
    transform 0.4s ease,
    background 0.4s ease;
}

/* Card Text */
.vx-service-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.vx-service-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.vx-service-content a {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 22px;
  border-radius: 50px;
  background: var(--vx-secondary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.vx-service-content a:hover {
  background: #c49c2d;
}

/* Hover Effects */
.vx-service-card:hover img {
  transform: scale(1.05);
  opacity: var(--vx-img-hover-opacity);
}

.vx-service-card:hover .vx-service-content {
  background: var(--vx-card-hover-bg);
}

.vx-service-card:hover .vx-icon-circle {
  transform: translateX(-50%) translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
  .vx-service-card img {
    height: 200px;
  }

  .vx-icon-circle {
    top: 100px;
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .vx-service-card img {
    height: 180px;
  }

  .vx-icon-circle {
    top: 90px;
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .vx-service-content h4 {
    font-size: 18px;
  }

  .vx-service-content p {
    font-size: 13px;
  }
}

.icon-box {
  background: #8b4513;
  color: #fff;
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
}

/* ===== HERO ===== */
.nxr-hero-wrap {
  width: 100%;
  height: 360px;
  position: relative;
}

.nxr-hero-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nxr-hero-strip {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%);
}

.nxr-hero-wrap h1 {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 36px;
}

/* ===== CONTAINER ===== */
.nxr-main-box {
  padding: 40px 20px;
  margin: auto;
}

/* heading */
.nxr-title-main {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 30px 0;
}

/* ===== CATEGORY ===== */
.nxr-flex-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* card */
.nxr-card-box {
  width: 350px;
  position: relative;
  overflow: hidden;
}

.nxr-card-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.nxr-card-box h3 {
  text-align: center;
  margin: 10px 0;
}

/* ===== HOVER ROW ===== */
.nxr-hover-row {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px;
  transform: translateY(100%);
  transition: 0.4s;
}

/* show on hover */
.nxr-card-box:hover .nxr-hover-row {
  transform: translateY(0);
}

/* model item */
.nxr-item-box {
  text-align: center;
  width: 90px;
}

/* link */
.nxr-item-box a {
  text-decoration: none;
  color: #000;
}

/* image */
.nxr-item-box img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

/* name */
.nxr-item-box p {
  font-size: 11px;
  margin-top: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nxr-hero-wrap {
    height: 220px;
  }

  .nxr-hero-wrap h1 {
    font-size: 22px;
  }

  /* always show on mobile */
  .nxr-hover-row {
    position: static;
    transform: none;
  }
}
:root {
  --bg: #f4f4f4;
  --text: #111;
  --muted: #666;
  --line: #ddd;
  --accent: #8b4513;
}

/* center helper */
.cnhg {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* overlay */
.bio-strip {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  animation: fadeSlide 1s ease forwards;
}

.bio-heading {
  position: relative;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards 0.3s;
  z-index: 2;
  text-align: center;
}

/* WRAPPER */
.bio-wrapper {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
}

/* GRID CENTER FIX */
.bio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 220px);
  justify-content: center;
  gap: 40px;
  text-align: center;
}

/* CARD */
.bio-item {
  width: 220px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

/* stagger animation */
.bio-item:nth-child(1) {
  animation-delay: 0.2s;
}
.bio-item:nth-child(2) {
  animation-delay: 0.4s;
}
.bio-item:nth-child(3) {
  animation-delay: 0.6s;
}
.bio-item:nth-child(4) {
  animation-delay: 0.8s;
}

/* IMAGE */
.bio-item img {
  width: 100%;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  border-radius: 6px;
}

/* 🔥 hover effect */
.bio-item:hover img {
  transform: scale(1.08);
  filter: blur(2px);
}

/* TITLE */
.bio-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.bio-title::before,
.bio-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  height: 1px;
  background: var(--line);
  transition: 0.3s;
}

.bio-title::before {
  left: -55px;
}
.bio-title::after {
  right: -55px;
}

.bio-item:hover .bio-title::before,
.bio-item:hover .bio-title::after {
  width: 60px;
  background: var(--accent);
}

/* DESC */
.bio-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ANIMATIONS */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
  .bio-heading {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .bio-heading {
    font-size: 26px;
  }

  .bio-grid {
    gap: 25px;
  }

  .bio-item {
    width: 180px;
  }
}

.eco-container {
  max-width: 1300px;
  margin: auto;
  padding: 20px;
}

/* HERO */
.eco-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}

.eco-hero-left,
.eco-hero-right {
  flex: 1 1 350px;
}

.eco-hero-left {
  position: relative;
  text-align: center;
}

.eco-hero-left img.eco-main {
  width: 100%;
  max-width: 320px;
  transition: 0.3s;
  cursor: zoom-in;
}

.eco-hero-left img.eco-main.zoom {
  transform: scale(1.6);
  cursor: zoom-out;
}

/* THUMBS */
.eco-thumb-list {
  position: absolute;
  left: 0;
  top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eco-thumb {
  width: 40px;
  opacity: 0.4;
  cursor: pointer;
}

.eco-thumb.active {
  opacity: 1;
}

/* PDF */
.eco-literature {
  margin-top: 15px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.eco-lit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.eco-pdf {
  width: 26px;
  height: 26px;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

/* TABS */
.eco-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 25px 0;
}

.eco-tab {
  padding: 8px 15px;
  border: 1px solid #ccc;
  background: #eee;
  cursor: pointer;
  border-radius: 4px;
  font-size: 12px;
}

.eco-tab.active {
  background: #666;
  color: #fff;
}

.eco-products-wrap {
  width: 100%;
    padding: 0px 20px!important;
  display: flex;
  justify-content: center;
      margin: -92px 24px!important;
}
.eco-models-box {
  width: 100%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* FIX IMPORTANT */
  gap: 20px;
  padding: 10px;
  box-sizing: border-box;
}

/* SECTION TITLE FULL WIDTH */
.eco-section-title {
  grid-column: 1 / -1;
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #8b4513;
  border-left: 4px solid #8b4513;
  padding-left: 10px;
}

/* CARD */
.eco-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

/* HOVER */
.eco-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* IMAGE */
.eco-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #fafafa;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* CONTENT */
.eco-card div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* TITLE */
.eco-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #111;
}

/* TEXT */
.eco-card p {
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* BUTTON */
.eco-btn {
  margin-top: auto;
  display: inline-block;
  background: #8b4513;
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

.eco-btn:hover {
  background: #e7a50c;
}
/* ===== BENEFITS WRAPPER ===== */
.eco-benefits {
  grid-column: 1/-1;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
}

/* LEFT IMAGE */
.eco-benefits img {
  width: 280px;
  border-radius: 10px;
  object-fit: contain;
}

/* RIGHT CONTENT */
.eco-benefit-content {
  width: 100%;
}

/* TITLE */
.eco-benefit-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}

/* LIST STYLE */
.eco-benefit-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eco-benefit-content ul li {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  position: relative;
  padding-left: 22px;
}

/* CHECK ICON BULLET */
.eco-benefit-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 10px;
  color: #8b4513;
  font-weight: bold;
}

/* HOVER EFFECT */
.eco-benefit-content ul li:hover {
  color: #000;
}



/* GALLERY */
.eco-gallery {
  grid-column: 1 / -1;
  position: relative;
      padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-gallery-track {
  display: flex;
  gap: 15px;
  overflow: hidden;
  width: 600px; /* controls visible area */
}

.eco-gallery-track img {
     width: 163px;
    height: 226px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  flex-shrink: 0;
  transition: 0.3s;
}

.eco-gallery-track img:hover {
  transform: scale(1.05);
}

/* BUTTONS */
.eco-nav {
  background: #8b4513;
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.eco-nav:hover {
  background: #8b4513;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* ========================= */
/* 📱 TABLET (2 COLUMN) */
/* ========================= */
@media (max-width: 992px) {

  .eco-hero {
    flex-direction: column;
    gap: 25px;
  }

  .eco-thumb-list {
    display: none;
  }

  .eco-models-box {
    grid-template-columns: repeat(2, 1fr); /* 2 cards */
  }

  .eco-products-wrap {
    margin: 0 !important;
    padding: 0 15px !important;
  }

  .eco-gallery-track {
    width: 100%;
  }
}

/* ========================= */
/* 📱 MOBILE (1 CARD ONLY) */
/* ========================= */
@media (max-width: 576px) {

  .eco-container {
    padding: 15px;
  }

  .eco-hero {
    flex-direction: column;
    gap: 20px;
  }

  .eco-hero-left img.eco-main {
    max-width: 100%;
  }

  /* 🔥 ONE CARD PER ROW */
  .eco-models-box {
    grid-template-columns: 1fr; /* only 1 card */
    gap: 15px;
  }

  .eco-card {
    padding: 15px;
  }

  .eco-card img {
    height: 160px;
  }

  .eco-card h3 {
    font-size: 15px;
  }

  .eco-card p {
    font-size: 13px;
  }

  .eco-btn {
    width: 100%;
  }

  /* BENEFITS STACK */
  .eco-benefits {
    flex-direction: column;
    gap: 20px;
  }

  .eco-benefits img {
    width: 100%;
  }

  /* GALLERY FIX */
  .eco-gallery-track {
    width: 100%;
    overflow-x: auto;
  }

  .eco-gallery-track img {
    width: 120px;
    height: auto;
  }
}


.nx-container {
  max-width: 1200px;
  margin: auto;
  padding: 30px;
}

/* BREADCRUMB IMPROVED */
.nx-breadcrumb {
  font-size: 25px;
  /* increased */
  color: #555;
  margin-bottom: 25px;
  font-weight: 500;
}

/* MAIN LAYOUT */
.nx-main {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

/* IMAGE */
.nx-image {
  flex: 1;
  min-width: 350px;
}

.nx-image img {
  width: 100%;
  max-width: 500px;
}

/* CONTENT */
.nx-content {
  flex: 1;
  min-width: 350px;
}

.nx-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.nx-divider {
  height: 1px;
  background: #ccc;
  margin: 10px 0 20px;
}

.nx-text {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}

.nx-specs {
  margin-top: 15px;
  font-size: 13px;
  color: #333;
}

.nx-specs li {
  margin-bottom: 6px;
}

/* PDF */
.nx-docs {
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.nx-doc {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.nx-pdf {
  width: 26px;
  height: 26px;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.custom-quote-btn {
  background-color: #8b4513;
  color: #fff;
  margin: 22px 0;
  font-weight: 600;
  border: none;
  padding: 10px 30px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.custom-quote-btn:hover {
  background-color: #8b4513;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.custom-quote-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.custom-quote-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255, 50, 50, 0.4);
}

.nx-back {
  font-size: 14px;
  font-weight: 600;
    background: #c49c2d;
  color: #fff;
  border-color: #8b4513;
  text-align: right;
  margin-bottom: 15px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;

}

/* hover */
.nx-back:hover {
  color: #8b4513;
  color: #fff;
  border-color: #8b4513;
  text-decoration: none;
}

.nx-breadcrumb {
  font-size: 14px;
  color: #666;
  margin: 20px auto;
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  display: block;
  width: fit-content;
  text-align: center;
  line-height: 1.6;
}

.nx-breadcrumb a {
  color: #8b4513;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nx-breadcrumb a:hover {
  text-decoration: underline;
  color: #c49c2d;
}

.nx-breadcrumb span {
  color: #222;
  font-weight: 600;
}

.nx-breadcrumb a + a::before,
.nx-breadcrumb a + span::before,
.nx-breadcrumb span::before {
  content: " > ";
  color: #999;
  margin: 0 6px;
}

@media (max-width: 768px) {
  .nx-breadcrumb {
    font-size: 13px;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .nx-breadcrumb {
    font-size: 12px;
    padding: 8px 12px;
  }
}
/* 📱 Tablet & below */
@media (max-width: 992px) {
  .nx-main {
    flex-direction: column;
    gap: 25px;
  }

  .nx-image,
  .nx-content {
    min-width: 100%;
    width: 100%;
  }

  .nx-image img {
    max-width: 100%;
  }
}

/* 📱 Mobile (strict single card) */
@media (max-width: 576px) {
  .nx-container {
    padding: 20px 15px;
  }

  .nx-main {
    flex-direction: column;
    gap: 20px;
  }

  .nx-image,
  .nx-content {
    width: 100%;
    min-width: 100%;
  }

  .nx-title {
    font-size: 20px;
  }

  .nx-text,
  .nx-specs {
    font-size: 13px;
  }

  .custom-quote-btn {
    width: 100%;
    text-align: center;
  }
}