﻿
.hero-section .row {
    min-height: 550px;
    align-items: center;
}

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,#f8fbff,#eef4ff);
}

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(13,110,253,.08);
    color: #0d6efd;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.hero-title {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}

    .hero-title span {
        color: #0d6efd;
    }

.hero-text {
    font-size: 18px;
    color: #666;
    line-height: 30px;
    max-width: 600px;
    margin-bottom: 15px;
}

/* Search Card */

.search-box {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

    .search-box input {
        flex: 1;
        min-width: 180px;
        height: 40px;
        border-radius: 35px;
        border: 1px solid #e4e4e4;
        box-shadow: none;
    }

        .search-box input:focus {
            border-color: #0d6efd;
            box-shadow: none;
        }

.btn-search {
    border-radius: 35px;
    height: 40px;
    padding: 0 35px;
    font-weight: 600;
    font-size: 16px;
    background: #0d6efd;
}

/* Popular */

.popular-search {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .popular-search strong {
        color: #222;
    }

    .popular-search a {
        text-decoration: none;
        color: #555;
        padding: 8px 18px;
        background: #fff;
        border: 1px solid #e8e8e8;
        border-radius: 30px;
        transition: .3s;
    }

        .popular-search a:hover {
            background: #0d6efd;
            color: #fff;
            border-color: #0d6efd;
        }

/* Counter */

.hero-counter {
    display: flex;
    gap: 60px;
    margin-top: 45px;
}

.counter-box h3 {
    margin: 0;
    color: #0d6efd;
    font-size: 34px;
    font-weight: 700;
}

.counter-box span {
    color: #777;
    font-size: 15px;
}

/* Image */

.hero-img {
    width: 380px;
    max-width: 100%;
    display: block;
    margin: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,.15));
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive */

@media(max-width:991px) {

    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-counter {
        gap: 30px;
    }

    .hero-img {
        width: 300px;
        margin-top: 40px;
    }
}

@media(max-width:767px) {

    .hero-title {
        font-size: 34px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-tag {
        display: table;
        margin: 0 auto 20px;
    }

    .search-box {
        padding: 15px;
    }

    .hero-counter {
        justify-content: center;
    }

    .popular-search {
        justify-content: center;
    }
}

.hero-counter {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.counter-card {
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 18px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .counter-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(13,110,253,.18);
    }

.counter-icon {
    width: 45px;
    height: 45px;
    border-radius: 18px;
    background: linear-gradient(135deg,#0d6efd,#3d8bfd);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

    .counter-icon.company {
        background: linear-gradient(135deg,#ff9800,#ffb300);
    }

    .counter-icon.user {
        background: linear-gradient(135deg,#00b894,#00d084);
    }

.counter-card h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.counter-card span {
    display: block;
    color: #666;
    font-size: 14px;
    margin-top: 3px;
}

@media(max-width:768px) {

    .hero-counter {
        justify-content: center;
    }

    .counter-card {
        width: 100%;
    }
}
/*-------------------------------------------------------------*/
.why-section {
    padding: 80px 0;
    background: #fff;
}

.section-tag {
    display: inline-block;
    background: #eaf2ff;
    color: #0d6efd;
    padding: 7px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    max-width: 650px;
    margin: auto;
    margin-bottom: 45px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(13,110,253,.15);
    }

.feature-icon {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: #777;
    line-height: 26px;
    margin: 0;
}
/*-------------------------------------------------------------*/
.category-section {
    padding: 90px 0;
    background: #f8fbff;
}

.category-card {
    display: block;
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .35s;
    height: 100%;
}

    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 45px rgba(13,110,253,.15);
        text-decoration: none;
    }

.category-icon {
    width: 72px;
    height: 72px;
    margin: auto;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin-bottom: 18px;
}

.category-card h5 {
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.category-card span {
    color: #777;
    font-size: 14px;
}

.view-all-card {
    background: linear-gradient(135deg,#0d6efd,#4f8ef7);
    color: #fff;
}

    .view-all-card h5,
    .view-all-card span {
        color: #fff;
    }

.featured-job-section {
    padding: 40px 0;
    background: #fff;
}

.job-card {
    background: #fff;
    border-radius: 22px;
    padding: 25px;
    border: 1px solid #edf0f5;
    transition: .35s;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

    .job-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 45px rgba(0,0,0,.12);
    }

.job-top {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.company-logo {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    object-fit: cover;
    background: #f6f6f6;
    padding: 10px;
}

.job-top h5 {
    margin: 0;
    font-weight: 700;
}

.job-top span {
    color: #777;
}

.job-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 18px;
    color: #666;
}

    .job-info span {
        background: #f5f7fb;
        padding: 8px 14px;
        border-radius: 25px;
        font-size: 14px;
    }

.job-card p {
    color: #666;
    line-height: 28px;
    margin-bottom: 22px;
}

.job-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*-------------------------company-section------------------------------------*/
/*==========================
    Common Section Heading
===========================*/

.section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(13,110,253,.08);
    color: #0d6efd;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 18px;
}

    .section-badge i {
        font-size: 16px;
    }

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 30px;
    max-width: 620px;
    margin: 0 auto;
}

/* Decorative Line */

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,#0d6efd,#5a54ff);
    display: block;
    margin: 20px auto 0;
    border-radius: 50px;
}

/* Responsive */

@media(max-width:991px) {

    .section-title {
        font-size: 38px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 28px;
    }
}

@media(max-width:576px) {

    .section-heading {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-badge {
        padding: 8px 18px;
        font-size: 13px;
    }
}

.company-section {
    padding: 40px 0;
    background: #f7f9fc;
}

.company-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    border: 1px solid #edf1f7;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .company-card:hover {
        transform: translateY(-8px);
        border-color: #0d6efd;
        box-shadow: 0 20px 45px rgba(13,110,253,.15);
    }

.company-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.company-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 15px;
    border: 1px solid #eee;
    padding: 8px;
    background: #fff;
}

.company-top h4 {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
}

.company-top span {
    color: #777;
}

.company-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

    .company-body div {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #555;
    }

    .company-body i {
        color: #0d6efd;
    }

.company-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #0d6efd;
    font-weight: 600;
    border-top: 1px solid #eee;
    padding-top: 18px;
}

    .company-btn:hover {
        color: #0056d6;
    }

.company-all {
    background: linear-gradient(135deg,#0d6efd,#5a54ff);
    color: #fff;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 280px;
    padding: 10px;
    overflow: hidden;
    position: relative;
}

    .company-all::before {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        top: -90px;
        right: -90px;
    }

    .company-all::after {
        content: "";
        position: absolute;
        width: 170px;
        height: 170px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        bottom: -60px;
        left: -60px;
    }

    .company-all > * {
        position: relative;
        z-index: 2;
    }

.company-all-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

    .company-all-icon i {
        font-size: 30px;
        color: #fff;
    }

.company-all h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
}

.company-all h5 {
    font-size: 22px;
    margin-bottom: 15px;
}

.company-all p {
    max-width: 260px;
    color: rgba(255,255,255,.9);
    line-height: 24px;
    margin-bottom: 12px;
}

.company-all .btn {
    background: #fff;
    color: #0d6efd;
    font-weight: 600;
    padding: 10px 30px;
    border: none;
    transition: .35s;
}

    .company-all .btn:hover {
        transform: translateY(-3px);
        background: #f5f5f5;
    }
/*------------------------- app-section ------------------------------------*/

.download-app-section {
    padding: 100px 0;
    background: linear-gradient(135deg,#0d6efd,#4e8ef7);
    color: #fff;
    overflow: hidden;
}

    .download-app-section .section-title {
        color: #fff;
        font-size: 42px;
        font-weight: 700;
    }

    .download-app-section .section-subtitle {
        color: rgba(255,255,255,.85);
        font-size: 17px;
        line-height: 30px;
    }

.app-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 35px;
}

    .app-feature-list li {
        margin-bottom: 18px;
        font-size: 17px;
    }

    .app-feature-list i {
        color: #ffd43b;
        margin-right: 12px;
    }

.download-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

    .download-btns img {
        height: 55px;
        transition: .3s;
    }

        .download-btns img:hover {
            transform: translateY(-5px);
        }

.phone-mockup {
    width: 360px;
    max-width: 100%;
    animation: floatPhone 4s ease-in-out infinite;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,.25));
}

@keyframes floatPhone {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@media(max-width:991px) {

    .download-app-section {
        text-align: center;
    }

    .download-btns {
        justify-content: center;
    }

    .phone-mockup {
        margin-top: 40px;
        width: 280px;
    }
}

/*================ APP SECTION =================*/

.app-section {
    padding: 40px 0;
    background: linear-gradient(135deg,#0d6efd,#3b82f6,#6b5cff);
    overflow: hidden;
    position: relative;
    color: #fff;
}

    .app-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        top: -160px;
        right: -120px;
    }

    .app-section::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        bottom: -90px;
        left: -70px;
    }

.app-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(15px);
    font-weight: 600;
    font-size: 15px;
}

.app-title {
    margin-top: 20px;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}

    .app-title span {
        color: #FFD54F;
    }

.app-desc {
    margin-top: 15px;
    font-size: 18px;
    line-height: 32px;
    color: rgba(255,255,255,.90);
}

.app-features {
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

    .feature-item i {
        font-size: 24px;
        color: #FFD54F;
    }

.download-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 20px;
}

    .download-btns img {
        height: 48px;
        transition: .35s;
    }

        .download-btns img:hover {
            transform: translateY(-5px);
        }

.app-stats {
    display: flex;
    gap: 60px;
    margin-top: 25px;
}

    .app-stats h3 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .app-stats span {
        color: rgba(255,255,255,.8);
    }

/* PHONE */

.phone-wrapper {
    position: relative;
    text-align: center;
}

.phone-img {
    width: 430px;
    max-width: 100%;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,.25));
    animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Floating Cards */

.floating-card {
    position: absolute;
    background: #fff;
    color: #222;
    padding: 14px 22px;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 18px 35px rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .floating-card i {
        color: #0d6efd;
        font-size: 20px;
    }

.top-card {
    top: 40px;
    right: 0;
}

.left-card {
    left: 0;
    top: 200px;
}

.bottom-card {
    right: 30px;
    bottom: 50px;
}

/* Responsive */

@media(max-width:991px) {

    .app-title {
        font-size: 42px;
    }

    .phone-wrapper {
        margin-top: 60px;
    }

    .app-stats {
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .download-btns {
        justify-content: center;
    }

    .app-section {
        text-align: center;
    }

    .feature-item {
        justify-content: center;
    }

    .top-card,
    .left-card,
    .bottom-card {
        display: none;
    }
}

@media(max-width:576px) {

    .app-title {
        font-size: 34px;
    }

    .app-desc {
        font-size: 16px;
    }
}
/*================ CTA SECTION =================*/

.cta-section {
    padding: 40px 0;
    background: #f5f8fd;
}

.cta-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#0d6efd,#4f46e5);
    border-radius: 30px;
    padding: 60px;
    color: #fff;
    box-shadow: 0 30px 70px rgba(13,110,253,.25);
}

    .cta-box::before {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        top: -150px;
        right: -120px;
    }

    .cta-box::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        bottom: -80px;
        left: -80px;
    }

    .cta-box > * {
        position: relative;
        z-index: 2;
    }

.cta-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(12px);
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

    .cta-box h2 span {
        color: #FFD54F;
    }

.cta-box p {
    font-size: 18px;
    line-height: 32px;
    color: rgba(255,255,255,.9);
    max-width: 620px;
}

.cta-stats {
    display: flex;
    gap: 50px;
    margin-top: 24px;
    margin-bottom: 28px;
}

    .cta-stats h4 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .cta-stats span {
        color: rgba(255,255,255,.8);
    }

.cta-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

    .cta-buttons .btn {
        padding: 8px 28px;
        font-weight: 600;
    }

    .cta-buttons .btn-light {
        color: #0d6efd;
    }

        .cta-buttons .btn-light:hover {
            transform: translateY(-3px);
        }

    .cta-buttons .btn-outline-light:hover {
        transform: translateY(-3px);
    }

/* Newsletter */

.newsletter-card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 25px;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .newsletter-icon i {
        font-size: 30px;
    }

.newsletter-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-card p {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    line-height: 28px;
}

.newsletter-form {
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    margin: 20px 0 10px;
}

    .newsletter-form input {
        flex: 1;
        border: none;
        padding: 12px 16px;
        outline: none;
    }

    .newsletter-form button {
        border: none;
        background: #0d6efd;
        color: #fff;
        padding: 0 28px;
        font-weight: 600;
    }

.newsletter-card small {
    color: rgba(255,255,255,.8);
}

/* Responsive */

@media(max-width:991px) {

    .cta-box {
        padding: 50px 30px;
        text-align: center;
    }

    .cta-stats {
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }

    .cta-buttons {
        justify-content: center;
        margin-bottom: 40px;
    }

    .newsletter-card {
        margin-top: 30px;
    }
}

@media(max-width:576px) {

    .cta-box h2 {
        font-size: 36px;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 16px;
    }

        .newsletter-form button {
            padding: 15px;
        }
}
/*-------------------------------------------------------------*/
.newsletter-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    color: #222;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

    .newsletter-card h4 {
        font-weight: 700;
        margin-bottom: 10px;
    }

.newsletter-box {
    display: flex;
    margin-top: 25px;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
}

    .newsletter-box input {
        flex: 1;
        border: 0;
        padding: 15px;
        outline: none;
    }

    .newsletter-box button {
        border: 0;
        background: #0d6efd;
        color: #fff;
        padding: 0 25px;
        font-weight: 600;
    }

        .newsletter-box button:hover {
            background: #0056d6;
        }

@media(max-width:992px) {

    .cta-box {
        padding: 40px;
        text-align: center;
    }

    .newsletter-card {
        margin-top: 35px;
    }
}

@media(max-width:576px) {

    .cta-box h2 {
        font-size: 32px;
    }

    .newsletter-box {
        flex-direction: column;
    }

        .newsletter-box button {
            width: 100%;
            height: 52px;
        }
}
/*================ COMPANY SECTION =================*/

.company-section {
    padding: 40px 0;
    background: #fff;
}

.company-card {
    background: #fff;
    border: 1px solid #edf2f8;
    border-radius: 22px;
    padding: 28px 20px;
    text-align: center;
    transition: .35s;
    height: 100%;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

    .company-card:hover {
        transform: translateY(-8px);
        border-color: #0d6efd;
        box-shadow: 0 20px 45px rgba(13,110,253,.12);
    }

.company-logo-box {
    width: 78px;
    height: 78px;
    margin: auto;
    border-radius: 20px;
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #edf2f8;
    margin-bottom: 18px;
}

    .company-logo-box img {
        width: 55px;
        height: 55px;
        object-fit: contain;
    }

.company-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #1b2430;
}

.company-card small {
    display: block;
    color: #7b8794;
    margin-bottom: 18px;
}

.company-jobs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4f8ff;
    color: #0d6efd;
    border-radius: 40px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 14px;
}

    .company-jobs i {
        font-size: 14px;
    }

/* Explore Card */

.company-view {
    background: linear-gradient(135deg,#0d6efd,#4f46e5);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .company-view:hover {
        color: #fff;
    }

.company-view-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: .35s;
}

.company-view:hover .company-view-icon {
    transform: rotate(-45deg) scale(1.1);
}

.company-view i {
    font-size: 38px;
}

.company-view h5 {
    color: #fff;
    margin-bottom: 8px;
}

.company-view span {
    color: rgba(255,255,255,.85);
    font-size: 14px;
}

/* Mobile */

@media(max-width:768px) {

    .company-card {
        padding: 20px 15px;
    }

    .company-logo-box {
        width: 65px;
        height: 65px;
    }

        .company-logo-box img {
            width: 45px;
            height: 45px;
        }
}
/*------------------------testionial css---------------------------*/
/*=========================
      Testimonials
=========================*/

.testimonial-section {
    padding: 40px 0;
    background: linear-gradient(180deg,#ffffff,#f8fbff);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    border: 1px solid #edf2ff;
    height: 100%;
    transition: .35s;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        border-color: #0d6efd;
        box-shadow: 0 25px 50px rgba(13,110,253,.15);
    }

    .testimonial-card::before {
        content: "";
        position: absolute;
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 4px;
        border-radius: 30px;
        background: linear-gradient(90deg,#0d6efd,#6c63ff);
    }

.quote-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#0d6efd,#5a54ff);
    color: #fff;
    font-size: 28px;
    margin-bottom: 22px;
    box-shadow: 0 10px 25px rgba(13,110,253,.25);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 18px;
}

.testimonial-card p {
    color: #6b7280;
    line-height: 30px;
    font-size: 16px;
    min-height: 120px;
    margin-bottom: 25px;
    text-align: justify;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #edf2ff;
    padding-top: 22px;
}

    .testimonial-user img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #eef5ff;
    }

    .testimonial-user h5 {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        color: #1f2937;
    }

    .testimonial-user span {
        color: #6b7280;
        font-size: 14px;
    }

@media(max-width:991px) {

    .testimonial-card {
        margin-bottom: 20px;
    }
}

/*------------------------work-section css---------------------------*/
/*==========================
        How It Works
===========================*/

.work-section {
    padding: 40px 0;
    background: linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process-line {
    position: absolute;
    top: 72px;
    left: 12%;
    width: 76%;
    height: 4px;
    background: linear-gradient(90deg,#d8e8ff,#0d6efd,#d8e8ff);
    border-radius: 30px;
    z-index: 0;
}

/* Card */

.step-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    border: 1px solid #edf2ff;
    transition: .35s;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

    .step-card:hover {
        transform: translateY(-12px);
        border-color: #0d6efd;
        box-shadow: 0 25px 55px rgba(13,110,253,.18);
    }

    .step-card::before {
        content: "";
        position: absolute;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: rgba(13,110,253,.05);
        top: -70px;
        right: -70px;
    }

/* Icon */

.step-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #fff;
    background: linear-gradient(135deg,#0d6efd,#4f7cff);
    box-shadow: 0 15px 35px rgba(13,110,253,.28);
    margin-bottom: 22px;
    transition: .35s;
}

.step-card:hover .step-icon {
    transform: rotate(-8deg) scale(1.08);
}

/* Number */

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef5ff;
    color: #0d6efd;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid #d7e6ff;
}

/* Heading */

.step-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

/* Text */

.step-card p {
    color: #6b7280;
    line-height: 28px;
    font-size: 15px;
    margin: 0;
}

/* Hover Bottom Border */

.step-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg,#0d6efd,#5a54ff);
    transition: .35s;
}

.step-card:hover::after {
    width: 100%;
}

/* Different Icon Colors */

.col-lg-3:nth-child(2) .step-icon {
    background: linear-gradient(135deg,#10b981,#22c55e);
}

.col-lg-3:nth-child(3) .step-icon {
    background: linear-gradient(135deg,#f59e0b,#fb923c);
}

.col-lg-3:nth-child(4) .step-icon {
    background: linear-gradient(135deg,#8b5cf6,#6366f1);
}

/* Mobile */

@media(max-width:991px) {

    .process-line {
        display: none;
    }

    .step-card {
        margin-bottom: 20px;
    }
}
/*================ TRENDING SKILLS ================*/

.skills-section {
    padding: 40px 0;
    background: #fff;
}

.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.skill-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #fff;
    border: 1px solid #e8edf7;
    border-radius: 50px;
    color: #444;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

    .skill-chip i {
        color: #0d6efd;
        font-size: 18px;
    }

    .skill-chip:hover {
        transform: translateY(-6px);
        color: #0d6efd;
        border-color: #0d6efd;
        box-shadow: 0 18px 35px rgba(13,110,253,.15);
    }

@media(max-width:768px) {

    .skill-chip {
        width: 48%;
        justify-content: center;
    }
}

@media(max-width:576px) {

    .skill-chip {
        width: 100%;
    }
}
/*================ Statistics =================*/

.stats-section {
    padding: 40px 0;
    background: #f5f8fd;
}

.stats-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 15px;
    text-align: center;
    border: 1px solid #edf2f8;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    height: 100%;
}

    .stats-card:hover {
        transform: translateY(-8px);
        border-color: #0d6efd;
        box-shadow: 0 20px 40px rgba(13,110,253,.12);
    }

.stats-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,#0d6efd,#5d8dff);
    color: #fff;
    font-size: 28px;
    margin-bottom: 18px;
}

.stats-card h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 5px;
}

.stats-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

@media(max-width:768px) {

    .stats-card {
        padding: 22px 10px;
    }

    .stats-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .stats-card h2 {
        font-size: 28px;
    }
}
/*================ BLOG SECTION =================*/

.blog-section {
    padding: 40px 0;
    background: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #edf2f8;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    transition: .35s;
    height: 100%;
}

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(13,110,253,.12);
    }

.blog-image {
    position: relative;
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: .4s;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0d6efd;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.blog-body {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

    .blog-meta i {
        color: #0d6efd;
    }

.blog-body h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.blog-body p {
    color: #666;
    line-height: 28px;
    margin-bottom: 20px;
}

.blog-btn {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

    .blog-btn i {
        margin-left: 6px;
    }

.blog-view-all {
    background: linear-gradient(135deg,#0d6efd,#5b5bf8);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    min-height: 100%;
}

    .blog-view-all i {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .blog-view-all h3 {
        font-size: 48px;
        font-weight: 700;
    }

    .blog-view-all h5 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .blog-view-all p {
        color: rgba(255,255,255,.9);
        margin-bottom: 25px;
    }

    .blog-view-all .btn {
        padding: 10px 30px;
        font-weight: 600;
    }

/*================ SUCCESS STORIES =================*/

.placed-section {
    padding: 40px 0;
    background: #f8fbff;
}

.placed-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid #edf2f8;
    text-align: center;
    padding: 25px 15px;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    height: 100%;
}

    .placed-card:hover {
        transform: translateY(-8px);
        border-color: #0d6efd;
        box-shadow: 0 20px 45px rgba(13,110,253,.12);
    }

.candidate-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #eef5ff;
    margin-bottom: 18px;
}

.placed-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.candidate-role {
    display: block;
    color: #666;
    margin-bottom: 18px;
}

.company-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 40px;
    background: #f5f8fd;
    margin-bottom: 20px;
}

    .company-pill img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }

.salary-box {
    background: linear-gradient(135deg,#0d6efd,#5b5bf8);
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    font-weight: 700;
}

.placed-view {
    background: linear-gradient(135deg,#0d6efd,#5b5bf8);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .placed-view i {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .placed-view h3 {
        font-size: 38px;
        font-weight: 700;
    }

    .placed-view p {
        color: rgba(255,255,255,.9);
        margin: 10px 0 20px;
    }

    .placed-view .btn {
        font-weight: 600;
    }

/*================ CITY SECTION =================*/

.city-section {
    padding: 40px 0;
    background: #fff;
}

.city-card {
    display: block;
    background: #fff;
    border: 1px solid #edf2f8;
    border-radius: 22px;
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    height: 100%;
}

    .city-card:hover {
        transform: translateY(-8px);
        border-color: #0d6efd;
        box-shadow: 0 20px 45px rgba(13,110,253,.12);
    }

.city-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 18px;
    background: #eef5ff;
    color: #0d6efd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 18px;
    transition: .35s;
}

.city-card:hover .city-icon {
    background: #0d6efd;
    color: #fff;
}

.city-card h5 {
    color: #222;
    font-weight: 700;
    margin-bottom: 6px;
}

.city-card span {
    color: #777;
    font-size: 14px;
}

.city-view-all {
    background: linear-gradient(135deg,#0d6efd,#4f46e5);
    color: #fff;
    border: none;
}

    .city-view-all h5,
    .city-view-all span {
        color: #fff;
    }

    .city-view-all .city-icon {
        background: rgba(255,255,255,.18);
        color: #fff;
    }

    .city-view-all:hover {
        color: #fff;
    }

/*================ Popular Search =================*/

.popular-search-section {
    padding: 40px 0;
    background: #f8fbff;
}

.search-card {
    background: #fff;
    border: 1px solid #edf2f8;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

    .search-card:hover {
        transform: translateY(-8px);
        border-color: #0d6efd;
        box-shadow: 0 20px 45px rgba(13,110,253,.12);
    }

    .search-card h5 {
        font-weight: 700;
        margin-bottom: 18px;
        color: #0d6efd;
    }

    .search-card a {
        display: block;
        text-decoration: none;
        color: #555;
        padding: 8px 0;
        transition: .3s;
        border-bottom: 1px dashed #eee;
    }

        .search-card a:last-child {
            border: none;
        }

        .search-card a:hover {
            color: #0d6efd;
            padding-left: 8px;
        }
/*================ FAQ =================*/

.faq-section {
    padding: 40px 0;
    background: #f8fbff;
}

    .faq-section .accordion-item {
        border: none;
        border-radius: 16px !important;
        overflow: hidden;
        margin-bottom: 18px;
        box-shadow: 0 10px 25px rgba(0,0,0,.05);
    }

    .faq-section .accordion-button {
        padding: 20px 25px;
        font-weight: 600;
        font-size: 17px;
        background: #fff;
        box-shadow: none;
    }

        .faq-section .accordion-button:not(.collapsed) {
            background: #0d6efd;
            color: #fff;
        }

        .faq-section .accordion-button:focus {
            box-shadow: none;
        }

    .faq-section .accordion-body {
        padding: 20px 25px;
        color: #666;
        line-height: 30px;
    }



/* =========================================================
   JOBKAR - COMPLETE RESPONSIVE CSS
   Tablet + Mobile + Small Mobile
   ========================================================= */


/* =========================================================
   TABLET : 768px - 991px
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    /* ---------- HEADER ---------- */

    .top-header .container {
        height: auto;
        min-height: 70px;
        padding: 10px 15px;
        gap: 15px;
    }

    .site-logo {
        max-width: 150px;
        height: auto;
    }

    .menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 10px;
    }

        .menu a {
            font-size: 13px;
            white-space: nowrap;
        }

    .post-btn {
        padding: 8px 14px;
        font-size: 13px;
    }


    /* ---------- HERO ---------- */

    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 16px;
        line-height: 26px;
    }

    .hero-img {
        width: 280px;
        max-width: 100%;
        margin: 30px auto 0;
        display: block;
    }

    .search-box {
        width: 100%;
    }

    .hero-counter {
        justify-content: center;
        gap: 12px;
    }

    .counter-card {
        min-width: 160px;
        flex: 1;
    }


    /* ---------- FEATURES ---------- */

    .feature-card {
        height: 100%;
    }


    /* ---------- CATEGORIES ---------- */

    .category-card {
        height: 100%;
    }


    /* ---------- COMPANY ---------- */

    .company-card {
        height: 100%;
    }


    /* ---------- APP SECTION ---------- */

    .app-section {
        text-align: center;
    }

    .app-title {
        font-size: 42px;
    }


    /* ---------- CTA ---------- */

    .cta-box {
        padding: 50px 30px;
        text-align: center;
    }
}


/* =========================================================
   MOBILE : MAX 767px
   ========================================================= */

@media (max-width: 767px) {

    /* =====================================================
       GLOBAL
       ===================================================== */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }


    /* =====================================================
       HEADER
       ===================================================== */

    .top-header {
        width: 100%;
        position: relative;
    }

        .top-header .container {
            height: auto;
            min-height: 60px;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }

    .logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .site-logo {
        width: auto;
        max-width: 145px;
        height: 38px;
        object-fit: contain;
    }

    .menu {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
        margin-top: 5px;
    }

        .menu a {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 12px;
            line-height: 1.2;
            padding: 8px 4px;
            white-space: nowrap;
            min-width: 0;
        }

            .menu a i {
                font-size: 12px;
            }

        .menu .post-btn {
            width: 100%;
            padding: 8px 5px;
            font-size: 12px;
            border-radius: 20px;
        }


    /* =====================================================
       HERO
       ===================================================== */

    .hero-section {
        min-height: auto;
        padding: 45px 0 40px;
    }

        .hero-section .row {
            min-height: auto;
        }

        .hero-section .col-md-7,
        .hero-section .col-md-5 {
            width: 100%;
            text-align: center;
        }

    .hero-tag {
        display: table;
        margin: 0 auto 18px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 15px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 24px;
        text-align: center;
        padding: 0 8px;
        margin-bottom: 20px;
    }

    .hero-img {
        width: 230px;
        max-width: 80%;
        height: auto;
        display: block;
        margin: 30px auto 0;
    }


    /* =====================================================
       SEARCH BOX
       ===================================================== */

    .search-box {
        width: 100%;
        padding: 12px;
        display: flex;
        flex-direction: column;
        gap: 9px;
        margin-left: auto;
        margin-right: auto;
    }

        .search-box input,
        .search-box .form-control {
            width: 100%;
            min-width: 0;
            height: 43px;
            font-size: 14px;
        }

    .btn-search {
        width: 100%;
        height: 43px;
        font-size: 14px;
    }


    /* =====================================================
       POPULAR SEARCH
       ===================================================== */

    .popular-search {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 15px;
    }

        .popular-search a {
            font-size: 12px;
            padding: 7px 11px;
        }


    /* =====================================================
       HERO COUNTERS
       ===================================================== */

    .hero-counter {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 25px;
    }

    .counter-card {
        width: 100%;
        min-width: 0;
        max-width: 360px;
        padding: 10px 14px;
        justify-content: flex-start;
    }

    .counter-icon {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        font-size: 23px;
    }

    .counter-card h3 {
        font-size: 21px;
    }

    .counter-card span {
        font-size: 12px;
    }


    /* =====================================================
       SECTION COMMON
       ===================================================== */

    .section-title {
        font-size: 28px;
        line-height: 1.25;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 22px;
        padding: 0 10px;
    }

    .section-tag {
        font-size: 12px;
    }


    /* =====================================================
       FEATURES
       ===================================================== */

    .feature-card {
        height: 100%;
        margin-bottom: 5px;
    }

        .feature-card h4 {
            font-size: 18px;
        }

        .feature-card p {
            font-size: 13px;
            line-height: 21px;
        }


    /* =====================================================
       CATEGORY SECTION
       ===================================================== */

    .category-section {
        padding: 55px 0;
    }

    .category-card {
        height: 100%;
        padding: 20px 10px;
        border-radius: 15px;
    }

    .category-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .category-card h5 {
        font-size: 14px;
        line-height: 20px;
    }

    .category-card span {
        font-size: 11px;
    }


    /* =====================================================
       WHY SECTION
       ===================================================== */

    .why-section {
        padding: 55px 0;
    }


    /* =====================================================
       COMPANY SECTION
       ===================================================== */

    .company-section {
        padding: 55px 0;
    }

    .company-card {
        height: 100%;
        min-height: 150px;
        padding: 20px 12px;
    }

        .company-card h5 {
            font-size: 15px;
        }

        .company-card span {
            font-size: 11px;
        }


    /* =====================================================
       SKILLS
       ===================================================== */

    .skills-section {
        padding: 55px 0;
    }

    .skills-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .skill-chip {
        font-size: 12px;
        padding: 8px 12px;
    }


    /* =====================================================
       APP SECTION
       ===================================================== */

    .app-section {
        text-align: center;
        padding: 55px 0;
    }

    .app-title {
        font-size: 32px;
        line-height: 1.25;
    }

    .app-desc {
        font-size: 14px;
        line-height: 23px;
    }


    /* =====================================================
       DOWNLOAD APP
       ===================================================== */

    .download-app-section {
        text-align: center;
        padding: 50px 0;
    }


    /* =====================================================
       CTA
       ===================================================== */

    .cta-box {
        padding: 40px 20px;
        text-align: center;
        border-radius: 20px;
    }


    /* =====================================================
       BLOG
       ===================================================== */

    .blog-section {
        padding: 55px 0;
    }

    .blog-card {
        height: 100%;
    }

    .blog-body h4 {
        font-size: 18px;
        line-height: 25px;
    }


    /* =====================================================
       TESTIMONIAL
       ===================================================== */

    .testimonial-card {
        margin-bottom: 20px;
    }


    /* =====================================================
       FAQ
       ===================================================== */

    .faq-section {
        padding: 55px 0;
    }

    .accordion-button {
        font-size: 14px;
        padding: 15px;
    }

    .accordion-body {
        font-size: 13px;
        line-height: 22px;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .footer {
        text-align: center;
    }

    .footer-bottom {
        padding: 15px 10px;
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE : MAX 480px
   ========================================================= */

@media (max-width: 480px) {

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }


    /* ---------- HEADER ---------- */

    .top-header .container {
        padding: 8px 12px;
    }

    .site-logo {
        height: 34px;
        max-width: 135px;
    }

    .menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

        .menu a {
            font-size: 11px;
            padding: 7px 3px;
        }

        .menu .post-btn {
            font-size: 11px;
            padding: 7px 3px;
        }


    /* ---------- HERO ---------- */

    .hero-section {
        padding: 35px 0 30px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 14px;
        line-height: 22px;
    }

    .hero-tag {
        font-size: 11px;
        padding: 7px 12px;
    }

    .hero-img {
        width: 210px;
    }


    /* ---------- SEARCH ---------- */

    .search-box {
        padding: 10px;
    }

        .search-box input,
        .search-box .form-control,
        .btn-search {
            height: 41px;
            font-size: 13px;
        }


    /* ---------- POPULAR ---------- */

    .popular-search a {
        font-size: 11px;
        padding: 6px 9px;
    }


    /* ---------- COUNTERS ---------- */

    .counter-card {
        max-width: 100%;
        padding: 9px 11px;
    }

    .counter-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .counter-card h3 {
        font-size: 19px;
    }

    .counter-card span {
        font-size: 11px;
    }


    /* ---------- SECTIONS ---------- */

    .section-title {
        font-size: 25px;
    }

    .section-subtitle {
        font-size: 13px;
        line-height: 21px;
    }


    /* ---------- CATEGORY ---------- */

    .category-section {
        padding: 45px 0;
    }

    .category-card {
        padding: 17px 8px;
    }

    .category-icon {
        width: 52px;
        height: 52px;
        font-size: 21px;
    }

    .category-card h5 {
        font-size: 13px;
    }

    .category-card span {
        font-size: 10px;
    }


    /* ---------- APP ---------- */

    .app-title {
        font-size: 28px;
    }

    .app-desc {
        font-size: 13px;
        line-height: 21px;
    }


    /* ---------- CTA ---------- */

    .cta-box {
        padding: 35px 15px;
    }


    /* ---------- BLOG ---------- */

    .blog-body h4 {
        font-size: 16px;
        line-height: 23px;
    }
}


/* =========================================================
   EXTRA SMALL : MAX 360px
   ========================================================= */

@media (max-width: 360px) {

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .site-logo {
        height: 31px;
        max-width: 125px;
    }

    .menu {
        gap: 5px;
    }

        .menu a {
            font-size: 10px;
            padding: 6px 2px;
        }

        .menu .post-btn {
            font-size: 10px;
        }

    .hero-title {
        font-size: 25px;
    }

    .hero-text {
        font-size: 13px;
    }

    .section-title {
        font-size: 23px;
    }

    .category-card {
        padding: 15px 5px;
    }
}

/* =========================================================
   JOBKAR RESPONSIVE NAVBAR
   ========================================================= */


/* =========================================================
   DESKTOP NAVBAR
   ========================================================= */

.top-header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 9999;
}


    /* HEADER CONTAINER */

    .top-header > .container {
        min-height: 75px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
    }


    /* LOGO */

    .top-header .logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        text-decoration: none;
    }

    .top-header .site-logo {
        height: 48px;
        width: auto;
        max-width: 170px;
        object-fit: contain;
    }


    /* =========================================================
   DESKTOP MENU
   ========================================================= */

    .top-header .menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 25px;
        margin-left: auto;
    }


        /* NORMAL LINKS */

        .top-header .menu > a:not(.post-btn):not(.nav-login-btn) {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            white-space: nowrap;
            transition: .25s ease;
        }

            .top-header .menu > a:not(.post-btn):not(.nav-login-btn):hover {
                color: #007bff;
            }


    /* =========================================================
   LOGIN BUTTON
   ========================================================= */

    .top-header .nav-login-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 100px;
        height: 42px;
        padding: 8px 20px;
        border: 1px solid #007bff;
        border-radius: 25px;
        color: #007bff;
        background: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        transition: .25s ease;
    }

        .top-header .nav-login-btn:hover {
            background: #007bff;
            color: #fff;
        }


    /* =========================================================
   REGISTER / POST JOB
   ========================================================= */

    .top-header .post-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 115px;
        height: 42px;
        padding: 8px 18px;
        background: #007bff;
        color: #fff !important;
        border-radius: 25px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        transition: .25s ease;
    }

        .top-header .post-btn:hover {
            background: #0056d2;
            color: #fff !important;
            transform: translateY(-1px);
        }


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 42px;
    border: 1px solid #007bff;
    border-radius: 10px;
    background: #fff;
    color: #007bff;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    cursor: pointer;
    transition: .25s ease;
}

    .mobile-menu-btn:hover {
        background: #007bff;
        color: #fff;
    }


/* =========================================================
   TABLET
   992px AND BELOW
   ========================================================= */

@media (max-width: 991px) {

    .top-header > .container {
        min-height: 68px;
        padding-top: 10px;
        padding-bottom: 10px;
        position: relative;
        flex-wrap: wrap;
    }


    /* LOGO */

    .top-header .site-logo {
        height: 42px;
        max-width: 155px;
    }


    /* HAMBURGER */

    .mobile-menu-btn {
        display: inline-flex;
        flex-shrink: 0;
        margin-left: auto;
    }


    /* =====================================================
       COLLAPSE MENU
       ===================================================== */

    .top-header .menu {
        width: 100%;
        flex-basis: 100%;
        margin-left: 0;
        margin-top: 10px;
        padding: 12px;
        background: #fff;
        border: 1px solid #eef0f5;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }


        /* MENU LINKS */

        .top-header .menu > a {
            width: 100%;
            min-height: 42px;
            display: flex !important;
            align-items: center;
            justify-content: center;
            padding: 10px 15px;
            border-radius: 9px;
            box-sizing: border-box;
        }


            .top-header .menu > a:not(.post-btn):not(.nav-login-btn):hover {
                background: #f1f6ff;
            }


    /* LOGIN */

    .top-header .nav-login-btn {
        width: 100%;
        height: 42px;
    }


    /* REGISTER / POST JOB */

    .top-header .post-btn {
        width: 100%;
        height: 42px;
    }


    /* =====================================================
       BOOTSTRAP COLLAPSE ANIMATION
       ===================================================== */

    .top-header .menu.collapse:not(.show) {
        display: none;
    }

    .top-header .menu.collapse.show {
        display: flex;
    }
}


/* =========================================================
   MOBILE
   767px AND BELOW
   ========================================================= */

@media (max-width: 767px) {

    .top-header > .container {
        padding-left: 15px;
        padding-right: 15px;
        min-height: 62px;
    }


    .top-header .site-logo {
        height: 38px;
        max-width: 145px;
    }


    .mobile-menu-btn {
        width: 42px;
        height: 40px;
        font-size: 23px;
    }


    .top-header .menu {
        margin-top: 8px;
        padding: 10px;
        border-radius: 12px;
    }


        .top-header .menu > a {
            min-height: 40px;
            font-size: 14px;
        }


    .top-header .nav-login-btn {
        height: 40px;
        font-size: 14px;
    }


    .top-header .post-btn {
        height: 40px;
        font-size: 14px;
    }
}


/* =========================================================
   SMALL MOBILE
   480px AND BELOW
   ========================================================= */

@media (max-width: 480px) {

    .top-header > .container {
        padding-left: 12px;
        padding-right: 12px;
        min-height: 58px;
    }


    .top-header .site-logo {
        height: 34px;
        max-width: 135px;
    }


    .mobile-menu-btn {
        width: 40px;
        height: 38px;
        font-size: 22px;
        border-radius: 9px;
    }


    .top-header .menu {
        padding: 8px;
        gap: 4px;
    }


        .top-header .menu > a {
            min-height: 38px;
            padding: 8px 10px;
            font-size: 13px;
        }


    .top-header .nav-login-btn,
    .top-header .post-btn {
        height: 38px;
        font-size: 13px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
   360px AND BELOW
   ========================================================= */

@media (max-width: 360px) {

    .top-header .site-logo {
        height: 31px;
        max-width: 125px;
    }


    .mobile-menu-btn {
        width: 38px;
        height: 36px;
        font-size: 21px;
    }


    .top-header .menu > a {
        min-height: 36px;
        font-size: 12px;
    }
}