                             
                             
                             /* paths introduction */



.paths-hero {
    text-align: center;
    padding: 90px 0 55px 0;
    background: linear-gradient(90deg, #e0e7ff 60%, #f1f5f9 100%);
}

.paths-title {
    font-size: 2.3rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 12px;
}

.paths-subtitle {
    font-size: 1.18rem;
    color: #22223b;
    margin-bottom: 0;
}

.paths-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 40px 0;
}


                                 /* paths cards */



.path-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(37,99,235,0.10);
    padding: 0 0 24px 0;
    width: 240px;
    min-width: 180px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.path-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(37,99,235,0.18);
}

.path-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    margin-bottom: 18px;
}

.path-name {
    font-size: 1.15rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 8px;
    margin-top: 12px;
}

.path-desc {
    font-size: 1rem;
    color: #22223b;
    margin-bottom: 18px;
    padding: 0 12px;
}

.path-btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.path-btn:hover {
    background: #6b3fa0;
}


                                 /* quick paths */


.quick-paths-hero {
    background: linear-gradient(90deg, #e0e7ff 60%, #f1f5f9 100%);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.07);
    text-align: center;
    padding: 40px 18px 32px 18px;
    margin: 32px auto 0 auto;
    max-width: 700px;
}

.quick-title {
    font-size: 1.7rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 12px;
}

.quick-desc {
    font-size: 1.15rem;
    color: #22223b;
    margin-bottom: 22px;
    line-height: 1.6;
}

.quick-btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    font-size: 1.08rem;
    font-weight: bold;
    padding: 10px 28px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
    transition: background 0.2s;
}

.quick-btn:hover {
    background: #6b3fa0;
}


                        /* coming soon section */


.coming-soon-section.alt {
    background: #fff;
    border: 2px dashed #6b3fa0;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(37,99,235,0.06);
    text-align: center;
    padding: 36px 18px 28px 18px;
    margin: 40px auto 120px auto;
    max-width: 500px;
    animation: fadeIn 1s;
}

.coming-soon-emoji {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 10px;
}

.coming-soon-title {
    font-size: 1.5rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    color: #6b3fa0;
    margin-bottom: 10px;
}

.coming-soon-desc {
    font-size: 1.08rem;
    color: #22223b;
    margin-bottom: 0;
    line-height: 1.6;
    opacity: 0.85;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}


                                /* special path */

.path-badge {
   /* opacity: 0.6; */
    position: absolute;
   /* top: 14px; 
    left: 14px;  */
    bottom: 10px;
    right: 10px;
    background: linear-gradient(90deg, #fbbf24 0%, #6b3fa0 100%);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 6px 8px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    z-index: 2;
    letter-spacing: 0.5px;
    cursor: pointer;
}
/*
.path-badge:hover {
    opacity: 1;
    transform: scale(1.05);
    transition: transform 0.2s, opacity 0.2s;
}
*/

.in-process {
   /* opacity: 0.6; */
    position: absolute;
   /* top: 14px; 
    left: 14px;  */
    bottom: 10px;
    left: 10px;
    background: linear-gradient(90deg, #fbbf24 0%, #6b3fa0 100%);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 6px 8px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    z-index: 2;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.path-card {
    position: relative; /* Needed for badge positioning */
    
}

