
.oct-scan-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5%;
    background: var(--light-bg);
    gap: 50px;
    position: relative;
    overflow: hidden;
    font-size: 13px;
    font-style:normal;
    background-color: #f0faff;
  }
  
  .oct-eye-scan {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .eye {
    width: 200px;
    height: 200px;
    border: 15px solid #fff;
    border-radius: 50%;
    position: relative;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px;
  }
  
  .eye:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  .sclera {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f0f5ff;
    position: relative;
    overflow: hidden;
  }
  
  .iris {
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at center, #4a90e2, #2c3e50);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
  }
  
  .iris:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .pupil {
    width: 40%;
    height: 40%;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
  }
  
  .pupil:hover {
    transform: translate(-50%, -50%) scale(0.9);
  }
  
  .scan-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
      rgba(0, 255, 255, 0) 0%,
      rgba(0, 255, 255, 0.2) 20%,
      rgba(0, 255, 255, 0.8) 50%,
      rgba(0, 255, 255, 0.2) 80%,
      rgba(0, 255, 255, 0) 100%
    );
    position: absolute;
    top: -100%;
    left: 0;
    animation: scan-effect 4s linear infinite;
    pointer-events: none;
    opacity: 0.7;
  }
  @keyframes scan-effect {
    0% { 
      top: -100%;
      opacity: 0.5;
    }
    20% { 
      opacity: 0.8;
    }
    50% { 
      top: 0%;
      opacity: 1;
    }
    80% { 
      opacity: 0.8;
    }
    100% { 
      top: 100%;
      opacity: 0.5;
    }
  }
  .oct-photo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
  }
  .oct-photo {
    width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.15;
    animation: glow 4s ease-in-out infinite;
  }
  @keyframes glow {
    0%, 100% { box-shadow: 0 15px 30px rgba(0, 102, 204, 0.1); }
    50% { box-shadow: 0 20px 40px rgba(0, 102, 204, 0.3); }
  }
  .oct-photo:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0.25;
  }
  .oct-right {
    flex: 1;
    padding: 30px;
  }
  .oct-right h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #03274e;
  }
  .oct-right h2 i {
    color: var(--accent-color);
  }
  .oct-right .lead {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 600px;
  }
  .btn-oct {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .btn-oct:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
  }
  
  .btn-oct:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
  }
  
  .eye-laser-container {
    position: relative;
    width: 220px;
    height: 220px;
    background-color: #f2f2f2;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    overflow: hidden;
  }
  
  .eye-shape {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(#6ec1e4 20%, #003f5c 70%);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .certification-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #f8f9fa;
      padding: 10px 15px;
      border-radius: 8px;
      margin: 15px 0;
      animation: pulse 2s infinite;
  }
  
  .certification-badge i {
      color: #ffd700;
      font-size: 20px;
  }
  
  .comparison-table {
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin: 20px 0;
      overflow: hidden;
  }
  
  .comparison-header {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      background: #003366;
      color: white;
      padding: 15px;
      font-weight: bold;
  }
  
  .comparison-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      padding: 12px 15px;
      border-bottom: 1px solid #eee;
      transition: background 0.3s ease;
  }
  
  .comparison-row:hover {
      background: #f8f9fa;
  }
  
  .comparison-row span:first-child {
      font-weight: bold;
      color: #003366;
  }
  
  @keyframes pulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); }
      50% { transform: translate(-50%, -50%) scale(1.05); }
  }
  
  @media (max-width: 768px) {
      .comparison-table {
          font-size: 14px;
      }
  }
  .oct-comparison {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 11px;
  }

  .oct-right .lead{
    font-size: 15px;
    margin-top: -20px;
  }
  .oct-right h2{
    font-size: 33px;
    font-family: cursive;
  }
  .oct-comparison .header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #003366;
    color: white;
    padding: 15px;
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .oct-comparison .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
    font-size: 13px;
  }
  
  .oct-comparison .row:last-child {
    border-bottom: none;
  }
  
  .oct-comparison .label {
    font-weight: 600;
    color: #003366;
    font-size: 13px;
  }
  
  .oct-comparison .value {
    color: #444;
  }
  .early-detection {
    margin: 30px 0;
  }
  
  .early-detection h3 {
    font-size: 1.4rem;
    color: #003366;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .progress-steps{
    margin-top: 20px;
  }
  .pricing-info{
    margin-top: 15px;
  }
  .btn-oct{
    font-size: 13px;
  }
  .disease-detection{
    line-height: 1.7;
  }
  .step {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 6px;
    color: #003366;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  /* Pricing Section */
  .pricing {
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003366;
  }
  
  .original-price {
    font-size: 1.4rem;
    color: #999;
    text-decoration: line-through;
  }
  
  .save-tag {
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
  }
  
  .insurance-note {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 10px;
  }
  .btn-oct {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #003366, #004080);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.btn-oct:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

.btn-oct:active {
    transform: translateY(0);
}
@media (max-width: 768px) {
  
    .oct-scan-section {
      flex-direction: column;
      padding: 60px 20px;
      gap: 40px;
      text-align: center;
    }
  
    .oct-eye-scan {
      justify-content: center;
      width: 100%;
    }
  
    .eye {
      width: 150px;
      height: 150px;
      border-width: 10px;
      margin: 20px auto;
    }
    .certification-badge {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
      font-size: 13px;
      padding: 10px 0;
      text-align: left;
      flex-wrap: wrap;
      display: none;
    }
    
    .certification-badge i {
      font-size: 16px;
      color: #0077aa;
      display: none;
    }
    
  
    .oct-photo-wrapper {
      display: none;
    }
  
    .oct-right {
      padding: 0;
      text-align: center;
    }
  
    .oct-right h2 {
      font-size: 22px;
      font-family: cursive;
      justify-content: center;
    }
  
    .oct-right .lead {
      font-size: 12px;
      margin-top: 25px;
    }
  
    .features li {
      justify-content: center;
      font-size: 14px;
    }
  
    .btn-oct {
      width: 100%;
      justify-content: center;
      padding: 12px 20px;
      font-size: 14px;
      border-radius: 30px;
    }
    .progress-steps {
        display: flex;
        flex-direction: column;   
        gap: 15px;
        align-items: center;     
        margin-top: 20px;
      }
      .step {
        font-size: 14px;         
        font-weight: 500;
        color: #003366;
      }
      .step.active {
        font-weight: bold;
        color: #007bff;
      }
  }
  
  