.lesson_content_text {
    padding: 1rem;
}

.col-sm-12.ui-resizable.col-lg-11 .western {
    padding: 0 0 0 8rem !important;
    text-align: left !important;
}

/* .lms_blog_details_area .col-xxl-9.col-lg-8 {
    box-shadow: 0px 0px 7px 2px;
} */

@media (max-width: 767px) {
    .col-sm-12.ui-resizable.col-lg-11 .western {
        padding: 0 1rem 0 1rem !important;
        /* text-align: left !important; */
    }
}

:root {
    --bg: #f8faff;
    --bg-white: #ffffff;
    --bg-surface: #eef2fb;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-light: #3b82f6;
    --blue-dim: rgba(37, 99, 235, 0.08);
    --blue-dim2: rgba(37, 99, 235, 0.14);
    --sky: #0ea5e9;
    --text: #0f172a;
    --text-mid: #334155;
    --text-muted: #64748b;
    --text-dim: #94a3b8;
    --border: rgba(37, 99, 235, 0.2);
    --border-dim: rgba(15, 23, 42, 0.09);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-blue: 0 8px 28px rgba(37, 99, 235, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
}

a:hover {
    /* color: var(--system_primery_color) !important; */
    /* opacity: 0.8 !important; */
    color: #fff !important;
}

.blog-list-item:hover {
    color: #000 !important;
}
.heading-links:hover {
    color: transparent !important;
}

.about {
    padding: 120px 0;
    background: var(--bg);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-label {
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    margin-bottom: 22px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 0.97rem;
    margin-bottom: 18px;
    font-weight: 300;
    line-height: 1.8;
}

.about-pillars {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 15px;
    background: #fff;
    border: 1.5px solid var(--border-dim);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.pillar-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--blue-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.pillar-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
    height: 100%;
    transition: transform 0.55s ease;
}

.about-img-wrap:hover img {
    transform: scale(1.03);
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 60%);
    pointer-events: none;
}

.about-stat-badge {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: #fff;
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
}

.stat-num {
    font-family: 'Inter', sans-serif !important;
    font-size: 2.1rem;
    color: var(--blue);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    max-width: 140px;
}

.how {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.how::before {
    content: '';
    position: absolute;
    top: 0;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.how-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-header .section-label {
    margin-bottom: 12px;
}

.how-header h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    margin-bottom: 14px;
}

.how-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.75;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.how-card {
    background: var(--bg);
    border: 1.5px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: 38px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s;
}

.how-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.how-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--sky));
    border-radius: 3px 3px 0 0;
}

.how-card-num {
    font-family: 'Inter', sans-serif !important;
    font-size: 3.5rem;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
    margin-bottom: 14px;
}

.how-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.how-card p {
    font-size: 0.93rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.75;
}

.paths {
    padding: 120px 0;
    background: var(--bg);
}

.paths-header {
    text-align: center;
    margin-bottom: 60px;
}

.paths-header .section-label {
    margin-bottom: 12px;
}

.paths-header h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.path-card {
    background: #fff;
    border: 1.5px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all 0.25s;
    box-shadow: var(--shadow-sm);
}

.path-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.path-card.featured {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: var(--shadow-blue);
}

.path-card.featured h3 {
    color: #fff;
}

.path-card.featured .path-tagline,
.path-card.featured .path-list li {
    color: rgba(255, 255, 255, 0.85);
}

.path-card.featured .path-list li::before {
    color: #93c5fd;
}

.path-level {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 5px;
    width: fit-content;
}

.level-beginner {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.level-intermediate {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.level-advanced {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.path-card h3 {
    font-size: 1.25rem;
}

.path-tagline {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: -8px;
}

.path-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.path-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.path-list li::before {
    content: '→';
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 1px;
}

.path-card .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.path-card.featured .btn {
    background: #fff;
    color: var(--blue);
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.path-card.featured .btn:hover {
    background: #f0f5ff;
    transform: translateY(-2px);
}

.courses {
    padding: 120px 0;
    background: #fff;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 44px;
    gap: 20px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.course-card {
    background: #fff;
    border: 1.5px solid var(--border-dim);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s;
    box-shadow: var(--shadow-sm);
}

.course-card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
    box-shadow: var(--shadow-lg);
}

.course-thumb {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.course-thumb img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.course-card:hover .course-thumb img {
    transform: scale(1.05);
}

.course-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, 0.45));
}

.course-thumb .tag {
    position: absolute;
    top: 12px;
    left: 12px;
}

.course-body {
    padding: 22px;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.course-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.35;
}

.course-desc {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    border-top: 1px solid var(--border-dim);
    background: var(--bg);
}

.course-level {
    font-size: 12px;
    color: var(--text-dim);
}

.course-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.course-card:hover .course-link {
    gap: 8px;
}

.articles {
    padding: 120px 0;
    background: var(--bg);
}

.articles-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 22px;
}

.article-featured {
    background: #fff;
    border: 1.5px solid var(--border-dim);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.25s;
    box-shadow: var(--shadow-sm);
}

.article-featured:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    box-shadow: var(--shadow-lg);
}

.article-featured-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.article-featured-img img {
    height: 100%;
    transition: transform 0.4s;
}

.article-featured:hover .article-featured-img img {
    transform: scale(1.04);
}

.article-featured-body {
    padding: 30px;
    flex: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.article-dot {
    width: 3px;
    height: 3px;
    background: var(--text-dim);
    border-radius: 50%;
}

.article-featured-body h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.article-featured-body p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-row {
    background: #fff;
    border: 1.5px solid var(--border-dim);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    gap: 14px;
    transition: all 0.22s;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.article-row:hover {
    border-color: var(--border);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.article-row-num {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.5rem;
    color: rgba(37, 99, 235, 0.18);
    flex-shrink: 0;
    line-height: 1;
}

.article-row-content h4 {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.97rem;
    margin-bottom: 4px;
}

.article-row-content p {
    font-size: 12px;
    color: var(--text-dim);
}

.article-row-tag {
    margin-top: 7px;
}

.trust {
    padding: 120px 0;
    background: #fff;
}

.trust-header {
    text-align: center;
    margin-bottom: 56px;
}

.trust-header .section-label {
    margin-bottom: 12px;
}

.trust-header h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.trust-box {
    background: var(--bg);
    border: 1.5px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.22s;
}

.trust-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.trust-box-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.icon-blue {
    background: var(--blue-dim);
    color: var(--blue);
}

.icon-red {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
}

.trust-box h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    color: var(--text-mid);
}

.check {
    color: #059669;
    flex-shrink: 0;
    font-weight: 700;
}

.cross {
    color: #dc2626;
    flex-shrink: 0;
    font-weight: 700;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    background: var(--bg);
    border: 1.5px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.22s;
}

.testi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--border);
}

.testi-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.star {
    color: #f59e0b;
    font-size: 13px;
}

.testi-quote {
    font-family: 'Inter', sans-serif !important;
    font-size: 2.8rem;
    color: var(--blue);
    line-height: 0.6;
    margin-bottom: 14px;
    opacity: 0.25;
}

.testi-text {
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.72;
    margin-bottom: 18px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-top: 14px;
    border-top: 1px solid var(--border-dim);
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue-dim2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    color: var(--blue);
    flex-shrink: 0;
}

.testi-name {
    font-size: 14px;
    font-weight: 600;
}

.testi-role {
    font-size: 12px;
    color: var(--text-dim);
}

.final-cta {
    padding: 120px 0;
    background: var(--blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
}

.final-cta::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.06em;
    margin-bottom: 28px;
}

.final-cta h2 {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    color: #fff;
    margin-bottom: 14px;
}

.final-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-white {
    background: #fff;
    color: var(--blue);
    font-family: 'Inter', sans-serif !important;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.22s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.btn-white:hover {
    background: #f0f5ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn-white-outline {
    background: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 9px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.22s;
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.cta-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-disclaimer::before,
.cta-disclaimer::after {
    content: '';
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1100px) {

    .hero-badge,
    .hero-badge-2 {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        max-width: 460px;
    }

    .paths-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .paths-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-stat-badge {
        left: 0;
        bottom: -14px;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-white,
    .btn-white-outline {
        width: 100%;
        justify-content: center;
    }
}

/* New Figma design css */
:root {
    --cl-bg-dark: #080c10;
    --cl-bg-light: #f5f4f0;
    /* --cl-teal: linear-gradient(90deg, #00419A 0%, #007A45 100%); */
    --cl-teal: var(--system_primery_color); /* code add by Swapnil */
    --cl-teal-dark: #159e79;
    --cl-blue-accent: #3b82f6;
    --cl-text-white: #eef1f5;
    --cl-text-muted: #eef1f5;
    --cl-text-dark: #000;
    --cl-text-body: #000;
    --cl-border: rgba(255, 255, 255, 0.07);
}

.cl-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse 70% 60% at 70% 50%, #0d2a3a 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 20% 80%, #0a1f2e 0%, transparent 60%),
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),  /* overlay */
        url('../../../../public/uploads/customImages/home_banner.jpg') center/cover no-repeat;               /* bg image */
}

.cl-cubes-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    pointer-events: none;
}

.cl-cube {
    position: absolute;
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(13, 42, 58, 0.8), rgba(8, 12, 16, 0.4));
    border-radius: 6px;
    animation: cl-floatCube linear infinite;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1), inset 0 0 15px rgba(59, 130, 246, 0.05);
}

.cl-cube::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), transparent);
}

.cl-cube:nth-child(1) {
    width: 56px;
    height: 56px;
    top: 12%;
    left: 15%;
    animation-duration: 14s;
    animation-delay: -2s;
}

.cl-cube:nth-child(2) {
    width: 36px;
    height: 36px;
    top: 25%;
    left: 40%;
    animation-duration: 18s;
    animation-delay: -5s;
}

.cl-cube:nth-child(3) {
    width: 64px;
    height: 64px;
    top: 18%;
    left: 60%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.cl-cube:nth-child(4) {
    width: 44px;
    height: 44px;
    top: 50%;
    left: 20%;
    animation-duration: 16s;
    animation-delay: -8s;
}

.cl-cube:nth-child(5) {
    width: 52px;
    height: 52px;
    top: 60%;
    left: 50%;
    animation-duration: 20s;
    animation-delay: -3s;
}

.cl-cube:nth-child(6) {
    width: 40px;
    height: 40px;
    top: 35%;
    left: 75%;
    animation-duration: 15s;
    animation-delay: -6s;
}

.cl-cube:nth-child(7) {
    width: 30px;
    height: 30px;
    top: 72%;
    left: 70%;
    animation-duration: 22s;
    animation-delay: -1s;
}

.cl-cube:nth-child(8) {
    width: 58px;
    height: 58px;
    top: 80%;
    left: 30%;
    animation-duration: 13s;
    animation-delay: -9s;
}

.cl-cube:nth-child(9) {
    width: 42px;
    height: 42px;
    top: 45%;
    left: 85%;
    animation-duration: 17s;
    animation-delay: -4s;
}

.cl-cube:nth-child(10) {
    width: 34px;
    height: 34px;
    top: 8%;
    left: 80%;
    animation-duration: 19s;
    animation-delay: -7s;
}

.cl-cube-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    height: 1px;
    transform-origin: left center;
}

.cl-cube-line:nth-child(11) {
    width: 180px;
    top: 15%;
    left: 20%;
    transform: rotate(25deg);
}

.cl-cube-line:nth-child(12) {
    width: 220px;
    top: 38%;
    left: 38%;
    transform: rotate(-15deg);
}

.cl-cube-line:nth-child(13) {
    width: 160px;
    top: 62%;
    left: 48%;
    transform: rotate(40deg);
}

.cl-cube-line:nth-child(14) {
    width: 200px;
    top: 24%;
    left: 58%;
    transform: rotate(-30deg);
}

.cl-cube-line:nth-child(15) {
    width: 140px;
    top: 75%;
    left: 25%;
    transform: rotate(10deg);
}

@keyframes cl-floatCube {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-18px) rotate(8deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-8px) rotate(15deg);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-24px) rotate(5deg);
        opacity: 0.9;
    }
}

.cl-hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
    animation: cl-fadeUp 0.9s ease both;
}

@keyframes cl-fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cl-hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.cl-badge {
    padding: 0.5rem 0.6rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    letter-spacing: 0.02em;

    /* Gradient border fix */
    border: 1px solid transparent;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    position: relative;
    z-index: 0;
}

.cl-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;                  /* border thickness */
    border-radius: 20px;           /* must match .cl-badge border-radius */
    background: linear-gradient(90deg, #00419A 0%, #007A45 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.cl-hero-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
    color: var(--cl-text-white);
}

.cl-hero-desc {
    font-size: 1.1rem;
    color: var(--cl-text-muted);
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 36px;
}

.cl-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cl-teal);
    color: #fff;
    padding: 13px 26px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    /* box-shadow: 0 0 24px rgba(29, 184, 142, 0.3); */
}

/* .cl-btn-primary:hover {
    background: var(--cl-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 36px rgba(29, 184, 142, 0.4);
} */
/* .cl-btn-primary:hover {
    opacity: 0.85;
} */

/* a:hover { 
    background: var(--cl-teal) !important;
}
a:hover {
    color: var(--cl-teal) !important;
} */

.cl-about {
    background: #fff;
    padding: 90px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .cl-about-image {
    border-radius: 16px;
    overflow: hidden;
    background: #0a0a0a;
    aspect-ratio: 1 / 1;
    display: flex; align-items: center; justify-content: center;
  }

  .cl-coin-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 16px; padding: 32px;
  }
  .cl-coin {
    width: 64px; height: 64px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .cl-coin--btc  { background: #f7931a; }
  .cl-coin--eth  { background: #627eea; }
  .cl-coin--bnb  { background: #f0b90b; }
  .cl-coin--sol  { background: #9945ff; }
  .cl-coin--ada  { background: #0033ad; }
  .cl-coin--dot  { background: #e6007a; }
  .cl-coin--xrp  { background: #00aae4; }
  .cl-coin--doge { background: #c2a633; }
  .cl-coin--uni  { background: #ff007a; }

  .cl-about-text { color: var(--cl-text-dark); }
  .cl-about-text h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 2.81rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--cl-text-dark);
  }
  .cl-about-text p {
    font-size: 1rem;
    color: var(--cl-text-body);
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .cl-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px; border-radius: 8px;
    border: none;
    color: #fff;
    background: var(--cl-teal);
    font-size: 1.2rem; font-weight: 600;
    text-decoration: none; cursor: pointer;
    transition: all 0.2s;
  }
  /* .cl-btn-outline:hover {
    background: var(--cl-blue-accent);
    color: #fff;
  } */

  .cl-focus-list {
    margin-top: 32px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .cl-focus-label {
    font-size: 1.5rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--cl-text-body);
    margin-bottom: 4px;
  }
  .cl-focus-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 1.1rem; color: var(--cl-text-dark);
  }
  .cl-focus-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }

  .cl-built {
    background: var(--cl-bg-light);
    padding: 90px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: var(--cl-text-dark);
  }

  .cl-built-text {
    padding-left: 7rem;
  }

  .cl-built-text h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 2.82rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 36px;
    color: var(--cl-text-dark);
  }

  .cl-built-block { margin-bottom: 32px; }
  .cl-built-block-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px;
  }
  .cl-built-block-icon {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .cl-built-block h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.5rem; 
    font-weight: 700;
    color: var(--cl-text-dark);
  }
  .cl-built-block ul {
    list-style: none; margin-left: 42px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .cl-built-block ul li {
    font-size: 1rem; color: var(--cl-text-body);
    line-height: 1.6;
    position: relative; padding-left: 14px;
  }
  .cl-built-block ul li::before {
    content: '•'; position: absolute; left: 0;
    color: #191919;
  }

  .cl-built-image {
    border-radius: 16px; overflow: hidden;
    background: #0a0a0a;
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
  }

  .cl-crypto-float {
    width: 100%; height: 100%;
    background: #0d0d0d;
    position: relative; overflow: hidden;
  }
  .cl-float-coin {
    position: absolute;
    font-size: 2.4rem;
    animation: cl-floatRandom linear infinite;
    opacity: 0.9;
  }

  @keyframes cl-floatRandom {
    0%,100% { transform: translateY(0) rotate(0deg); }
    33%      { transform: translateY(-20px) rotate(15deg); }
    66%      { transform: translateY(12px) rotate(-10deg); }
  }

  .section-header {
    text-align: left;
    margin-bottom: 48px;
  }

  .section-header h2 {
    font-family: var(--fontFamily1);
    font-size: 2.82rem;
    font-weight: 700;
    color: var(--system_secendory_color);
    margin-bottom: 10px;
  }

  .section-header p {
    font-size: 15px;
    color: var(--system_paragraph_color);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
  }

  .blog-editorial-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
  }

  @media (max-width: 991px) {
    .blog-editorial-wrap { grid-template-columns: 1fr; }
  }

  .cl-blog {
    background: #fff;
    padding: 90px 5%;
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 60px;
    align-items: center;
  }

  .blog-feat-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
    transition: box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .blog-feat-card:hover { box-shadow: 0 6px 40px rgba(0,0,0,0.11); }

  .blog-feat-img-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 58%;
    overflow: hidden;
    flex-shrink: 0;
  }
  .blog-feat-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
  }
  .blog-feat-card:hover .blog-feat-img-wrap img { transform: scale(1.04); }

  .blog-feat-body {
    padding: 28px 30px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .blog-feat-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }
  .meta-cat {
    font-size: 12px;
    font-weight: 600;
    color: var(--system_primery_color);
    font-family: var(--fontFamily2);
    letter-spacing: .03em;
  }
  .meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #bfc4d0;
  }
  .meta-time {
    font-size: 12px;
    color: #8b92a5;
    font-family: var(--fontFamily2);
  }

  .blog-feat-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.38;
    color: var(--system_secendory_color);
    font-family: var(--fontFamily1);
    margin-bottom: 12px;
    text-decoration: none;
    display: block;
    transition: color .2s;
  }
  .blog-feat-title:hover { color: var(--system_primery_color); }

  .blog-feat-excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: var(--system_paragraph_color);
    font-family: var(--fontFamily2);
    flex: 1;
  }

  .blog-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
  }

  .blog-list-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
    transition: box-shadow .25s ease, transform .25s ease;
    text-decoration: none;
    flex: 1;
    border: 1px solid #b3b3b3;
  }
  .blog-list-item:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transform: translateY(-2px);
  }

  .blog-list-num {
    font-size: 26px;
    font-weight: 800;
    color: #e4e8f0;
    font-family: var(--fontFamily1);
    line-height: 1;
    min-width: 38px;
    flex-shrink: 0;
    padding-top: 2px;
  }

  .blog-list-content { flex: 1; min-width: 0; }

  .blog-list-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--system_secendory_color);
    font-family: var(--fontFamily1);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
  }
  .blog-list-item:hover .blog-list-title { color: var(--system_primery_color); }

  .blog-list-submeta {
    font-size: 12px;
    color: #9299aa;
    font-family: var(--fontFamily2);
    margin-bottom: 8px;
  }

  .blog-list-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--fontFamily2);
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--system_primery_color_10);
    color: var(--system_primery_color);
    letter-spacing: .02em;
  }

  /* Learning path */
  .cl-paths {
    background: #fff;
    padding: 70px 5%;
    color: var(--cl-text-dark);
  }
  .cl-paths-header { margin-bottom: 32px; }
  .cl-paths-header h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 2.82rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--cl-text-dark);
    margin-bottom: 6px;
  }
  .cl-paths-header p {
    font-size: 1rem;
    color: var(--cl-text-body);
  }

  .cl-paths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .cl-path-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e4e6ea;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .cl-path-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: translateY(-3px);
  }

  .cl-path-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background: #e8eaed;
  }
  /* Placeholder images using pure CSS */
  .cl-path-card-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.8rem;
  }
  .cl-path-img--1 { background: linear-gradient(135deg, #c8a96e, #8b6914); }
  .cl-path-img--2 { background: linear-gradient(135deg, #d0d4dc, #a8afc0); }
  .cl-path-img--3 { background: linear-gradient(135deg, #1a1a2e, #0f3460); }
  .cl-path-img--4 { background: linear-gradient(135deg, #f9c5d1, #e8b4a0); }

  .cl-path-card-body {
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 14px;
  }
  .cl-path-card-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cl-text-dark);
    line-height: 1.4;
  }

  /* Bottom card */
  .cl-cta-banner {
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 70% 60% at 70% 50%, #0d2a3a 0%, transparent 65%),
                radial-gradient(ellipse 40% 40% at 20% 80%, #0a1f2e 0%, transparent 60%), 
                linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), /* overlay */
                url(../../../../public/uploads/customImages/build_for_future.jpg) center / cover no-repeat;
    border: 1px solid #1e2530;
    border-radius: 14px;
    margin: 0 5% 60px;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  
  .cl-cta-banner-title {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--cl-text-white);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
  }
  
  .cl-cta-banner .cl-btn-primary {
    position: relative;
    z-index: 2;
  }
  
  /* Floating crypto coins decoration */
  .cl-cta-coin {
    position: absolute;
    font-size: 2.6rem;
    animation: cl-ctaFloat linear infinite;
    opacity: 0.85;
    z-index: 1;
    pointer-events: none;
  }
  .cl-cta-coin:nth-child(1) { top: 10%; left:  8%; animation-duration: 7s;  animation-delay: 0s;   font-size: 2.2rem; }
  .cl-cta-coin:nth-child(2) { top: 15%; left: 25%; animation-duration: 9s;  animation-delay: -2s;  font-size: 1.8rem; color: #3b82f6; }
  .cl-cta-coin:nth-child(3) { top:  5%; left: 50%; animation-duration: 6s;  animation-delay: -1s;  font-size: 2.8rem; color: #f7931a; }
  .cl-cta-coin:nth-child(4) { top: 10%; right: 20%; animation-duration: 8s; animation-delay: -3s;  font-size: 2rem;   color: #00aae4; }
  .cl-cta-coin:nth-child(5) { top:  8%; right:  8%; animation-duration: 11s; animation-delay: -5s; font-size: 2.4rem; color: #3b82f6; }
  .cl-cta-coin:nth-child(6) { bottom: 12%; left: 6%;  animation-duration: 8s;  animation-delay: -4s; font-size: 2.8rem; color: #9945ff; }
  .cl-cta-coin:nth-child(7) { bottom:  8%; left: 30%; animation-duration: 7s;  animation-delay: -1s; font-size: 2rem;   color: #3b82f6; }
  .cl-cta-coin:nth-child(8) { bottom: 10%; left: 55%; animation-duration: 10s; animation-delay: -6s; font-size: 2.6rem; color: #f7931a; }
  .cl-cta-coin:nth-child(9) { bottom:  8%; right: 15%; animation-duration: 6s; animation-delay: -2s; font-size: 2.4rem; color: #e6c84a; }
  .cl-cta-coin:nth-child(10){ bottom: 15%; right:  5%; animation-duration: 9s; animation-delay: -7s; font-size: 2rem;   color: #1db88e; }
  
  @keyframes cl-ctaFloat {
    0%,100% { transform: translateY(0)   rotate(0deg);   }
    30%      { transform: translateY(-14px) rotate(12deg);  }
    60%      { transform: translateY(8px)  rotate(-8deg);  }
  }
  
  @media (max-width: 640px) {
    .cl-cta-banner { margin: 0 4% 50px; padding: 50px 16px; }
    .cl-cta-banner-title { font-size: 1.3rem; }
    .cl-cta-coin { font-size: 1.6rem !important; }
  }

  @media (max-width: 900px) {
    .cl-about, .cl-built {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 70px 6%;
    }
    .cl-built .cl-built-image { order: -1; }
  }

  @media (max-width: 640px) {
    .cl-hero { padding: 100px 6% 60px; min-height: 100svh; }
    .cl-cubes-bg { width: 100%; opacity: 0.4; }
    .cl-hero-title { font-size: 2.5rem; }
    .cl-hero-desc { font-size: 1rem; }

    .cl-about, .cl-built { padding: 60px 6%; gap: 32px; }
    .cl-about-text h2, .cl-built-text h2 { font-size: 1.7rem; }
    .cl-built-text { padding-left: 1rem; }

    .cl-coin-grid { gap: 10px; padding: 20px; }
    .cl-coin { width: 52px; height: 52px; font-size: 1.3rem; }
    .cl-focus-list { gap: 10px; }

    .cl-paths { padding: 50px 6%; }
    .cl-paths-grid { grid-template-columns: 1fr; gap: 16px; }
  }

  @media (max-width: 420px) {
    .cl-hero-title { font-size: 2rem; }
    .cl-btn-primary, .cl-btn-outline { padding: 11px 20px; font-size: 1rem; }
  }

  /* About us page css  */
    /* ── Section 1: Why This Platform Exists ── */
    #why-section {
        background: #fff;
    }
    #why-section .left-panel {
        background: #0f1b2d;
        color: #fff;
        padding: 60px 50px;
        min-height: 420px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    #why-section .left-panel h2 {
        font-size: 2.82rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #fff;
    }
    #why-section .left-panel p {
        font-size: 1rem;
        color: #cdd5df;
        line-height: 1.7;   
        margin-bottom: 12px;
    }
    #why-section .btn-start {
        background: var(--cl-teal);
        color: #fff;
        border: 1px solid #fff;
        padding: 10px 22px;
        font-size: 1.2rem;
        border-radius: 6px;
        width: fit-content;
        margin-top: 10px;
    }
    #why-section .btn-start:hover { background: var(--cl-teal);; }
    #why-section .right-panel {
        padding: 0;
        overflow: hidden;
    }
    #why-section .right-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 350px;
    }

    /* ── Section 2: Our Mission ── */
    #mission-section {
        padding: 70px 0;
        background: #fff;
    }
    #mission-section .mission-left h2 {
        font-size: 2.82rem;
        font-weight: 700;
        margin-bottom: 18px;
    }
    #mission-section .mission-left p {
        font-size: 1rem;
        color: #555;
        line-height: 1.7;
        margin-bottom: 28px;
    }
    #mission-section .mission-left img {
        width: 100%;
        border-radius: 4px;
        object-fit: cover;
        max-height: 480px;
    }
    #mission-section .values-col h6 {
        font-size: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #000;
        margin-bottom: 16px;
        font-weight: 600;
    }
        .value-item {
        border-top: 1px solid #e5e7eb;
        padding: 16px 0;
        }
        .value-item:last-child { border-bottom: 1px solid #e5e7eb; }
        .value-item-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* cursor: pointer; */
        }
        .value-item-header .title {
        display: flex;
        align-items: center;
        /* gap: 10px; */
        font-weight: 600;
        font-size: 1.2rem;
        color: #191919;
        }
        .value-item-header .title i {
        font-size: 1rem;
        color: #374151;
        }
        .value-item-header .chevron { color: #9ca3af; font-size: 1rem; }
        .value-item .desc {
        font-size: 1rem;
        color: #191919;
        margin-top: 8px;
        line-height: 1.6;
        }

        /* ── Section 3: Contributors ── */
        #contributors-section {
        padding: 70px 0;
        background: #fff;
        }
        #contributors-section .contrib-left h2 {
        font-size: 2.82rem;
        font-weight: 700;
        margin-bottom: 16px;
        }
        #contributors-section .contrib-left p.lead-text {
        font-size: 1rem;
        color: #555;
        line-height: 1.7;
        margin-bottom: 28px;
        }
        .contrib-block {
        display: flex;
        gap: 14px;
        margin-bottom: 24px;
        }
        .contrib-block .icon-wrap {
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        border: 1.5px solid #d1d5db;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #374151;
        font-size: 1rem;
        }
        .contrib-block .content p.block-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 8px;
        }
        .contrib-block .content ul {
        padding-left: 16px;
        margin: 0;
        }
        .contrib-block .content ul li {
            font-size: 1rem;
            color: #555;
            line-height: 1.8;
            list-style: disc;
        }
        #contributors-section .contrib-right img {
        width: 100%;
        border-radius: 6px;
        object-fit: cover;
        max-height: 340px;
        }

        /* ── Section 4: CTA Banner ── */
        #cta-section {
        position: relative;
        background: #0a0f1e;
        overflow: hidden;
        padding: 70px 20px;
        text-align: center;
        }
        #cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 60% 60% at 50% 50%, rgba(30,80,160,0.35) 0%, transparent 70%),
            radial-gradient(ellipse 30% 40% at 20% 80%, rgba(180,0,80,0.15) 0%, transparent 60%);
        pointer-events: none;
        }
        #cta-section .grid-overlay {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(100,160,255,0.07) 1px, transparent 1px),
            linear-gradient(90deg, rgba(100,160,255,0.07) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
        }
        #cta-section .bitcoin-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 10rem;
        color: rgba(255,255,255,0.04);
        pointer-events: none;
        user-select: none;
        }
        #cta-section .content {
        position: relative;
        z-index: 2;
        }
        #cta-section h2 {
        color: #fff;
        font-size: 2.82rem;
        font-weight: 600;
        margin-bottom: 24px;
        }
        #cta-section .btn-cta {
            background: var(--cl-teal);
            color: #fff;
            border: 1px solid #fff;
            padding: 11px 28px;
            font-size: 1.2rem;
            border-radius: 6px;
            font-weight: 500;
        }
        #cta-section .btn-cta:hover { background: var(--cl-teal); }

        /* ── Responsive tweaks ── */
        @media (max-width: 767.98px) {
            #why-section .left-panel { padding: 40px 28px; min-height: auto; }
            #why-section .left-panel h2 { font-size: 1.7rem; }
            #why-section .right-panel img { min-height: 260px; }
            #mission-section { padding: 50px 0; }
            #contributors-section { padding: 50px 0; }
            #cta-section h2 { font-size: 1.4rem; }
            .cl-paths-grid { grid-template-columns: 1fr; gap: 16px; } 
        }

    
    /* ── Contact Us page css ── */
    #contact-section {
        padding: 70px 0 0 0;
        background: #fff;
      }
   
      /* Left side */
      .contact-heading {
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.25;
        color: #111;
        margin-bottom: 36px;
      }
   
      .info-block {
        border-top: 1px solid #e5e7eb;
        padding: 18px 0;
      }
      .info-block:last-child {
        border-bottom: 1px solid #e5e7eb;
      }
      .info-block .block-title {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        font-size: 1..1rem;
        color: #111;
        margin-bottom: 6px;
      }
      .info-block .block-title i {
        font-size: 1rem;
        color: #374151;
      }
      .info-block p {
        font-size: 1rem;
        color: #444;
        margin: 0;
        line-height: 1.7;
      }
      .info-block p strong {
        font-weight: 600;
        color: #111;
      }
   
      /* Right: dark card form */
      .contact-card {
        background: #0f1b2d;
        border-radius: 12px;
        padding: 32px 28px;
        color: #fff;
      }
      .contact-card label {
        font-size: 1.2rem;
        color: #cbd5e1;
        margin-bottom: 6px;
        display: block;
      }
      .contact-card .form-control {
        background: #fff;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        color: #374151;
        padding: 10px 14px;
      }
      .contact-card .form-control::placeholder {
        color: #9ca3af;
      }
      .contact-card .form-control:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(34,197,94,0.4);
      }
      .contact-card textarea.form-control {
        resize: none;
        height: 110px;
      }
      .btn-send {
        width: 100%;
        /* background: linear-gradient(90deg, #1d6fce 0%, #22c55e 100%); */
        background: var(--cl-teal);
        color: #fff;
        border: 1px solid #fff;
        border-radius: 6px;
        padding: 12px;
        font-size: 1rem;
        font-weight: 500;
        margin-top: 6px;
        transition: opacity 0.2s;
      }
      .btn-send:hover { opacity: 0.88; }
   
      /* Bottom blue bar */
      .bottom-bar {
        height: 6px;
        background: linear-gradient(90deg, #1d6fce 0%, #22c55e 100%);
        margin-top: 60px;
        border-radius: 0;
      }
   
      /* Responsive */
      @media (max-width: 767.98px) {
        .contact-heading { font-size: 1.6rem; }
        #contact-section { padding: 50px 0 0 0; }
        .contact-card { padding: 24px 18px; }
      }

    .heading-nav .heading-list .submenu li a { 
        font-weight: 600 !important;
    }
    .heading-nav .heading-list .heading-links + .submenu li a:hover {
        color: var(--system_primery_gredient1) !important;
        font-weight: 600;
    }