@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background: #f4f8fb;
    min-height: 100vh;
    position: relative;
}
.bg-hero {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background: url('https://ocyonbio.com/wp-content/uploads/2024/06/Birds-eye-view-1--1024x580.jpg') no-repeat center center/cover;
    opacity: 0.25;
}
.navbar {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 5px 0;
    height: 68px;
    position: relative;
    z-index: 2;
}
.navbar-logo {
    display: flex;
    align-items: center;
    margin-left: 50px;
}
.navbar-links {
    display: flex;
    gap: 10px;
    margin-right: 50px;
}
.nav-link {
    background: none;
    border: none;
    color: #000000;
    font-family: inherit;
    font-size: 1em;
    font-weight: 300;
    padding: 0 8px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    outline: none;
}
.nav-link::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.5px;
    background: #1accd6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.nav-link:hover::after, .nav-link:focus::after {
    transform: scaleX(1);
}

.app-info-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-width: 700px;
  width: 100%;
  margin: 48px auto;
  padding: 0;
  transition: transform 0.2s;
  box-sizing: border-box;
  background: #fff;
  border-radius: 18px;
}
.app-info-image {
    flex: 1 1 320px;
    min-width: 280px;
    background: #13d7e17f;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    border-radius: 18px 0 0 18px;
}
.app-info-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.app-info-content {
    flex: 2 1 400px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.app-info-header {
    display: flex;
    align-items: center;
    gap: 16px;
}
.beta-tag {
    background: #1accd6;
    color: #fff;
    font-size: 0.85em;
    font-weight: 500;
    border-radius: 6px;
    padding: 2px 10px;
    letter-spacing: 1px;
}
.app-info-content h3 {
    margin: 18px 0 12px 0;
    font-size: 1.3em;
    color: #1a237e;
    font-weight: 600;
}
.app-info-content p {
    color: #374151;
    font-size: 1.05em;
    margin-bottom: 0;
}
.app-info-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.app-info-card-link::after {
    display: none;
}
.app-info-card-link:focus .app-info-card,
.app-info-card-link:hover .app-info-card {
    box-shadow: 0 12px 40px rgba(26,204,214,0.22), 0 8px 40px rgba(0,0,0,0.13);
    transform: translateY(-8px);
    transition: box-shadow 0.2s, transform 0.2s;
}
.app-info-card-link:focus {
    outline: none;
}
@media (max-width: 900px) {
  .app-info-card {
    transform: scale(0.90);
    max-width: 95vw;
  }
}
@media (max-width: 700px) {
  .app-info-card {
    transform: scale(0.8);
    max-width: 99vw;
  }
}
@media (max-width: 500px) {
  .app-info-card {
    transform: scale(0.65);
    max-width: 100vw;
  }
} 