/* Base typography */
body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Hero section */
.hero-section {
    background: radial-gradient(circle at top left, #0d6efd 0, #0b2a53 55%, #020715 100%);
    color: #fff;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-title {
    font-size: clamp(2.3rem, 4vw, 3rem);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 40rem;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
}

/* Common elements */
.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

 
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand span {
    font-weight: 700;
}

/* Language handling: default EN */
.lang-ru,
.lang-kk {
    display: none;
}

a{ text-decoration: none; }


/* RU active */
body.lang-ru-active .lang-en,
body.lang-ru-active .lang-kk {
    display: none;
}
body.lang-ru-active .lang-ru {
    display: block;
}

/* KK active */
body.lang-kk-active .lang-en,
body.lang-kk-active .lang-ru {
    display: none;
}
body.lang-kk-active .lang-kk {
    display: block;
}


/* Language switch buttons */
.lang-switch.btn {
    padding: 0.15rem 0.6rem;
    font-size: 0.8rem;
}

/* Small helpers */
.small-muted {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Cards */
.highlight-card {
    border-radius: 1.25rem;
}

