 .blueygen-row {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: #ecf6ff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  gap: 30px;
}

.blueygen-col {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blueygen-left h3 {
  font-size: 28px;
  color: #2b4d9c;
  margin-bottom: 10px;
}

.blueygen-left p {
  font-size: 17px;
  color:  #000000;
  margin-bottom: 20px;
}

.blueygen-btn {
  padding: 14px 25px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.blueygen-btn:hover {
  background-color: #0056b3;
}

.blueygen-preview {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.blueygen-viewer {
  width: 100%;
  max-width: 400px;
  height: 520px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.blueygen-viewer img {
  width: 100%;
  height: 100%;
  border: none;
  transform-origin: top center;
  pointer-events: none;
}

.blueygen-download {
  display: none;
  background-color: #28a745;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.blueygen-download:hover {
  background-color: #1e7e34;
}

@media (max-width: 768px) {
  .blueygen-row {
    flex-direction: column;
  }

  .blueygen-col {
    align-items: center;
    text-align: center;
  }

  .blueygen-viewer {
    height: 460px;
  }
}

html {
  scroll-behavior: smooth;
}

#bluey-section {
  scroll-margin-top: 80px; /* Optional: prevents sticky header from covering */
}
