:root {
  --blue: #2b82cf;
  --red: #b20e34;
  --red: #c11c1c;
  --yellow: #ffd166;
  --color-primary: #d80010;
  --color-gray-100: hsl(220, 12%, 98%);
  --color-gray-200: hsl(220, 12%, 90%);
  --color-gray-300: hsl(220, 12%, 85%);
  --color-gray-400: hsl(220, 12%, 65%);
  --color-gray-500: hsl(220, 12%, 45%);
  --color-dark-100: hsl(240, 10%, 15%);
  --color-dark-200: hsl(240, 10%, 12%);
  --color-dark-300: hsl(240, 10%, 9%);
  --color-dark-400: hsl(240, 10%, 6%);
  --color-dark-500: hsl(240, 10%, 3%);
  --color-blue-100: hsl(217, 80%, 65%);
  --color-blue-200: hsl(217, 80%, 60%);
  --color-blue-300: hsl(217, 80%, 55%);
  --color-blue-400: hsl(217, 80%, 50%);
  --color-blue-500: hsl(217, 80%, 45%);
  --shadow-small: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  --shadow-medium: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  --shadow-large: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  --shadow-extra: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Roboto", ui-sans-serif, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gray-100);
  background-color: var(--color-dark-500);
  scroll-behavior: smooth;
}

@media (max-width: 500px) {
  body p{
    font-size: 0.8rem;
  }
}

a {
  text-decoration: none;
}

a:hover {
  color: inherit;
}

/* main,
section {
  overflow: hidden;
} */

a,
button {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  border: none;
  outline: none;
  color: inherit;
  background: unset;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: inherit;
  line-height: 1.25;
  text-wrap: balance;
  word-wrap: break-word;
}

p,
li {
  font-family: inherit;
  line-height: 1.5;
  text-wrap: pretty;
  word-wrap: break-word;
}

img,
svg,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.container-wrapper {
  position: relative;
  margin-top: -97px;
}

/* banner section starts */

.banner-section {
  background: linear-gradient(
    336deg,
    rgba(7, 7, 8, 1) 0%,
    rgba(7, 7, 8, 1) 50%,
    rgb(103 7 14) 100%
  );
  height: 100vh;
  color: white;
  display: flex;
  position: relative;
}

/* .container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
} */

.center {
  text-align: center;
  vertical-align: middle;
}

/* .truncate {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
} */

.title-small {
  font-family: inherit;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
}
.title-medium {
  font-family: inherit;
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
}
.title-large {
  font-family: inherit;
  font-size: clamp(2.65rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
}

.text-small {
  font-family: inherit;
  font-size: 0.85rem;
  line-height: 1.5;
}
.text-base {
  font-family: inherit;
  /* font-size: 1rem; */
  line-height: 1.5;
}
.text-medium {
  font-family: inherit;
  font-size: 1.15rem;
  line-height: 1.5;
}
.text-large {
  font-family: inherit;
  font-size: 1.3rem;
  line-height: 1.5;
}
.text-upper {
  text-transform: uppercase;
}
.text-lower {
  text-transform: lowercase;
}
.text-capital {
  text-transform: capitalize;
}

.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semi {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  vertical-align: middle;
  column-gap: 0.35rem;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  border-radius: 3rem;
  transition: all 0.25s ease;
}

.btn-primary {
  color: var(--color-gray-100);
  background-color: var(--color-primary);
  box-shadow: var(--shadow-medium);
  border: var(--color-gray-100);
  transition: transform 0.3s ease;
}

.btn-primary:hover,
.btn-primary:active {
  background-color: #9f010d !important;
  transform: scale(1.05) !important;
}

.btn-neutral {
  color: var(--color-dark-300);
  background-color: var(--color-gray-100);
  box-shadow: var(--shadow-medium);
}

.btn-neutral:hover {
  color: #9f010d;
  background-color: var(--color-gray-100);
  box-shadow: var(--shadow-medium);
}

.btn-darken {
  color: var(--color-gray-100);
  background-color: var(--color-dark-100);
  box-shadow: var(--shadow-medium);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: auto;
  margin: 0 auto;
  /* background: #070708; */
  background-color: transparent;
  transition: all 0.3s ease;
  padding: 14px 0;
}

.header.stickynav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #070708; /* Optional: for better visibility */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
  padding: 2px 0;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: baseline;
  column-gap: 1rem;
  width: 100%;
  /* height: 7rem; */
  margin-inline: auto;
}

@media(max-width: 576px) {
  .navbar {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.brand {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-gray-100);
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  /* overflow: hidden; */
  padding-block: 4rem;
  background-color: var(--color-dark-400);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.menu.is-active {
  top: 0;
  left: 0;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
  margin-bottom: 0;
}

.menu-link {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-gray-100);
}

.menu-link:hover {
  color: var(--link-hover-color);
  transition: all 0.3s ease-in-out;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.8),
    0 0 15px rgba(255, 255, 255, 0.6);
}

.menu-item .dropdown-menu.show {
  /* background: rgba(255, 255, 255, 0.1); */
  background: linear-gradient(
    336deg,
    rgb(21 7 9) 0%,
    rgb(23 7 9) 50%,
    rgb(67 32 35)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px;
}

.menu-item .dropdown-menu.show .dropdown-item {
  color: #fff;
}

.menu-item .dropdown-menu.show .dropdown-item:focus,
.menu-item .dropdown-menu.show .dropdown-item:hover {
  background-color: #624d4f;
}

@media(max-width: 500px) {
  .menu-item .dropdown-menu.show {
    left: 50%;
    transform: translate(-50%, 0%);
  }
}

.menu-block {
  margin-left: auto;
}
@media screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: initial;
    width: auto;
    padding: 0;
    margin-left: auto;
    background: unset;
    box-shadow: unset;
    transition: unset;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin-inline: auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  cursor: pointer;
  position: relative;
  display: block;
  order: -1;
  z-index: 10;
  width: 1.5rem;
  height: 1rem;
  user-select: none;
  visibility: visible;
}
@media screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 2px;
  background-color: var(--color-gray-100);
  transition: all 0.25s ease;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  left: -1rem;
  opacity: 0;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.overlay {
  position: fixed;
  display: none;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: black;
  transition: all 0.3s ease;
}
.overlay.is-active {
  display: block;
}

.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
  column-gap: 2rem;
  perspective: 1000px;
  transform-style: preserve-3d;
}

@media screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    /* margin-top: 4rem; */
  }
}

@media screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
  }
}

.banner-image {
  display: block;
  max-width: 16rem;
  height: auto;
  object-fit: cover;
  justify-self: center;
  cursor: pointer;
  transform-style: preserve-3d;
  animation: bounce3d 2s ease-in-out infinite;
  animation-play-state: paused;
  transition: transform 0.4s ease-out;
}

/* Hover activates the animation smoothly */
.banner-section:hover .banner-image {
  animation-play-state: running;
}

@keyframes bounce3d {
  0%,
  100% {
    transform: rotateX(0deg) rotateY(0deg) translateY(-8px) translateZ(18px);
  }
  50% {
    transform: rotateX(-3deg) rotateY(2deg) translateY(-20px) translateZ(30px);
  }
}

@media screen and (min-width: 48rem) {
  .banner-image {
    max-width: 20rem;
    order: 1;
  }
}
@media screen and (min-width: 64rem) {
  .banner-image {
    max-width: 24rem;
    margin-right: 5rem;
  }
}

@media (max-width: 500px) {
  .banner-image {
    display: none;
  }
}

.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  row-gap: 1.5rem;
  text-transform: capitalize;
}

.banner-link {
  position: absolute;
  display: grid;
  top: 40%;
  right: 1.5rem;
  justify-items: center;
  row-gap: 0.5rem;
  visibility: hidden;
}
@media screen and (min-width: 64rem) {
  .banner-link {
    visibility: visible;
  }
}
.banner-link > * {
  font-size: 1.25rem;
  line-height: inherit;
  color: var(--color-gray-100);
}
.banner-link::before,
.banner-link::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--color-gray-100);
}
.banner-link::before {
  top: -3rem;
}
.banner-link::after {
  bottom: -3rem;
}

.banner-link a:hover {
  color: var(--color-primary);
}

.brand img {
  width: 180px;
  transition: width 0.5s;
}

.header.stickynav .brand img {
  width: 120px;
  transition: width 0.5s;
}

@media (max-width: 500px) {
  .brand img {
    width: 85px;
    transition: width 0.5s;
  }
}

.banner-inner .text-base {
  font-size: 1.5rem;
  margin-bottom: 0;
}

@media (max-width: 500px) {
  .banner-inner .text-base {
    width: 100%;
  }
}

.text-green {
  color: #37ac47;
}
/* Slider product */

.slider-section {
  position: relative;
  height: 100vh; /* Total height for all 3 slides */
}

.slider-section.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Only one viewport height when sticky */
  z-index: 100;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  opacity: 0.7;
}

/* Slider Container */
/* .slider-container {
  height: auto;
  position: relative;
}

.slider-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
} */

.slider-wrapper {
  height: 400vh;
  position: relative;
}

.slider-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.slider-content {
  width: 100vw;
  height: 100vh;
  display: flex;
}

.left-column {
  width: 65%;
  height: 400vh;
  display: flex;
  flex-direction: column;
}

.right-column {
  width: 35%;
  height: 400vh;
  display: flex;
  flex-direction: column-reverse;
}

.slide {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide-content {
  /* text-align: center; */
  z-index: 2;
  color: #fff;
  /* opacity: 0; */
  /* transform: translateY(50px); */
}

.slide-content h2 {
  font-weight: 600;
  font-size: 50px;
  margin: 0 0 20px 0;
}

.slide-content p {
  font-size: 24px;
  margin: 0 0 30px 0;
}

.slide-1 .slide-content h3 {
  color: #c11c1c;
}

.slide-content a {
  background-color: white;
  padding: 10px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: inline-block;
}

@media(max-width: 500px) {
  .slide-content h2 {
    font-size: 33px;
  }

  .slide-content p {
    font-size: 14px;
  }
}

.slide-content a:hover {
  transform: scale(1.05);
}

/* Slide Colors */
.slide-1 {
  background-color: #242427;
}

.slide-1 a {
  color: var(--red);
}

.slide-2 {
  background-color: #1c0003;
}

.slide-2 a {
  color: var(--red);
}

.slide-3 {
  background-color: #020a16;
}

.slide-3 a {
  color: var(--red);
}

.slide-2 .slide-content h3 {
  color: #c11c1c;
}

.slide-3 .slide-content h3 {
  color: #c11c1c;
}

.slide-4 {
  background-color: #101c1a;
}

.slide-4 .slide-content h3 {
  color: #c11c1c;
}

.slide-4 .slide-content h3 {
  color: #c11c1c;
}

.slide-4 a {
  color: var(--red);
}

/* Right column images */

.image-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media(max-width: 500px) {
  .image-slide {
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.image-1 {
  /* background-image: url(../images/product-one-demo.png); */
  background-image: url(../images/pureBeaats-challenge.jpg);
  /* background-color: #414040; */
}

.image-1::before {
  content: "";
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: #242427;
  z-index: -1;
}


.image-2 {
  /* background-image: url(../images/product-two-demo.png); */
  background-image: url(../images/purebeats-move.jpg);
}

.image-2::before {
  content: "";
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: #1c0003;
  z-index: -1;
}

.image-3 {
  background-image: url(../images/purebeats-extreme.jpg);
}

.image-3::before {
  content: "";
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: #020a16;
  z-index: -1;
}

.image-4 {
  background-image: url(../images/PureBeatsRise.jpg);
}

.image-4::before {
  content: "";
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: #101c1a;
  z-index: -1;
}

/* Progress indicator */
.progress-indicator {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.progress-dot.active {
  background: white;
  transform: scale(1.2);
}

/* Slide counter */
.slide-counter {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 12px;
  z-index: 1000;
  opacity: 0;
}

.slide-1,
.slide-2,
.slide-3,
.slide-4 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width: 768px) {
  .slide-1,
.slide-2,
.slide-3,
.slide-4 {
  padding: 0 20px;
}
}

/* about neoOne asection */

.about-neoOne-section {
  /* background: linear-gradient(156deg, rgb(0 0 0) 0%, rgb(0 0 0) 50%, rgb(103 7 14) 100%); */
  background: linear-gradient(
    156deg,
    rgb(13 13 11) 0%,
    rgb(15 15 13) 50%,
    rgb(30 1 3) 100%
  );
  padding: 50px 0;
}

.about-neoOne-section video {
  width: 600px;
  height: 600px;
}

@media (max-width: 1024px) {
  .about-neoOne-section video {
    width: 100%;
    height: auto;
  }
}

.about-neoOne-section .lead {
  font-size: 1.5rem;
}

/* compare-product-section starts */

.compare-product-section {
  padding: 50px 0;
  /* background-image: url(../images/compare-bg.jpg); */
  background-image: url(../images/web-banner.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 650px;
  display: flex;
  align-items: center;
  box-shadow: inset 0px 0px 10px 20px #020000;
}

.compare-product-section h2 {
  font-weight: 600;
  font-size: 50px;
  margin: 0 0 20px 0;
}

@media(max-width: 500px) {
  .compare-product-section h2 {
    font-size: 33px;
  }
}

.compare-product-section h4 {
  font-size: 2rem;
  margin: 0 0 20px 0;
}

.compare-product-section h3 {
  text-transform: uppercase;
  color: #fb0518;
}

/* footer */

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.section-footer {
  padding: 20px 10vw;
  background-color: #020000;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1239.98px) {
  .section-footer {
    padding: 20px;
  }
}
@media screen and (max-width: 767.98px) {
  .section-footer {
    padding: 20px;
  }
}

.section-footer .desc.copyright {
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1440 - 320)));
  color: var(--desc-copyright-color);
}

.section-footer .logo {
  width: 100%;
  max-width: 200px;
  height: 100%;
  max-height: 35px;
  display: block;
}
/* .section-footer .logo.primary {
  width: 200px;
  min-width: 200px;
  height: 35px;
  min-height: 35px;
  background: url(../images/neoone\ logo\ wht_1.png) no-repeat 50% 50%/contain;
} */

.section-footer .section-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.section-footer .footer__list {
  max-width: 600px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .footer__list {
    width: 100%;
    flex-wrap: wrap;
  }
}
.footer__item {
  width: 100%;
  flex: 1 1 calc(100% / 6);
}
.footer__item.active .footer__link {
  color: var(--link-active-color);
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.8),
    0 0 15px rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 767.98px) {
  .footer__item {
    flex: 1 1 calc(100% / 3);
  }
}
@media screen and (max-width: 463.98px) {
  .footer__item {
    flex: 1 1 calc(100% / 2);
  }
}
.footer__link {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  color: var(--link-color);
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
.footer__link:hover {
  color: var(--link-hover-color);
  transition: all 0.3s ease-in-out;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.8),
    0 0 15px rgba(255, 255, 255, 0.6);
}
.footer__link:active {
  color: var(--link-active-color);
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.8),
    0 0 15px rgba(255, 255, 255, 0.6);
}
.footer__header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .footer__header {
    grid-template-columns: 1fr;
  }
}
.footer__header > .btn.icon {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 767.98px) {
  .footer__header > .btn.icon {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .footer__logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.footer__logo img {
  width: 200px;
}

.footer__copyright {
  width: 100%;
  border-top: 1px solid var(--footer-border-color);
  padding: 20px;
  text-align: center;
}

.section-footer .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 0;
  border: 1px solid transparent;
  background-color: transaprent;
  cursor: pointer;
}
.section-footer .btn.icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #191d24;
  position: absolute;
  right: 30px;
  bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-footer .btn.icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--btn-icon-shadow-color);
}
.section-footer .btn.icon:hover::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  border: 2px solid var(--btn-icon-border-color);
  border-radius: 50%;
  animation: ripple 1s ease-out infinite;
  z-index: 0;
}
.section-footer .btn.icon::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 0;
  transition: width 0.4s ease, height 0.4s ease;
}
.section-footer .btn.icon .icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.section-footer .btn.icon:hover .icon {
  transform: scale(1.2);
}
.section-footer .btn.social {
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  border-radius: 50%;
  background-color: var(--btn-social-bg-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.section-footer .btn.social .icon {
  font-size: 24px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}
.section-footer .btn.social:hover .icon {
  transform: scale(1.2) rotate(360deg);
}
.section-footer .btn.social::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--btn-social-border-color);
  z-index: 0;
  transform: scale(1);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.section-footer .btn.social:hover::after {
  transform: scale(1.5);
  opacity: 1;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.section-footer .social {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 20px;
  margin-bottom: 0;
}

.section-footer .icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  object-fit: contain;
  display: block;
}

.section-footer .icon.drop-up {
  background: url(https://ig-launch.test-project.pp.ua/img/drop-up.svg)
    no-repeat 50% 50% / contain;
}

/* product page start */

.product-page-top-wrapper {
  overflow-x: hidden;
}

.product-page-content {
  width: 100vw;
  height: calc(100vh - 96px);
  display: flex;
}

.product-left-content {
  width: 65%;
  height: calc(100vh - 96px);
  display: flex;
  flex-direction: column;
}

@media(max-width: 500px) {
  .product-page-content {
    display: block
  }
  .product-left-content {
    width: 100%;
    height: auto;
  }
}

.product-feature-wrapper {
  height: calc(100vh - 96px);
  background: linear-gradient(
    336deg,
    rgba(7, 7, 8, 1) 0%,
    rgba(7, 7, 8, 1) 50%,
    rgb(103 7 14) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1028px) {
  .product-feature-wrapper {
    height: auto;
    padding: 10px;
  }
}

.product-right-content {
  width: 35%;
  height: calc(100vh - 96px);
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}

@media (max-width: 1028px) {
  .product-right-content {
    width: auto;
  }
}

.product-page-image {
  background-image: url(../images/pureBeaats-challenge.jpg);
  height: calc(100vh - 96px);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-purebeats-move {
  background-image: url(../images/purebeats-move.jpg);
}

.product-purebeats-extreme {
  background-image: url(../images/purebeats-extreme.jpg);
}

.product-purebeats-Rise {
  background-image: url(../images/PureBeatsRise.jpg);
}

.product-feature-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card img {
  width: 50px;
  margin-bottom: 10px;
}

.product-feature-title {
  text-align: center;
  margin-bottom: 10px;
}

.product-feature-title h1 {
  font-size: 2rem;
  color: #ccde7a;
}

.product-feature-title h2 {
  font-size: 1.25rem;
}

.information-ribbon-wrapper {
  background-color: #ccde7a;
  padding: 30px;
  /* height: 300px; */
  color: #020000;
}

.information-ribbon-wrapper h3 {
  font-size: 1.25rem;
}

.information-ribbon-inner p {
  margin-bottom: 0;
  line-height: 20px;
}

.specfication-wrapper {
  /* background: linear-gradient(336deg, rgba(7, 7, 8, 1) 0%, rgba(7, 7, 8, 1) 50%, rgb(103 7 14) 100%); */
  background: linear-gradient(
    336deg,
    rgba(7, 7, 8, 1) 0%,
    rgba(7, 7, 8, 1) 50%,
    rgb(39 39 39) 100%
  );
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  padding: 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-card {
  /* background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%); */
  background: linear-gradient(135deg, #8b8b8b24 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
  float: right;
  margin-right: 50px;
}

.spec-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    #02020200 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  pointer-events: none;
}

.spec-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.model-name {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e2e8f0;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-title {
  font-size: 1.1rem;
  color: #cbd5e0;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #454545;
  padding: 2px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.spec-item {
  background: #2e2e2e;
  padding: 15px 20px;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spec-item:hover {
  background: #141414;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.spec-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(154, 230, 180, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.spec-item:hover::before {
  left: 100%;
}

.spec-item:first-child {
  border-top-left-radius: 6px;
}

.spec-item:nth-child(2) {
  border-top-right-radius: 6px;
}

.spec-item:nth-last-child(2) {
  border-bottom-left-radius: 6px;
}

.spec-item:last-child {
  border-bottom-right-radius: 6px;
}

.highlight {
  color: #ccde7a;
  font-weight: 600;
}

@media (max-width: 768px) {
  .spec-card {
    padding: 20px;
    margin: 10px;
  }

  .model-name {
    font-size: 2rem;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .spec-item {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 500px){
  .specfication-wrapper {
    padding: 0;
  }

  .spec-card {
    margin: 5px 0;
  }
}

.specfication-wrapper .lead {
  font-size: 1.5rem;
}

.ribbon-detail {
  /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); */
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 920px) {
  .ribbon-detail {
    margin-right: 100px;
  }
}

.ribbon-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgb(80 7 13) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 70% 30%, rgb(84 7 13) 0%, transparent 50%);
}

.ribbon-detail-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.ribbon-detail .nepal-flag {
  width: 30px;
  height: 20px;
  background: linear-gradient(
    to bottom,
    #dc143c 0%,
    #dc143c 50%,
    #003893 50%,
    #003893 100%
  );
  border-radius: 3px;
  margin-right: 8px;
  display: inline-block;
}

.ribbon-detail .designed-text {
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 10px;
}

.ribbon-detail .main-title {
  color: #ccde7a;
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.ribbon-detail .subtitle {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.ribbon-detail .warranty-badge {
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
  margin-bottom: 20px;
}

.ribbon-detail .warranty-badge h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.ribbon-detail .warranty-badge p {
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.color-options {
  margin-bottom: 30px;
}

.color-options h4 {
  color: #ccde7a;
  margin-bottom: 30px;
}

.color-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.color-dot:hover {
  border-color: #ccde7a;
  transform: scale(1.1);
}

.color-blue {
  background: linear-gradient(to right, #4177b5 50%, white 50%);
}
.color-black {
  background: #221d22;
  background: linear-gradient(to right, #221d22 50%, white 50%);
}

.purebeats-move-specitication .color-blue {
  background: linear-gradient(to right, #ffffff 50%, white 50%);
}

.purebeats-move-specitication .color-black {
  background: #000;
}

.ribbon-detail .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.ribbon-detail .feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ribbon-detail .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
}

.ribbon-detail .feature-icon {
  font-size: 2.5rem;
  color: #80bc82;
  margin-bottom: 15px;
}

.ribbon-detail .feature-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.ribbon-detail .feature-desc {
  color: #cccccc;
  font-size: 0.9rem;
}

.ribbon-detail .earbuds-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 255, 136, 0.3));
}

.ribbon-detail .company-info {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}

.ribbon-detail .company-info p {
  color: #cccccc;
  font-size: 1rem;
  margin-bottom: 5px;
}

.ribbon-detail .whats-in-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
}

.ribbon-detail .whats-in-box h3 {
  margin-bottom: 30px;
  color: #ccde7a;
}

.ribbon-detail .box-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.ribbon-detail .box-item {
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
}

.ribbon-detail .box-item p {
  margin-bottom: 0;
  line-height: 1;
}

.ribbon-detail .box-item i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #80bc82;
}

@media (max-width: 768px) {
  .ribbon-detail .main-title {
    font-size: 2.5rem;
  }

  .ribbon-detail .features-grid {
    grid-template-columns: 1fr;
  }
}

.designed-nepal-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.designed-nepal-wrapper p {
  margin-bottom: 0;
}

.designed-nepal-wrapper .designed-nepal-img {
  width: 50%;
  margin-left: 20px;
}

.designed-nepal-wrapper .designed-nepal-img img {
  width: 50px;
}

/* About page starts */

/* Hero Section */
.hero-section-inner-page {
  /* background: linear-gradient(135deg, var(--color-primary) 0%, var(--secondary-color) 100%); */
  background: linear-gradient(
    336deg,
    rgba(7, 7, 8, 1) 0%,
    rgba(7, 7, 8, 1) 50%,
    rgb(103 7 14) 100%
  );
  color: white;
  padding: 50px 0 20px;
  position: relative;
  overflow: hidden;
}

.hero-section-inner-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'); */
  background: linear-gradient(
    336deg,
    rgba(7, 7, 8, 1) 0%,
    rgba(7, 7, 8, 1) 50%,
    rgb(103 7 14) 100%
  );
  opacity: 0.3;
}

.hero-section-inner-page .hero-content {
  position: relative;
  z-index: 2;
}

.hero-section-inner-page .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section-inner-page .hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.hero-section-inner-page .hero-subtitle p {
  margin-bottom: 0;
}

/* Section Styling */
.section-inner-page {
  padding: 50px 0;
}

.section-alt {
  background-color: #160404;
}

.section-inner-page .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--dark-color);
  position: relative;
}

.section-inner-page .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--color-gray-200));
  border-radius: 2px;
}

/* Mission Card */
.mission-card {
  background: #a2161647;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--color-gray-200)
  );
}

.mission-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark-color);
}

/* Products Grid */
.section-inner-page .product-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.section-inner-page .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgb(50 11 12 / 47%);
}

.section-inner-page .product-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.section-inner-page .product-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.section-inner-page .product-subtitle {
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 500;
}

/* Company Cards */
.company-card {
  background: #a2161647;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.company-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.company-description {
  font-size: 1.1rem;
  line-height: 1.7;
  /* color: #6b7280; */
}

/* Animations */
.section-inner-page .fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.section-inner-page .fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.section-inner-page .fade-in:nth-child(3) {
  animation-delay: 0.4s;
}
.section-inner-page .fade-in:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-inner-page .section-title {
    font-size: 2rem;
  }

  .mission-card,
  .company-card {
    padding: 2rem;
  }

  .hero-section-inner-page {
    padding: 80px 0 50px;
  }
}

/* Scroll Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-gray-200)
  );
  z-index: 1000;
  transition: width 0.3s ease;
}

.download-manual-btn {
  position: fixed;
  bottom: 30px;
  right: 25px;
  /* margin-bottom: -20px; */
  z-index: 10;
  animation-name: floating;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

@keyframes floating {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 19px);
  }
  to {
    transform: translate(0, -0px);
  }
}

.product-feature-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 20px;
}

.product-feature-inner .feature-card {
  height: 120px;
  font-size: 0.8rem;
}

.product-feature-inner .feature-card p {
  line-height: 1.2;
}

.features-grid.product-feature-inner {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  margin: 0;
}

.feature-card .feature-icon i {
  font-size: 20px;
  color: #73b776;
  margin-bottom: 10px;
}

.feature-card img {
  width: 35px;
  margin-bottom: 10px;
}

.features-grid.product-feature-inner .feature-card {
  width: 200px;
  font-size: 1rem;
  height: 110px;
  border: 0;
  background: none;
}

.product-feature-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 500px) {
  .features-grid {
    flex-wrap: nowrap;
  }
}


.feature-card {
  width: calc(20% - 15px); /* 4 per row with gap accounted */
  box-sizing: border-box;
}

@media(max-width: 1028px) {
  .features-grid.product-feature-inner .feature-card {
    width: 160px;
    font-size: 14px;
  }
}

@media(max-width: 500px) {

  .product-feature-inner .feature-card {
    width: 40%;
    padding: 5px;
    height: 100px;
  }

  .features-grid.product-feature-inner .feature-card {
    width: 100px;
    font-size: 12px;
    padding: 10px;
    height: 100px;
  }
}

/* Contact US page */

.contact-container-wrapper {
  /* max-width: 1200px; */
  margin: 0 auto;
  /* background: rgba(255, 255, 255, 0.95); */
  /* backdrop-filter: blur(10px); */
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-content-header {
  /* width: 60%; */
  text-align: center;
  margin: 0 auto 20px;
  padding: 60px 40px 0 40px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.contact-content-header p {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

.contact-container-wrapper .content {
  padding: 60px 40px;
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; */
  align-items: start;
}

.form-section {
  background: #a2161647;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media(max-width: 425px) {
  .form-section {
    padding: 1rem;
  }
}

.form-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section h2::before {
  content: "";
  width: 4px;
  height: 30px;
  background: linear-gradient(180deg, var(--red), var(--color-gray-200));
  border-radius: 2px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #ffffff21;
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffffff;
  background: transparent;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

.file-input {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.file-input input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-input-label {
  display: block;
  padding: 15px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  text-align: center;
  color: #667eea;
  transition: all 0.3s ease;
  background: #ffffff21;
  font-weight: normal !important;
}

.file-input:hover .file-input-label {
  background: #160404;
  color: white;
  transform: scale(1.02);
}

.submit-btn {
  width: 100%;
  /* padding: 18px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600; */
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.submit-text {
  position: relative;
  z-index: 1;
}

.quick-contact {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.contact-option {
  /* background: white; */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-option h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.phone-link {
  color: #ccde7a;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: #ff6b6b;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .contact-container-wrapper .content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .quick-contact {
    grid-template-columns: 1fr;
  }

  .contact-content-headerh1 {
    font-size: 2rem;
  }

  .contact-content-header p {
    font-size: 1rem;
  }
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
  display: none;
}

.contact-complaint-wrapper .form-section {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-content-header p.lead {
  font-size: 1.3rem;
}

@media (min-width: 992px) {
  .contact-content-header p.lead {
    margin-left: 100px;
    margin-right: 100px;
  }
}

@media (min-width: 550px) {
  .grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}

.contact-container-wrapper select option {
  background-color: #4d2b2b; /* White background for options */
  color: #fff; /* Black text for options */
}

#PureBeatsChallenge .specfication-wrapper {
  background: linear-gradient(
    336deg,
    rgb(58 58 60) 0%,
    rgb(59 59 61) 50%,
    rgb(39 39 39) 100%
  );
}

#PureBeatsChallenge .ribbon-detail::before {
  background: none;
}

#PureBeatsMove .specfication-wrapper {
  background: linear-gradient(
    336deg,
    rgba(7, 7, 8, 1) 0%,
    rgba(7, 7, 8, 1) 50%,
    rgb(103 7 14) 100%
  );
}

#PureBeatsMove .ribbon-detail::before {
  background: none;
}

#PureBeatsExtreme .specfication-wrapper {
  background: linear-gradient(
    336deg,
    rgb(6 9 24) 0%,
    rgb(14 38 82) 50%,
    rgb(39 39 39) 100%
  );
}

#PureBeatsExtreme .ribbon-detail::before {
  background: none;
}

#PureBeatsRise .specfication-wrapper {
  background: linear-gradient(
    336deg,
    rgb(13 23 22) 0%,
    rgb(28 63 42) 50%,
    rgb(39 39 39) 100%
  );
}

#PureBeatsRise .ribbon-detail::before {
  background: none;
}

.has-padding {
  padding-top: 62px;
}

/* contact-footer */

.contact-footer-container {
  padding-top: 30px;
}

/* .contact-footer-container {
  background-color: white;
  padding: 40px 60px;
  margin: 0 auto;
  background: #160404;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
} */

.contact-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-footer-logo-section {
  flex: 1;
}

.contact-footer-logo {
  font-weight: bold;
  color: #7cb342;
  margin-bottom: 10px;
  font-family: "Arial", sans-serif;
}

.contact-footer-contact-info {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}

.contact-footer-contact-info p {
  margin-bottom: 8px;
}

.contact-footer-sections {
  display: flex;
  flex: 2;
  gap: 5px;
}

.contact-footer-column {
  flex: 1;
}

.contact-footer-column h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-footer-column ul {
  list-style: none;
  padding: 0;
}

/* .contact-footer-column li {
  margin-bottom: 12px;
} */

.contact-footer-column a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.contact-footer-column a:hover {
  color: #7cb342;
}

.connect-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-footer-column .social-icons {
  display: flex;
  gap: 5px;
}

.contact-footer-column .social-icon {
  width: 35px;
  height: 35px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.contact-footer-column .social-icon:hover {
  background-color: #7cb342;
}

.contact-certification-badge {
  width: 120px;
  height: auto;
  background-color: #fff;
}

.contact-footer-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 0px 0 20px;
}

.contact-store-locations {
  text-align: center;
}

.contact-store-locations h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-locations-grid .location {
  text-align: left;
}

.contact-locations-grid .location h4 {
  color: #7cb342;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-locations-grid .location p {
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 5px;
}

@media (max-width: 1024px) {
  .contact-footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-sections {
    gap: 40px;
  }

  .contact-locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-footer-sections {
    flex-direction: column;
    gap: 30px;
  }

  .contact-locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .contact-footer-sections {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .contact-footer-container {
    padding: 30px 20px;
  }

  .contact-locations-grid {
    grid-template-columns: 1fr;
  }
}

.contact-footer-column .social {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 5px;
  margin-bottom: 0;
  padding: 5px;
}

/* product slider */

.thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  overflow: auto;
  margin: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  width: fit-content;
  margin: 0 auto 30px;
}

.thumbs img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.25s;
}
.thumbs img.active {
  border-color: #ffffff9e;
}
.thumbs img:hover {
  transform: scale(1.05);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: #ffffff82;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
}
.arrow.left {
  left: 10px;
}
.arrow.right {
  right: 25px;
}

.small-hero-section .hero-title {
  font-size: 2rem;
  margin-bottom: 0px;
}

.small-hero-section .hero-subtitle {
  margin-bottom: 5px;
}

.small-hero-section {
  padding-top: 20px;
}

#complaintForm option {
  background-color: #2e1e1e;
}