:root {
    --gap: 28px;
    /* space between logos */
    --lane-h: 80px;
    /* track height */
    --px-per-sec: 70;
    /* speed (higher = faster) */
}

.logo-marquee {
    overflow: hidden;
    width: 100%;
    height: var(--lane-h);
    padding-inline: var(--gap);
    visibility: hidden;
    /* hide until ready */
    opacity: 0;
    transition: opacity .2s ease;

}

.logo-marquee.is-ready {
    visibility: visible;
    opacity: 1;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: var(--gap);
    width: max-content;
    will-change: transform;
    animation: scroll var(--duration, 30s) linear infinite;
}

.logo {
    /* equal spacing via fixed cell width (set by JS) */
    flex: 0 0 var(--cell, 180px);
    width: var(--cell, 180px);
    height: var(--lane-h);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.logo img {
    max-height: 50px;
    max-width: 90%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    opacity: .8;
    filter: grayscale(30%);
    transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}

.logo img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-2px);
}

@keyframes scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }

    /* because we duplicate A once */
}

@media (max-width: 991.98px) {
    :root {
        --gap: 22px;
        --lane-h: 72px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --gap: 18px;
        --lane-h: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
    }
}

.button-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.an-primary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    outline: none;
    background-color: #016b72;
    color: #ffffff;
    border: 2px solid #016b72;
}

.an-primary-btn i {
    margin-right: 10px;
    font-size: 20px;
}

/* Hover Effects */
.an-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: #252728;
    border-color: #252728;
    color: white;
}

.an-primary-btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Outline Version */
.an-primary-btn.outline {
    background-color: transparent;
    color: #ffffff;
}

.an-primary-btn.outline:hover {
    background-color: #1f2222;
    color: #ffffff;
}

/* Dark Version */
.an-primary-btn.dark {
    background-color: black;
    border-color: black;
}

.an-primary-btn.dark:hover {
    background-color: #016b72;
    border-color: #016b72;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(1, 107, 114, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(1, 107, 114, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(1, 107, 114, 0);
    }
}

.instructions {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: left;
}

.instructions h3 {
    color: #016b72;
    margin-bottom: 15px;
}

.instructions ul {
    list-style-type: none;
    padding-left: 20px;
}

.instructions li {
    margin-bottom: 10px;
    color: #7f8c8d;
    position: relative;
    padding-left: 25px;
}

.instructions li:before {
    content: "•";
    color: #016b72;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 1.2em;
}

.x_hdln,
.x_bl li {
    font-family: 'Merriweather', serif;
    font-style: italic;
    /* italic by default */
    font-weight: 400;
    line-height: 1.6;
    color: #333;
}

/* Highlighted words like in screenshot */
.x_bl li em,
.x_bl li strong {
    color: #00897B;
    /* teal green shade */
    font-weight: 800;
    font-style: italic;
}

/* === Obfuscated slider styles === */
.x_bl {
    list-style: none;
    padding-left: 0;
}

.x_bl li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.x_bl li span {
    position: absolute;
    left: 0;
    top: 5px;
}

.x_szC55N {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.x_kg9Qm {
    display: flex;
    transition: transform 0.6s ease;
}

.x_sldItm {
    min-width: 100%;
    padding: 20px 0;
}

.x_ctrls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.x_dots {
    display: flex;
    margin: 0 15px;
}

.x_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.x_dot.x_dot--active {
    background: #333;
}

/* Responsive */
@media (max-width: 991.98px) {
    .x_hdln {
        font-size: 2rem;
    }

    .x_sldItm .row {
        flex-direction: column;
    }

    .col-lg-5,
    .col-lg-6 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .x_hdln {
        font-size: 1.8rem;
    }

    .x_kg9Qm {
        -webkit-overflow-scrolling: touch;
    }

    .x_bl li {
        padding-left: 20px;
        font-size: 0.95rem;
    }
}

.x9Jc__cntnr {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;

}

.mnbv {
    text-align: center;
    padding: 40px 0;
    animation: fadeIn 1s ease-in-out;
}

.cvbnm {
    color: #016b72;
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}



.zT0_tabsWrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.ql__tabBtn {
    padding: 12px 30px;
    background: #e0e0e0;
    color: #555;
    border: none;
    border-radius: 5px 5px 0 0;
    margin: 0 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.ql__tabBtn.is__on {
    background: #016b72;
    color: white;
}

.ql__tabBtn:hover:not(.is__on) {
    background: #c0c0c0;
}

.XprogGrid_7a {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.Pcard__v2Y {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(1, 107, 114, 0.15);
    transition: all 0.4s ease;
    width: 23%;
    min-width: 270px;
    position: relative;
    border-top: 5px solid #0098a2;
    display: flex;
    flex-direction: column;
}

.Pcard__v2Y:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(1, 107, 114, 0.2);
}

.Hdr__Top_1v {
    background: #016b72;
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.Body__Sec_3p {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.Body__Sec_3p p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    min-height: 60px;
}

.Lst__feat_9q {
    list-style-type: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.Lst__feat_9q li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #444;
}

.Lst__feat_9q li:before {
    content: "✓";
    color: #0098a2;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.Btn__learn_0m {
    display: block;
    width: 100%;
    background: #016b72;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.Btn__learn_0m:hover {
    background: linear-gradient(to right, #016b72, #0098a2);
    color: white;
    transform: scale(1.03);
}

.Tag__prog_5k {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0098a2;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.Hdr__Top_1v h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.Tcontent__8r {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.Tcontent__8r.is__on {
    display: block;
}

@media (max-width: 1200px) {
    .XprogGrid_7a {
        gap: 20px;
    }

    .Pcard__v2Y {
        width: 23%;
        min-width: 240px;
    }
}

@media (max-width: 992px) {
    .XprogGrid_7a {
        flex-wrap: wrap;
    }

    .Pcard__v2Y {
        width: 48%;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .zT0_tabsWrap {
        flex-direction: column;
        align-items: center;
    }

    .ql__tabBtn {
        width: 80%;
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .Pcard__v2Y {
        width: 100%;
    }

    h1 {
        font-size: 2.2rem;
    }
}

.Price__1k {
    text-align: center;
    font-size: 1.8rem;
    color: #016b72;
    margin: 15px 0;
    font-weight: 700;
}

.Price__1k span {
    font-size: 1rem;
    color: #777;
    font-weight: normal;
}

.Foot__area_6d {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    color: #666;
    border-top: 1px solid #ddd;
}

.fx__pulse_2e {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.ProgTitle__t1 {
    font-size: 1.2rem;
    color: #016b72;
    margin-bottom: 5px;
    font-weight: 600;
}

.ProgSub__s1 {
    font-size: 1.5rem;
    color: #0098a2;
    margin-bottom: 15px;
    font-weight: 700;
}

.my-portfolio-sec {
    padding: 30px 0;
    background: #0098a2;
}

.pt-sec-new .nav-tabs .nav-link {
    width: 155px;
    color: #fff;
    background-color: #000000;
    border-radius: 5px;
    margin-right: 20px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700
}

.pt-sec-new .nav-tabs {
    border-bottom: 0
}

.pt-sec-new.sec-mt {
    margin: 0
}

.pt-sec-new .nav-tabs .nav-link {
    margin: 0 10px 10px
}

.pt-sec-new.sec-mt {
    margin: 0
}

.pt-sec-new .nav-tabs .nav-link {
    margin: 0 10px 10px
}

.pt-sec-new.sec-mt {
    margin: 0
}

.pt-sec-new .nav-tabs .nav-link {
    margin: 0 10px 10px
}

.sec-mt {
    margin-top: 30px
}

.sec-pb {
    padding-bottom: 50px
}

/* Container */
.container3 {
    max-width: 1400px;
    margin: 0 auto;
    /* fixed */
    padding: 0 16px;
}

/* Header */
.detective {
    text-align: center;
    margin-bottom: 40px;
    padding: 75px 0 0 0;
}

.detective h1 {
    font-size: 32px;
    line-height: 1.3;
    max-width: 820px;
    /* ~3 lines */
    margin: 0 auto;
    text-align: center;
}

.detective p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 640px;
    /* ~2 lines */
    margin: 10px auto 0;
    text-align: center;
}

.subtitle3 {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* Tabs */
.tabs-container3 {
    margin: 30px 0 40px;
    display: flex;
    justify-content: center;
}

.tabs3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;

    padding: 10px;
    border-radius: 8px;
}

.tab-btn3 {
    background: #d0d0d0;
    border: 2px solid transparent;
    color: #333;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 600;
}

.tab-btn3:hover {
    background: #c0c0c0;
}

.tab-btn3.active {
    background: #016b72;
    color: #fff;
}

/* Grid */
.book-container3 {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.book3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    /* distance between books */
    max-width: 1200px;
}

.book-page3 {
    flex: 0 0 calc(33.33% - 30px);
    /* 3 per row */
    max-width: calc(33.33% - 30px);
    height: 310px;
    /* keep same height */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.book-page3:hover {
    transform: translateY(-5px);
}

.book-page3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .book-page3 {
        flex: 1 1 calc(50% - 20px);
        /* 2 per row on tablet */
        height: 350px;
    }
}

@media (max-width: 600px) {
    .book-page3 {
        flex: 1 1 100%;
        /* 1 per row on mobile */
        height: 300px;
    }
}

.book-container3 {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.book3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    /* distance between books */
    max-width: 1200px;
}

.book-page3 {
    flex: 0 0 calc(25% - 20px);
    /* 3 per row */
    max-width: calc(25% - 20px);
    height: 430px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.6s ease, opacity 0.2s ease;
}

.book-page3:hover {
    transform: translateY(-5px);
}

.book-page3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .book-page3 {
        flex: 1 1 calc(50% - 20px);
        /* 2 per row on tablet */
        height: 350px;
    }
}

@media (max-width: 600px) {
    .book-page3 {
        flex: 1 1 100%;
        /* 1 per row on mobile */
        height: 300px;
    }
}