.home .scroll-wrapper {
  display: none;
}
.hero {
  position: relative;
  z-index: 10;
  height: 100vh;
}
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .content {
  position: absolute;
  top: 25%;
  left: 0;
  padding: 0 80px;
}

.hero .content h1 {
  font-family: var(--text-primary);
  font-size: 5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-weight: 400;
  line-height: 100px;
}

.hero .content a {
  border: 2px solid var(--dark);
  color: var(--dark);
  display: block;
  height: 50px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--text-secondary-regular);
  text-decoration: none;
  border-radius: 50px;
  margin-top: 30px;
  transition: all 0.3s;
}

.hero .content a:hover {
  background-color: var(--dark);
  color: var(--white);
}

.scroll-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: -100vh;
  height: 400vh;
  view-timeline-name: --reveal-wrapper;
}

.scroll-wrapper .fancy-text {
  font-family: var(--text-secondary-regular);
  --split-position: 0%;
  animation: text-reveal linear both;
  animation-timeline: --reveal-wrapper;
  animation-range: entry 200% cover 80%;
  background-image: linear-gradient(
    to right,
    #1d1e1e,
    #1d1e1e var(--split-position),
    #e7e7e7 var(--split-position),
    #e7e7e7
  );
  background-clip: text;
  color: transparent;
  display: inline;
  position: sticky;
  top: 155px;
  font-size: 72px;
  line-height: 100px;
}

@keyframes text-reveal {
  to {
    --split-position: 100%;
  }
}

@property --split-position {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}
.scroll-wrapper .fancy-text .image-wrapper {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 80px;
  margin: 0 20px;
}

.scroll-wrapper .fancy-text img {
  will-change: transform, opacity;
  width: 50px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  position: absolute;
  top: -25px;
  left: 10px;
}

.scroll-image-one {
  animation: scale-up-one linear both;
  animation-timeline: --reveal-wrapper;
  animation-range: entry 80% cover 60%;
  transform-origin: center;
}

@keyframes scale-up-one {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.5);
    opacity: 1;
  }
}

.scroll-image-two {
  animation: scale-up-two linear both;
  animation-timeline: --reveal-wrapper;
  animation-range: entry 250% cover 60%;
  transform-origin: center;
}

@keyframes scale-up-two {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.5);
    opacity: 1;
  }
}

.scroll-image-three {
  animation: scale-up-three linear both;
  animation-timeline: --reveal-wrapper;
  animation-range: entry 335% cover 60%;
  transform-origin: center;
}

@keyframes scale-up-three {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.5);
    opacity: 1;
  }
}

.scroll-image-four {
  animation: scale-up-four linear both;
  animation-timeline: --reveal-wrapper;
  animation-range: entry 400% cover 60%;
  transform-origin: center;
}

@keyframes scale-up-four {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.5);
    opacity: 1;
  }
}

/* @media (max-width: 1024px) {
  .scroll-wrapper {
    max-width: 800px;
  }
  .fancy-text {
    font-size: 50px;
  }
} */

@supports (-webkit-touch-callout: none) {
  .scroll-wrapper {
    margin-top: 0 !important;
    height: auto !important;
  }
}

.airgrip-youtube .video-container {
  margin-top: 100px;
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("https://kleverhomes.com/wp-content/uploads/2025/07/Airgrip-1.png")
    center/contain no-repeat;
  cursor: pointer;
}

.airgrip-youtube .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.airgrip-youtube iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--dark) !important;
}

/* usp */
.usp {
  width: 100%;
  height: 100vh;
  position: relative;
}

.usp .bg-video {
  width: 100%;
  height: 100%;
}

.usp .bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.usp .info-text {
  position: absolute;
  bottom: 5rem;
  left: 5rem;
}

.usp .info-text h3 {
  font-size: 38px;
  color: #fff;
  margin-bottom: 0;
}

.usp .info-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
}

/* testimonials */
.testimonials {
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-section {
  width: 50%;
  height: 775px;
  transition: opacity 0.3s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.content {
  padding: 0 120px;
  width: 50%;
  position: relative;
}
/* Static Heading */
.review-heading {
  margin-bottom: 20px;
}
.review-heading span {
  font-size: 20px;
  font-family: var(--text-secondary-semibold);
}
.review-heading h3 {
  font-family: var(--text-secondary-bold);
  color: var(--brown);
  font-size: 30px;
  margin: 5px 0 15px;
}
/* Swiper Slider */

.main-review {
  margin-top: 10px;
}
.main-review span {
  font-family: var(--text-secondary-bold);
  font-size: 18px;
}
.main-review p {
  font-style: italic;
  font-family: var(--text-secondary-regular);
  margin: 10px 0;
  max-width: 600px;
}
.author {
  margin-top: 10px;
  display: block;
  font-size: 16px;
}
/* Navigation */
.custom-swiper-buttons {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  font-family: var(--text-secondary-regular);
  font-size: 14px;
  color: #000;
}
.custom-swiper-buttons img {
  width: 24px;
  height: 24px;
  margin: 0 5px;
}
.custom-swiper-buttons button {
  background: none;
  border: none;
  color: #000;
  font-family: var(--text-secondary-semibold);
  display: flex;
  align-items: center;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.custom-swiper-buttons button:hover {
  opacity: 1;
}
.custom-swiper-buttons .divider {
  opacity: 0.5;
}
button.active {
  font-weight: bold;
  opacity: 1;
}
button.inactive {
  opacity: 0.5;
  font-weight: normal;
  cursor: default;
  pointer-events: none;
}
button img {
  transition: filter 0.2s ease;
}
button.active img {
  filter: brightness(0);
}
button.inactive img {
  filter: grayscale(1) brightness(1.5);
}
@media (max-width: 1200px) {
  .testimonials .content {
    padding: 0 0 0 60px;
  }
}
@media (max-width: 992px) {
  .testimonials .content {
    padding: 0 0 0 0px;
  }
}

.home .added_to_cart {
  border: 2px solid var(--brown);
  height: 45px;
}
.home .added_to_cart:hover {
  background-color: var(--brown);
}

.all-products {
  padding: 5rem 0;
  background-color: var(--smoke-white);

  .product-image-swap .secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    border-radius: var(--theme-border-radius, 3px);
  }

  .product-image-swap:hover .secondary-image {
    opacity: 1;
  }

  .product-image-swap:hover .primary-image {
    opacity: 0;
  }
}











.hero-media-slider {
  width: 100%;
}
.slide-media,
.hero-media-slider video,
.hero-media-slider img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #000;
}

/* Center arrows vertically */
.slick-prev,
.slick-next {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  z-index: 2;
}

.slick-prev {
  left: 25px !important;
}
.slick-next {
  right: 25px !important;
}

/* Bigger dots for hero */
.slick-dots li button:before {
  font-size: 12px;
  opacity: 0.35;
}
.slick-dots li.slick-active button:before {
  opacity: 0.95;
}

/* Optional: remove default slide outline on click */
.slick-slide {
  outline: none;
  z-index:1!important;
}

.hero-media-slider .content {
  position: absolute;
  top: 30%;
  left: 5%;
  padding: 0 80px;
}

.hero-media-slider .content h1 {
  font-family: var(--text-primary);
  font-size: 5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-weight: 600;
  line-height: 75px;
}

.hero-media-slider .content h1 .small {
  font-size: 2rem;
	font-weight:400;
}

.hero-media-slider .content a {
  border: 2px solid var(--dark);
  color: var(--dark);
  display: block;
  height: 50px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--text-secondary-regular);
  text-decoration: none;
  border-radius: 50px;
  margin-top: 30px;
  transition: all 0.3s;
}

.hero-media-slider .content a:hover {
  background-color: var(--dark);
  color: var(--white);
}