*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', Arial, sans-serif;
}

body{
    background:#f8faff;
    color:#1F2937;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* BUTTONS */

.btn-primary{
    background:#0D47C9;
    color:#fff;
    padding:12px 24px;
    border-radius:8px;
    display:inline-block;
    transition:0.3s;
}

.btn-primary:hover{
    background:#0939A6;
}

.btn-secondary{
    background:#FF8500;
    color:#fff;
    padding:12px 24px;
    border-radius:8px;
    display:inline-block;
    transition:0.3s;
}

.btn-secondary:hover{
    background:#0D47C9;
}

/* HEADER */

.header{
    width:100%;
    background:#ffffff;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:9999;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
}

/* LOGO */

.logo-box img{
    height:70px;
    width:auto;
    display:block;
}

/* MENU */

.menu{
    display:flex;
    align-items:center;
    gap:26px;
}

.menu a{
    color:#1F2937;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.menu a:hover{
    color:#FF8500;
}

/* DROPDOWN */

.dropdown{
    position:relative;
    padding:14px 0;
}

.dropbtn{
    background:none;
    border:none;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    color:#1F2937;
    transition:0.3s;
    padding:8px 0;
}

.dropbtn:hover{
    color:#FF8500;
}

.dropdown-content{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#ffffff;
    min-width:210px;
    border-radius:12px;
    box-shadow:0 12px 35px rgba(0,0,0,0.14);
    overflow:hidden;
    z-index:99999;
}

.dropdown:hover .dropdown-content{
    display:block;
}

.dropdown-content a{
    display:block;
    padding:14px 18px;
    color:#1F2937;
    font-size:15px;
    font-weight:600;
    border-bottom:1px solid #f1f1f1;
    white-space:nowrap;
}

.dropdown-content a:hover{
    background:#f8faff;
    color:#0D47C9;
}

/* HEADER BUTTON */

.header-btn{
    display:flex;
    align-items:center;
}

.become-btn{
    background:#FF8500;
    color:#ffffff;
    padding:14px 22px;
    border-radius:10px;
    font-weight:700;
    transition:0.3s;
    white-space:nowrap;
}

.become-btn:hover{
    background:#0D47C9;
}

/* HERO */

.hero{
    padding:80px 0;
    background:linear-gradient(135deg,#eef5ff,#ffffff);
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.hero h1{
    font-size:46px;
    color:#0D47C9;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:25px;
}

.hero-box{
    background:#ffffff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(13,71,201,0.12);
}

/* FOOTER */

.footer{
    background:#0D47C9;
    color:#ffffff;
    padding:30px 0;
    margin-top:50px;
    text-align:center;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .container{
        width:95%;
    }

    .logo-box img{
        height:80px;
    }

    .menu{
        gap:16px;
    }

    .menu a,
    .dropbtn{
        font-size:14px;
    }

    .become-btn{
        padding:12px 16px;
        font-size:14px;
    }
}

@media(max-width:900px){

    .navbar{
        flex-direction:column;
        gap:14px;
    }

    .menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .header-btn{
        justify-content:center;
    }

    .logo-box img{
        height:78px;
    }

    .hero-content{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:36px;
    }
}

@media(max-width:600px){

    .menu{
        gap:12px;
    }

    .menu a,
    .dropbtn{
        font-size:13px;
    }

    .logo-box img{
        height:70px;
    }

    .become-btn{
        padding:11px 14px;
        font-size:13px;
    }

    .hero{
        padding:50px 0;
    }

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:16px;
    }
}
/* AUTH PAGES */

.auth-section{
    min-height:100vh;
    background:linear-gradient(135deg,#eef5ff,#ffffff);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 15px;
}

.auth-box{
    width:100%;
    max-width:850px;
    background:#ffffff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 45px rgba(13,71,201,0.15);
}

.auth-box h2{
    text-align:center;
    font-size:32px;
    color:#0D47C9;
    margin-bottom:8px;
}

.auth-box p{
    text-align:center;
    color:#555;
    margin-bottom:25px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.auth-box input,
.auth-box textarea{
    width:100%;
    padding:15px;
    border:1px solid #dbe3f0;
    border-radius:10px;
    font-size:15px;
    outline:none;
}

.auth-box textarea{
    margin-top:18px;
    min-height:100px;
    resize:none;
}

.auth-box input:focus,
.auth-box textarea:focus{
    border-color:#0D47C9;
}

.auth-btn{
    width:100%;
    margin-top:22px;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#FF8500;
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
}

.auth-btn:hover{
    background:#0D47C9;
}

.auth-link{
    margin-top:18px;
}

.auth-link a{
    color:#FF8500;
    font-weight:700;
}

.error-msg{
    background:#ffe8e8;
    color:#c50000;
    padding:12px;
    border-radius:8px;
    margin-bottom:18px;
    text-align:center;
}

@media(max-width:768px){
    .form-grid{
        grid-template-columns:1fr;
    }

    .auth-box{
        padding:25px;
    }

    .auth-box h2{
        font-size:26px;
    }
}
/* STUDENT / TEACHER DASHBOARD */

.dashboard-wrapper{
    min-height:100vh;
    display:flex;
    background:#f8faff;
}

.sidebar{
    width:260px;
    background:#0D47C9;
    color:#fff;
    padding:25px 20px;
}

.sidebar h2{
    margin-bottom:30px;
    font-size:24px;
}

.sidebar a{
    display:block;
    color:#fff;
    padding:13px 15px;
    margin-bottom:10px;
    border-radius:8px;
    font-weight:600;
}

.sidebar a:hover{
    background:#FF8500;
}

.dashboard-main{
    flex:1;
    padding:30px;
}

.dashboard-top{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.dashboard-top h1{
    color:#0D47C9;
    font-size:28px;
}

.logout-btn{
    background:#FF8500;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    font-weight:700;
}

.activation-alert{
    background:#fff3e6;
    border-left:5px solid #FF8500;
    padding:22px;
    border-radius:12px;
    margin-bottom:25px;
}

.activation-alert h3{
    color:#0D47C9;
    margin-bottom:8px;
}

.activation-alert p{
    margin-bottom:15px;
}

.dashboard-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.dash-card{
    background:#fff;
    padding:24px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(13,71,201,0.10);
}

.dash-card h3{
    color:#FF8500;
    margin-bottom:10px;
}

.dash-card p{
    font-size:18px;
    font-weight:700;
    color:#1F2937;
}

.success-msg{
    background:#e8fff0;
    color:#087b32;
    padding:12px;
    border-radius:8px;
    margin-bottom:18px;
    text-align:center;
}

.login-box{
    max-width:480px;
}

.login-box input{
    margin-bottom:16px;
}

@media(max-width:900px){
    .dashboard-wrapper{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }

    .dashboard-cards{
        grid-template-columns:repeat(2,1fr);
    }

    .dashboard-top{
        flex-direction:column;
        gap:12px;
        text-align:center;
    }
}

@media(max-width:600px){
    .dashboard-main{
        padding:18px;
    }

    .dashboard-cards{
        grid-template-columns:1fr;
    }

    .dashboard-top h1{
        font-size:22px;
    }
}
/* PAYMENT ACTIVATION */

.payment-box{
    background:#ffffff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(13,71,201,0.12);
    max-width:650px;
}

.payment-box h2{
    color:#0D47C9;
    margin-bottom:10px;
}

.payment-box p{
    color:#555;
    margin-bottom:18px;
}

.qr-box{
    background:#f8faff;
    border:2px dashed #0D47C9;
    padding:20px;
    border-radius:15px;
    text-align:center;
    margin:25px 0;
}

.qr-box img{
    max-width:280px;
    width:100%;
    border-radius:12px;
}

.payment-box input{
    width:100%;
    padding:15px;
    border:1px solid #dbe3f0;
    border-radius:10px;
    margin-bottom:16px;
    font-size:15px;
}

.approved-box{
    background:#e8fff0;
    padding:25px;
    border-radius:15px;
    border-left:5px solid #087b32;
}

.pending-box{
    background:#fff3e6;
    padding:25px;
    border-radius:15px;
    border-left:5px solid #FF8500;
}

@media(max-width:600px){
    .payment-box{
        padding:24px;
    }

    .qr-box img{
        max-width:220px;
    }
}
.file-input{
    margin-top:18px;
    background:#fff;
}
.section-title{
    color:#0D47C9;
    margin:25px 0 15px;
}

.table-box{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(13,71,201,0.10);
    overflow-x:auto;
    margin-bottom:30px;
}

.table-box table{
    width:100%;
    border-collapse:collapse;
}

.table-box th,
.table-box td{
    padding:14px;
    border-bottom:1px solid #eee;
    text-align:left;
    font-size:14px;
}

.table-box th{
    background:#f8faff;
    color:#0D47C9;
}

.approve-btn{
    background:#0D47C9;
    color:#fff;
    padding:8px 12px;
    border-radius:6px;
    margin-right:6px;
    display:inline-block;
}

.reject-btn{
    background:#FF3B30;
    color:#fff;
    padding:8px 12px;
    border-radius:6px;
    display:inline-block;
}
.status-badge{
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:700;
    display:inline-block;
}

.status-badge.pending{
    background:#fff3e6;
    color:#c76b00;
}

.status-badge.submitted{
    background:#e8f1ff;
    color:#0D47C9;
}

.status-badge.approved,
.status-badge.active{
    background:#e8fff0;
    color:#087b32;
}

.status-badge.rejected,
.status-badge.blocked{
    background:#ffe8e8;
    color:#c50000;
}

.table-img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #0D47C9;
}
/* FRONTEND PAGE HERO */

.page-hero{
    background:linear-gradient(135deg,#0D47C9,#3b82f6);
    padding:70px 0;
    text-align:center;
    color:#fff;
}

.page-hero h1{
    font-size:42px;
    margin-bottom:12px;
}

.page-hero p{
    font-size:18px;
}

/* TUTOR LISTING */

.tutor-section{
    padding:60px 0;
}

.tutor-search-box{
    max-width:750px;
    margin:0 auto 40px;
    display:flex;
    background:#fff;
    border-radius:14px;
    box-shadow:0 12px 35px rgba(13,71,201,0.12);
    overflow:hidden;
}

.tutor-search-box input{
    flex:1;
    padding:17px 20px;
    border:none;
    outline:none;
    font-size:16px;
}

.tutor-search-box button{
    background:#FF8500;
    color:#fff;
    border:none;
    padding:0 32px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

.tutor-search-box button:hover{
    background:#0D47C9;
}

.tutor-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.tutor-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(13,71,201,0.12);
    transition:0.3s;
}

.tutor-card:hover{
    transform:translateY(-6px);
}

.tutor-img{
    height:240px;
    background:#f1f5ff;
}

.tutor-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.tutor-info{
    padding:24px;
}

.tutor-info h3{
    color:#0D47C9;
    font-size:22px;
    margin-bottom:12px;
}

.tutor-info p{
    color:#555;
    margin-bottom:8px;
    line-height:1.5;
}

.profile-btn{
    display:inline-block;
    margin-top:15px;
    background:#FF8500;
    color:#fff;
    padding:11px 18px;
    border-radius:8px;
    font-weight:700;
}

.profile-btn:hover{
    background:#0D47C9;
}

.no-data{
    grid-column:1/-1;
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(13,71,201,0.10);
}

.no-data h3{
    color:#0D47C9;
    margin-bottom:8px;
}

/* RESPONSIVE */

@media(max-width:992px){
    .tutor-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .page-hero h1{
        font-size:32px;
    }

    .tutor-search-box{
        flex-direction:column;
    }

    .tutor-search-box button{
        padding:15px;
    }

    .tutor-grid{
        grid-template-columns:1fr;
    }

    .tutor-img{
        height:220px;
    }
}
/* TUTOR PROFILE */

.profile-section{
    padding:60px 0;
}

.profile-layout{
    display:grid;
    grid-template-columns:330px 1fr;
    gap:35px;
    align-items:start;
}

.profile-left{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(13,71,201,0.12);
    text-align:center;
}

.profile-left img{
    width:230px;
    height:230px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #0D47C9;
    margin-bottom:18px;
}

.profile-left h2{
    color:#0D47C9;
    margin-bottom:10px;
}

.verified-badge{
    background:#e8fff0;
    color:#087b32;
    display:inline-block;
    padding:8px 14px;
    border-radius:20px;
    font-weight:700;
}

.profile-right{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(13,71,201,0.12);
}

.profile-right h2{
    color:#0D47C9;
    margin-bottom:25px;
}

.profile-info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.profile-info-grid div{
    background:#f8faff;
    padding:18px;
    border-radius:12px;
}

.profile-info-grid strong{
    color:#FF8500;
}

.profile-info-grid p{
    margin-top:6px;
    color:#1F2937;
    font-weight:600;
}

.request-box{
    margin-top:30px;
    background:#fff3e6;
    padding:25px;
    border-radius:15px;
    border-left:5px solid #FF8500;
}

.request-box h3{
    color:#0D47C9;
    margin-bottom:8px;
}

.request-box p{
    margin-bottom:18px;
}

@media(max-width:900px){
    .profile-layout{
        grid-template-columns:1fr;
    }

    .profile-left img{
        width:190px;
        height:190px;
    }
}

@media(max-width:600px){
    .profile-info-grid{
        grid-template-columns:1fr;
    }

    .profile-right{
        padding:22px;
    }
}
.status-badge.accepted{
    background:#e8fff0;
    color:#087b32;
}

.status-badge.rejected{
    background:#ffe8e8;
    color:#c50000;
}
/* CONTACT PAGE NEW DESIGN */

.contact-page{
    position:relative;
    padding:55px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(13,71,201,0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(255,133,0,0.10), transparent 30%),
        #f8faff;
    overflow:hidden;
}

.contact-page::before{
    content:"";
    position:absolute;
    left:-80px;
    top:120px;
    width:420px;
    height:420px;
    background:repeating-radial-gradient(circle, rgba(13,71,201,0.16) 0 1px, transparent 2px 12px);
    opacity:.35;
    border-radius:50%;
}

.contact-page::after{
    content:"";
    position:absolute;
    right:-100px;
    top:180px;
    width:480px;
    height:480px;
    background:repeating-radial-gradient(circle, rgba(255,133,0,0.18) 0 1px, transparent 2px 12px);
    opacity:.35;
    border-radius:50%;
}

.contact-heading{
    text-align:center;
    position:relative;
    z-index:2;
    margin-bottom:35px;
}

.contact-heading h1{
    font-size:52px;
    color:#0b2147;
    font-weight:800;
    margin-bottom:10px;
}

.contact-heading p{
    font-size:17px;
    color:#1F2937;
}

.contact-bg-icon{
    position:absolute;
    z-index:1;
    color:rgba(13,71,201,0.15);
    font-size:62px;
}

.icon-1{ top:70px; left:18%; }
.icon-2{ top:70px; right:30%; color:rgba(255,133,0,0.18); }
.icon-3{ top:80px; right:12%; color:rgba(255,133,0,0.35); }
.icon-4{ top:180px; right:8%; }

.contact-info-wrapper{
    position:relative;
    z-index:2;
    background:rgba(255,255,255,0.92);
    padding:25px 32px 30px;
    border-radius:18px;
    max-width:980px;
    margin:0 auto;
    text-align:center;
    box-shadow:0 15px 45px rgba(13,71,201,0.10);
}

.contact-small-title{
    color:#0D47C9;
    font-weight:700;
    margin-bottom:6px;
}

.contact-info-wrapper h2{
    font-size:34px;
    color:#0b2147;
    margin-bottom:8px;
}

.contact-subtitle{
    color:#555;
    margin-bottom:25px;
}

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.contact-info-card{
    background:#fff;
    border-radius:12px;
    padding:18px;
    text-align:left;
    display:flex;
    gap:16px;
    align-items:flex-start;
    box-shadow:0 8px 22px rgba(0,0,0,0.10);
    border:1px solid #edf2ff;
}

.contact-info-card i{
    font-size:34px;
    color:#FF8500;
    min-width:38px;
}

.contact-info-card h3{
    color:#6b7280;
    font-size:18px;
    margin-bottom:5px;
}

.contact-info-card h4{
    color:#FF8500;
    font-size:21px;
    margin-bottom:8px;
}

.contact-info-card p{
    color:#0b2147;
    line-height:1.6;
    font-size:15px;
}

.contact-main-box{
    position:relative;
    z-index:2;
    margin:18px auto 0;
    max-width:1160px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(13,71,201,0.10);
}

.contact-image-side{
    background:#f8faff;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    min-height:430px;
    position:relative;
    overflow:hidden;
}

.contact-image-side::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:
        radial-gradient(circle at 35% 45%, rgba(13,71,201,0.10), transparent 35%),
        repeating-radial-gradient(circle at left center, rgba(13,71,201,0.18) 0 1px, transparent 2px 12px),
        repeating-radial-gradient(circle at right center, rgba(255,133,0,0.18) 0 1px, transparent 2px 12px);
    opacity:.6;
}

.contact-image-side img{
    position:relative;
    z-index:2;
    width:100%;
    max-width:650px;
    max-height:520px;
    object-fit:contain;
}

.contact-form-side{
    padding:34px 38px;
    background:rgba(255,255,255,0.96);
}

.contact-form-side h2{
    font-size:28px;
    color:#0b2147;
    margin-bottom:22px;
}

.contact-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.contact-form-side input,
.contact-form-side textarea{
    width:100%;
    padding:15px;
    border:1px solid #dbe3f0;
    border-radius:8px;
    font-size:15px;
    outline:none;
}

.contact-form-side textarea{
    min-height:120px;
    margin-top:14px;
    resize:none;
}

.contact-form-side input:focus,
.contact-form-side textarea:focus{
    border-color:#0D47C9;
}

.contact-submit-btn{
    margin-top:16px;
    background:#FF8500;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.contact-submit-btn:hover{
    background:#0D47C9;
}

.map-wrapper{
    position:relative;
    z-index:2;
    max-width:1160px;
    margin:18px auto 0;
    background:#fff;
    padding:18px 22px 25px;
    border-radius:18px;
    box-shadow:0 18px 50px rgba(13,71,201,0.10);
}

.map-wrapper h2{
    text-align:center;
    color:#0b2147;
    margin-bottom:15px;
    font-size:24px;
}

.map-box{
    border-radius:14px;
    overflow:hidden;
}

@media(max-width:900px){
    .contact-heading h1{
        font-size:38px;
    }

    .contact-info-grid,
    .contact-main-box{
        grid-template-columns:1fr;
    }

    .contact-info-wrapper{
        padding:24px 20px;
    }

    .contact-image-side{
        min-height:330px;
    }

    .contact-image-side img{
        max-height:330px;
    }
}

@media(max-width:600px){
    .contact-page{
        padding:40px 0 50px;
    }

    .contact-heading h1{
        font-size:32px;
    }

    .contact-info-wrapper h2{
        font-size:26px;
    }

    .contact-info-card{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .contact-form-grid{
        grid-template-columns:1fr;
    }

    .contact-form-side{
        padding:24px;
    }

    .contact-image-side{
        min-height:280px;
    }

    .contact-image-side img{
        width:95%;
        max-height:480px;
    }

    .map-box iframe{
        height:300px;
    }
}
/* INNER HERO */

.inner-hero{
    background:linear-gradient(135deg,#0D47C9,#063B9E);
    padding:75px 0;
    text-align:center;
    color:#fff;
}

.inner-hero h1{
    font-size:46px;
    margin-bottom:12px;
}

.inner-hero p{
    font-size:18px;
}

/* COMMON HEADING */

.section-heading{
    text-align:center;
    margin-bottom:35px;
}

.section-heading span,
.about-content span,
.featured-blog span{
    color:#FF8500;
    font-weight:800;
}

.section-heading h2{
    color:#0D47C9;
    font-size:36px;
    margin:8px 0;
}

/* ABOUT */

.about-section{
    padding:70px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:center;
}

.about-image{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(13,71,201,0.12);
}

.about-image img{
    width:100%;
    display:block;
}

.about-content h2{
    font-size:38px;
    color:#0D47C9;
    margin:12px 0 18px;
}

.about-content p{
    line-height:1.8;
    color:#555;
    font-size:17px;
}

.about-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:24px;
}

.about-points div{
    background:#fff;
    padding:14px;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(13,71,201,0.08);
    font-weight:700;
}

.mission-section{
    padding:40px 0 70px;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.mission-card{
    background:#fff;
    padding:32px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 35px rgba(13,71,201,0.12);
}

.mission-card i{
    font-size:42px;
    color:#FF8500;
    margin-bottom:18px;
}

.mission-card h3{
    color:#0D47C9;
    font-size:24px;
    margin-bottom:12px;
}

.mission-card p{
    color:#555;
    line-height:1.7;
}

/* SUBJECTS */

.subjects-section{
    padding:65px 0;
}

.subject-search-box{
    max-width:700px;
    margin:0 auto 35px;
    display:flex;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(13,71,201,0.12);
    background:#fff;
}

.subject-search-box input{
    flex:1;
    padding:17px 20px;
    border:none;
    outline:none;
    font-size:16px;
}

.subject-search-box button{
    background:#FF8500;
    color:#fff;
    border:none;
    padding:0 32px;
    font-size:16px;
    font-weight:700;
}

.subjects-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

.subject-card{
    background:#fff;
    padding:28px 18px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 35px rgba(13,71,201,0.10);
    transition:.3s;
}

.subject-card:hover{
    transform:translateY(-6px);
}

.subject-card i{
    width:64px;
    height:64px;
    background:#eef5ff;
    color:#0D47C9;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:0 auto 16px;
}

.subject-card h3{
    color:#0D47C9;
    margin-bottom:8px;
}

.subject-card p{
    color:#555;
    margin-bottom:15px;
}

.subject-card a{
    color:#FF8500;
    font-weight:800;
}

/* BLOG */

.blog-section{
    padding:65px 0;
}

.featured-blog{
    background:#fff;
    border-radius:22px;
    padding:35px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:center;
    box-shadow:0 15px 40px rgba(13,71,201,0.12);
    margin-bottom:55px;
}

.featured-blog h2{
    font-size:36px;
    color:#0D47C9;
    margin:12px 0;
}

.featured-blog p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.featured-blog img{
    width:100%;
    border-radius:18px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(13,71,201,0.12);
}

.blog-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.blog-card div{
    padding:24px;
}

.blog-card span{
    color:#FF8500;
    font-weight:800;
}

.blog-card h3{
    color:#0D47C9;
    margin:10px 0;
}

.blog-card p{
    color:#555;
    line-height:1.6;
    margin-bottom:14px;
}

.blog-card a{
    color:#FF8500;
    font-weight:800;
}

.blog-cta{
    margin-top:55px;
    background:linear-gradient(135deg,#0D47C9,#063B9E);
    color:#fff;
    text-align:center;
    padding:45px;
    border-radius:22px;
}

.blog-cta h2{
    font-size:34px;
    margin-bottom:10px;
}

.blog-cta p{
    margin-bottom:22px;
}

.blog-cta a{
    background:#FF8500;
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    font-weight:800;
}

/* RESPONSIVE */

@media(max-width:1000px){
    .subjects-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .blog-grid,
    .mission-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .inner-hero h1{
        font-size:34px;
    }

    .about-grid,
    .featured-blog{
        grid-template-columns:1fr;
    }

    .subjects-grid,
    .blog-grid,
    .mission-grid{
        grid-template-columns:1fr;
    }

    .about-points{
        grid-template-columns:1fr;
    }

    .subject-search-box{
        flex-direction:column;
    }

    .subject-search-box button{
        padding:15px;
    }

    .about-content h2,
    .featured-blog h2,
    .section-heading h2{
        font-size:28px;
    }
}

/* HOME PAGE PREMIUM DESIGN */

.home-hero{
    padding:85px 0 60px;
    background:
        radial-gradient(circle at top left, rgba(13,71,201,0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(255,133,0,0.10), transparent 28%),
        linear-gradient(135deg,#f8faff,#ffffff);
    overflow:hidden;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:45px;
    align-items:center;
}

.hero-tag{
    display:inline-block;
    background:#eef5ff;
    color:#0D47C9;
    padding:10px 18px;
    border-radius:30px;
    font-weight:800;
    margin-bottom:18px;
}

.hero-text h1{
    font-size:56px;
    line-height:1.1;
    color:#0b2147;
    margin-bottom:20px;
}

.hero-text p{
    font-size:18px;
    color:#4b5563;
    line-height:1.8;
    max-width:620px;
    margin-bottom:28px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    max-width:560px;
}

.hero-stats div{
    background:#fff;
    padding:18px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(13,71,201,0.10);
    text-align:center;
}

.hero-stats h3{
    color:#FF8500;
    font-size:28px;
}

.hero-stats p{
    margin:0;
    font-size:14px;
    font-weight:700;
    color:#0b2147;
}

.hero-image{
    background:#fff;
    border-radius:30px;
    box-shadow:0 18px 50px rgba(13,71,201,0.14);
    padding:20px;
    position:relative;
}

.hero-image img{
    width:100%;
    display:block;
    border-radius:24px;
}

.quick-search-section{
    margin-top:-35px;
    position:relative;
    z-index:5;
}

.home-search-box{
    background:#fff;
    max-width:900px;
    margin:auto;
    display:flex;
    padding:15px;
    border-radius:18px;
    box-shadow:0 15px 45px rgba(13,71,201,0.16);
}

.home-search-box input{
    flex:1;
    border:none;
    outline:none;
    padding:16px;
    font-size:16px;
}

.home-search-box button{
    background:#FF8500;
    color:#fff;
    border:none;
    padding:0 32px;
    border-radius:12px;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
}

.home-search-box button:hover{
    background:#0D47C9;
}

.features-section,
.steps-section,
.subjects-preview{
    padding:70px 0;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.feature-card{
    background:#fff;
    padding:30px 24px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(13,71,201,0.10);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-7px);
}

.feature-card i{
    width:65px;
    height:65px;
    background:#eef5ff;
    color:#0D47C9;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:18px;
}

.feature-card h3{
    color:#0D47C9;
    margin-bottom:10px;
}

.feature-card p{
    color:#555;
    line-height:1.7;
}

.steps-section{
    background:#fff;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.step-card{
    background:#f8faff;
    padding:32px;
    border-radius:20px;
    border:1px solid #e6eeff;
    box-shadow:0 10px 30px rgba(13,71,201,0.08);
}

.step-card span{
    color:#FF8500;
    font-size:34px;
    font-weight:900;
}

.step-card h3{
    color:#0D47C9;
    margin:12px 0;
}

.step-card p{
    color:#555;
    line-height:1.7;
}

.subject-mini-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.subject-mini-grid a{
    background:#fff;
    padding:20px;
    text-align:center;
    border-radius:16px;
    color:#0D47C9;
    font-weight:800;
    box-shadow:0 10px 30px rgba(13,71,201,0.10);
    transition:.3s;
}

.subject-mini-grid a:hover{
    background:#FF8500;
    color:#fff;
}

.home-cta{
    padding:40px 0 80px;
}

.cta-box{
    background:linear-gradient(135deg,#0D47C9,#063B9E);
    color:#fff;
    padding:45px;
    border-radius:28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
}

.cta-box h2{
    font-size:36px;
    margin-bottom:8px;
}

.cta-box p{
    font-size:18px;
}

.cta-box a{
    background:#FF8500;
    color:#fff;
    padding:15px 28px;
    border-radius:12px;
    font-weight:900;
    white-space:nowrap;
}

@media(max-width:1000px){
    .hero-grid,
    .features-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero-text h1{
        font-size:44px;
    }

    .subject-mini-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .hero-grid,
    .features-grid,
    .steps-grid{
        grid-template-columns:1fr;
    }

    .home-hero{
        padding:55px 0 45px;
    }

    .hero-text h1{
        font-size:34px;
    }

    .hero-text p{
        font-size:16px;
    }

    .hero-stats{
        grid-template-columns:1fr;
    }

    .home-search-box{
        flex-direction:column;
    }

    .home-search-box button{
        padding:15px;
    }

    .cta-box{
        flex-direction:column;
        text-align:center;
        padding:32px 22px;
    }

    .cta-box h2{
        font-size:28px;
    }

    .subject-mini-grid{
        grid-template-columns:1fr;
    }
}

/* PREMIUM FOOTER */

.site-footer{
    background:linear-gradient(135deg,#071B45,#0D47C9);
    color:#fff;
    padding:70px 0 0;
    margin-top:70px;
    position:relative;
    overflow:hidden;
}

.site-footer::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:-160px;
    top:-180px;
    background:rgba(255,133,0,0.18);
    border-radius:50%;
}

.site-footer::after{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    left:-140px;
    bottom:-180px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
}

.footer-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.3fr;
    gap:35px;
}

.footer-brand img{
    max-width:260px;
    width:100%;
    height:auto;
    background:whitesmoke;
    padding:10px 14px;
    border-radius:12px;
    margin-bottom:18px;
    display:block;
}

.footer-brand p{
    line-height:1.8;
    color:#e6eeff;
    font-size:15px;
}

.site-footer h3{
    font-size:22px;
    margin-bottom:20px;
    color:#fff;
    position:relative;
}

.site-footer h3::after{
    content:"";
    width:45px;
    height:3px;
    background:#FF8500;
    position:absolute;
    left:0;
    bottom:-8px;
    border-radius:5px;
}

.footer-links a{
    display:block;
    color:#e6eeff;
    margin-bottom:12px;
    font-weight:600;
    transition:.3s;
}

.footer-links a:hover{
    color:#FF8500;
    padding-left:6px;
}

.footer-contact p{
    color:#e6eeff;
    margin-bottom:13px;
    line-height:1.6;
}

.footer-contact i{
    color:#FF8500;
    margin-right:8px;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:18px;
}

.footer-social a{
    width:42px;
    height:42px;
    background:#fff;
    color:#0D47C9;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.footer-social a:hover{
    background:#FF8500;
    color:#fff;
    transform:translateY(-5px);
}

.footer-bottom{
    position:relative;
    z-index:2;
    margin-top:45px;
    padding:20px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.18);
}

.footer-bottom p{
    color:#e6eeff;
    font-size:15px;
}

@media(max-width:992px){
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .site-footer{
        padding-top:50px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:left;
    }

    .footer-brand img{
        max-width:200px;
    }
}
.form-admin-box{
    background:#fff;
    padding:28px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(13,71,201,0.12);
    margin-bottom:30px;
}

.form-admin-box h2{
    color:#0D47C9;
    margin-bottom:20px;
}

.form-admin-box input,
.form-admin-box textarea{
    width:100%;
    padding:15px;
    border:1px solid #dbe3f0;
    border-radius:10px;
    margin-bottom:16px;
    font-size:15px;
    outline:none;
}

.form-admin-box textarea{
    min-height:120px;
    resize:vertical;
}

.form-admin-box input:focus,
.form-admin-box textarea:focus{
    border-color:#0D47C9;
}
.profile-admin-layout{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:25px;
    align-items:start;
}

.profile-preview-card{
    background:#fff;
    padding:28px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(13,71,201,0.12);
    text-align:center;
    position:sticky;
    top:20px;
}

.profile-preview-card img{
    width:145px;
    height:145px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #0D47C9;
    margin-bottom:15px;
}

.profile-preview-card h2{
    color:#0D47C9;
    font-size:22px;
    margin-bottom:8px;
}

.profile-preview-card p{
    color:#555;
    margin-bottom:12px;
}

.profile-form-box h2{
    color:#0D47C9;
    font-size:22px;
    margin:20px 0 15px;
    border-bottom:1px solid #e5ecff;
    padding-bottom:10px;
}

.form-admin-box select{
    width:100%;
    padding:15px;
    border:1px solid #dbe3f0;
    border-radius:10px;
    margin-bottom:16px;
    font-size:15px;
    outline:none;
    background:#fff;
}

.form-admin-box label{
    display:block;
    color:#0b2147;
    font-weight:700;
    margin-bottom:8px;
}

.doc-links{
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.doc-links a{
    background:#eef5ff;
    color:#0D47C9;
    padding:10px;
    border-radius:8px;
    font-weight:700;
}

.doc-links a:hover{
    background:#FF8500;
    color:#fff;
}

@media(max-width:900px){
    .profile-admin-layout{
        grid-template-columns:1fr;
    }

    .profile-preview-card{
        position:relative;
        top:0;
    }
}
.tutor-section .tutor-grid-new{
    display:grid !important;
    grid-template-columns:repeat(4,1fr) !important;
    gap:22px !important;
}

.tutor-section .tutor-card-new{
    background:#fff !important;
    border:1px solid #ddd !important;
    border-radius:8px !important;
    padding:20px !important;
    box-shadow:0 8px 25px rgba(0,0,0,0.08) !important;
}

.tutor-section .tutor-photo-wrap{
    width:105px !important;
    height:105px !important;
    border-radius:50% !important;
    margin:0 auto 12px !important;
    overflow:hidden !important;
}

.tutor-section .tutor-photo-wrap img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
}

.tutor-section .meet-tutor-btn{
    display:block !important;
    background:#0D47C9 !important;
    color:#fff !important;
    text-align:center !important;
    padding:12px !important;
    border-radius:5px !important;
    font-weight:700 !important;
    margin-top:15px !important;
}
/* OUR TUTOR CARD FINAL DESIGN */

.tutor-section{
    padding:60px 0;
    background:#f8faff;
}

.tutor-grid-new{
    display:grid !important;
    grid-template-columns:repeat(4,1fr) !important;
    gap:24px !important;
}

.tutor-card-new{
    background:#ffffff !important;
    border:1px solid #d6d6d6 !important;
    border-radius:6px !important;
    padding:22px 20px !important;
    box-shadow:0 8px 25px rgba(0,0,0,0.12) !important;
    transition:0.3s !important;
}

.tutor-card-new:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 35px rgba(13,71,201,0.18) !important;
}

.verified-line{
    color:#07824b !important;
    font-size:13px !important;
    margin-bottom:8px !important;
}

.verified-line i{
    margin-right:5px;
}

.tutor-photo-wrap{
    width:105px !important;
    height:105px !important;
    border-radius:50% !important;
    overflow:hidden !important;
    margin:0 auto 12px !important;
    background:#eef5ff !important;
}

.tutor-photo-wrap img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
}

.tutor-card-new h3{
    text-align:center !important;
    color:#0b2147 !important;
    font-size:19px !important;
    margin-bottom:4px !important;
    font-weight:800 !important;
}

.exp-text{
    text-align:center !important;
    color:#0b2147 !important;
    font-size:13px !important;
    margin-bottom:20px !important;
}

.tutor-meta p{
    color:#0b2147 !important;
    font-size:14px !important;
    line-height:1.5 !important;
    margin-bottom:8px !important;
}

.preference-box{
    background:#f1f1f1 !important;
    padding:10px 12px !important;
    margin:12px 0 !important;
}

.preference-box p{
    color:#0b2147 !important;
    font-size:14px !important;
    margin-bottom:6px !important;
}

.preference-box ol{
    padding-left:18px !important;
    margin:0 !important;
}

.preference-box li{
    color:#0b2147 !important;
    font-size:14px !important;
    line-height:1.6 !important;
}

.view-detail-link{
    display:inline-block !important;
    color:#0D47C9 !important;
    font-size:14px !important;
    margin:6px 0 18px !important;
}

.view-detail-link:hover{
    color:#FF8500 !important;
}

.meet-tutor-btn{
    display:block !important;
    width:100% !important;
    background:#0D47C9 !important;
    color:#ffffff !important;
    text-align:center !important;
    padding:12px !important;
    border-radius:5px !important;
    font-size:16px !important;
    font-weight:700 !important;
    transition:0.3s !important;
}

.meet-tutor-btn i{
    margin-right:8px !important;
}

.meet-tutor-btn:hover{
    background:#FF8500 !important;
    color:#ffffff !important;
}

/* RESPONSIVE */

@media(max-width:1200px){
    .tutor-grid-new{
        grid-template-columns:repeat(3,1fr) !important;
    }
}

@media(max-width:900px){
    .tutor-grid-new{
        grid-template-columns:repeat(2,1fr) !important;
    }
}

@media(max-width:600px){
    .tutor-grid-new{
        grid-template-columns:1fr !important;
    }

    .tutor-card-new{
        padding:20px !important;
    }
}
.dashboard-search-box{
    display:flex;
    background:#fff;
    padding:14px;
    border-radius:16px;
    box-shadow:0 12px 35px rgba(13,71,201,0.12);
    margin-bottom:28px;
}

.dashboard-search-box input{
    flex:1;
    border:none;
    outline:none;
    padding:14px;
    font-size:15px;
}

.dashboard-search-box button{
    background:#FF8500;
    color:#fff;
    border:none;
    padding:0 28px;
    border-radius:10px;
    font-weight:800;
    cursor:pointer;
}

.dashboard-search-box button:hover{
    background:#0D47C9;
}

.student-tutor-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.student-tutor-card{
    background:#fff;
    border:1px solid #d6d6d6;
    border-radius:8px;
    padding:22px 20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.10);
    transition:.3s;
}

.student-tutor-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 35px rgba(13,71,201,0.18);
}

.student-tutor-meta p{
    color:#0b2147;
    font-size:14px;
    line-height:1.5;
    margin-bottom:8px;
}

.request-sent-btn{
    width:100%;
    background:#e8fff0;
    color:#087b32;
    border:none;
    padding:12px;
    border-radius:6px;
    font-size:15px;
    font-weight:800;
}

@media(max-width:1100px){
    .student-tutor-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:650px){
    .dashboard-search-box{
        flex-direction:column;
        gap:12px;
    }

    .dashboard-search-box button{
        padding:14px;
    }

    .student-tutor-grid{
        grid-template-columns:1fr;
    }
}
/* TUTOR FULL DETAILS PAGE */

.tutor-detail-hero{
    background:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        radial-gradient(circle at top, rgba(13,71,201,.15), transparent 35%),
        #f3f6fb;
    padding:55px 0;
    text-align:center;
}

.tutor-detail-hero h1{
    color:#0b2147;
    font-size:30px;
    font-weight:700;
}

.tutor-detail-section{
    padding:0 0 70px;
    background:#f8faff;
}

.tutor-detail-box{
    background:#fff;
    border:1px solid #e2e8f0;
    display:grid;
    grid-template-columns:330px 1fr;
    gap:45px;
    padding:45px;
    box-shadow:0 12px 35px rgba(13,71,201,0.10);
}

.tutor-detail-left{
    text-align:center;
    padding-top:10px;
}

.tutor-detail-left img{
    width:115px;
    height:115px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

.tutor-detail-left h3{
    color:#0b2147;
    font-size:18px;
    margin-bottom:10px;
}

.fee-text{
    color:#ff2d2d;
    font-size:16px;
    margin-bottom:12px;
}

.green-contact-btn{
    background:#138a45;
    color:#fff;
    padding:9px 18px;
    border-radius:5px;
    display:inline-block;
    font-weight:700;
}

.green-contact-btn:hover{
    background:#0D47C9;
    color:#fff;
}

.tutor-detail-right h2{
    color:#0b2147;
    font-size:24px;
    margin-bottom:15px;
    margin-top:8px;
}

.about-tutor-text{
    color:#4b5563;
    line-height:1.8;
    margin-bottom:30px;
}

.details-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px 35px;
    margin-bottom:30px;
}

.details-grid p{
    color:#374151;
    font-size:15px;
}

.details-grid i,
.teaching-detail-box i{
    color:#9aa6b2;
    margin-right:8px;
}

.teaching-detail-box{
    margin-bottom:28px;
}

.teaching-detail-box p{
    color:#374151;
    margin-bottom:12px;
    font-size:15px;
}

.blue-contact-full{
    display:block;
    background:#0D47C9;
    color:#fff;
    padding:14px;
    text-align:center;
    border-radius:5px;
    font-size:18px;
    font-weight:700;
}

.blue-contact-full:hover{
    background:#FF8500;
    color:#fff;
}

@media(max-width:900px){
    .tutor-detail-box{
        grid-template-columns:1fr;
        padding:30px 22px;
    }

    .details-grid{
        grid-template-columns:1fr;
    }
}
/* BLOG DETAILS PAGE */

.blog-detail-banner{
    width:100%;
    height:420px;
    overflow:hidden;
    background:#eef5ff;
}

.blog-detail-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.blog-detail-section{
    padding:70px 0;
    background:#f8faff;
}

.blog-detail-box{
    background:#fff;
    padding:45px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(13,71,201,0.10);
}

.blog-category{
    background:#FF8500;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    display:inline-block;
    margin-bottom:20px;
}

.blog-detail-box h1{
    font-size:40px;
    color:#0D47C9;
    line-height:1.3;
    margin-bottom:18px;
}

.blog-meta{
    display:flex;
    gap:20px;
    margin-bottom:35px;
    color:#666;
    font-size:15px;
}

.blog-content{
    color:#374151;
    font-size:17px;
    line-height:2;
}

.blog-content p{
    margin-bottom:20px;
}

@media(max-width:768px){

    .blog-detail-banner{
        height:240px;
    }

    .blog-detail-box{
        padding:25px;
    }

    .blog-detail-box h1{
        font-size:28px;
    }

    .blog-content{
        font-size:15px;
        line-height:1.9;
    }

}
.student-tutor-card h3{
    text-align:center !important;
    color:#0b2147 !important;
    font-size:19px !important;
    font-weight:800 !important;
    margin:10px 0 6px !important;
}

.student-tutor-card .exp-text{
    text-align:center !important;
}
/* MOBILE HEADER FIX */

@media(max-width:768px){

    .header{
        padding:8px 0 !important;
    }

    .navbar{
        flex-direction:row !important;
        justify-content:space-between !important;
        align-items:center !important;
        gap:0 !important;
    }

    .logo-box img{
        height:55px !important;
        max-width:210px !important;
    }

    .menu,
    .header-btn{
        display:none !important;
    }

    .mobile-menu-btn{
        display:block !important;
        font-size:28px;
        color:#0D47C9;
        cursor:pointer;
    }
}
