.eye-exam-section {
    position: relative;
    width: 100%;
    height: 130vh;
    margin-top: -90px;
  }
  
  .exam-bg {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .blurred-image {
    width: 100%;
    height: 98%;
    margin-top: 10px;
    object-fit: cover;
    filter: blur(8px);
    margin-bottom: 50px;
  }
  
  .lens {
    position: absolute;
    width: 150px; 
    height: 120px; 
    border-radius: 80%; 
    border: 2px solid #b9a6a6;
    background-image: url('../../Fitting Glasses for a Child.webp'); 
    background-size: cover;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);

    transition: background-position 0.1s;
  }
  
  
  .exam-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 700px;
    max-width: 400px;
    width: 100%;
    z-index: 2;
  }
  
  .exam-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);     
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 1s ease;
  }
  
  
  .exam-box.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  .exam-label {
    background-color: #ffd600;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    color: #000;
  }
  
  .exam-box h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .exam-box p {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .exam-btn {
    display: inline-block;
    background-color: transparent;
    color: #000;
    font-weight: 100;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    text-decoration: none;
  }
  
  .exam-btn:hover {
    color: #ffd600;
  }
  
  .exam-btn .arrow {
    display: inline-block;
    margin-left: 6px;
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  
  .exam-btn:hover .arrow {
    transform: translateX(5px);
  }
  /* السكشن السادس */
@media (max-width: 768px) {
    .eye-exam-section {
      height: auto;
      padding: 40px 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 120px;
    }
  
    .exam-bg {
      height: auto;
      position: relative;
    }
  
    .blurred-image {
      height: 300px;
      object-fit: cover;
      filter: blur(6px);
      margin-bottom: 20px;
    }
  
    .lens {
      width: 120px;
      height: 90px;
      border-radius: 70%;
      background-position: center;
      top: 30% !important; /* في حال بتتحكم فيها بـ JS */
      left: 50% !important;
      transform: translate(-50%, -50%);
    }
  
    .exam-content {
      position: static;
      transform: none;
      right: auto;
      max-width: 100%;
      padding: 0;
      margin-top: 20px;
    }
  
    .exam-box {
      padding: 20px;
      text-align: center;
      transform: none;
    }
  
    .exam-box h2 {
      font-size: 18px;
    }
  
    .exam-box p {
      font-size: 13px;
    }
  
    .exam-btn {
      font-size: 13px;
    }
  
    .exam-btn .arrow {
      font-size: 16px;
    }
  }