/*
|--------------------------------------------------------------------------
| HomeTutorMarketplace
| HTM Core Framework v5.0
|--------------------------------------------------------------------------
| File        : site.css
| Author      : Deepak Kumar
| Description : Public Website Global Styles
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| HTML
|--------------------------------------------------------------------------
*/

html{

    scroll-behavior:smooth;

}

/*
|--------------------------------------------------------------------------
| Body
|--------------------------------------------------------------------------
*/

body{

    font-family:var(--bs-font-sans-serif);

    font-size:15px;

    font-weight:400;

    line-height:1.7;

    color:var(--bs-body-color);

    background:var(--bs-body-bg);

    overflow-x:hidden;

}

/*
|--------------------------------------------------------------------------
| Links
|--------------------------------------------------------------------------
*/

a{

    color:var(--bs-primary);

    text-decoration:none;

    transition:var(--htm-transition);

}

a:hover{

    color:var(--htm-primary-dark);

    text-decoration:none;

}

/*
|--------------------------------------------------------------------------
| Images
|--------------------------------------------------------------------------
*/

img{

    max-width:100%;

    height:auto;

    display:block;

}

/*
|--------------------------------------------------------------------------
| Typography
|--------------------------------------------------------------------------
*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-weight:700;

    color:var(--bs-dark);

    margin-bottom:1rem;

}

p{

    margin-bottom:1rem;

    color:var(--htm-text-muted);

}

/*
|--------------------------------------------------------------------------
| Sections
|--------------------------------------------------------------------------
*/

section{

    position:relative;

    padding:80px 0;

}

/*
|--------------------------------------------------------------------------
| Bootstrap Container
|--------------------------------------------------------------------------
*/

.container{

    max-width:var(--htm-container);

}

/*
|--------------------------------------------------------------------------
| Bootstrap Card Enhancement
|--------------------------------------------------------------------------
*/

.card{

    border:none;

    border-radius:var(--bs-border-radius-lg);

}

/*
|--------------------------------------------------------------------------
| Bootstrap Buttons
|--------------------------------------------------------------------------
*/

.btn{

    font-weight:600;

    border-radius:var(--bs-border-radius);

    transition:var(--htm-transition);

}

.btn:focus{

    box-shadow:none;

}

/*
|--------------------------------------------------------------------------
| Bootstrap Forms
|--------------------------------------------------------------------------
*/

.form-control,
.form-select{

    min-height:50px;

    border-radius:var(--bs-border-radius);

    border-color:var(--bs-border-color);

}

.form-control:focus,
.form-select:focus{

    border-color:var(--bs-primary);

    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);

}

/*
|--------------------------------------------------------------------------
| Lists
|--------------------------------------------------------------------------
*/

ul{

    margin:0;

    padding:0;

    list-style:none;

}

/*
|--------------------------------------------------------------------------
| Utilities
|--------------------------------------------------------------------------
*/

.htm-rounded{

    border-radius:var(--bs-border-radius-lg);

}

.htm-shadow{

    box-shadow:var(--htm-shadow);

}

.htm-shadow-lg{

    box-shadow:var(--htm-shadow-lg);

}

.htm-transition{

    transition:var(--htm-transition);

}

.cursor-pointer{

    cursor:pointer;

}

/*
|--------------------------------------------------------------------------
| Glass Utility
|--------------------------------------------------------------------------
*/

.htm-glass{

    background:var(--htm-glass-bg);

    border:1px solid var(--htm-glass-border);

    backdrop-filter:blur(var(--htm-glass-blur));

    -webkit-backdrop-filter:blur(var(--htm-glass-blur));

}

/*
|--------------------------------------------------------------------------
| Selection
|--------------------------------------------------------------------------
*/

::selection{

    background:var(--bs-primary);

    color:#fff;

}

/*
|--------------------------------------------------------------------------
| Scrollbar
|--------------------------------------------------------------------------
*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EDF2F7;

}

::-webkit-scrollbar-thumb{

    background:var(--bs-primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--htm-primary-dark);

}
/*
|--------------------------------------------------------------------------
| Navbar
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Premium Navbar
|--------------------------------------------------------------------------
*/

.htm-navbar{

    background:#16213e;

    min-height:85px;

    box-shadow:0 10px 30px rgba(0,0,0,.20);

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.30s;

}

.htm-logo{

    width:240px;

    height:auto;

    transition:.30s;

}

.htm-logo:hover{

    transform:scale(1.03);

}

.navbar-nav{

    gap:8px;

}

.navbar .nav-link{

    color:#ffffff !important;

    font-size:15px;

    font-weight:500;

    padding:12px 14px;

    border-radius:10px;

    transition:.30s;

}

.navbar .nav-link:hover{

    color:#FFD54A !important;

    background:rgba(255,255,255,.08);

}

.navbar .nav-link.active{

    color:#FFD54A !important;

}

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

.btn-htm-secondary{

    padding:12px 24px;

    border-radius:12px;

}
/* ==========================================================
   Subjects Page
   ========================================================== */

.subject-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 20px;
    min-height: 125px;

    background: #ffffff;
    border: 1px solid #dfe7f5;
    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(25, 55, 100, 0.06);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* Top Gradient Line */

.subject-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #0d6efd,
        #4f46e5,
        #ff8a00
    );
}


/* Hover */

.subject-card:hover {
    transform: translateY(-6px);

    border-color: #b9cdf5;

    box-shadow:
        0 15px 35px rgba(25, 55, 100, 0.12);
}


/* Subject Icon */

.subject-card-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

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

    background: #edf4ff;
    color: #0d6efd;

    border-radius: 16px;

    font-size: 24px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


/* Icon Hover */

.subject-card:hover .subject-card-icon {
    background: #0d6efd;
    color: #ffffff;

    transform: scale(1.08);
}


/* Content */

.subject-card-content {
    min-width: 0;
}


/* Subject Name */

.subject-card-title {
    margin: 0 0 8px;

    color: #0b1736;

    font-size: 18px;
    font-weight: 700;
}

.subject-card-count {
    margin-bottom: 7px;

    color: #6b7a99;

    font-size: 13px;
    font-weight: 500;
}


/* Find Tutors */

.subject-card-link {
    color: #0d6efd;

    font-size: 13px;
    font-weight: 600;
}


/* Arrow */

.subject-card-link i {
    transition: transform 0.2s ease;
}

.subject-card:hover .subject-card-link i {
    transform: translateX(4px);
}


/* ==========================================================
   Subjects Page - Mobile
   ========================================================== */

@media (max-width: 575.98px) {

    .subject-card {
        min-height: 110px;

        padding: 20px 15px;

        gap: 12px;

        border-radius: 15px;
    }

    .subject-card-icon {
        flex: 0 0 48px;

        width: 48px;
        height: 48px;

        border-radius: 13px;

        font-size: 20px;
    }

    .subject-card-title {
        font-size: 16px;
    }

    .subject-card-link {
        font-size: 12px;
    }

}
/* ==========================================================
   Subjects Search
   ========================================================== */

.subject-search-box {
    position: relative;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.subject-search-input {
    height: 56px;

    padding-left: 52px;
    padding-right: 50px;

    background: #ffffff;

    border: 1px solid #dfe7f5;
    border-radius: 16px;

    font-size: 15px;

    box-shadow: 0 8px 25px rgba(25, 55, 100, 0.06);
}

.subject-search-input:focus {
    border-color: #0d6efd;

    box-shadow:
        0 0 0 3px rgba(13, 110, 253, 0.10),
        0 10px 30px rgba(25, 55, 100, 0.08);
}

.subject-search-icon {
    position: absolute;

    top: 50%;
    left: 20px;

    transform: translateY(-50%);

    color: #0d6efd;

    font-size: 18px;

    z-index: 2;
}

.subject-search-clear {
    position: absolute;

    top: 50%;
    right: 15px;

    width: 32px;
    height: 32px;

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

    transform: translateY(-50%);

    border: none;
    border-radius: 50%;

    background: #edf4ff;
    color: #0d6efd;

    cursor: pointer;
}

.subject-search-clear:hover {
    background: #0d6efd;
    color: #ffffff;
}

.subject-search-clear.show {
    display: flex;
}


/* No Results */

.subject-no-results {
    display: none;

    padding: 45px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #dfe7f5;
    border-radius: 18px;

    color: #6b7a99;
}

.subject-no-results i {
    margin-bottom: 12px;

    font-size: 32px;

    color: #0d6efd;
}
/* ==========================================================
   Classes Page
   ========================================================== */

.class-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 24px 20px;

    min-height: 125px;

    background: #ffffff;

    border: 1px solid #dfe7f5;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(25, 55, 100, 0.06);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* Top Gradient */

.class-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #0d6efd,
        #4f46e5,
        #ff8a00
    );

}


/* Hover */

.class-card:hover {

    transform: translateY(-6px);

    border-color: #b9cdf5;

    box-shadow:
        0 15px 35px rgba(25, 55, 100, 0.12);

}


/* Class Icon */

.class-card-icon {

    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: flex;

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

    background: #edf4ff;

    color: #0d6efd;

    border-radius: 16px;

    font-size: 24px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;

}


/* Icon Hover */

.class-card:hover .class-card-icon {

    background: #0d6efd;

    color: #ffffff;

    transform: scale(1.08);

}


/* Content */

.class-card-content {

    min-width: 0;

}


/* Class Name */

.class-card-title {

    margin: 0 0 8px;

    color: #0b1736;

    font-size: 18px;

    font-weight: 700;

}


/* Tutor Count */

.class-card-count {

    margin-bottom: 7px;

    color: #6b7a99;

    font-size: 13px;

    font-weight: 500;

}


/* Find Tutors */

.class-card-link {

    color: #0d6efd;

    font-size: 13px;

    font-weight: 600;

}


/* Arrow */

.class-card-link i {

    transition:
        transform 0.2s ease;

}


.class-card:hover .class-card-link i {

    transform: translateX(4px);

}


/* ==========================================================
   Class Search
   ========================================================== */

.class-search-box {

    position: relative;

    max-width: 650px;

    margin-left: auto;

    margin-right: auto;

}


.class-search-input {

    height: 56px;

    padding-left: 52px;

    padding-right: 50px;

    background: #ffffff;

    border: 1px solid #dfe7f5;

    border-radius: 16px;

    font-size: 15px;

    box-shadow:
        0 8px 25px rgba(25, 55, 100, 0.06);

}


.class-search-input:focus {

    border-color: #0d6efd;

    box-shadow:
        0 0 0 3px rgba(13, 110, 253, 0.10),
        0 10px 30px rgba(25, 55, 100, 0.08);

}


.class-search-icon {

    position: absolute;

    top: 50%;
    left: 20px;

    transform: translateY(-50%);

    color: #0d6efd;

    font-size: 18px;

    z-index: 2;

}


.class-search-clear {

    position: absolute;

    top: 50%;
    right: 15px;

    width: 32px;
    height: 32px;

    display: none;

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

    transform: translateY(-50%);

    border: none;

    border-radius: 50%;

    background: #edf4ff;

    color: #0d6efd;

    cursor: pointer;

}


.class-search-clear.show {

    display: flex;

}


.class-search-clear:hover {

    background: #0d6efd;

    color: #ffffff;

}


/* ==========================================================
   No Results
   ========================================================== */

.class-no-results {

    display: none;

    padding: 45px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #dfe7f5;

    border-radius: 18px;

    color: #6b7a99;

}


.class-no-results i {

    margin-bottom: 12px;

    font-size: 32px;

    color: #0d6efd;

}


/* ==========================================================
   Classes Page - Mobile
   ========================================================== */

@media (max-width: 575.98px) {

    .class-card {

        min-height: 110px;

        padding: 20px 15px;

        gap: 12px;

        border-radius: 15px;

    }


    .class-card-icon {

        flex: 0 0 48px;

        width: 48px;
        height: 48px;

        border-radius: 13px;

        font-size: 20px;

    }


    .class-card-title {

        font-size: 16px;

    }


    .class-card-count {

        font-size: 12px;

    }


    .class-card-link {

        font-size: 12px;

    }

}
/* ==========================================================
   Cities Page
   ========================================================== */

.city-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 24px 20px;

    min-height: 125px;

    background: #ffffff;

    border: 1px solid #dfe7f5;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(25, 55, 100, 0.06);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* Top Gradient */

.city-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #0d6efd,
        #4f46e5,
        #ff8a00
    );

}


/* Hover */

.city-card:hover {

    transform: translateY(-6px);

    border-color: #b9cdf5;

    box-shadow:
        0 15px 35px rgba(25, 55, 100, 0.12);

}


/* City Icon */

.city-card-icon {

    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: flex;

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

    background: #edf4ff;

    color: #0d6efd;

    border-radius: 16px;

    font-size: 24px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;

}


/* Icon Hover */

.city-card:hover .city-card-icon {

    background: #0d6efd;

    color: #ffffff;

    transform: scale(1.08);

}


/* Content */

.city-card-content {

    min-width: 0;

}


/* City Name */

.city-card-title {

    margin: 0 0 8px;

    color: #0b1736;

    font-size: 18px;

    font-weight: 700;

}


/* Tutor Count */

.city-card-count {

    margin-bottom: 7px;

    color: #6b7a99;

    font-size: 13px;

    font-weight: 500;

}


/* Find Tutors */

.city-card-link {

    color: #0d6efd;

    font-size: 13px;

    font-weight: 600;

}


/* Arrow */

.city-card-link i {

    transition:
        transform 0.2s ease;

}


.city-card:hover .city-card-link i {

    transform: translateX(4px);

}


/* ==========================================================
   City Search
   ========================================================== */

.city-search-box {

    position: relative;

    max-width: 650px;

    margin-left: auto;

    margin-right: auto;

}


.city-search-input {

    height: 56px;

    padding-left: 52px;

    padding-right: 50px;

    background: #ffffff;

    border: 1px solid #dfe7f5;

    border-radius: 16px;

    font-size: 15px;

    box-shadow:
        0 8px 25px rgba(25, 55, 100, 0.06);

}


.city-search-input:focus {

    border-color: #0d6efd;

    box-shadow:
        0 0 0 3px rgba(13, 110, 253, 0.10),
        0 10px 30px rgba(25, 55, 100, 0.08);

}


.city-search-icon {

    position: absolute;

    top: 50%;
    left: 20px;

    transform: translateY(-50%);

    color: #0d6efd;

    font-size: 18px;

    z-index: 2;

}


.city-search-clear {

    position: absolute;

    top: 50%;
    right: 15px;

    width: 32px;
    height: 32px;

    display: none;

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

    transform: translateY(-50%);

    border: none;

    border-radius: 50%;

    background: #edf4ff;

    color: #0d6efd;

    cursor: pointer;

}


.city-search-clear.show {

    display: flex;

}


.city-search-clear:hover {

    background: #0d6efd;

    color: #ffffff;

}


/* ==========================================================
   No Results
   ========================================================== */

.city-no-results {

    display: none;

    padding: 45px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #dfe7f5;

    border-radius: 18px;

    color: #6b7a99;

}


.city-no-results i {

    margin-bottom: 12px;

    font-size: 32px;

    color: #0d6efd;

}


/* ==========================================================
   Cities Page - Mobile
   ========================================================== */

@media (max-width: 575.98px) {

    .city-card {

        min-height: 110px;

        padding: 20px 15px;

        gap: 12px;

        border-radius: 15px;

    }


    .city-card-icon {

        flex: 0 0 48px;

        width: 48px;
        height: 48px;

        border-radius: 13px;

        font-size: 20px;

    }


    .city-card-title {

        font-size: 16px;

    }


    .city-card-count {

        font-size: 12px;

    }


    .city-card-link {

        font-size: 12px;

    }

}
.hero-buttons {
    margin-bottom: 50px;
}


/* ==========================================================
   Pricing Page - Membership Card
   ========================================================== */

.pricing-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #dfe7f5;
    border-radius: 22px;
    padding: 42px 42px 38px;
    box-shadow: 0 15px 40px rgba(25, 55, 100, 0.10);
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        #0d6efd,
        #4f46e5,
        #ff8a00
    );
}

.pricing-top {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-top h3 {
    margin: 0 0 8px;
    color: #0b1736;
    font-size: 28px;
    font-weight: 700;
}

.pricing-top p {
    margin: 0;
    color: #6b7a99;
    font-size: 14px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin: 18px 0 30px;
    color: #0b1736;
}

.pricing-price .currency {
    color: #0d6efd;
    font-size: 20px;
    font-weight: 700;
}

.pricing-price .amount {
    color: #0b1736;
    font-size: 68px;
    line-height: 1;
    font-weight: 800;
}

.pricing-price .duration {
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.pricing-features {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    color: #334155;
    font-size: 14px;
    border-bottom: 1px solid #eef2f7;
}

.pricing-features li:last-child {
    border-bottom: 0;
}

.pricing-features li i {
    flex: 0 0 auto;
    color: #16a34a;
    font-size: 16px;
}

.pricing-card .htm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
}

/* Pricing Page - Mobile */

@media (max-width: 575.98px) {

    .pricing-card {
        padding: 32px 22px 30px;
        border-radius: 18px;
    }

    .pricing-top h3 {
        font-size: 24px;
    }

    .pricing-price .amount {
        font-size: 54px;
    }

    .pricing-features li {
        font-size: 13px;
    }

}
