.usf-wrapper {
    display: flex;
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
/* sidebar-css-here */
.usf-sidebar {
    width: 260px;
    background: #eef4f7;
    padding: 30px 20px;
    border-radius: 20px;
    position: relative;
}

/* LOGO */
.usf-logo {
    text-align: center;
    margin-bottom: 30px;
}

.usf-logo img {
    max-width: 120px;
}

/* STEPS */
.usf-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.usf-steps li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 30px;
    color: #7a8a97;
    font-weight: 500;
}

/* NUMBER CIRCLE */
.usf-steps li::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #dbe7ef;
    color: #555;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
}

/* ACTIVE STEP */
.usf-steps li.active {
    color: #0aa5c5;
    font-weight: 600;
}

.usf-steps li.active::before {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
}

/* VERTICAL LINE */
.usf-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 35px;
    width: 2px;
    height: 30px;
    background: #cfe0ea;
}

/* HELP TEXT */
.usf-help {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
    color: #555;
}

.usf-help span {
    display: block;
    font-size: 12px;
    color: #999;
}

.usf-content {
    flex: 1;
    padding: 40px;
}

.usf-step {
    display: none;
}

.usf-step.active {
    display: block;
}

/* step-1-css-here
 */
.usf-heading {
    text-align: center;
    margin-bottom: 30px;
}

.usf-heading h1 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #111 !important;
}

.usf-heading h1 span {
    color: #0aa5c5;
    letter-spacing: 1px;
}

.usf-heading p {
    color: #777;
    font-size: 14px;
    margin-top: 10px;
}
/* GRID PERFECT LIKE FIGMA */
.usf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

/* CARD */
.usf-card {
    cursor: pointer;
}

.usf-card input {
    display: none; /* ❌ hide radio */
}

.usf-card-inner {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6e6e6;

    /* 👇 shadow fix */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);

    transition: all 0.25s ease;
}

/* IMAGE */
.usf-card-inner img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

/* TEXT */
.usf-card-text {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

/* hover */
.usf-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ACTIVE SELECT (IMPORTANT 🔥) */
.usf-card input:checked + .usf-card-inner {
    border: 2px solid #00A6C7;
    box-shadow: 0 0 0 4px rgba(0,166,199,0.15);
}
/* TEXT */
.usf-card-text {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.usf-card-text span {
    display: block;
    font-size: 12px;
    color: #888;
}


.usf-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

button {
    margin-top: 20px;
    padding: 12px 20px !important;
    border: none;
    border-radius: 8px !important;
    background: linear-gradient(90deg, #03c4e7, #03c4e7) !important;
    color: #fff !important;
    font-size: 16px !important;
    cursor: pointer;
    /* width: 220px; */
}

/* step-2-css-start here */
/* TITLE */
.usf-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* LEVEL GRID */
.usf-level-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* LEVEL CARD */
.usf-level-card input {
    display: none;
}

.usf-level-box {
    border: 1px solid #ddd;
    border-radius: 9px;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
    box-shadow: 0 0 0 3px rgb(174 174 174 / 23%);
}
.usf-level-box h4 {
    font-size: 18px;
    margin: 0;
    padding: 0;
}
.usf-level-box p {
    margin: 0;
}
/* ACTIVE */
.usf-level-card input:checked + .usf-level-box {
    border: 2px solid #00A6C7;
    box-shadow: 0 0 0 3px rgb(0 166 199 / 23%);
	background: #81e1f3 !important;
}

/* INTAKE GRID */
.usf-intake-grid {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* PILL BUTTON */
.usf-pill input {
    display: none;
}

.usf-pill span {
    display: block;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

/* ACTIVE PILL */
.usf-pill input:checked + span {
    border: 2px solid #03c4e7;
    background: #f3f1ff;
    box-shadow: 0 0 0 3px rgb(0 166 199 / 23%);
	background: #81e1f3 !important;
}

/* BUTTON */
.usf-next {
    margin-top: 30px;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg,#00A6C7,#00d2ff);
    color: #fff;
    cursor: pointer;
    opacity: 0.6;
}

.usf-next.active {
    opacity: 1;
}

/* step-3-css-start here */
/* GRID */
.usf-program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 25px;
}

/* HIDE RADIO */
.usf-program-pill input {
    display: none;
}

/* PILL STYLE */
.usf-program-pill span {
    display: block;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: 0.3s;
}

/* HOVER */
.usf-program-pill span:hover {
    border-color: #00A6C7;
}

/* ACTIVE */
.usf-program-pill input:checked + span {
    border: 2px solid #00A6C7;
    background: #eef9fc;
	box-shadow: 0 0 0 3px rgb(0 166 199 / 23%);
	background: #81e1f3 !important;
}
/* =========================
COURSE SEARCH
========================= */

.usf-course-search-wrap{
    margin-top:30px;
    width:100%;
	max-width:700px;}

.usf-course-label{
    display:block;
    font-size:18px;
    font-weight:600;
    margin-bottom:12px;
    color:#111 !important;
}

.usf-course-search-box{
    position:relative;
    width:100%;
}

.usf-course-search-input{
    width:100% !important;
    height:60px !important;
    border:1px solid #dcdcdc !important;
    border-radius:14px !important;
    padding:0 20px !important;
    font-size:18px !important;
    background:#fff !important;
    outline:none !important;
    box-shadow:none !important;
    transition:0.3s;
}

.usf-course-search-input:focus{
    border-color:#12c7ea !important;
    box-shadow:0 0 0 4px rgba(18,199,234,0.12) !important;
}

.usf-course-dropdown{
    position:absolute;
    top:68px;
    left:0;
    width:100%;
    max-height:320px;
    overflow-y:auto;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    display:none;
    z-index:9999;
}

.usf-course-item{
    padding:14px 18px;
    font-size:16px;
    cursor:pointer;
    transition:0.2s;
    border-bottom:1px solid #f3f3f3;
}

.usf-course-item:last-child{
    border-bottom:none;
}

.usf-course-item:hover{
    background:#12c7ea !important;
    color:#fff !important;
}

.usf-course-dropdown::-webkit-scrollbar{
    width:6px;
}

.usf-course-dropdown::-webkit-scrollbar-thumb{
    background:#12c7ea;
    border-radius:20px;
}
/* step-4-css-start-here */
/* CENTER LAYOUT */
.usf-center-box {
    max-width: 500px;
    margin: 80px auto;
    text-align: center;
}

/* TITLE */
.usf-title {
    font-size: 22px !important;
    margin-bottom: 25px !important;
    color: #2d2d2d !important;
}

/* LABEL */
.usf-label {
    display: block ;
    text-align: left;
    font-size: 14px !important;
    margin-bottom: 6px !important;
    color: #444;
	font-weight: 700;
}
.usf-question h4 {
    font-size: 19px !important;
}
.usf-label span {
    color: red;
}

/* INPUT */
.usf-input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.usf-input:focus {
    border-color: #00A6C7;
    outline: none;
}

/* BUTTON */
.usf-next {
    background: linear-gradient(135deg, #00A6C7, #00c6ff);
    border: none;
    color: #fff;
    padding: 12px 35px;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
}

.usf-next.active {
    opacity: 1;
}

/* PREV BUTTON */
.usf-prev {
    background: #eaeaea;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    cursor: pointer;
}
/* HEADING BIG */
.usf-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: #2d2d2d;
    line-height: 1.5;
}

/* thank-you-msg */
#formSuccess h2{
    font-size:32px;
    color:#00a6c7;
}

#formSuccess p{
    font-size:16px;
    margin:10px 0 20px;
}

.usf-btn{
    background:#00a6c7;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:8px;
    cursor:pointer;
}

.usf-success-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.usf-success-left {
    width: 40%;
}

.usf-success-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.usf-success-left .sub-text {
    color: #777;
    font-size: 14px;
}

.usf-success-right {
    width: 60%;
}

.usf-question {
    margin-bottom: 25px;
}

.usf-options {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.usf-options label {
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.usf-options input {
    display: none;
}


.usf-option.active {
    background: #0bb;
    color: #fff;
    border-color: #0bb;
}

.usf-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
}


/* step-7-css */
.usf-test-options {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.usf-test-card {
    border: 1px solid #ddd;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.usf-test-card input {
    display: none;
}

.usf-test-card.active {
    border: 2px solid #03c4e7 !important;
    background: #81e1f3 !important;
	box-shadow: 0 0 0 3px rgb(0 166 199 / 23%);
}
input.usf-input {
    margin-top: 8px !important;
}
.usf-step h3 {
    font-size: 21px !important;
    margin-top: 15px;
}
.usf-step h2 {
    font-size: 22px !important;
    margin-top: 15px;
}
.usf-score-box {
    margin-top: 20px;
}

.usf-score-box input {
    width: 100%;
}
/* STEP 9 ROW FIX */
.usf-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 45px !important;
    margin-bottom: 25px !important;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: end;
    justify-items: stretch;
}

/* LABEL */
.usf-row label {
    display: block !important;
    margin-bottom: 6px !important;
    font-weight: 500 !important;
    color: #333 !important;
}

/* INPUT + SELECT */
.usf-row input,
.usf-row select {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    background: #fff !important;
    transition: all 0.3s ease !important;
}

/* FOCUS */
.usf-row input:focus,
.usf-row select:focus {
    border-color: #00A6C7 !important;
    box-shadow: 0 0 0 2px rgba(0,166,199,0.1) !important;
    outline: none !important;
}

/* YEAR INPUT SPECIAL */
.year-input {
    text-align: center !important;
    letter-spacing: 2px !important;
    font-weight: 500 !important;
}

/* ENGLISH SCORE FULL WIDTH */
.usf-step > div:last-of-type {
    margin-top: 10px !important;
}

.usf-step > div:last-of-type input {
    width: 100% !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .usf-row {
        grid-template-columns: 1fr !important;
    }
}


.usf-success-step {
    display: flex;
    justify-content: center;
    align-items: center;
}

.usf-success-box {
    background: #f8fbfb;
    padding: 40px;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.usf-success-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.usf-success-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

/* 🔥 YOUR THEME BUTTON */
.usf-dashboard-btn {
    background: linear-gradient(135deg, #0aa7a5, #0f7c82);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 30px;
}

.usf-dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* POINTS */
.usf-success-points {
    text-align: left;
    margin-top: 20px;
}

.usf-point {
    padding: 10px 0;
    font-size: 15px;
    color: #333;
}

.usf-success-step {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.usf-success-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.usf-success-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.usf-success-card h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.usf-success-card p {
    color: #555;
    margin-bottom: 25px;
}

/* 🔥 YOUR THEME BUTTON */
.usf-dashboard-btn {
    background: linear-gradient(135deg, #0aa7a5, #0f7c82);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.usf-dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.usf-divider {
    height: 1px;
    background: #eee;
    margin: 25px 0;
}

.usf-features div {
    padding: 6px 0;
    color: #333;
    font-size: 14px;
}


.usf-question {
    margin-bottom: 25px;
}

.usf-options {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.usf-option {
    border: 1px solid #ddd;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.usf-option input {
    display: none;
}

.usf-option.active {
    border: 2px solid #03c4e7 !important;
    background: #81e1f3 !important;
    box-shadow: 0 0 0 3px rgb(0 166 199 / 23%);
    color: #000;
}
.usf-success-step {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    display: none;
    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,0.4);
    z-index: 9999;
}

.usf-step.active.usf-success-step {
    display: flex;
}

@media only screen and (max-width: 767px) {
.usf-wrapper {
    display: flex;
    max-width: 1090px;
    margin: 40px auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    flex-direction: column;
}
	.usf-sidebar {
    width: 369px;
    background: #eef4f7;
    padding: 30px 20px;
    border-radius: 20px;
    position: relative;
    margin: 10px;
}
	form#usfForm {
    background: #ecf4f7;
    padding: 20px;
    border-radius: 20px;
}
	.usf-content {
    flex: 1;
    padding: 20px;
}
	.usf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 3px;
}
	.usf-program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 25px;
}
	.usf-test-options {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-direction: column;
}
}

.flatpickr-input {
    cursor: pointer;
}