/* ===== RESET ===== */

body{
    margin:0;
    font-family: Arial, sans-serif;
}

/* ===== HEADER ===== */

.sticky-header{
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

/* ===== CONTAINER ===== */

.header-container{
    max-width: 1150px;   /* IMPORTANT */
    margin: auto;
    padding: 5px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;   /* FIXED HEADER HEIGHT */

}

/* ===== LOGO ===== */

.logo-box{
    display: flex;
    align-items: center;
    margin-left: 45px;
}

.logo{
    height: 220px;      /* small logo like image 2 */
    width: auto;
    object-fit: contain;
    display: block;
}

/* ===== BUTTON ===== */

.guide-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #dbeafe;
    color: #1d4ed8;
    border: none;
    outline: none;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    margin-right: 45px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

/* ===== HOVER ===== */

.guide-btn:hover{
    background: #c7ddff;
}

/* ===== TABLET ===== */

@media(max-width:768px){

    .header-container{
        padding: 12px 18px;
    }

    .logo{
        height: 150px;
    }

    .guide-btn{
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* ===== MOBILE ===== */

@media(max-width:480px){

    .header-container{
        padding: 10px 12px;
    }

    .logo{
        height: 150px;
        margin-left: -60px;
    }

    .guide-btn{
        font-size: 11px;
        padding: 7px 10px;
        white-space: nowrap;
        margin-right: 20px; /* right side */
    }
}
/*=========== FLOAT SECTION START ==========*/

.floating-container {
    position: fixed;
    bottom: 24px;
    right: 14px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* COMMON BUTTON STYLE */

.float-btn {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #fff;
    font-size: 22px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);

    transition: all 0.3s ease;
}
.call-btn i{
    font-size: 22px;

    color: transparent;
    -webkit-text-stroke: 1.8px white;

    transform: rotate(-10deg);
}

/* ICON PERFECT CENTER */

.float-btn i {
    line-height: 1;
}

/* CALL BUTTON */

.call-btn {
    background: #16c35b;
}

/* WHATSAPP BUTTON */

.whatsapp-btn {
    background: #25D366;
}

/* HOVER EFFECT */

.float-btn:hover {
    transform: scale(1.08);
}



/*=========== FLOAT SECTION END ==========*/

/* ===== HERO SECTION ===== */

.hero-section{
    width: 100%;
    padding: 40px 20px;

    background: linear-gradient(to right,
    #0f2744,
    #1d3a5f,
    #bdeafe);

    text-align: center;
}

/* CONTAINER */

.hero-container{
    max-width: 1000px;
    margin: auto;
}

/* TOP BADGE */

.hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 20px;

    border-radius: 999px;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.25);

    color: white;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 30px;

    backdrop-filter: blur(10px);
}

/* TITLE */

.hero-title{
    font-size: 45px;
    line-height: 1.05;
    font-weight: 800;
    color: white;
    margin: 0;
}

.hero-title span{
    color: #7db6ff;
}

/* PARAGRAPH */

.hero-text{
    max-width: 550px;
    margin: 30px auto;
    font-size: 16px;
    line-height: 1.7;
    color: #dbeafe;
}

/* STATS */

.hero-stats{
    width: fit-content;
    margin: 22px auto 0;
    display: flex;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

/* EACH BOX */

.stat-box{
    padding: 12px 36px;
    text-align: center;
    border-right: 1px solid white;
}


.stat-box:last-child{
    border-right: none;
}

.stat-number{
    font-size: 22px;
    font-weight: 800;
    color: #2563eb;
    line-height: 1.5;
}

.stat-label{
    margin-top: 10px;
    font-size: 11px;
    color: #475569;
}

/* ===== TABLET ===== */

@media(max-width:768px){
    body{
        width: 100%;
        overflow-x: hidden;
    }

    .hero-title{
        font-size: 42px;
    }

    .hero-text{
        font-size: 18px;
    }

    .hero-stats{
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .stat-box{
        border-right: none;
        border-bottom: 1px solid #cbd5e1;
    }

    .stat-box:last-child{
        border-bottom: none;
    }
}

/* ===== MOBILE ===== */

@media(max-width:480px){
    html, body{
    width: 100%;
    overflow-x: hidden;
}

    .hero-section{
        padding: 50px 16px;
    }

    .hero-title{
        font-size: 32px;
    }

    .hero-text{
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-badge{
        font-size: 11px;
        padding: 8px 14px;
    }

    .stat-number{
        font-size: 32px;
    }

    .stat-label{
        font-size: 13px;
    }
}




/*===================
 MAIN SECTION 
 ====================*/

.main-section{
    width:100%;
    max-width:1100px;
    margin:auto;
    padding:32px 16px;
}

/* GRID */

.compare-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:16px;                 /* REAL GAP */
}

/* CARD */

.select-card{
    background:#ffffff;
    border:1px solid #dfe3ea;
    border-radius:18px;

    padding:18px;

    min-height:230px;

    display:flex;
    align-items:center;
    justify-content:center;

    box-sizing:border-box;    /* IMPORTANT */

    transition:0.3s ease;
}

.select-card:hover{
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* BUTTON */

.select-btn{
    width:100%;
    height:180px;

    border:2px dashed #d7dce3;
    border-radius:16px;

    background:transparent;
    cursor:pointer;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:14px;

    transition:0.3s ease;
}

.select-btn:hover{
    border-color:#2563eb;
}

/* ICON */

.icon-box{
    width:56px;
    height:56px;

    border-radius:16px;
    background:#f1f3f7;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    font-weight:500;
    color:#64748b;

    transition:0.3s ease;
}

.select-btn:hover .icon-box{
    background:rgba(37,99,235,0.1);
    color:#2563eb;
}

/* TEXT */

.select-text{
    font-size:15px;
    font-weight:600;
    color:#64748b;

    transition:0.3s ease;
}

.select-btn:hover .select-text{
    color:#2563eb;
}

/* MOBILE */

@media(max-width:768px){

    .compare-grid{
        gap:10px;
    }

    .select-card{
        padding:12px;
        min-height:180px;
    }

    .select-btn{
        height:140px;
        min-width: 150px;
    }

    .icon-box{
        width:26px;
        height:36px;
        font-size:20px;
    }

    .select-text{
        font-size:13px;
    }

}


/* ==
main section
== */


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: sans-serif;
    background: #f5f7fb;
}

/* MAIN */

.comparison-main{
    max-width: 1024px;
    margin: auto;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* TOP GRID */

.top-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

/* GLASS CARD */

.glass-card-hover,
.glass-card{
    background: rgba(255,255,255,0.9);
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}



.select-wrapper{
    padding: 24px;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* BUTTON */

.select-btn{
    width: 440px;
    height: 180px;
    border: 2px dashed #d1d5db;
    border-radius: 16px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.select-btn:hover{
    border-color: #2563eb;
}

.plus-box{
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #6b7280;
    transition: 0.3s;
}

.select-btn:hover .plus-box{
    background: rgba(37,99,235,0.1);
    color: #2563eb;
}

.select-text{
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

/* TABLE */

.comparison-table{
    position: relative;
}

/* HEADER */

.table-header{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(to right,#082f49,#0f3d68);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-title{
    padding: 16px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.header-university{
    padding: 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.header-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.header-logo{
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: darkblue;
    font-weight: 500;
    overflow: hidden;
}

.header-logo img{
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    padding: 4px;
    display: none;
}

.header-logo span{
    font-size: 12px;
    font-weight: 600;
    color: #666;
}



/* ===
BEST TAG
==== */

.best-tag{
    display:inline-flex;
    align-items:center;
    gap:4px;

    background:#ffe7b8;
    color:#d97706;

    padding:4px 10px;
    border-radius:999px;

    font-size:12px;
    font-weight:600;
}


/* 
MEDIAN TEXT
*/

.small-text{
    margin-top:4px;

    font-size:13px;
    font-weight:500;

    color:#64748b;
}


/* 
ROI TAG COLORS
 */

/* HIGH ROI */

.roi-high{
    background: #dcfce7;
    color: #16a34a;

    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}


/* MEDIUM ROI */

.roi-medium{
    background: #fef3c7;
    color: #d97706;

    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}


/* LOW ROI */

.roi-low{
    background: #fee2e2;
    color: #dc2626;

    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

/* =========================
PROGRESS BAR
========================= */

.progress-wrap{
    width:100%;
    height:8px;

    background:#e5e7eb;

    border-radius:999px;

    overflow:hidden;

    margin-top:12px;
}

.progress-bar-fill{
    height:100%;
    border-radius:999px;
}


/* BLUE BAR */

.progress-blue{
    background:#2563eb;
}


/* GREEN BAR */

.progress-green{
    background:#16a34a;
}


/* DEFAULT HIDE */

#tableLogo1,
#tableLogo2{
    display: none;
}
 
.header-name{
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.header-sub{
    font-size: 10px;
    color: rgba(255,255,255,0.6);
}

/* SECTION TITLE */

.section-title{
    background: rgba(37,99,235,0.05);
    border-top: 2px solid rgba(37,99,235,0.2);
}

.section-content{
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
}

.section-content i{
    color: #1e3a8a;
    margin-right: 8px;
    font-size: 14px;
}

.icon{
    font-size: 14px;
    color: #6b7280;
    margin-right: 10px;
}

.lock-icon{
    font-size: 12px;
    color: #f59e0b;
}

.check-icon{
    color: #10b981;
    margin-right: 6px;
}

.lock-outline{
    color:#1e40af;
    font-size:26px;

    -webkit-text-stroke: 1px #1e40af;
}

/* ROW */

.comparison-row{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}


.metric-name{
    padding: 16px;
    border-right: 1px solid #e5e7eb;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

.metric-value{
    padding: 16px;
    border-right: 1px solid #e5e7eb;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.small-text{
    margin-top: 4px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}

/* SUCCESS */

.success-pill{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(34,197,94,0.1);
    color: #16a34a;
    font-size: 12px;
    font-weight: 600;
}

/* LIGHT ROW */

.light-row{
    background: rgba(59,130,246,0.05);
}

/* LOCKED SECTION */

.locked-section{
    position: relative;
}

/* OVERLAY */

.overlay-box{
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 20px;
}

.overlay-lock{
    font-size: 30px;
    color: #2563eb;
}

.overlay-text{
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    max-width: 350px;
}

.unlock-btn{
    background: linear-gradient(to right,#082f49,#0f3d68);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.unlock-btn:hover{
    opacity: 0.9;
}

/* MOBILE */

@media(max-width:640px){

    .comparison-main{
        padding: 20px 12px;
        gap: 24px;
    }

    .top-grid{
        gap: 12px;
    }

    /* SELECT BOX */

    .select-wrapper{
        padding: 12px;
        min-height: 170px;
        position: relative;
    }

    .select-btn{
        width: 100%;
        min-height: 110px;
        height: 110px;

        border-radius: 14px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 8px;
    }

    .plus-box{
        width: 38px;
        height: 38px;

        font-size: 18px;
        border-radius: 12px;
    }

    .select-text{
        font-size: 11px;
        text-align: center;
    }

    /* SELECTED STATE */

    .selected-logo{
        width: 52px;
        height: 52px;
        margin-top: 10px;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    .selected-logo img{
        width: 35px;
        height: 35px;
    }

    .selected-name{
        font-size: 14px;
        margin-bottom: 16px;
    }

     .selected-state{
        padding-top: 40px;
    }

    /* CHANGE BUTTON */

    .change-btn{
        height: 42px;
        font-size: 13px;
        border-radius: 12px;
    }

    /* CLOSE BUTTON */

    .close-btn{
        width: 24px;
        height: 24px;
        top: 8px;
        right: 8px;
        font-size: 12px;
        z-index: 50;
    }

    /* TABLE */

    .metric-name,
    .metric-value,
    .header-title,
    .header-university{
        padding: 12px;
    }

    .metric-name{
        font-size: 12px;
    }

    .metric-value{
        font-size: 12px;
    }

}





/* =========================
UNIVERSITY CARD
========================= */

.university-card{
    position: relative;
}

.selected-state{
    display: none;
    width: 100%;
    text-align: center;
}

.selected-logo{
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
    overflow: hidden;
}

.selected-logo img{
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
    padding: 6px;
}

.selected-name{
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 28px;
}

/* CHANGE BUTTON */

.change-btn{
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 2px solid #1e3a8a;
    background: transparent;
    color: #1e3a8a;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.change-btn:hover{
    background: #1e3a8a;
    color: white;
}

/* CLOSE BUTTON */
.close-btn{
    position: absolute;
    top: 16px;
    right: 16px;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #f3f4f6;
    color: #6b7280;

    font-size: 18px;
    font-weight: 400;

    cursor: pointer;

    display: none;

    /* CENTER FIX */
    align-items: center;
    justify-content: center;

    padding: 0;
    line-height: 0;

    transition: 0.3s;
}

.close-btn:hover{
    background: #ef4444;
    color: white;
}
/* =========================
MODAL
========================= */

.modal-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-overlay.active{
    display: flex;
}

.university-modal{
    width: 100%;
    max-width: 450px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    animation: popup 0.25s ease;
}

@keyframes popup{
    from{
        transform: scale(0.9);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}

/* HEADER */

.modal-header{
    padding: 22px 22px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2{
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.modal-close{
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    color: #111827;
}

/* SEARCH */

.search-box{
    padding: 16px;
}

.search-box input{
    width: 100%;
    height: 48px;
    border: none;
    outline: none;
    background: #f3f4f6;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 14px;
}

/* LIST */

.university-list{
    max-height: 380px;
    overflow-y: auto;
    padding: 0 16px 16px;
}

.university-item{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.university-item:hover{
    background: #f3f4f6;
}

.university-item img{
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.uni-info h4{
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.uni-info p{
    font-size: 13px;
    color: #6b7280;
}

/* MOBILE */

@media(max-width:640px){

    .selected-name{
        font-size: 16px;
    }

    .change-btn{
        height: 48px;
        font-size: 14px;
    }

    .university-modal{
        max-width: 100%;
    }

}




/* =========================
UNLOCK MODAL
========================= */

.unlock-modal-overlay{
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 99999;
    padding: 20px;
}

.unlock-modal-overlay.active{
    display: flex;
}

.unlock-modal{

    width: 100%;
    max-width: 450px;

    background: white;

    border-radius: 24px;
    overflow: hidden;

    animation: popupAnim 0.25s ease;
}

@keyframes popupAnim{

    from{
        transform: scale(0.9);
        opacity: 0;
    }

    to{
        transform: scale(1);
        opacity: 1;
    }

}

/* HEADER */

.unlock-header{

    padding: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #e5e7eb;
}

.unlock-header h2{

    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.unlock-close{

    border: none;
    background: transparent;

    font-size: 26px;

    cursor: pointer;
}

/* STEP */

.step-area{
    padding: 18px 20px 0;
}

.step-text{

    font-size: 14px;
    font-weight: 600;

    color: #6b7280;

    margin-bottom: 12px;
}

/* PROGRESS */

.progress-bar{

    width: 100%;
    height: 6px;

    background: #e5e7eb;

    border-radius: 999px;

    overflow: hidden;
}

.progress-fill{

    width: 50%;
    height: 100%;

    background: #2563eb;

    border-radius: 999px;

    transition: 0.3s;
}

/* STEP BOX */

.step-box{
    display: none;
    padding: 24px 20px 20px;
}

.step-box.active{
    display: block;
}

/* HEADING */

.step-heading{

    font-size: 18px;
    font-weight: 700;

    color: #111827;

    margin-bottom: 24px;
}

/* COURSE GRID */

.course-grid{

    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-bottom: 24px;
}

/* COURSE BUTTON */

.course-btn{
    height: 48px;
    border: none;
    border-radius: 14px;
    background: #f3f4f6;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.course-btn:hover{
    background: #dbeafe;
    color: #2563eb;
}

.course-btn.active{

    background: #2563eb;
    color: white;
}

/* NEXT BUTTON */

.next-btn,
.submit-btn{

    width: 100%;
    height: 54px;

    border: none;
    border-radius: 14px;

    background: linear-gradient(to right,#082f49,#2563eb);

    color: white;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

/* FORM */

.form-fields{

    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-bottom: 24px;
}

.form-fields input{

    width: 100%;
    height: 52px;

    border: none;
    outline: none;

    background: #f3f4f6;

    border-radius: 14px;

    padding: 0 16px;

    font-size: 14px;
}

/* PHONE */

.phone-row{

    display: flex;
    gap: 10px;
}

.country-code{

    width: 70px;
    height: 52px;

    border-radius: 14px;

    background: #f3f4f6;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;
}

/* STEP 2 BUTTONS */

.step2-buttons{

    display: flex;
    gap: 12px;
}

.back-btn{

    width: 120px;
    height: 54px;

    border-radius: 14px;

    border: 1px solid #d1d5db;

    background: white;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
}

/* NOTE */

.bottom-note{

    text-align: center;

    margin-top: 14px;

    font-size: 13px;
    color: #6b7280;
}

/* ===
LOCKED SECTION
==== */

.locked-section{
    position: relative;
}

/* BLUR LAYER */

.locked-section::before{

    content: "";

    position: absolute;
    inset: 0;

    backdrop-filter: blur(1px);

    background: rgba(255,255,255,0.03);

    z-index: 5;

    transition: 0.5s ease;
}

/* REMOVE BLUR AFTER UNLOCK */

.locked-section.unlocked::before{
    opacity: 0;
    visibility: hidden;
}

/* OVERLAY */

.overlay-box{
    z-index: 10;
}

/* HIDE OVERLAY AFTER UNLOCK */

.locked-section.unlocked .overlay-box{
    display: none;
}



/* ===
AFTER UNLOCK ROW COLOR
=== */

.locked-section.unlocked .light-row{

    background: #eef6f1;
}

/* ====
EXTRA CONTENT
=== */

.unlock-extra-content{

    display: none;

    padding: 16px;
    background: white;
}

/* SHOW AFTER UNLOCK */

.locked-section.unlocked .unlock-extra-content{

    display: block;
}

/* BOX */

.extra-box{

    background: #eef6f1;

    border: 1px solid #cce3d6;

    border-radius: 18px;

    padding: 24px;
}

/* HEADING */

.extra-box h3{

    font-size: 18px;
    font-weight: 700;

    color: #111827;

    margin-bottom: 18px;
}

/* LIST */

.extra-box ul{

    padding-left: 18px;

    display: flex;
    flex-direction: column;

    gap: 1px;
}

.extra-box li{

    font-size: 15px;
    color: #1f2937;
    line-height: 1.5;
}

/* BULLET COLOR */

.extra-box li::marker{

    color: #16a34a;   /* GREEN DOT */
    font-size: 20px;
}


/* MOBILE */

@media(max-width:640px){

    .unlock-modal{
        border-radius: 20px;
    }

    .course-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .step-heading{
        font-size: 16px;
    }

    .step2-buttons{
        flex-direction: column;
    }

    .back-btn{
        width: 100%;
    }

}