
.featured-teachers-section .container-fluid{
    max-width:1760px;
    padding-left:35px;
    padding-right:35px;
}

.teacher-public-card{
    position:relative;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.06);
    min-height:auto;
    transition:all .3s ease;
}

.teacher-public-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,.10);
}

/* Image Section */
.teacher-public-card .courses-one__img-box{
    display:flex;
    justify-content:center;
    margin-top:10px;
    margin-bottom:15px;
}

.teacher-public-card .courses-one__img{
    width:150px;
    height:150px;
    border-radius:50%;
    overflow:hidden;
    position:relative;
    border:4px solid #f3f4f6;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
}

.teacher-public-card .courses-one__img{
    width:150px;
    height:150px;
    border-radius:50%;
    overflow:hidden;
    position:relative;
    border:4px solid #f8fafc;
    box-shadow:0 10px 25px rgba(8,49,79,.12);
    transition:.3s;
}

.teacher-public-card:hover .courses-one__img{
    transform:translateY(-3px);
}

/* Verified Badge */
.teacher-verified{
    position:absolute;
    top:10px;
    right:10px;
    background:#08314f;
    color:#fff;

    padding:3px 8px;  
    border-radius:15px;

    font-size:10px;   
    /* font-weight:600; */
    line-height:1.2;

    z-index:10;
    white-space:nowrap;
}

.teacher-verified i{
    margin-right:3px;
    font-size:10px;
}

/* Subject + Rating */
.teacher-card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
}

.teacher-subject{
    color:#f68302;
    font-size:14px;
    font-weight:700;
    font-style:italic;
    line-height:1.3;
}

.teacher-rating{
    color:#64748b;
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
}

.teacher-rating i{
    color:#6478ff;
    margin-right:4px;
    font-size:12px;
}

/* Teacher Details */
.teacher-info-list{
    margin:0;
    padding:0;
    list-style:none;
}

.teacher-info-list li{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    font-size:13px;
    color:#555;
    margin-bottom:9px;
    line-height:1.4;
    text-align:left;
}

.teacher-info-list li i{
    width:16px;
    color:#f68302;
    font-size:13px;
    flex-shrink:0;
}

/* Footer */
.teacher-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-top: 15px;
            padding-top: 12px;
            border-top: 1px solid #f1f5f9;
        }

        .teacher-card-footer .thm-btn {
            padding: 8px 16px;
            font-size: 12px;
            border-radius: 10px;
            white-space: nowrap;
            background: #F78F1A;
        }

        .teacher-card-footer .thm-btn:hover {
            background: #5b21b6;
        }

        .teacher-budget {
            font-size: 16px;
            font-weight: 700;
            color: #F78F1A;
            white-space: nowrap;
        }

/* Tablet */
@media(max-width:1399px){

    .teacher-public-card .courses-one__img{
        width:130px;
        height:130px;
    }

    .teacher-subject{
        font-size:13px;
    }

    .teacher-rating{
        font-size:13px;
    }

    .teacher-info-list li{
        font-size:12px;
    }

    .teacher-price{
        font-size:16px;
    }
}

/* Mobile */
@media(max-width:767px){

    .featured-teachers-section .container-fluid{
        padding-left:15px;
        padding-right:15px;
    }

    .teacher-public-card .courses-one__img{
        width:170px;
        height:170px;
    }

    .teacher-card-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .teacher-card-footer{
        flex-direction:column;
        align-items:flex-start;
    }
}



/* student card css start */

.featured-students-section .container-fluid {
            max-width: 1760px;
            padding-left: 35px;
            padding-right: 35px;
        }

        .student-public-card {
            position: relative;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, .06);
            transition: all .3s ease;
        }

        .student-public-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, .10);
        }

        .student-public-card .courses-one__img-box {
            display: flex;
            justify-content: center;
            margin-top: 10px;
            margin-bottom: 15px;
        }

        .student-public-card .courses-one__img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #f3f4f6;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .10);
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
            font-size: 52px;
            font-weight: 700;
            color: #fff;
        }

        .student-verified {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #6d28d9;
            color: #fff;
            padding: 3px 8px;
            border-radius: 15px;
            font-size: 10px;
            line-height: 1.2;
            z-index: 10;
            white-space: nowrap;
        }

        .student-verified i {
            margin-right: 3px;
            font-size: 10px;
        }

        .student-card-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .student-subject {
            color: #6d28d9;
            font-size: 14px;
            font-weight: 700;
            font-style: italic;
            line-height: 1.3;
        }

        .student-class-badge {
            background: #ede9fe;
            color: #6d28d9;
            font-size: 12px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            white-space: nowrap;
        }

        .student-info-list {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .student-info-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: #555;
            margin-bottom: 9px;
            line-height: 1.4;
        }

        .student-info-list li i {
            width: 16px;
            color: #6d28d9;
            font-size: 13px;
            flex-shrink: 0;
        }

        .student-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-top: 15px;
            padding-top: 12px;
            border-top: 1px solid #f1f5f9;
        }

        .student-card-footer .thm-btn {
            padding: 8px 16px;
            font-size: 12px;
            border-radius: 10px;
            white-space: nowrap;
            background: #6d28d9;
        }

        .student-card-footer .thm-btn:hover {
            background: #5b21b6;
        }

        .student-budget {
            font-size: 16px;
            font-weight: 700;
            color: #6d28d9;
            white-space: nowrap;
        }

        @media(max-width: 767px) {
            .featured-students-section .container-fluid {
                padding-left: 15px;
                padding-right: 15px;
            }

            .student-public-card .courses-one__img {
                width: 120px;
                height: 120px;
                font-size: 42px;
            }
        }


/* ── Auth Pages (login, register, otp, forgot, reset) ─────────────────────
   Theme header is position:absolute (~156px tall including topbar).
   Auth pages need top padding to clear it.
─────────────────────────────────────────────────────────────────────────── */
.auth-page-section {
    padding-top: 160px !important;
    padding-bottom: 80px !important;
    background: #f5f4f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .auth-page-section {
        padding-top: 130px !important;
    }
}

@media (max-width: 767px) {
    .auth-page-section {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
        align-items: flex-start;
    }
}
