.vision-flip-section {
    padding: 80px 20px;
    background: #f4fbff;
    text-align: center;
  }
  .vision-flip-title {
    font-size: 30px;
    color: #003366;
    font-weight: 100;
    margin-bottom: 40px;
    font-family:cursive;
  }
  .flip-card-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .flip-card {
    width: 180px;
    height: 220px;
    perspective: 1000px;
  }
  .flip-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
  }
  .flip-front span {
  font-family: 'Cairo', Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #003366;
  margin-top: 30px;
  display: block;
  font-style:unset;
}
  .flip-card:hover .flip-inner {
    transform: rotateY(180deg);
  }
  .flip-front,
  .flip-back {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    flex-direction: column;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    background: white;
    color: #003366;
  }
  .flip-back {
    transform: rotateY(180deg);
    color: #0077aa;
    font-size: 14px;
    gap: 5px;
    font-family: cursive;
  }
  .eye-animation {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(#cbe4f9, #a0c4ff);
    position: relative;
    margin-bottom: 10px;
    animation: blink 6s infinite ease-in-out;
  }
  .eye-animation::before {
    content: '';
    width: 28px;
    height: 28px;
    background: radial-gradient(#1d3557, #000);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: iris-move 4s infinite alternate ease-in-out;
  }

  .eye-fast::before { animation-duration: 2s; }
  .eye-slow::before { animation-duration: 6s; }
  .eye-blink-only::before { animation: none; }

  @keyframes blink {
    0%, 100% { transform: scaleY(1); }
    48% { transform: scaleY(0.7); }
    50% { transform: scaleY(0.2); }
    52% { transform: scaleY(0.7); }
  }
  @keyframes iris-move {
    0%   { transform: translate(-50%, -50%) translateX(-4px); }
    50%  { transform: translate(-50%, -50%) translateX(4px); }
    100% { transform: translate(-50%, -50%) translateX(-4px); }
  }
  .eye-summary-text {
  max-width: 700px;
  margin: 50px auto 20px;
  padding: 30px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.eye-summary-text h3 {
  color: #003366;
  font-size: 22px;
  margin-bottom: 12px;
  font-family: cursive;
}
.eye-summary-text p {
  color: #4f4f4f;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.eye-summary-text ul {
  list-style: none;
  padding: 0;
}
.eye-summary-text li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #0077aa;
}
.eye-summary-text li i {
  margin-right: 8px;
  color: #00aaff;
}
@media (max-width: 768px) {
    /* ===== Vision Flip Section ===== */
    .vision-flip-section {
      padding: 40px 20px; 
    }
  
    .vision-flip-title {
      font-size: 22px;  
      margin-bottom: 30px;
    }
  
    /* ===== Flip Cards ===== */
    .flip-card-track {
      display: flex;
      flex-direction: column;  
      align-items: center;
      gap: 20px;  
    }
  
    .flip-card {
      width: 150px; 
      height: 180px;
    }
  
    .flip-front span {
      font-size: 12px; 
      margin-top: 20px;
    }
  
    /* ===== Eye Animation ===== */
    .eye-animation {
      width: 50px;  
      height: 50px;
    }
  
    .eye-animation::before {
      width: 20px;
      height: 20px;
    }
  
    /* ===== Summary Text ===== */
    .eye-summary-text {
      max-width: 100%;
      margin: 20px auto;
      padding: 20px;
      font-size: 14px;  
    }
  
    .eye-summary-text h3 {
      font-size: 18px;
    }
  
    .eye-summary-text p {
      font-size: 14px;  
    }
  
    .eye-summary-text ul {
      padding-left: 18px;
    }
  
    .eye-summary-text li {
      font-size: 14px;
    }
  }
  