﻿ 
:root {
    --blue: #1565C0;
    --blue-light: #1E88E5;
    --blue-pale: #E3F2FD;
    --blue-mid: #BBDEFB;
    --green: #2E7D32;
    --green-light: #43A047;
    --green-pale: #E8F5E9;
    --gold: #F9A825;
    --gold-pale: #FFF8E1;
    --orange: #E65100;
    --white: #ffffff;
    --off-white: #F7FBF7;
    --text-dark: #1a2e1a;
    --text-mid: #3a4a3a;
    --text-light: #6a7a6a;
    --border: #D8E8D8;
    --radius-lg: 26px;
    --shadow-b: 0 12px 44px rgba(21,101,192,0.14);
    --shadow-g: 0 12px 44px rgba(46,125,50,0.14);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ══ NAV ══ */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(21,101,192,0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .nav-logo img {
        height: 54px;
        width: auto;
        object-fit: contain;
    }

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        font-weight: 700;
        font-size: 0.93rem;
        color: var(--text-mid);
        padding: 8px 16px;
        border-radius: 50px;
        transition: background .2s, color .2s;
    }

        .nav-links a:hover {
            background: var(--blue-pale);
            color: var(--blue);
        }

        .nav-links a.active {
            background: var(--green-pale);
            color: var(--green);
        }

        .nav-links a.cta {
            background: var(--blue);
            color: white;
            padding: 8px 22px;
        }

            .nav-links a.cta:hover {
                background: var(--blue-light);
            }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 3px;
        background: var(--blue);
        border-radius: 3px;
    }

/* ══ BREADCRUMB ══ */
.breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 5vw 0;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .breadcrumb a {
        color: var(--blue);
        text-decoration: none;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

    .breadcrumb .sep {
        opacity: .45;
    }

/* ══ HERO ══ */
.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, #E3F2FD 0%, #F7FBF7 45%, #E8F5E9 100%);
    padding: 72px 5vw 64px;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

    .hero-bg span {
        position: absolute;
        border-radius: 50%;
        opacity: .09;
    }

        .hero-bg span:nth-child(1) {
            width: 480px;
            height: 480px;
            background: var(--blue);
            top: -180px;
            left: -120px;
        }

        .hero-bg span:nth-child(2) {
            width: 360px;
            height: 360px;
            background: var(--green);
            bottom: -130px;
            right: -80px;
        }

        .hero-bg span:nth-child(3) {
            width: 200px;
            height: 200px;
            background: var(--gold);
            top: 50%;
            left: 62%;
            opacity: .06;
        }

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-pale);
    color: var(--blue);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeUp .5s ease both;
}

.page-hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeUp .6s .1s ease both;
}

    .page-hero h1 .blue {
        color: var(--blue);
    }

    .page-hero h1 .green {
        color: var(--green);
    }

.page-hero p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.75;
    animation: fadeUp .6s .2s ease both;
}

/* Floating logo in hero */
.hero-logo-wrap {
    margin-top: 30px;
    animation: fadeUp .6s .3s ease both;
}

    .hero-logo-wrap img {
        height: 120px;
        width: auto;
        filter: drop-shadow(0 12px 32px rgba(21,101,192,0.18));
        animation: float 4s ease-in-out infinite;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ══ FOUNDERS SECTION ══ */
.founders-section {
    padding: 80px 5vw;
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    text-align: center;
    margin-bottom: 52px;
}

.section-tag {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--blue);
    font-weight: 800;
    font-size: 0.76rem;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

    .section-tag.green {
        background: var(--green-pale);
        color: var(--green);
    }

    .section-tag.gold {
        background: var(--gold-pale);
        color: var(--orange);
    }

.section-label h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.15;
}

.section-label p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-mid);
    max-width: 520px;
    margin: 10px auto 0;
    line-height: 1.7;
}

/* ── Founder Cards ── */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.founder-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    position: relative;
}

    .founder-card:hover {
        transform: translateY(-8px);
    }

.fc-blue {
    box-shadow: var(--shadow-b);
    border: 2px solid var(--blue-mid);
}

.fc-green {
    box-shadow: var(--shadow-g);
    border: 2px solid #A5D6A7;
}

/* Accent bar */
.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.fc-blue::before {
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.fc-green::before {
    background: linear-gradient(90deg, var(--green), var(--green-light));
}

/* Photo area */
.founder-photo-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.founder-photo-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-blue .founder-photo-bg {
    background: linear-gradient(160deg, var(--blue-pale) 0%, #DCEEFB 100%);
}

.fc-green .founder-photo-bg {
    background: linear-gradient(160deg, var(--green-pale) 0%, #C8E6C9 100%);
}

.founder-avatar-large {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
    border: 6px solid var(--white);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    position: relative;
    z-index: 1;
    background: var(--white);
}

/* Photo placeholder badge */
.photo-placeholder-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255,255,255,.92);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 0.73rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: .04em;
    border: 1.5px solid var(--border);
}

/* Number watermark */
.founder-number {
    position: absolute;
    top: 14px;
    left: 18px;
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    line-height: 1;
    opacity: .08;
}

.fc-blue .founder-number {
    color: var(--blue);
}

.fc-green .founder-number {
    color: var(--green);
}

/* Card body */
.founder-card-body {
    padding: 28px 32px 32px;
}

.founder-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.fc-blue .founder-name {
    color: var(--blue);
}

.fc-green .founder-name {
    color: var(--green);
}

.founder-role {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-blue .founder-role {
    color: var(--blue-light);
}

.fc-green .founder-role {
    color: var(--green-light);
}

.role-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: .05em;
}

.fc-blue .role-badge {
    background: var(--blue-pale);
    color: var(--blue);
}

.fc-green .role-badge {
    background: var(--green-pale);
    color: var(--green);
}

.founder-bio {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1.5px solid var(--border);
}

/* About sub-section */
.founder-about-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-blue .founder-about-title {
    color: var(--blue);
}

.fc-green .founder-about-title {
    color: var(--green);
}

.founder-about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .founder-about-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--text-mid);
        line-height: 1.55;
    }

.fal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.fc-blue .fal-dot {
    background: var(--blue-light);
}

.fc-green .fal-dot {
    background: var(--green-light);
}

/* Founder fun fact */
.founder-fun {
    margin-top: 20px;
    background: var(--off-white);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-mid);
    line-height: 1.55;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border: 1.5px solid var(--border);
}

/* ══ ABOUT SECTION ══ */
.about-section {
    background: linear-gradient(160deg, #E3F2FD 0%, #F7FBF7 50%, #E8F5E9 100%);
    padding: 80px 5vw;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 0;
}

.about-card {
    background: var(--white);
    border-radius: 22px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
}

    .about-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 50px rgba(0,0,0,.10);
    }

    .about-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
    }

.ac-blue::before {
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.ac-green::before {
    background: linear-gradient(90deg, var(--green), var(--green-light));
}

.ac-gold::before {
    background: linear-gradient(90deg, var(--orange), var(--gold));
}

.ac-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.ac-blue .ac-icon {
    background: var(--blue-pale);
    box-shadow: 0 4px 16px rgba(21,101,192,.15);
}

.ac-green .ac-icon {
    background: var(--green-pale);
    box-shadow: 0 4px 16px rgba(46,125,50,.15);
}

.ac-gold .ac-icon {
    background: var(--gold-pale);
    box-shadow: 0 4px 16px rgba(249,168,37,.18);
}

.about-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.ac-blue h3 {
    color: var(--blue);
}

.ac-green h3 {
    color: var(--green);
}

.ac-gold h3 {
    color: var(--orange);
}

.about-card p {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.75;
}

/* Quote inside about card */
.about-quote {
    margin-top: 16px;
    border-left: 4px solid var(--blue-mid);
    padding-left: 14px;
    font-style: italic;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.6;
}

.ac-green .about-quote {
    border-color: #A5D6A7;
}

.ac-gold .about-quote {
    border-color: #FFE082;
}

/* Combined stats strip */
.founders-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, var(--blue) 0%, #1976D2 100%);
    margin-top: 0;
    padding: 40px 5vw;
    flex-wrap: wrap;
}

.fstat {
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,.2);
    color: white;
}

    .fstat:last-child {
        border-right: none;
    }

.fstat-num {
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.fstat-label {
    font-size: 0.85rem;
    font-weight: 700;
    opacity: .88;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ══ VIDEO SECTION ══ */
.video-section {
    padding: 80px 5vw;
    max-width: 1100px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
}

    .video-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 36px rgba(0,0,0,.10);
    }

.video-thumb {
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vt-1 {
    background: linear-gradient(135deg, #1a237e 0%, var(--blue) 100%);
}

.vt-2 {
    background: linear-gradient(135deg, #1b5e20 0%, var(--green) 100%);
}

.vt-3 {
    background: linear-gradient(135deg, #e65100 0%, var(--gold) 100%);
}

.video-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 3px solid rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
}

.coming-soon-badge {
    background: rgba(255,255,255,.92);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.73rem;
    font-weight: 800;
    color: var(--text-mid);
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,.6);
}

/* Shimmer lines */
.video-thumb::before,
.video-thumb::after {
    content: '';
    position: absolute;
    border-radius: 4px;
    background: rgba(255,255,255,.08);
}

.video-thumb::before {
    width: 80%;
    height: 3px;
    bottom: 30px;
    left: 10%;
}

.video-thumb::after {
    width: 60%;
    height: 3px;
    bottom: 20px;
    left: 20%;
}

.video-info {
    padding: 18px 20px;
}

    .video-info h4 {
        font-family: 'Fredoka One', cursive;
        font-size: 1rem;
        color: var(--text-dark);
        margin-bottom: 6px;
    }

    .video-info p {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text-light);
        line-height: 1.55;
    }

    .video-info .notify-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-top: 10px;
        font-size: 0.80rem;
        font-weight: 800;
        color: var(--blue);
        text-decoration: none;
        letter-spacing: .02em;
    }

        .video-info .notify-link:hover {
            text-decoration: underline;
        }

/* Big coming soon banner */
.coming-soon-banner {
    background: linear-gradient(135deg, var(--blue-pale) 0%, #DCEEFB 100%);
    border: 2px dashed var(--blue-mid);
    border-radius: 22px;
    padding: 52px 40px;
    text-align: center;
    margin-top: 32px;
}

.csb-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 16px;
}

.coming-soon-banner h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.7rem;
    color: var(--blue);
    margin-bottom: 10px;
}

.coming-soon-banner p {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-mid);
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.notify-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(21,101,192,.28);
    transition: transform .18s;
}

    .notify-btn:hover {
        transform: translateY(-2px);
    }

/* ══ CTA STRIP ══ */
.cta-strip {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    padding: 60px 5vw;
    text-align: center;
    color: white;
}

    .cta-strip h2 {
        font-family: 'Fredoka One', cursive;
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        margin-bottom: 12px;
    }

    .cta-strip p {
        font-size: 1rem;
        font-weight: 600;
        opacity: .88;
        max-width: 520px;
        margin: 0 auto 28px;
        line-height: 1.7;
    }

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    background: var(--white);
    color: var(--green);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,.14);
    transition: transform .18s;
}

    .btn-white:hover {
        transform: translateY(-2px);
    }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    background: transparent;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2.5px solid rgba(255,255,255,.6);
    transition: background .18s, transform .18s;
}

    .btn-outline-white:hover {
        background: rgba(255,255,255,.15);
        transform: translateY(-2px);
    }

/* ══ FOOTER ══ */
footer {
    background: linear-gradient(135deg, #0D47A1 0%, #1B5E20 100%);
    color: white;
    padding: 48px 5vw 24px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    margin-bottom: 22px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

.footer-mission {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: .82;
    line-height: 1.7;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.82rem;
    font-weight: 800;
    opacity: .88;
}

    .footer-tagline .heart {
        color: var(--gold);
    }

.footer-links {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-family: 'Fredoka One',cursive;
    font-size: .97rem;
    margin-bottom: 12px;
    color: #90CAF9;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .footer-col ul li a {
        text-decoration: none;
        color: rgba(255,255,255,.74);
        font-weight: 600;
        font-size: .87rem;
        transition: color .2s;
    }

        .footer-col ul li a:hover {
            color: white;
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy {
    font-size: .80rem;
    opacity: .58;
    font-weight: 600;
}

.footer-note {
    font-size: .80rem;
    opacity: .58;
    font-weight: 600;
}

    .footer-note a {
        color: #A5D6A7;
        text-decoration: none;
    }

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
    .founders-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .video-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .founders-stats {
        gap: 0;
    }

    .fstat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.2);
        padding: 16px 24px;
    }

        .fstat:last-child {
            border-bottom: none;
        }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 14px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,.1);
    }

        .nav-links.open {
            display: flex;
        }

    .hamburger {
        display: flex;
    }

    .founder-card-body {
        padding: 22px 20px 26px;
    }

    .footer-links {
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

 
