:root {
  --heading-color: black;
  --content-color: #313336d5;
  --accent-color: rgb(0, 139, 127);
  --accent-color-rgb: 0, 139, 127;
  --contrast-color: whitesmoke;
}

/*--------------------------------------------------------------
# Product Hero Section
--------------------------------------------------------------*/
.product-hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 80px 0 120px 0;
  display: flex;
  align-items: center;
}

.product-hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* .product-hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 10%);
    position: absolute;
    inset: 0;
    z-index: 2;
  } */

.product-hero .container {
  position: relative;
  z-index: 3;
}

.product-hero h1 {
  margin: 0 0 20px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: black;
}

.product-hero h1 span {
  color: var(--accent-color);
  border-bottom: 4px solid var(--accent-color);
}

.product-hero p {
  color: black;
  margin: 5px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

.product-hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--accent-color);
  font-weight: 600;
}

.product-hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.product-hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.product-hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.product-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.product-hero-image-position {
  bottom: -125%;
  max-width: 110%;
  height: 250%;
}

@media (max-width: 640px) {
  .product-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .product-hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .product-hero .btn-get-started,
  .product-hero .btn-watch-video {
    font-size: 13px;
  }

  .product-hero-image-position {
    top: 50%;
    left: 25.5%;
    width: 53%;
    height: auto !important;
  }
}

.product-hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.product-hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #fdbc31;
  opacity: 0.6;
}

.product-hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #6fbf59;
  opacity: 0.4;
}

.product-hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #498a7e;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Advantage Section
--------------------------------------------------------------*/

.advantage h3 {
  font-size: 38px;
  font-weight: 700;
  color: black;
}

.advantage h4 {
  font-size: 25px;
  font-weight: 600;
  color: black;
}

.advantage p {
  font-size: 16px;
  color: var(--content-color);
}

.advantage button {
  background-color: var(--accent-color);
  border: none;
  transition: background-color 0.3s ease-in-out;
}

.advantage button:hover {
  background-color: rgba(var(--accent-color-rgb), 0.7);
}

.advantage i {
  color: var(--contrast-color);
}

.image-container {
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 15px;
  /* padding: 20px; */
  margin: 0px 50px;
}

.image-container img {
  max-height: 75%;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}

.icon-container {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: 20px;
  padding: 10px;
  scroll-snap-type: x mandatory;
}

.icon-wrapper {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
}

.icon {
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.2);
}

/* Hide scrollbar but allow scrolling */
.icon-container::-webkit-scrollbar {
  display: none;
}

.icon-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Responsive: Show 9 icons at once on large screens */
@media (min-width: 1200px) {
  .icon-container {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Technical Features Section
--------------------------------------------------------------*/

.technical-features .nav-link h4 {
  font-size: 14px;
}

.technical-features .specifications-container .spec-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  /* margin-bottom: 15px; */
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.technical-features .specifications-container .spec-item:last-child {
  margin-bottom: 0;
}

.technical-features .specifications-container .spec-item h3 {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.technical-features .specifications-container .spec-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.technical-features .specifications-container .spec-item h3:hover {
  color: var(--accent-color);
}

.technical-features .specifications-container .spec-item .spec-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.technical-features .specifications-container .spec-item .spec-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.spec-content {
  display: none;
  transition: all 0.3s ease-in-out;
}

.spec-item.spec-active .spec-content {
  display: block;
}

.technical-features .specifications-container .spec-item .spec-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.technical-features .specifications-container .spec-item .spec-toggle:hover {
  color: var(--accent-color);
}

.technical-features .specifications-container .spec-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.technical-features .specifications-container .spec-active h3 {
  color: var(--accent-color);
}

.technical-features .specifications-container .spec-active .spec-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.technical-features .specifications-container .spec-active .spec-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.technical-features .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.technical-features .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.technical-features .feature-item .feature-content h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.technical-features .feature-item .feature-content p {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .technical-features .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .technical-features .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }
}

.technical-features .accordion-header button {
  font-size: 18px;
}

.accordion-button:focus {
  box-shadow: none; /* Removes the glowing outline */
  outline: none; /* Ensures no default outline */
}

.accordion-button:not(.collapsed) {
  background-color: rgba(var(--accent-color-rgb), 0.2);
}

/* Features Services Styling */
/* Make all images in the featured-services section grayscale */
.featured-services img {
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.5s ease;
}

/* Return to normal color on hover */
.featured-services img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Base Table Styling */
.table {
  border: 1px solid rgba(var(--accent-color-rgb), 0.5);
}
