* {
  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 */
.ilm-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

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

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

/* Fullscreen Image Container */
.fullscreen-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.fullscreen-image-container:hover {
  cursor: zoom-in;
}

.fullscreen-image-container:active {
  cursor: zoom-out;
}

.fullscreen-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.fullscreen-image-container:hover img {
  transform: scale(1.02);
  filter: brightness(1.1);
}

/* Add a subtle overlay to indicate interactivity */
.fullscreen-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.fullscreen-image-container:hover::before {
  background: rgba(255, 255, 255, 0.05);
}

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

.fullscreen-icon svg {
  stroke: white;
  width: 20px;
  height: 20px;
}

.fullscreen-image-container:hover .fullscreen-icon {
  opacity: 1;
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

/* Ensure fullscreen icon is visible on hero image */
.ilm-hero-media .fullscreen-icon {
  position: absolute;
  top: 100px;
  right: 30px;
  z-index: 15;
  opacity: 0.9;
  background: rgba(0, 0, 0, 0.8);
}

/* Remove tooltip from hero section to avoid interference with buttons */
.ilm-hero-media .fullscreen-image-container::after {
  display: none;
}

/* Remove tooltip from hero section to avoid interference with buttons */
.ilm-hero-media .fullscreen-image-container::after {
  display: none;
}

/* Hero image specific fullscreen styles */
.ilm-hero-media .fullscreen-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ilm-hero-media .fullscreen-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1);
  max-width: 100vw;
  max-height: 100vh;
}

.ilm-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;
}

.ilm-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%;
}

.ilm-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%;
}

.ilm-hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.ilm-hero-cta {
 display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  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;
  min-width: 200px;
  position: relative;
  overflow: hidden;
}

.ilm-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;
}

.ilm-hero-cta:ilmer::before {
  left: 100%;
}

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

/* Scroll Indicator */
.ilm-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;
}

.ilm-scroll-indicator:ilmer {
  opacity: 1;
}

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

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

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

/* Performance Section */
.ilm-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;
}

.ilm-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;
}

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

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

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

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

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

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

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

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

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

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

.ilm-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;
}

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

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

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

.ilm-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;
}

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

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

.ilm-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);
}

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

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

.ilm-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;
}

.ilm-video-container:ilmer .ilm-click-hint {
  opacity: 1;
}

.ilm-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;
}

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

/* Fullscreen Video Styles */
.ilm-video-container:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
}

.ilm-video-container:-moz-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
}

.ilm-video-container:fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
}

.ilm-video-container:-webkit-full-screen video {
  border-radius: 0 !important;
}

.ilm-video-container:-moz-full-screen video {
  border-radius: 0 !important;
}

.ilm-video-container:fullscreen video {
  border-radius: 0 !important;
}

/* Performance Section Version 2 */
.ilm-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;
}

.ilm-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;
}

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

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

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

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

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

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

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

.ilm-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;
}

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

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

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

.ilm-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;
}

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

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

.ilm-video-container-v2 .ilm-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);
}

.ilm-video-container-v2 .ilm-fullscreen-icon svg {
  stroke: white;
}

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

.ilm-video-container-v2 .ilm-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;
}

.ilm-video-container-v2:ilmer .ilm-click-hint {
  opacity: 1;
}

/* Fullscreen Video V2 Styles */
.ilm-video-container-v2:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
}

.ilm-video-container-v2:-moz-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
}

.ilm-video-container-v2:fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
}

.ilm-video-container-v2:-webkit-full-screen video {
  border-radius: 0 !important;
}

.ilm-video-container-v2:-moz-full-screen video {
  border-radius: 0 !important;
}

.ilm-video-container-v2:fullscreen video {
  border-radius: 0 !important;
}

/* Tech Specs Section */
.ilm-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;
}

.ilm-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;
}

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

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

.ilm-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);
}

.ilm-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);
}

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

.ilm-spec-row:ilmer {
  background: rgba(255, 255, 255, 0.08);
}



.ilm-spec-label {
  padding-right: 10px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  flex: 1;
}

.ilm-spec-value {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  color: white;
  text-align: right;
  letter-spacing: 0.5px;
}

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

/* Technology Overview Section */
.ilm-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;
}

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

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

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

/* Grid Tower Title - Largest font size */
.ilm-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 */
.ilm-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 */
.ilm-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 */
.ilm-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;
}

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

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

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

.ilm-image-container {
  position: relative;
  width: 100%;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ilm-image-container:ilmer {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

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

.ilm-image-container .ilm-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);
}

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

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

.ilm-image-container .ilm-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;
}

.ilm-image-container:ilmer .ilm-click-hint {
  opacity: 1;
}

/* Fullscreen Image Styles */
.ilm-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;
}

.ilm-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;
}

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

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

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

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

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

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

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

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

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

.ilm-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 */
.ilm-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgb(24, 23, 23);
}

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

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

.ilm-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;
}

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

.ilm-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;
}

.ilm-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;
}

.ilm-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;
}

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

.ilm-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 */
.ilm-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 */
.ilm-section.light {
  background: #f8f9fa;
}

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

.ilm-section.light .ilm-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) {
  .ilm-hero-content {
    max-width: 1200px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ilm-video-container {
    height: 450px;
    max-width: 350px;
    margin: 0 auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .ilm-hero-content {
    padding: 0 20px;
  }

  .ilm-hero-title {
    font-size: clamp(1.4rem, 7vw, 96px) !important;
    letter-spacing: clamp(0.5px, 0.1vw, 0.5px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ilm-hero-title {
    margin-bottom: 1rem;
    letter-spacing: 0px;
    line-height: 1.0;
    word-spacing: -1px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    text-align: center !important;
    display: block;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ilm-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;
  }

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

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

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

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

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

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

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

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

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

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

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

  .ilm-hero-title {
    font-size: clamp(0.8rem, 8vw, 1.5rem);
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    line-height: 1.0;
    word-spacing: -2px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    text-align: center !important;
    display: block;
    width: 100%;
  }

  .ilm-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 */
  .ilm-tech-description,
  .ilm-section-description,
  .ilmp-section-description,
  .ilm-performance-text {
    text-align: left !important;
  }

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

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

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

  .ilm-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;
  }

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

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

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

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

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

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

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

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

.ilm-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) .ilm-hero-content {
  opacity: 0;
}

body.loaded .ilm-hero-content {
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

/* Fullscreen Image Styles */
.fullscreen-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;
}

.fullscreen-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;
}

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

.fullscreen-image-container:-webkit-full-screen img,
.fullscreen-image-container:-moz-full-screen img,
.fullscreen-image-container:fullscreen img {
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  width: auto;
  height: auto;
}

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

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

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

.ilm-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;
}

.ilm-hero-cta:ilmer::before {
  left: 100%;
}

/* Text Selection Styling */
::selection {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

::-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:ilmer {
  background: linear-gradient(135deg, #ff9500, #ffb347);
}

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

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

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

.ilm-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;
}

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

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

}

.ilm-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);
}

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

.ilm-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;
}

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

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

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

.ilm-btn-secondary:ilmer {
  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:ilmer::before {
  left: 100%;
}

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

.hvt-cta-primary:ilmer {
  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:ilmer {
  background: rgb(255,153,0);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 153, 0, 0.3);
}

.ilm-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;
}

.ilm-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) {
  .ilm-showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ilm-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;
}

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

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

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

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

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

.ilm-video-container:ilmer {
  transform: scale(1.02);
}

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

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

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

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

.ilm-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;
}

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

.ilm-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;
}

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

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

.ilm-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;
}

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

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

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

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

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

.ilm-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;
}

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

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

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

.ilm-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;
}

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

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

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

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

.ilm-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;
}

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

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

.ilm-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%);
}

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

.ilm-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;
}

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

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

.ilm-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;
}

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

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

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

.ilm-explore-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 153, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.ilm-explore-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 4rem;
  /* background: linear-gradient(135deg, #ff6b35, #ff9500, #ffb347); */
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.ilm-explore-card {
  background: black;
  border-radius: 25px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 153, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
  cursor: pointer;
}

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

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

.ilm-explore-card.animate:hover {
  transform: translateY(-15px);
}

.ilm-explore-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

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

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

.ilm-explore-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.ilm-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;
}

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

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

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

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

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

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

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

  .ilm-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;
  }

  .ilm-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) {
  .ilm-explore-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

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

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

  .ilm-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) {
  .ilm-explore-section {
    padding: 60px 0;
  }

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

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

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

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


@media (max-height: 2560px) {/*4k phone po*/
  .ilm-hero-content {
    transform: translateY(0px)translateX(-50%);
    transition: all 1s ease-out;
  }
  .ilm-hero-title {
    font-size: 90px;
    transition: all 0.1s ease-out;
  }
}
@media (max-height: 1024px) {/*tab phone po*/
  .ilm-hero-content {
    transform: translateY(0px)translateX(-50%);
    transition: all 1s ease-out;
  }
  .ilm-hero-title {
    font-size: 60px;
    transition: all 0.1s ease-out;
  }
}
@media (max-height: 810px) {/*llap*/
  .ilm-hero-content {
    transform: translateY(0px)translateX(-50%);
    transition: all 1s ease-out;
  }
  .ilm-hero-title {
    font-size: 70px;
    transition: all 0.1s ease-out;
  }
}
@media (max-height: 768px) {/*tab phone la*/
  .ilm-hero-content {
    transform: translateY(0px)translateX(-50%);
    transition: all 1s ease-out;
  }
  .ilm-hero-title {
    font-size: 60px;
    transition: all 0.1s ease-out;
  }
}
@media (max-height: 755px) {/*large phone po*/
  .ilm-hero-content {
    transform: translateY(0px)translateX(-50%);
    transition: all 1s ease-out;
  }
  .ilm-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (max-height: 666px) {/*medium phone po*/
  .ilm-hero-content {
    transform: translateY(0px)translateX(-50%);
    transition: all 1s ease-out;
  }
  .ilm-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (max-height: 576px) {/*mlap*/
  .ilm-hero-content {
    transform: translateY(0px)translateX(-50%);
    transition: all 1s ease-out;
  }
  .ilm-hero-title {
    font-size: 60px;
    transition: all 0.1s ease-out;
  }
}
@media (max-height: 568px) {/*small phone po*/
  .ilm-hero-content {
    transform: translateY(0px)translateX(-50%);
    transition: all 1s ease-out;
  }
  .ilm-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (max-height: 375px) {/*large phone landscape*/
  .ilm-hero-content {
    transform: translateY(0px)translateX(-50%);
    transition: all 1s ease-out;
  }
  .ilm-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (max-height: 425px) {/*medium phone landscape*/
  .ilm-hero-content {
    transform: translateY(0px)translateX(-50%);
    transition: all 1s ease-out;
  }
  .ilm-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (max-height: 320px) {/*small phone landscape*/
  .ilm-hero-content {
    transform: translateY(0px)translateX(-50%);
    transition: all 1s ease-out;
  }
  .ilm-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}