* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
}

/* Prevent any element from causing horizontal overflow */
*, *::before, *::after {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Full-Screen Hero Section */
.hov-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.hov-hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hov-hero-media video {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* filter: brightness(0.7) contrast(1.1); */
}

.hov-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hov-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 2;
}

.hov-hero-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
}

.hov-hero-title {
  font-size: clamp(24px,10vw,96px);
  font-weight: 300;
  margin-bottom: 1.5rem;
  /* background: linear-gradient(135deg, #ff6b35, #ff9500); */
  background-color: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: 2px;
  white-space: nowrap;
  overflow: visible;
  width: 100%;
}


.hov-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.hov-hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hov-hero-cta:hover::before {
  left: 100%;
}

.hov-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
  background: linear-gradient(135deg, #ff9500, #ffb347);
}

/* Scroll Indicator */
.hov-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.hov-scroll-indicator:hover {
  opacity: 1;
}

.hov-scroll-text {
  font-size: 0.8rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  font-weight: 500;
}

.hov-scroll-arrow {
  width: 20px;
  height: 20px;
  animation: bounce 2s infinite;
  color: white;
  fill: white;
}

.hov-scroll-arrow path {
  stroke: white;
  fill: none;
}

/* Performance Section */
.hov-performance-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: auto;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 60px 0;
  overflow-x: hidden;
}

.hov-performance-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 min(40px, 5vw);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.hov-performance-text {
  width:100%;
  color: #333;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
  margin-top: -40px;
}

.hov-performance-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.hov-performance-text .hov-section-title {
  color: black;
  margin-bottom: 1.5rem;
}

.hov-performance-text .hov-section-subtitle {
  color: black;
  margin-bottom: 2rem;
  font-size: clamp(1.10rem, 4vw, 1.50rem);
}

.hov-performance-text .hov-section-description {
  color: black;
  margin-bottom: 2rem;
  text-align: justify;
}

/* Performance Description Box - Bordered container like the example */
.hov-performance-description-box {
 
  /* padding: 1.5rem; */
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  /* margin-top: 2rem; */
  max-width: 900px;
}

.hov-performance-description-box .hov-section-description {
  margin-bottom: 1rem;
  text-align: left;
}

.hov-performance-description-box .hov-section-description:last-child {
  margin-bottom: 0;
}

/* Video Title Styling */
.hov-video-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: left;
}

.hov-feature-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.hov-feature-item h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.hov-feature-item p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.hov-performance-video {
  width:100%;
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease 0.3s;
}

.hov-performance-video.animate {
  opacity: 1;
  transform: translateX(0);
}

.hov-video-container {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  aspect-ratio: 9/16;
  transition: all 0.3s ease;
}

.hov-video-container:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.hov-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hov-fullscreen-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hov-fullscreen-icon svg {
  stroke: white;
}

.hov-video-container:hover .hov-fullscreen-icon {
  opacity: 1;
}

.hov-click-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.hov-video-container:hover .hov-click-hint {
  opacity: 1;
}

.hov-video-placeholder {
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  aspect-ratio: 9/16;
}

.hov-video-placeholder p {
  margin: 0.5rem 0;
  text-align: center;
}

/* Fullscreen Video Styles */
.hov-video-container:-webkit-full-screen {
  width: 100% !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

.hov-video-container:-moz-full-screen {
  width: 100% !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

.hov-video-container:fullscreen {
  width: 100% !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

.hov-video-container:-webkit-full-screen video {
  border-radius: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  max-width: 100% !important;
  max-height: 100vh !important;
}

.hov-video-container:-moz-full-screen video {
  border-radius: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  max-width: 100% !important;
  max-height: 100vh !important;
}

.hov-video-container:fullscreen video {
  border-radius: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  max-width: 100% !important;
  max-height: 100vh !important;
}

/* Hide fullscreen icon when in fullscreen mode */
.hov-video-container:-webkit-full-screen .hov-fullscreen-icon,
.hov-video-container:-moz-full-screen .hov-fullscreen-icon,
.hov-video-container:fullscreen .hov-fullscreen-icon {
  display: none !important;
}

/* Performance Section Version 2 */
.hov-performance-section-v2 {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: auto;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  overflow-x: hidden;
}

.hov-performance-container-v2 {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 min(40px, 5vw);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.hov-performance-text-v2 {
  color: #333;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.hov-performance-text-v2.animate {
  opacity: 1;
  transform: translateX(0);
}

.hov-performance-text-v2 .hov-section-title {
  color: black;
  margin-bottom: 1.5rem;
}

.hov-performance-text-v2 .hov-section-subtitle {
  color: black;
  opacity: 0.8;
  margin-bottom: 2rem;
  font-size: clamp(1.10rem, 4vw, 1.50rem);
}

.hov-performance-text-v2 .hov-section-description {
  color: black;
  opacity: 0.7;
  margin-bottom: 2rem;
  text-align: left;
  font-size: clamp(0.95rem, 4vw, 1.26rem);
}

.hov-performance-features-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hov-feature-item-v2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.hov-feature-item-v2 h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.hov-feature-item-v2 p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.hov-performance-video-v2 {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease 0.3s;
}

.hov-performance-video-v2.animate {
  opacity: 1;
  transform: translateX(0);
}

.hov-video-container-v2 {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  aspect-ratio: 9/16;
  transition: all 0.3s ease;
}

.hov-video-container-v2:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.hov-video-container-v2 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hov-video-container-v2 .hov-fullscreen-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hov-video-container-v2:hover .hov-fullscreen-icon {
  opacity: 1;
}

.hov-video-container-v2 .hov-click-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.hov-video-container-v2:hover .hov-click-hint {
  opacity: 1;
}

/* Fullscreen Video V2 Styles */
.hov-video-container-v2:-webkit-full-screen {
  width: 100% !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

.hov-video-container-v2:-moz-full-screen {
  width: 100% !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

.hov-video-container-v2:fullscreen {
  width: 100% !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

.hov-video-container-v2:-webkit-full-screen video {
  border-radius: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  max-width: 100% !important;
  max-height: 100vh !important;
}

.hov-video-container-v2:-moz-full-screen video {
  border-radius: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  max-width: 100% !important;
  max-height: 100vh !important;
}

.hov-video-container-v2:fullscreen video {
  border-radius: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  max-width: 100% !important;
  max-height: 100vh !important;
}

/* Hide fullscreen icon when in fullscreen mode for V2 */
.hov-video-container-v2:-webkit-full-screen .hov-fullscreen-icon,
.hov-video-container-v2:-moz-full-screen .hov-fullscreen-icon,
.hov-video-container-v2:fullscreen .hov-fullscreen-icon {
  display: none !important;
}

/* Tech Specs Section */
.hov-specs-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: auto;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  overflow-x: hidden;
}

.hov-specs-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 min(40px, 5vw);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.hov-specs-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.hov-specs-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 4rem;
  color: white;
}

.hov-specs-table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hov-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-30px);
}

.hov-spec-row:last-child {
  border-bottom: none;
}

.hov-spec-row:hover {
  background: rgba(255, 107, 53, 0.05);
}

.hov-spec-label {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hov-spec-value {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: white;
  text-align: right;
}

@keyframes slideInRow {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Technology Overview Section */
.hov-tech-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: auto;
  background: #000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 0;
  overflow-x: hidden;
}

.hov-tech-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 min(40px, 5vw);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hov-tech-text {
  text-align: left;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.hov-tech-text.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Grid Tower Title - Largest font size */
.hov-tech-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  max-width: 1000px;
  line-height: 1.2;
  text-align: left;
}

/* Cost-effective maintenance - Medium font size */
.hov-tech-subtitle {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 1000px;
  line-height: 1.3;
  text-align: left;
}

/* Insulator cleaning without the danger - Smaller than subtitle but larger than description */
.hov-tech-subtitle-secondary {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 500;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 1000px;
  line-height: 1.4;
  text-align: left;
}

/* Description text - Smallest font size */
.hov-tech-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 1200px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: justify;
}

.hov-tech-description span {
  color: #ff6b35;
  font-weight: 600;
}

.hov-tech-image {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease 0.2s;
}

.hov-tech-image.animate {
  opacity: 1;
  transform: translateY(0);
}

.hov-image-container {
  position: relative;
  width: 100%;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.hov-image-container:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.hov-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.hov-image-container .hov-fullscreen-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hov-image-container .hov-fullscreen-icon svg {
  stroke: white;
}

.hov-image-container:hover .hov-fullscreen-icon {
  opacity: 1;
}

.hov-image-container .hov-click-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.hov-image-container:hover .hov-click-hint {
  opacity: 1;
}

/* Fullscreen Image Styles */
.hov-image-container:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hov-image-container:-moz-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hov-image-container:fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hov-image-container:-webkit-full-screen img {
  border-radius: 0 !important;
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hov-image-container:-moz-full-screen img {
  border-radius: 0 !important;
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hov-image-container:fullscreen img {
  border-radius: 0 !important;
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hov-tech-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hov-tech-label {
  position: absolute;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.hov-tech-image.animate .hov-tech-label {
  opacity: 1;
  transform: scale(1);
}

.hov-tech-label:nth-child(1) {
  transition-delay: 0.4s;
}

.hov-tech-label:nth-child(2) {
  transition-delay: 0.6s;
}

.hov-tech-label-text {
  display: inline-block;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 400;
  border: 1px solid rgba(255, 153, 0, 0.5);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

/* Full-Width Sections */
.hov-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgb(24, 23, 23);
}

.hov-section-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hov-section-media img,
.hov-section-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hov-section-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 min(40px, 5vw);
  color: white;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.hov-section-content.animate {
  opacity: 1;
  transform: translateY(0);
}

.hov-section-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: black;
  max-width: 1000px;
  line-height: 1.2;
  text-align: left;
}

.hov-sectionp-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: 1px;
  text-align: center;
}

.hov-section-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hovp-section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  text-align: center;
}

.hov-section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  text-align: left;
}

/* Dark Overlay for Text Readability */
.hov-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 2;
}

/* Light Section Variant */
.hov-section.light {
  background: #f8f9fa;
}

.hov-section.light .hov-section-content {
  color: #333;
}

.hov-section.light .hov-section-overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

/* Sticky Navigation Enhancement */
.navbar {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10000 !important;
  background: rgba(0, 0, 0, 0.8) !important;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Design */

/* 4K and Ultra-Wide Displays (2560px+) */
@media (min-width: 2560px) {
  .hov-hero-content {
    max-width: 1200px;
  }

  /* Single line title for large screens */
  .hov-section-title {
    white-space: nowrap;
  }

  .hov-performance-container {
    max-width: 1800px;
    grid-template-columns: 1fr 500px;
    gap: 100px;
  }

  .hov-video-container {
    height: 750px;
  }

  .hov-performance-container-v2 {
    max-width: 1800px;
    grid-template-columns: 1fr 500px;
    gap: 100px;
  }

  .hov-specs-container {
    max-width: 1400px;
  }

  .hov-tech-content {
    max-width: 1800px;
    gap: 50px;
  }

  .hov-section-content {
    max-width: 1600px;
  }

  .hov-specs-title {
    margin-bottom: 4rem;
  }

  .hov-spec-row {
    padding: 25px 40px;
  }

  .hov-spec-label,
  .hov-spec-value {
    font-size: 1.3rem;
  }
}

/* Large Desktop (1440px - 2559px) */
@media (min-width: 1440px) and (max-width: 2559px) {
  /* Single line title for large desktop */
  .hov-section-title {
    white-space: nowrap;
  }

  .hov-performance-container {
    max-width: 1600px;
    grid-template-columns: 1fr 450px;
    gap: 80px;
  }

  .hov-video-container {
    height: 650px;
  }

  .hov-performance-container-v2 {
    max-width: 1600px;
    grid-template-columns: 1fr 450px;
    gap: 80px;
  }

  .hov-specs-container {
    max-width: 1200px;
  }

  .hov-tech-content {
    max-width: 1600px;
    gap: 40px;
  }

  .hov-spec-row {
    padding: 22px 35px;
  }

  .hov-spec-label,
  .hov-spec-value {
    font-size: 1.2rem;
  }
}

/* Standard Desktop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  /* Single line title for standard desktop */
  .hov-section-title {
    white-space: nowrap;
  }

  .hov-performance-container {
    max-width: 1200px;
    gap: 60px;
  }

  .hov-video-container {
    height: 550px;
  }

  .hov-performance-container-v2 {
    max-width: 1200px;
    gap: 60px;
  }

  .hov-specs-container {
    max-width: 900px;
  }

  .hov-tech-content {
    max-width: 1200px;
  }
}

/* Tablet Landscape (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .hov-performance-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
  }

 

  .hov-performance-video {
    order: -1;
  }

  .hov-video-container {
    height: 450px;
    max-width: 1023px;
    width: 100%;
    margin: 0 auto;
  }

  .hov-specs-container {
    padding: 0 30px;
  }

  .hov-spec-row {
    padding: 18px 25px;
  }

  .hov-tech-content {
    padding: 0 30px;
    gap: 30px;
  }

  .hov-section-content {
    padding: 0 30px;
  }

  .hov-hero-content {
    padding: 0 25px;
  }

  .hov-performance-text .hov-section-description {
    text-align: left;
  }

  /* Performance Description Box - Tablet Landscape */
  .hov-performance-description-box {
    max-width: 100%;
    /* padding: 1.2rem; */
  }

  .hov-video-title {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  }

  /* Performance Section V2 Tablet Landscape - Keep side by side */
  .hov-performance-container-v2 {
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 0 30px;
  }

  .hov-video-container-v2 {
    height: 450px;
  }
  
}

/* Mobile Tablet Portrait (481px - 767px) */
@media (min-width: 481px) and (max-width: 767) {
  .hov-section-content {
    padding: 0 25px;
  }

  .hov-hero {
    height: 600px;
    min-height: 601px;
  }

  .hov-scroll-indicator {
    bottom: 20px;
  }

  .hov-hero-content {
    bottom: 60px;
    padding: 0 20px;
  }


  .hov-hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }

  .hov-tech-content {
    padding: 0 25px;
    gap: 25px;
  }

  .hov-tech-section {
    padding: 40px 0;
  }

  /* Responsive font sizes for tablet */
  .hov-tech-title,
  .hov-section-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }

  .hov-tech-subtitle {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
  }

  .hov-tech-subtitle-secondary {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  }

  .hov-tech-description {
    font-size: clamp(0.95rem, 4vw, 1.15rem);
  }

  .hov-tech-label-text {
    font-size: clamp(0.75rem, 3vw, 0.95rem);
    padding: 8px 14px;
  }

  /* Performance Section Tablet */
  .hov-performance-container {
    grid-template-columns: 1fr 200px;
    gap: 25px;
    padding: 0 20px;
    max-width: 100%;
  }

  .hov-video-container {
    height: 350px;
    width: 100%;
    max-width: 200px;
  }

  .hov-performance-text .hov-section-description {
    text-align: left;
  }

  /* Tech Specs Tablet */
  .hov-specs-container {
    padding: 0 25px;
  }

  .hov-specs-title {
    margin-bottom: 2.5rem;
  }

  .hov-spec-row {
    padding: 16px 22px;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .hov-spec-label {
    font-size: clamp(0.85rem, 3vw, 1.05rem);
  }

  .hov-spec-value {
    font-size: clamp(0.85rem, 3vw, 1.05rem);
    text-align: right;
  }

  /* Performance Section V2 Mobile Tablet - Keep side by side */
  .hov-performance-container-v2 {
    grid-template-columns: 1fr 200px;
    gap: 25px;
    padding: 0 20px;
    max-width: 100%;
  }

  .hov-video-container-v2 {
    height: 350px;
    width: 100%;
    max-width: 200px;
  }

  .hov-performance-features-v2 {
    gap: 1.2rem;
  }

  /* Left-justify text content on mobile phones */
  .hov-tech-description,
  .hov-section-description,
  .hovp-section-description {
    text-align: left !important;
  }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
  .hov-section-content {
    padding: 0 10px;
    max-width: 100%;
  }

  .hov-hero {
    height: 500px;
    min-height: 501px;
  }

  .hov-scroll-indicator {
    bottom: 15px;
  }

  .hov-hero-media {
    width: 100%;
    height: 60%;
    max-height: 60vh;
  }

  .hov-hero-content {
    bottom: 40px;
    padding: 0 10px;
    max-width: 95vw;
  }

  .hov-hero-subtitle {
    font-size: clamp(0.85rem, 5vw, 1.2rem);
    margin-bottom: 1.5rem;
    letter-spacing: 0.2px;
    line-height: 1.3;
  }

  .hov-tech-content {
    padding: 0 10px;
    gap: 20px;
    max-width: 100%;
  }

  .hov-tech-section {
    padding: 30px 0;
  }

  /* Responsive font sizes for mobile */
  .hov-tech-title,
  .hov-section-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hov-tech-subtitle {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
  }

  .hov-tech-subtitle-secondary {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  }

  .hov-tech-description {
    font-size: clamp(0.9rem, 4.5vw, 1.1rem);
  }

  .hov-tech-label-text {
    font-size: clamp(0.7rem, 3.5vw, 0.9rem);
    padding: 6px 12px;
  }

  /* Performance Section Mobile */
  .hov-performance-section {
    padding: 40px 0;
  }

  .hov-performance-features {
    gap: 1.2rem;
  }

  .hov-performance-text .hov-section-description {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  /* Performance Description Box - Mobile */
  .hov-performance-description-box {
    max-width: 100%;
    /* padding: 1rem; */
    margin-top: 1.5rem;
  }

  .hov-video-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-bottom: 0.8rem;
  }

  /* Tech Specs Mobile */
  .hov-specs-section {
    padding: 40px 0;
  }

  .hov-specs-container {
    padding: 0 10px;
    max-width: 100%;
  }

  .hov-specs-title {
    margin-bottom: 2rem;
  }

  .hov-spec-row {
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .hov-spec-label {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
  }

  .hov-spec-value {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
    text-align: left;
  }

  /* General Mobile Optimizations */
  .hov-section {
    min-height: 70vh;
  }

  .hov-section-title {
    margin-bottom: 1rem;
  }

  .hov-section-subtitle {
    margin-bottom: 1.5rem;
  }

  .hov-section-description {
    margin-bottom: 1.5rem;
  }

  /* Performance Section V2 Mobile - Keep side by side */
  .hov-performance-section-v2 {
    padding: 40px 0;
  }

  .hov-performance-container-v2 {
    grid-template-columns: 1fr 150px;
    gap: 15px;
    padding: 0 10px;
    max-width: 100%;
  }

  .hov-video-container-v2 {
    height: 250px;
    width: 100%;
    max-width: 150px;
  }

  .hov-performance-features-v2 {
    gap: 1rem;
  }

  .hov-performance-text-v2 .hov-section-description {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .hov-feature-item-v2 h4 {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .hov-feature-item-v2 p {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
  }

  /* Left-justify text content on mobile phones */
  .hov-tech-description,
  .hov-section-description,
  .hovp-section-description,
  .hov-performance-text {
    text-align: left !important;
  }

  /* Mobile responsive for new sections */
  .hov-performance-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 5px !important;
  }

  .hov-performance-text {
    order: 1;
  }

  .hov-performance-video {
    order: 2;
    width: 100%;
    display: block !important;
    visibility: visible !important;
  }

  .hov-video-container {
    width: 100%;
    height: auto;
    min-height: 250px;
    display: block !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
  }

  .hov-video-container video {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
    display: block !important;
    visibility: visible !important;
  }

  .hov-showcase-section {
    height: 60vh;
  }

  .hov-showcase-content {
    padding: 0 20px;
  }

  .hov-specs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hov-spec-category {
    padding: 30px 20px;
  }

  .hov-cta-content {
    padding: 0 20px;
  }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {

  .hov-performance-container-v2 {
    grid-template-columns: 1fr 120px;
    gap: 10px;
    padding: 0 8px;
  }

  .hov-video-container-v2 {
    height: 200px;
    max-width: 120px;
  }

  .hov-hero-content {
    bottom: 30px;
    padding: 0 8px;
    max-width: 98vw;
  }

  .hov-section-content,
  .hov-tech-content,
  .hov-specs-container {
    padding: 0 8px;
  }

  .hov-hero-subtitle {
    font-size: clamp(0.8rem, 6vw, 1.1rem);
    margin-bottom: 1.2rem;
    letter-spacing: 0.1px;
    line-height: 1.2;
  }

  /* Left-justify text content on extra small mobile */
  .hov-tech-description,
  .hov-section-description,
  .hovp-section-description,
  .hov-performance-text {
    text-align: left !important;
  }

  /* Mobile responsive for new sections */
  .hov-performance-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  .hov-performance-text {
    order: 1;
  }

  .hov-performance-video {
    order: 2;
    width: 100%;
    display: block !important;
    visibility: visible !important;
  }

  .hov-video-container {
    width: 100%;
    height: auto;
    min-height: 200px;
    display: block !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
  }

  .hov-video-container video {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    display: block !important;
    visibility: visible !important;
  }

  .hov-specs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hov-spec-category {
    padding: 25px 15px;
  }

  .hov-cta-content {
    padding: 0 15px;
  }
}

/* Stagger Animation Items */
.hov-stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  margin-bottom: 2rem;
}

.hov-stagger-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.hov-section-content.animate .hov-stagger-item {
  opacity: 1;
  transform: translateY(0);
}

.hov-stagger-item h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: inherit;
}

.hov-stagger-item p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  opacity: 0.8;
  line-height: 1.6;
}

/* Loading States - Simplified to match lidar_scanner.php */
body:not(.loaded) .hov-hero-content {
  opacity: 0;
  transform: translateX(-50%);
}

body.loaded .hov-hero-content {
  opacity: 1;
  transform: translateX(-50%);
  transition: opacity 0.5s ease-out;
}

/* Enhanced Parallax Effect - Only for section media, not hero */
.hov-section-media img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Smooth Transitions */
.hov-section {
  transition: all 0.3s ease;
}

/* Enhanced Button Styles */
.hov-hero-cta {
  position: relative;
  overflow: hidden;
}

.hov-hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.hov-hero-cta:hover::before {
  left: 100%;
}

/* Text Selection Styling */


::-moz-selection {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Custom Scrollbar - Matching badassheli.php */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff9500, #ffb347);
}

/* Product Showcase Section */
.hov-showcase-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hov-showcase-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hov-showcase-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hov-showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hov-showcase-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hov-showcase-content h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
   background: linear-gradient(135deg, #ff6b35, #ff9500);

}

.hov-showcase-content p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hov-showcase-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hov-showcase-btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.hov-btn-primary {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

.hov-btn-primary:hover {
  background: transparent;
  color: #ff6b35;
  border-color: #ff6b35;
  transform: translateY(-2px);
}

.hov-btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.hov-btn-secondary:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
}

/* High Voltage Tower Style CTA Buttons */
.hvt-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hvt-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  min-width: 180px;
  position: relative;
  overflow: hidden;
}

.hvt-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hvt-cta-btn:hover::before {
  left: 100%;
}

.hvt-cta-primary {
  background: linear-gradient(135deg, rgb(255,153,0), #ffb347);
  color: white;
}

.hvt-cta-primary:hover {
  background: linear-gradient(135deg, #ffb347, #ffc266);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 153, 0, 0.4);
}

.hvt-cta-secondary {
  background: transparent;
  color: rgb(255,153,0);
  border-color: rgb(255,153,0);
}

.hvt-cta-secondary:hover {
  background: rgb(255,153,0);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 153, 0, 0.3);
}

.hov-showcase-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.hov-showcase-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background: white;
  margin: 10px auto 0;
  opacity: 0.6;
}

/* Responsive Design for Showcase */
@media (max-width: 768px) {
  .hov-showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .hov-showcase-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .hov-showcase-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hov-showcase-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hov-showcase-content h2 {
    font-size: 2rem;
  }

  .hov-showcase-content p {
    font-size: 1rem;
  }

  .hov-showcase-content {
    padding: 0 15px;
  }
}

/* Innovation Section */
.hov-innovation-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hov-innovation-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hov-innovation-text {
  color: white;
}

.hov-innovation-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.hov-innovation-image {
  position: relative;
}

/* Performance Section */
.hov-performance-section {
  padding: 120px 0;
  background: white;
}

.hov-performance-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.hov-performance-text {
  color: #333;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hov-performance-text .hov-section-title {
  margin-bottom: 0.5rem;
}

.hov-performance-text .hov-section-description {
  /* margin-top: 2rem; */
  /* padding: 1.5rem; */
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  max-width: 700px;
}

.hov-performance-features {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.hov-feature-item {
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.hov-feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-5px);
}

.hov-feature-item h4 {
  color: #ff6b35;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.hov-feature-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.hov-performance-video {
  position: relative;
  order: 2;
}

.hov-video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.hov-video-container:hover {
  transform: scale(1.02);
}

.hov-video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* Showcase Section */
.hov-showcase-section {
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.hov-showcase-slide {
  height: 100%;
  position: relative;
}

.hov-showcase-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hov-showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hov-showcase-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 40px;
}

.hov-showcase-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hov-showcase-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.hov-showcase-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hov-showcase-btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hov-btn-primary {
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  color: white;
}

.hov-btn-primary:hover {
  background: linear-gradient(135deg, #ff9500, #ffb347);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.hov-btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.hov-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Specs Grid Layout */
.hov-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  align-items: stretch;
}

.hov-spec-category {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 300px;
}

.hov-spec-category:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-5px);
}

.hov-spec-category h3 {
  /* color: #ff6b35; */
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  flex-shrink: 0;
}

.hov-spec-category .hov-spec-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.hov-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}

.hov-spec-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.hov-spec-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 400;
}

.hov-spec-value {
  /* color: #ff6b35; */
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: right;
}

.hov-specs-button-container {
  text-align: center;
}

.hov-specs-btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hov-specs-btn:hover {
  background: linear-gradient(135deg, #ff9500, #ffb347);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* CTA Section */
.hov-cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.hov-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
}

.hov-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.hov-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hov-cta-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.hov-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hov-cta-btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hov-cta-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.hov-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Explore More Section */
.hov-explore-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.hov-explore-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hov-explore-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #000 0%, rgba(0, 0, 0, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.hov-explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.hov-explore-card {
  background: black;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
}

.hov-explore-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.hov-explore-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.hov-explore-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hov-explore-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hov-explore-card:hover .hov-explore-image img {
  transform: scale(1.1);
}

.hov-explore-content {
  padding: 2rem;
}

.hov-explore-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.hov-explore-description {
  font-size: 1rem;
  line-height: 1.6;
  color: white;
  margin-bottom: 1.5rem;
}

.hov-explore-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hov-explore-link:hover {
  color: #ff6b35;
  transform: translateX(5px);
}

/* Desktop and Tablet Layout - Video on Right */
@media (min-width: 901px) {
  .hov-performance-text {
    order: 1;
  }

  .hov-performance-video {
    order: 2;
  }
}

/* Responsive for Specs Grid */
@media (max-width: 1200px) {
  .hov-specs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .hov-specs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mobile Performance Video Fix */
@media (max-width: 900px) {
  .hov-performance-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .hov-performance-video {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: 2;
    width: 100%;
    margin-top: 30px;
  }

  .hov-video-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    min-height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
  }

  .hov-video-container video {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    height: auto;
    min-height: 250px;
  }
}

/* Mobile Responsive for Explore More */
@media (max-width: 1200px) {
  .hov-explore-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hov-explore-section {
    padding: 80px 0;
  }

  .hov-explore-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hov-explore-container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .hvt-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hvt-cta-btn {
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  .hov-explore-section {
    padding: 60px 0;
  }

  .hov-explore-container {
    padding: 0 15px;
  }

  .hov-explore-image {
    height: 200px;
  }

  .hov-explore-content {
    padding: 1.5rem;
  }

  .hvt-cta-btn {
    min-width: 200px;
    padding: 12px 25px;
    font-size: 1rem;
  }
}



/* press Specifications Section */
.hovg1-specs-section {
  padding: 120px 0;
  background: black;
  position: relative;
}

.hovg1-specs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  pointer-events: none;
}

.hovg1-specs-container {
  max-width: 1000px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.hovg1-specs-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.hovg1-specs-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 4rem;
  color: white;
}

.hovg1-specs-table {
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hovg1-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease;
}

.hovg1-spec-row:last-child {
  border-bottom: none;
}

.hovg1-spec-row:hover {
  background: rgba(255, 107, 53, 0.05);
}

.hovg1-spec-label {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hovg1-spec-value {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: white;
  text-align: right;
}

/* HOVG1 CTA Section */
.hovg1-cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  overflow: hidden;
}

.hovg1-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hovg1-cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hovg1-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
  line-height: 1.2;
}

.hovg1-cta-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.hovg1-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hovg1-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 180px;
  backdrop-filter: blur(10px);
}

.hovg1-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.hovg1-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  color: white;
}