

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cormorant+Garamond&family=Heebo:wght@100..900&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@100..900&family=Lato&family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Anton&family=Calistoga&family=Heebo&family=Manrope:wght@800&family=Rammetto+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cormorant+Garamond&family=Heebo:wght@100..900&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@100..900&family=Lato&family=Poppins&family=Satisfy&display=swap');

body
{
 font-size: 16px;
 font-family: "Inter", sans-serif;
}
:root {
    --bg-1: #f7fafc;
    --bg-2: #eef2f7;
    --card: #ffffff;
    --muted: #6b7280;
    --text: #0f1724;
    --accent: #ffffff;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    color: var(--text);
    background-color: #f7fafc;
        background-image: url('lab-bg.png');
          background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.hero-container {
  
    display: flex;
    align-items: flex-start;
    padding: 20px
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(15, 23, 36, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: left;
    width: 22rem
}

.glass-card:hover {
    box-shadow: 0 12px 40px rgba(254, 254, 255, 0.2);
    transform: translateY(-4px);
    transition: all 0.3s ease-in-out
}

img.center {
    max-width: 340px;
    width: 42vw;
    height: auto;
    display: block;
    margin: 0 auto
}

.card-logo {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
    display: block;
    border-radius: 12px;
    object-fit: cover
}

.card-title {
    margin: 0 0 8px 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text)
}

.card-subtitle {
    margin: 0 0 16px 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0077b6;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.card-text {
    margin: 0 0 24px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #334155
}

h1 {
    margin: 24px 0 10px;
    font-size: 2.8rem;
    font-weight: 700
}

p.lead {
    margin: 0;
    color: #0077b6;
    font-size: 1.3rem;
    line-height: 1.5
}

.muted {
    color: var(--muted);
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.4
}

.cta {
    display: inline-block;
    margin-top: 16px;
    background: var(--accent);
    color: #042025;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600
}

.btn-cta {
    display: inline-block;
    background: #0077b6 !important;
    color: #ffffff !important;
    padding: 12px 28px !important;
    border-radius: 10px !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem
}

.btn-cta:hover {
    background: #90e0ef !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 177, 0.3)
}

footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 10px;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem
}

@media (max-width:420px) {
    img.center {
        width: 70vw
    }
}

/* Utility: make the CTA slightly elevated on hover */
.cta:hover {
    filter: brightness(0.98);
    transform: translateY(-1px)
}

/* Small responsive tweaks */
@media (max-width:520px) {
    .card {
        padding: 20px
    }

    .panel {
        padding: 8px
    }
}

/* Text sweep highlight for hero heading */
/* Text sweep highlight for hero heading */
.hero-container h2.fw-light {
    /* stronger yet subtle blue band with eased motion */
    background: linear-gradient(90deg,
        rgba(15,23,36,1) 0%,
        rgba(15,23,36,1) 35%,
        rgba(0,119,182,0.95) 45%,
        rgba(0,119,182,0.95) 55%,
        rgba(15,23,36,1) 65%,
        rgba(15,23,36,1) 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textSweep 4s ease-in-out infinite;
    text-shadow: 0 1px 0 rgba(15,23,36,0.06);
}

@keyframes textSweep {
    from { background-position: 300% 0; }
    50%  { background-position: 0% 0; }
    to   { background-position: -300% 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-container h2.fw-light { animation: none; background-position: 0 0; }
}
