/* ============================================================
   TerraLeap — Mobile Menu Styles
   Scope: @media (max-width: 991px)
   Drop into your existing stylesheet or link separately.
   ============================================================ */

/*@media (max-width: 991px) {*/

    /* ── Hamburger button ── */
    /*.tl-hamburger {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(255,255,255,0.12);
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        flex-shrink: 0;
    }

        .tl-hamburger span {
            display: block;
            width: 18px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

    .tl-menu-open .tl-hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .tl-menu-open .tl-hamburger span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .tl-menu-open .tl-hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }*/

    /* ── Full-screen drawer ── */
    /*.tl-drawer {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: linear-gradient(160deg, #082044 0%, #0c2d6b 55%, #133a8a 100%);
        transform: translateX(100%);
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        overflow-x: hidden;
    }

        .tl-drawer.open {
            transform: translateX(0);
        }*/

    /* ── Drawer topbar ── */
    /*.tl-dtop {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px;
        height: 62px;
        background: rgba(5, 20, 55, 0.95);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .tl-dclose {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255,255,255,0.09);
        border: 1px solid rgba(255,255,255,0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 15px;
        color: rgba(255,255,255,0.7);
        line-height: 1;
    }

        .tl-dclose:hover {
            background: rgba(255,80,80,0.25);
            color: #fff;
        }*/

    /* ── Section labels ── */
    /*.tl-slabel {
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.25);
        padding: 16px 16px 7px;
    }*/

    /* ── Accordion group ── */
    /*.tl-ag {
        margin: 0 10px 3px;
        border-radius: 14px;
        overflow: hidden;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.05);
        transition: border-color 0.2s;
    }

        .tl-ag.open {
            border-color: rgba(72,202,228,0.22);
        }*/

    /* accordion header */
    /*.tl-ah {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 11px 13px;
        cursor: pointer;
        user-select: none;
    }

        .tl-ah:hover,
        .tl-ag.open .tl-ah {
            background: rgba(72,202,228,0.10);
        }*/

    /* accordion icon */
    /*.tl-ai {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
    }

    .tl-ai-blue {
        background: rgba(0,119,182,0.3);
    }

    .tl-ai-teal {
        background: rgba(0,180,216,0.22);
    }

    .tl-ai-purple {
        background: rgba(108,99,255,0.25);
    }

    .tl-ai-gold {
        background: rgba(255,182,0,0.2);
    }

    .tl-ai-green {
        background: rgba(0,180,100,0.22);
    }

    .tl-ai-coral {
        background: rgba(220,80,60,0.22);
    }*/

    /* accordion text */
    /*.tl-at {
        flex: 1;
        min-width: 0;
    }

        .tl-at strong {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            line-height: 1.25;
        }

        .tl-at small {
            font-size: 10.5px;
            color: rgba(255,255,255,0.38);
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }*/

    /* badge + chevron */
    /*.tl-abadge {
        font-size: 10px;
        font-weight: 700;
        color: #48cae4;
        background: rgba(72,202,228,0.12);
        border-radius: 20px;
        padding: 2px 8px;
        flex-shrink: 0;
    }

    .tl-achev {
        font-size: 11px;
        color: rgba(255,255,255,0.3);
        transition: transform 0.28s ease, color 0.2s;
        flex-shrink: 0;
    }

    .tl-ag.open .tl-achev {
        transform: rotate(180deg);
        color: #48cae4;
    }*/

    /* accordion body */
    /*.tl-ab {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(0,0,0,0.18);
    }

    .tl-ag.open .tl-ab {
        max-height: 500px;
    }*/

    /* sub items */
    /*.tl-aitem {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 14px 9px 60px;
        font-size: 12.5px;
        color: rgba(255,255,255,0.58);
        border-top: 1px solid rgba(255,255,255,0.04);
        cursor: pointer;
        text-decoration: none;
    }

        .tl-aitem:hover {
            color: #48cae4;
            background: rgba(72,202,228,0.06);
        }

    .tl-adot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(72,202,228,0.35);
        flex-shrink: 0;
    }

    .tl-aflag {
        margin-left: auto;
        font-size: 11px;
        color: rgba(255,255,255,0.22);
    }

    .tl-aall {
        padding-left: 16px !important;
        color: #48cae4 !important;
        font-weight: 600;
        border-top: 1px solid rgba(72,202,228,0.12) !important;
    }*/

    /* ── Solo links ── */
    /*.tl-solo {
        display: flex;
        align-items: center;
        gap: 11px;
        margin: 2px 10px;
        padding: 11px 13px;
        border-radius: 12px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.05);
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s, border-color 0.2s, color 0.2s;
    }

        .tl-solo:hover {
            background: rgba(72,202,228,0.10);
            border-color: rgba(72,202,228,0.2);
            color: #48cae4;
        }

    .tl-solo-allcourses {
        margin-top: 6px;
        border-color: rgba(72,202,228,0.2);
        background: rgba(72,202,228,0.06);
    }

    .tl-sico {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
    }

    .tl-sico-allcourses {
        background: rgba(72,202,228,0.18);
    }

    .tl-sarr {
        margin-left: auto;
        font-size: 13px;
        color: rgba(255,255,255,0.2);
    }

    .tl-solo:hover .tl-sarr,
    .tl-solo-allcourses .tl-sarr {
        color: #48cae4;
    }*/

    /* ── CTA buttons ── */
    /*.tl-cta {
        padding: 18px 14px 32px;
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    .tl-cdiv {
        height: 1px;
        background: rgba(255,255,255,0.07);
        margin: 0 4px 6px;
    }

    .tl-breg {
        display: block;
        text-align: center;
        padding: 14px;
        background: linear-gradient(135deg, #00b4d8, #0077b6);
        border-radius: 14px;
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        cursor: pointer;
        text-decoration: none;
    }

        .tl-breg:hover {
            opacity: 0.9;
        }

    .tl-blog {
        display: block;
        text-align: center;
        padding: 13px;
        border: 1.5px solid rgba(72,202,228,0.35);
        border-radius: 14px;
        font-size: 14px;
        font-weight: 600;
        color: #48cae4;
        cursor: pointer;
        text-decoration: none;
    }

        .tl-blog:hover {
            background: rgba(72,202,228,0.08);
        }
}*/



/*start from preview*/
/** {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: "Segoe UI",sans-serif;
    background: #082044;
    min-height: 100vh
}*/

/*.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: linear-gradient(135deg,#082044,#0f3470)
}*/


/* ── Hamburger button ── */
.tl-hamburger {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

    .tl-hamburger span {
        display: block;
        width: 18px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

.tl-menu-open .tl-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.tl-menu-open .tl-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.tl-menu-open .tl-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Full-screen drawer ── */
.tl-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(160deg, #082044 0%, #0c2d6b 55%, #133a8a 100%);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

    .tl-drawer.open {
        transform: translateX(0);
    }

/* ── Drawer topbar ── */
.tl-dtop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    height: 62px;
    background: rgba(5, 20, 55, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 10;
}

.tl-dclose {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1;
}

    .tl-dclose:hover {
        background: rgba(255,80,80,0.25);
        color: #fff;
    }

/* ── Section labels ── */
.tl-slabel {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    padding: 16px 16px 7px;
}

/* ── Accordion group ── */
.tl-ag {
    margin: 0 10px 3px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.2s;
}

    .tl-ag.open {
        border-color: rgba(72,202,228,0.22);
    }

/* accordion header */
.tl-ah {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 13px;
    cursor: pointer;
    user-select: none;
}

    .tl-ah:hover,
    .tl-ag.open .tl-ah {
        background: rgba(72,202,228,0.10);
    }

/* accordion icon */
.tl-ai {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.tl-ai-blue {
    background: rgba(0,119,182,0.3);
}

.tl-ai-teal {
    background: rgba(0,180,216,0.22);
}

.tl-ai-purple {
    background: rgba(108,99,255,0.25);
}

.tl-ai-gold {
    background: rgba(255,182,0,0.2);
}

.tl-ai-green {
    background: rgba(0,180,100,0.22);
}

.tl-ai-coral {
    background: rgba(220,80,60,0.22);
}

/* accordion text */
.tl-at {
    flex: 1;
    min-width: 0;
}

    .tl-at strong {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        line-height: 1.25;
    }

    .tl-at small {
        font-size: 10.5px;
        color: rgba(255,255,255,0.38);
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

/* badge + chevron */
.tl-abadge {
    font-size: 10px;
    font-weight: 700;
    color: #48cae4;
    background: rgba(72,202,228,0.12);
    border-radius: 20px;
    padding: 2px 8px;
    flex-shrink: 0;
}

.tl-achev {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    transition: transform 0.28s ease, color 0.2s;
    flex-shrink: 0;
}

.tl-ag.open .tl-achev {
    transform: rotate(180deg);
    color: #48cae4;
}

/* accordion body */
.tl-ab {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0,0,0,0.18);
}

.tl-ag.open .tl-ab {
    max-height: 500px;
}

/* sub items */
.tl-aitem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px 9px 60px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.58);
    border-top: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    text-decoration: none;
}

    .tl-aitem:hover {
        color: #48cae4;
        background: rgba(72,202,228,0.06);
    }

.tl-adot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(72,202,228,0.35);
    flex-shrink: 0;
}

.tl-aflag {
    margin-left: auto;
    font-size: 11px;
    color: rgba(255,255,255,0.22);
}

.tl-aall {
    padding-left: 16px !important;
    color: #48cae4 !important;
    font-weight: 600;
    border-top: 1px solid rgba(72,202,228,0.12) !important;
}

/* ── Solo links ── */
.tl-solo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 2px 10px;
    padding: 11px 13px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

    .tl-solo:hover {
        background: rgba(72,202,228,0.10);
        border-color: rgba(72,202,228,0.2);
        color: #48cae4;
    }

.tl-solo-allcourses {
    margin-top: 6px;
    border-color: rgba(72,202,228,0.2);
    background: rgba(72,202,228,0.06);
}

.tl-sico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.tl-sico-allcourses {
    background: rgba(72,202,228,0.18);
}

.tl-sarr {
    margin-left: auto;
    font-size: 13px;
    color: rgba(255,255,255,0.2);
}

.tl-solo:hover .tl-sarr,
.tl-solo-allcourses .tl-sarr {
    color: #48cae4;
}

/* ── CTA buttons ── */
.tl-cta {
    padding: 18px 14px 32px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.tl-cdiv {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 0 4px 6px;
}

.tl-breg {
    display: block;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

    .tl-breg:hover {
        opacity: 0.9;
    }

.tl-blog {
    display: block;
    text-align: center;
    padding: 13px;
    border: 1.5px solid rgba(72,202,228,0.35);
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #48cae4;
    cursor: pointer;
    text-decoration: none;
}

    .tl-blog:hover {
        background: rgba(72,202,228,0.08);
    }
/*end from preview*/
