@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    --blue: #2A7BFF;
    --blue-dark: #1A5FCC;
    --blue-deep: #0D3FA6;
    --blue-light: #EBF3FF;
    --blue-mid: #C8DEFF;
    --blue-faint: #F4F8FF;
    --text-dark: #0D1117;
    --text-mid: #2D3748;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --border: #E2E8F0;
    --border-blue: #BFDBFE;
    --white: #FFFFFF;
    --bg: #F0F5FF;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 2px 12px rgba(42, 123, 255, 0.08);
    --shadow-lg: 0 8px 32px rgba(42, 123, 255, 0.14);
    --font: 'Plus Jakarta Sans', sans-serif;
}

.main * {
    font-family: var(--font);
    box-sizing: border-box;
}

.main {
    padding-bottom: 64px;
    background-color: white;
}

/* ── HEADING BAR (untouched per request) ── */
.main .heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 38px;
    color: white;
    margin-top: 20px;
    margin-left: 20px;
    background-color: rgb(42, 123, 255);
    padding: 10px;
}

.main .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: cambria;
}

.main .logo img {
    width: 500px;
    height: 500px;
    display: block;
    margin: 0 auto;
}

.main .logo h2 {
    font-size: 35px;
    color: rgb(0, 149, 255);
    margin-top: -120px;
    text-align: center;
    font-family: "Magnolia Script", cursive;
    margin-bottom: 40px;
}

/* ════════════════════════════
   INTRO STRIP
════════════════════════════ */
.main .para {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.main .para p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 28px 24px;
}

/* ════════════════════════════
   STATS STRIP
════════════════════════════ */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.stat-cell {
    padding: 28px 16px;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
}

.stat-cell:last-child {
    border-right: none;
}

.stat-cell .num {
    font-size: 34px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.stat-cell .lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ════════════════════════════
   SECTION BLOCK
════════════════════════════ */
.section-block {
    background: var(--white);
    margin: 20px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 36px 32px;
    box-shadow: var(--shadow);
}

/* ════════════════════════════
   SECTION HEADING2
════════════════════════════ */
.main .heading2 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    margin: 0 0 28px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.main .heading2::before {
    content: '';
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, var(--blue) 0%, #5B9FFF 100%);
    border-radius: 4px;
    flex-shrink: 0;
}

/* ════════════════════════════
   CORE FEATURES
════════════════════════════ */
.main .corefeatures {
    display: flex;
    flex-direction: column;
}

.main .corefeatures .feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 18px 16px;
    margin: 0 -8px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--border);
    background: transparent;
    box-shadow: none;
    border-left: none;
    transition: background 0.2s;
}

.main .corefeatures .feature:last-child {
    border-bottom: none;
}

.main .corefeatures .feature:hover {
    background: var(--blue-faint);
}

.main .corefeatures .feature:hover {
    transform: none;
    box-shadow: none;
}

.main .corefeatures .featureicon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 20px;
    padding: 8px;
    background: var(--blue-light);
    border-radius: 12px;
    border: 1px solid var(--border-blue);
}

.main .corefeatures .feature-para {
    flex: 1;
}

.main .corefeatures .feature h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.main .corefeatures .feature p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ════════════════════════════
   VISION & MISSION
════════════════════════════ */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vm-card {
    background: var(--blue-faint);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-sm);
    padding: 24px 22px;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue) 0%, #5B9FFF 100%);
}

.vm-card h3 {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.vm-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.78;
}

/* ════════════════════════════
   JOURNEY TIMELINE
════════════════════════════ */
.timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 24px;
    border-left: 2px solid var(--blue-mid);
}

.tl-item {
    position: relative;
    padding: 0 0 32px 24px;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-dot {
    position: absolute;
    left: -7px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--blue-mid);
}

.tl-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 5px;
}

.tl-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.tl-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ════════════════════════════
   FOUNDERS — HORIZONTAL CARDS
════════════════════════════ */
.founders-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founder-card {
    display: flex;
    flex-direction: row;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.25s, transform 0.25s;
    min-height: 300px;
}

.founder-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

/* left accent bar */
.founder-card::before {
    content: '';
    width: 4px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--blue) 0%, #5B9FFF 100%);
}

.founder-img-wrap {
    width: 260px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(160deg, var(--blue-light) 0%, var(--blue-mid) 100%);
    position: relative;
}

.founder-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.founder-card:hover .founder-img-wrap img {
    transform: scale(1.04);
}

.founder-initials {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    font-weight: 800;
    color: var(--blue-dark);
    opacity: 0.18;
    font-family: var(--font);
}

.founder-info {
    flex: 1;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border);
}

.founder-role {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    border: 1px solid var(--border-blue);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
    width: fit-content;
}

.founder-info h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.4px;
}

.founder-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.72;
    margin: 0;
    max-width: 560px;
}

.founder-achievement {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    background: var(--blue-faint);
    border: 1px solid var(--border-blue);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    width: fit-content;
}

/* ════════════════════════════
   SOCIAL ACCOUNTS
════════════════════════════ */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--blue-faint);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    text-decoration: none;
}

.social-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(42, 123, 255, 0.12);
    transform: translateY(-2px);
}

.social-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon-wrap img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.social-text {
    flex: 1;
    min-width: 0;
}

.social-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.social-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.4;
}

.social-text a {
    display: inline-block;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    background: var(--white);
    border: 1px solid var(--blue);
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.03em;
    transition: all 0.2s;
}

.social-text a:hover {
    background: var(--blue);
    color: var(--white);
}

/* ════════════════════════════
   CONTACT
════════════════════════════ */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.contact-blurb {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
    border-radius: var(--radius-sm);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-blurb h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.contact-blurb p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--blue-faint);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-row:hover {
    border-color: var(--blue);
    box-shadow: 0 2px 12px rgba(42, 123, 255, 0.1);
}

.contact-row-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--blue-light);
    border: 1px solid var(--border-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-row-icon i {
    font-size: 14px;
    color: var(--blue);
}

.contact-row-text span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact-row-text a,
.contact-row-text p {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    text-decoration: none;
    margin: 0;
}

.contact-row-text a:hover {
    text-decoration: underline;
}


/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 700px) {

    .main .heading {
        gap: 10px;
        font-size: 25px;
        color: white;
        margin-top: 15px;
        margin-left: 15px;
        background-color: rgb(42, 123, 255);
        padding: 5px;
    }

    .main .heading img {
        width: 35px;
        height: auto;
        margin: 5px 0 5px 5px;
    }

    .main .logo img {
        width: 300px;
        height: 300px;
        display: block;
        margin: 0 auto;
    }

    .main .logo h2 {
        font-size: 23px;
        color: rgb(0, 149, 255);
        margin-top: -60px;
        padding: 0 10px;
        text-align: center;
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .stats-strip .stat-cell:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid var(--border);
        border-right: none;
    }

    .stat-cell .num {
        font-size: 26px;
    }

    .section-block {
        margin: 14px 12px;
        padding: 24px 18px;
    }

    .main .heading2 {
        font-size: 16px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .founder-card {
        flex-direction: column;
        min-height: unset;
    }

    .founder-card::before {
        width: 100%;
        height: 4px;
    }

    .founder-img-wrap {
        width: 100%;
        height: 260px;
    }

    .founder-info {
        padding: 22px 20px;
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .main .corefeatures .feature {
        flex-direction: row;
    }

    .main .corefeatures .featureicon {
        width: 40px;
        height: 40px;
        margin-right: 14px;
    }
}