* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" #5985e1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.img-container {
  /* adjust as needed */
  overflow: hidden;
  border-radius: 8px;
  display: inline-block;
  aspect-ratio: 1/0.8;
}

/* image: set base transform + transition here (important!) */
.img-container .hero-section-image {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1) translateZ(0); /* starting state */
  transform-origin: center center;
  transition: transform 650ms cubic-bezier(0.22, 0.8, 0.25, 1); /* smooth both ways */
  will-change: transform;
  backface-visibility: hidden; /* small rendering boost */
}

.img-container:hover .hero-section-image,
.img-container:focus-within .hero-section-image {
  /* keyboard-friendly */
  transition: transform 1.5s ease-in-out;
  transform: scale(1.5) translateZ(0); /* zoom amount */
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
.img-container:hover {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

.feature-segments {
  margin-top: 1rem;
}

/* Shared base TV frame */
.tv {
  position: relative;
  width: 100%;
  max-width: 550px;
  aspect-ratio: 16 / 9;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 12px;
}

.tv-screen img,
.tv-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or contain, depending on preference */
  object-position: center;
  display: block;
  border-radius: inherit;
}

/* 1️⃣ MODERN SMART TV STYLE */
.tv-modern {
  background: linear-gradient(145deg, #222, #0d0d0d);
  border-radius: 20px;
  border: 8px solid #000;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.8);
}

.tv-modern::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, #222, #333, #222);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* 2️⃣ RETRO CRT STYLE */
.tv-retro {
  background: linear-gradient(145deg, #4a3a2a, #1e1b18);
  border-radius: 24px;
  border: 10px solid #2e1d1a;
  padding: 10px;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.8), 0 12px 50px rgba(0, 0, 0, 0.8);
}

.tv-retro .tv-screen {
  border-radius: 50% / 6%;
  background: radial-gradient(circle at 30% 30%, #333, #000);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.tv-retro .tv-screen::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.15),
    transparent 60%
  );
  transform: skewX(-10deg);
}

/* 3️⃣ CURVED OLED STYLE */
.tv-curved {
  background: linear-gradient(145deg, #111, #000);
  border-radius: 50px;
  border: 4px solid #101010;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6), 0 10px 60px rgba(0, 0, 0, 0.8);
  transform: perspective(800px) rotateY(-8deg);
}

.tv-curved .tv-screen {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.05);
}

/* 4️⃣ GLASSY FUTURISTIC TV */
.tv-futuristic {
  background: linear-gradient(135deg, #090909, #151515);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3),
    inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.tv-futuristic .tv-screen {
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, #000, #111);
}

.breakpoint-image{
  display: none;
}



@media (max-width: 1000px) {
  .position-relative{
    display: none;
  }

  .breakpoint-image{
    display: block;
    margin-bottom: 1.2rem;
  }
}