.laser-eye-zone {
  padding: 60px 0;
  background-color: #f0faff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.laser-global-title {
  text-align: center;
  margin-bottom: 40px;
  margin-top: -200px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
  margin-left: -200px;
}
.laser-global-title.revealed {
  opacity: 1;
  transform: translateY(0);
}

.laser-global-title h2 {
  font-size: 20px;
  font-weight: 700;
  color: #003366;
  font-family:cursive;
  font-style: italic;
  letter-spacing: 0.3px;
}

.laser-global-title h2 span {
  font-size: 32px;
  margin-right: 8px;
  vertical-align: middle;
}


.laser-eye-box {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.laser-eye {
  width: 200px;
  height: 200px;
  background: radial-gradient(#d1e4f9, #9dc7f0);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.laser-iris {
  width: 100px;
  height: 100px;
  background: radial-gradient(#2a70a1, #003366);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.laser-pupil {
  width: 30px;
  height: 30px;
  background: black;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.laser-beam-line {
  position: absolute;
  width: 4px;
  height: 100%;
  top: 0;
  background-color: #00f7ff;
  display: none;
  z-index: 4;
}

.laser-beam-spark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
  background-color: #00f7ff;
  box-shadow: 0 0 15px 4px #00f7ff88;
  animation: sparkPulse 1s infinite ease-in-out;
}

@keyframes sparkPulse {
  0%, 100% { transform: translateY(-50%) scale(0.8); opacity: 0.6; }
  50% { transform: translateY(-50%) scale(1.2); opacity: 1; }
}

.laser-desc-box {
  max-width: 350px;
  background: linear-gradient(145deg, #dbefff, #f0faff);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 6px solid #00b4d8;
  font-family: 'Segoe UI', sans-serif;
}
.laser-desc-box h3 {
  color: #005f73;
  margin-bottom: 10px;
  font-size: 15px;
  font-family: cursive;
  font-style: italic;
}

.laser-text {
  color: #333;
  line-height: 1.7;
  font-size: 15px;
  font-family: cursive;
  font-style: italic;
}
.fancy-list {
  padding-left: 18px;
  margin-top: 10px;
  list-style: none;
}

.fancy-list li {
  margin-bottom: 8px;
  padding-left: 0;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.02);
  border-left: 3px solid #ccc;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14.5px;
}

/* Animation for content */
.fade-in-left {
  animation: fadeInLeft 0.5s ease-out both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.laser-eye-zone {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.laser-eye-zone.revealed {
  opacity: 1;
  transform: translateY(0);
}
  @media (max-width: 768px) {
    .laser-eye-zone {
      opacity: 1;  
      transform: translateY(0);
      padding: 40px 10px; 
    }
  
    .laser-global-title {
      margin-top: 0;
      opacity: 1;
      transform: translateY(0);
      margin-left: 0;
      font-size: 12px;
      margin-bottom: 330px;
    }
  
    .laser-global-title h2 {
      font-size: 20px;
    }
 
    .laser-eye-box {
      display: flex;
      flex-direction: column; 
      gap: 20px;
      align-items: center;
    }
  
    .laser-eye {
      width: 150px;
      height: 150px; 
      background: radial-gradient(#d1e4f9, #9dc7f0);
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
  
    .laser-iris {
      width: 70px;
      height: 70px;  
    }
  
    .laser-pupil {
      width: 20px;
      height: 20px; 
    }
 
    .laser-desc-box {
      width: 100%;
      max-width: 320px; 
      margin-top: 20px;
    }
  
    .laser-desc-box h3 {
      font-size: 14px; 
    }
  
    .laser-text {
      font-size: 13px; 
    }
  
    .fancy-list {
      font-size: 12px;  
    }

    .fade-in-left {
      animation: fadeInLeft 0.5s ease-out both;
    }
  
    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
  }
  