@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Redesign Color Palette and Global Styles */
:root {
    --bg-dark: #0b0f19;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-card-hover: rgba(25, 30, 49, 0.85);
    --border-glow: rgba(168, 85, 247, 0.25);
    --border-muted: rgba(255, 255, 255, 0.06);
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --accent: #a855f7;
    --primary-grad: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --green-accent: #10b981;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    background-color: var(--bg-dark) !important;
    color: #e5e7eb !important;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #374151;
}

/* Typography Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700;
}

/* Glassmorphism Header / Sticky Navigation */
.header-bottom {
    background: rgba(11, 15, 25, 0.8) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid var(--border-muted) !important;
    position: sticky !important;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu li a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    position: relative;
    padding: 10px 15px !important;
}

.menu li a:hover, .menu li a.active {
    color: var(--accent) !important;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background: var(--primary-grad);
    transition: width 0.3s ease;
}

.menu li a:hover::after, .menu li a.active::after {
    width: calc(100% - 30px);
}

/* Buttons Design System */
.btn--base, .cmn--btn, .btn--primary {
    background: var(--primary-grad) !important;
    border: none !important;
    color: var(--text-white) !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 10px 24px !important;
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn--base:hover, .cmn--btn:hover, .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(168, 85, 247, 0.45) !important;
    color: var(--text-white) !important;
    opacity: 0.95;
}

.btn--round {
    border-radius: 30px !important;
}

/* Hero Section (Banner Section) */
.banner-section {
    background-color: var(--bg-dark) !important;
    position: relative;
    padding: 140px 0 100px 0 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    z-index: 1;
    pointer-events: none;
}

.banner-section::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    z-index: 1;
    pointer-events: none;
}

.banner__wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner__content {
    max-width: 650px;
}

.banner__content .subtitle {
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent) !important;
    font-size: 0.9rem !important;
    margin-bottom: 15px;
    display: inline-block;
}

.banner__content-title {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    color: var(--text-white) !important;
    margin-bottom: 25px;
}

@media (max-width: 575px) {
    .banner__content-title {
        font-size: 2.2rem !important;
    }
}

.banner__content p {
    color: var(--text-muted) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Glassmorphism Job Search */
.job__search {
    margin-bottom: 40px;
}

.job__search .form--group {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 50px !important;
    padding: 8px 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.3s ease;
}

.job__search .form--group:focus-within {
    border-color: var(--accent) !important;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.25) !important;
}

.job__search .form-select, .job__search .form-control {
    background: transparent !important;
    color: var(--text-white) !important;
    border: none !important;
    height: 48px !important;
    padding: 10px 20px !important;
    font-size: 0.95rem;
}

.job__search .form-select:focus, .job__search .form-control:focus {
    box-shadow: none !important;
}

.job__search .form-select option {
    background: #111827 !important;
    color: var(--text-white) !important;
}

.job__search button {
    background: var(--primary-grad) !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 12px 36px !important;
    color: var(--text-white) !important;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3) !important;
    transition: all 0.3s ease !important;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.job__search button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5) !important;
}

/* Popular Tags */
.popular__tags .title {
    color: var(--text-muted) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    margin-right: 15px;
}

.popular__tags .tags-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.popular__tags .tags-list li a {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-muted) !important;
    border-radius: 30px !important;
    color: #d1d5db !important;
    padding: 6px 18px !important;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
    display: inline-block;
}

.popular__tags .tags-list li a:hover {
    background: rgba(168, 85, 247, 0.12) !important;
    border-color: var(--accent) !important;
    color: var(--text-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(168, 85, 247, 0.15) !important;
}

.banner__thumb img {
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s ease;
}

.banner__thumb img:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(168, 85, 247, 0.25);
}

/* Category Grid Redesign */
.job-category {
    background-color: var(--bg-dark) !important;
    padding: 100px 0 !important;
}

.category__item {
    background: var(--bg-card) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-muted) !important;
    border-radius: 20px !important;
    padding: 30px 24px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category__item:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.3) !important;
    background: var(--bg-card-hover) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(168, 85, 247, 0.1) !important;
}

.category__item-icon {
    background: rgba(255, 255, 255, 0.03) !important;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.category__item:hover .category__item-icon {
    background: rgba(168, 85, 247, 0.12) !important;
    border-color: var(--accent) !important;
    transform: scale(1.05);
}

.category__item-icon img {
    max-width: 28px;
    max-height: 28px;
    filter: brightness(0) invert(1);
}

.category__item-content .title {
    color: var(--text-white) !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    margin-bottom: 12px;
}

.category__item-content p {
    color: var(--text-muted) !important;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.category__item .job-count {
    background: rgba(99, 102, 241, 0.12) !important;
    color: #818cf8 !important;
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    padding: 5px 12px !important;
    border-radius: 8px !important;
    align-self: flex-start;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.category__item:hover .job-count {
    background: var(--primary-grad) !important;
    color: var(--text-white) !important;
    border-color: transparent !important;
}

/* Job Posts Grid Section */
.job-section {
    background-color: #111827 !important;
    padding: 100px 0 !important;
}

.section-bg {
    background-color: #111827 !important;
}

.section__header-title {
    font-weight: 800 !important;
    font-size: 2.5rem !important;
    color: var(--text-white) !important;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 40%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section__header p {
    color: var(--text-muted) !important;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.job__item {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-muted) !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job__item:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3) !important;
    background: var(--bg-card-hover) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(99, 102, 241, 0.08) !important;
}

.job__item-thumb {
    height: 190px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-muted);
}

.job__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.job__item:hover .job__item-thumb img {
    transform: scale(1.06);
}

.job__item-content {
    padding: 24px !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.job__item-content .title {
    margin: 15px 0 !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    line-height: 1.4;
}

.job__item-content .title a {
    color: var(--text-white) !important;
    transition: color 0.3s ease;
}

.job__item-content .title a:hover {
    color: var(--accent) !important;
}

.job__item-content .tag {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--border-muted) !important;
    color: #d1d5db !important;
    font-size: 0.75rem !important;
    padding: 5px 12px !important;
    border-radius: 8px !important;
    font-weight: 600;
}

.job__item-content .job-author {
    background: rgba(168, 85, 247, 0.12) !important;
    color: #c084fc !important;
    border: 1px solid rgba(168, 85, 247, 0.2) !important;
}

.job__info {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding-top: 15px !important;
    margin-top: 15px !important;
    margin-bottom: 20px !important;
    list-style: none;
    padding-left: 0;
}

.job__info-title {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
}

.job__info span {
    font-weight: 600;
    font-size: 0.9rem;
}

.content__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.job__item-content .price {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--green-accent) !important;
    margin-bottom: 0 !important;
}

.job__item-content .btn--base {
    padding: 8px 18px !important;
    font-size: 0.85rem !important;
}

/* Counters Grid Redesign */
.counter-section {
    background-color: var(--bg-dark) !important;
    padding: 80px 0 !important;
}

.counter__item {
    background: rgba(17, 24, 39, 0.5) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-muted) !important;
    border-radius: 20px !important;
    padding: 40px 30px !important;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.counter__item:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow) !important;
    background: rgba(17, 24, 39, 0.8) !important;
}

.counter__item-icon {
    font-size: 2.8rem !important;
    color: var(--accent) !important;
    margin-bottom: 20px;
    display: inline-block;
}

.counter__item-content .title {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: var(--text-white) !important;
    margin-bottom: 8px;
    line-height: 1;
}

.counter__item-content .info {
    color: var(--text-muted) !important;
    font-size: 1rem !important;
    margin-bottom: 0;
    font-weight: 500;
}

/* Overview Section Redesign */
.overview-section {
    background-color: #111827 !important;
    border-top: 1px solid var(--border-muted);
    border-bottom: 1px solid var(--border-muted);
    padding: 0 !important;
}

.overview__content__wrapper {
    background: none !important;
    padding: 100px 50px !important;
    height: 100%;
    display: flex;
    align-items: center;
}

.overview__content__wrapper.right-bg {
    background: rgba(255, 255, 255, 0.01) !important;
    border-left: 1px solid var(--border-muted);
}

@media (max-width: 991px) {
    .overview__content__wrapper {
        padding: 60px 20px !important;
    }
    .overview__content__wrapper.right-bg {
        border-left: none;
        border-top: 1px solid var(--border-muted);
    }
}

.overview__content {
    width: 100%;
    max-width: 550px;
}

.overview__content .section__header-title {
    font-size: 2.6rem !important;
    font-weight: 800 !important;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 40%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overview__content p {
    color: var(--text-muted) !important;
    font-size: 1.05rem;
    margin-bottom: 35px !important;
    line-height: 1.7;
}

.overview__content .btn {
    background: var(--primary-grad) !important;
    border: none !important;
    border-radius: 8px !important;
    color: var(--text-white) !important;
    padding: 12px 32px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.25) !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.overview__content .btn:hover {
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.45) !important;
    transform: translateY(-2px);
}

.overview__content__wrapper.right-bg .btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}

.overview__content__wrapper.right-bg .btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--text-white) !important;
    box-shadow: none !important;
}

.overview__content__wrapper .shape1 {
    display: block;
    max-width: 90%;
    margin: 30px auto 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.overview__content__wrapper:hover .shape1 {
    transform: translateY(-4px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6), 0 0 35px rgba(168, 85, 247, 0.15);
}

/* Top Freelancers Redesign */
.freelancer-section {
    background-color: var(--bg-dark) !important;
    padding: 100px 0 !important;
}

.freelancer__item {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-muted) !important;
    border-radius: 20px !important;
    padding: 35px 24px !important;
    text-align: center;
    transition: all 0.3s ease;
    margin: 15px 10px;
}

.freelancer__item:hover {
    border-color: var(--border-glow) !important;
    background: var(--bg-card-hover) !important;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(168, 85, 247, 0.08) !important;
}

.freelancer__header .thumb {
    width: 96px;
    height: 96px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    padding: 4px;
    background: var(--primary-grad);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.25);
    position: relative;
}

.freelancer__header .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #111827;
}

.freelancer__header .name {
    color: var(--text-white) !important;
    font-weight: 750 !important;
    font-size: 1.15rem !important;
    margin-bottom: 6px;
}

.freelancer__header .designation {
    color: #818cf8 !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    margin-bottom: 0;
}

.freelancer__footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding-top: 20px !important;
    margin-top: 20px !important;
}

.freelancer__info {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.freelancer__info li span:first-child {
    color: var(--text-muted) !important;
    font-size: 0.85rem;
}

.freelancer__info li span:last-child {
    color: var(--text-white) !important;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Minimalist Accordion FAQ */
.faq-section {
    background-color: var(--bg-dark) !important;
    padding: 100px 0 !important;
}

.custom--accordion .accordion-item {
    background: rgba(17, 24, 39, 0.4) !important;
    border: 1px solid var(--border-muted) !important;
    margin-bottom: 16px !important;
    border-radius: 14px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom--accordion .accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.custom--accordion .accordion-button {
    background: transparent !important;
    color: var(--text-white) !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    padding: 22px 28px !important;
    box-shadow: none !important;
    border: none !important;
    transition: all 0.3s ease;
}

.custom--accordion .accordion-button::after {
    filter: brightness(0) invert(1);
    transform: scale(0.9);
}

.custom--accordion .accordion-button:not(.collapsed) {
    color: var(--accent) !important;
    background: rgba(168, 85, 247, 0.04) !important;
}

.custom--accordion .accordion-body {
    color: var(--text-muted) !important;
    line-height: 1.6;
    padding: 22px 28px !important;
    background: rgba(17, 24, 39, 0.2) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
    font-size: 0.95rem;
}

/* Blogs and Post Grid Redesign */
.post__item {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-muted) !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post__item:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3) !important;
    background: var(--bg-card-hover) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4) !important;
}

.post__item-thumb {
    height: 230px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-muted);
}

.post__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post__item:hover .post__item-thumb img {
    transform: scale(1.05);
}

.post__item-content {
    padding: 24px !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post__item-content .title {
    font-size: 1.25rem !important;
    font-weight: 750 !important;
    margin-bottom: 12px !important;
    line-height: 1.4;
}

.post__item-content .title a {
    color: var(--text-white) !important;
    transition: color 0.3s ease;
}

.post__item-content .title a:hover {
    color: var(--accent) !important;
}

.post-meta {
    margin-bottom: 16px !important;
    list-style: none;
    padding-left: 0;
}

.post-meta .date {
    color: #818cf8 !important;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post__item-content p {
    color: var(--text-muted) !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.post__item-content .read-more {
    color: var(--accent) !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post__item-content .read-more:hover {
    color: #818cf8 !important;
    transform: translateX(5px);
}

/* Footer Section Redesign */
.footer-section {
    background-color: #060912 !important;
    border-top: 1px solid var(--border-muted) !important;
    padding-top: 90px !important;
}

.footer-top {
    padding-bottom: 60px !important;
}

.footer__widget p {
    color: var(--text-muted) !important;
    line-height: 1.7;
    margin-top: 20px;
    font-size: 0.95rem;
}

.footer__widget .widget-title {
    color: var(--text-white) !important;
    font-weight: 750 !important;
    font-size: 1.25rem !important;
    margin-bottom: 30px !important;
    position: relative;
}

.footer__widget .widget-title::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--primary-grad);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links li a {
    color: var(--text-muted) !important;
    transition: all 0.3s ease !important;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--accent) !important;
    transform: translateX(4px);
}

.social-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    gap: 12px;
}

.social-links li a {
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-muted) !important;
    color: #d1d5db !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 1.1rem;
}

.social-links li a:hover {
    background: var(--primary-grad) !important;
    border-color: transparent !important;
    color: var(--text-white) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.35);
}

.footer-bottom {
    border-top: 1px solid var(--border-muted) !important;
    padding: 30px 0 !important;
}

.footer-bottom p {
    color: #4b5563 !important;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Responsiveness Fine-Tuning */
@media (max-width: 991px) {
    .banner-section {
        padding: 100px 0 60px 0 !important;
        text-align: center;
    }
    .banner__content {
        margin: 0 auto;
    }
    .job__search .form--group {
        flex-direction: column;
        border-radius: 20px !important;
        padding: 15px !important;
    }
    .job__search .form-select, .job__search .form-control {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        margin-bottom: 10px;
        text-align: center;
    }
    .job__search button {
        width: 100% !important;
        border-radius: 12px !important;
    }
    .popular__tags {
        text-align: center;
    }
    .popular__tags .title {
        display: block !important;
        margin-bottom: 10px;
    }
    .popular__tags .tags-list {
        justify-content: center;
    }
}

/* --- INNER PAGES & DASHBOARD REDESIGN OVERRIDES --- */

/* Inner Page Breadcrumbs Banner */
.banner-inner {
    background-color: var(--bg-dark) !important;
    background-image: radial-gradient(circle at 50% 120%, rgba(168, 85, 247, 0.15) 0%, transparent 60%) !important;
    padding: 90px 0 !important;
    border-bottom: 1px solid var(--border-muted) !important;
    position: relative;
    overflow: hidden;
}

.banner-inner .shapes {
    display: none !important;
}

.banner__inner__content-title {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: var(--text-white) !important;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 40%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcums {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 600;
}

.breadcums a {
    color: var(--text-muted) !important;
    transition: color 0.3s ease;
}

.breadcums a:hover {
    color: var(--accent) !important;
}

/* Account Registration & Login Forms */
.account-section {
    background-color: var(--bg-dark) !important;
    min-height: 100vh;
    display: flex;
}

.account-left {
    background: #0f1423 !important;
    border-right: 1px solid var(--border-muted);
    padding: 50px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 550px;
    width: 100%;
}

@media (max-width: 767px) {
    .account-left {
        padding: 30px 20px !important;
        max-width: 100%;
    }
}

.account__header-title {
    font-size: 2.2rem !important;
    color: var(--text-white) !important;
    margin-bottom: 10px;
    font-weight: 800 !important;
}

.account__header p {
    color: var(--text-muted) !important;
    margin-bottom: 30px;
}

/* Form Controls System Wide */
.form--control, .form-control, select, textarea {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--text-white) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    transition: all 0.3s ease !important;
}

.form--control:focus, .form-control:focus, select:focus, textarea:focus {
    border-color: var(--accent) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2) !important;
    outline: none !important;
}

.form-label, label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600 !important;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

/* Nice Select Dropdowns */
.nice-select {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--text-white) !important;
    border-radius: 8px !important;
    height: 48px !important;
    line-height: 46px !important;
    padding-left: 20px !important;
    padding-right: 30px !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

.nice-select:hover, .nice-select:focus, .nice-select.open {
    border-color: var(--accent) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2) !important;
}

.nice-select .current {
    color: var(--text-white) !important;
}

.nice-select .list {
    background-color: #111827 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
    border-radius: 8px !important;
    width: 100% !important;
    padding: 5px 0 !important;
}

.nice-select .option {
    color: var(--text-muted) !important;
    padding: 12px 20px !important;
    line-height: 1.5 !important;
    min-height: auto !important;
    transition: all 0.2s ease !important;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: rgba(168, 85, 247, 0.15) !important;
    color: var(--text-white) !important;
}

.nice-select::after {
    border-bottom: 2px solid #ffffff !important;
    border-right: 2px solid #ffffff !important;
    right: 18px !important;
}

/* Pagination Links */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px !important;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-item a, .pagination .page-item span {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--text-muted) !important;
    border-radius: 8px !important;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease !important;
}

.pagination .page-item.active a, .pagination .page-item.active span, .pagination .page-item a:hover {
    background: var(--primary-grad) !important;
    border-color: transparent !important;
    color: var(--text-white) !important;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3) !important;
}

/* Job Details Component Overhauls */
.job-details {
    background-color: var(--bg-dark) !important;
}

.job__details__wrapper, .job__details__widget, .sidebar__widget {
    background: var(--bg-card) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid var(--border-muted) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin-bottom: 25px !important;
    transition: all 0.3s ease;
}

.job__details__wrapper:hover, .job__details__widget:hover, .sidebar__widget:hover {
    border-color: rgba(168, 85, 247, 0.15) !important;
}

.job__details__wrapper-title, .job__details__widget-title, .sidebar__widget-title {
    color: var(--text-white) !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
}

.sidebar__widget-title {
    font-size: 1.2rem !important;
    position: relative;
    padding-bottom: 10px;
}

.sidebar__widget-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--primary-grad);
    border-radius: 2px;
}

.info__item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.info__item:last-child {
    border-bottom: none !important;
}

.info__item .icon {
    background: rgba(168, 85, 247, 0.1) !important;
    color: var(--accent) !important;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem !important;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.info__item .content .title {
    color: var(--text-muted) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    margin-bottom: 3px !important;
    letter-spacing: 0.05em;
}

.info__item .content span {
    color: var(--text-white) !important;
    font-weight: 600 !important;
    font-size: 0.95rem;
}

/* Contact Page Layouts */
.contact-section {
    background-color: var(--bg-dark) !important;
}

.contact__info__wrapper, .contact__form__wrapper {
    background: var(--bg-card) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-muted) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    height: 100%;
}

.contact__info__wrapper-title, .contact__form__wrapper-title {
    color: var(--text-white) !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    font-size: 1.8rem !important;
}

.contact__info__wrapper p {
    color: var(--text-muted) !important;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact__info__wrapper .title {
    color: var(--text-white) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact__info__wrapper .title i {
    color: var(--accent);
    font-size: 1.3rem;
}

.contact__info__wrapper .contacts {
    list-style: none;
    padding-left: 30px;
    margin-bottom: 0;
}

.contact__info__wrapper .contacts li {
    color: var(--text-muted);
    font-weight: 500;
}

/* Blog Details Layouts */
.blog-title {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: var(--text-white) !important;
    line-height: 1.35;
    margin-bottom: 25px;
}

.widget-box, .post-widget {
    background: var(--bg-card) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid var(--border-muted) !important;
    border-radius: 20px !important;
    padding: 25px !important;
    margin-bottom: 25px !important;
}

.latest-posts {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.latest-posts li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.latest-posts li:last-child {
    border-bottom: none;
}

.latest-posts .post-thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.latest-posts .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-posts .post-info .pro-title {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    line-height: 1.4;
    margin-bottom: 4px;
}

.latest-posts .post-info .pro-title a {
    color: var(--text-white) !important;
    transition: color 0.3s ease;
}

.latest-posts .post-info .pro-title a:hover {
    color: var(--accent) !important;
}

.latest-posts .post-info .posts-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* User Dashboard Cards and Tables */
.custom--card, .card {
    background: var(--bg-card) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid var(--border-muted) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    overflow: hidden;
}

.custom--card .card-header, .card-header {
    background: rgba(255, 255, 255, 0.02) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 20px 25px !important;
}

.custom--card .card-header .card-title, .card-header h5, .card-header .title {
    color: var(--text-white) !important;
    font-weight: 700 !important;
    margin: 0;
}

.custom--card .card-body, .card-body {
    padding: 25px !important;
    color: #e5e7eb !important;
}

.table {
    color: #e5e7eb !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.table thead th, .table thead tr {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--text-white) !important;
    font-weight: 700 !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.06) !important;
    padding: 16px 20px !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.table tbody td {
    padding: 16px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    vertical-align: middle !important;
    background: transparent !important;
    color: #e5e7eb !important;
}

.table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.01) !important;
}

/* Dashboard Sidebar Navigations */
.dashboard-section {
    background: var(--bg-dark) !important;
}

.dashboard__sidebar {
    background: #0f1423 !important;
    border-right: 1px solid var(--border-muted) !important;
    padding: 30px 20px !important;
}

.dashboard__sidebar__menu li a {
    color: var(--text-muted) !important;
    font-weight: 600 !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    margin-bottom: 5px;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard__sidebar__menu li a:hover, .dashboard__sidebar__menu li a.active {
    background: rgba(168, 85, 247, 0.1) !important;
    color: var(--accent) !important;
}

.dashboard__sidebar__menu li a i {
    font-size: 1.2rem;
}

/* Hero Overhaul Custom Search Wrapper */
.subtitle-badge {
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.25);
    color: #c084fc;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-block;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.08);
}

.search-box-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 100px !important;
    padding: 8px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(168, 85, 247, 0.05) !important;
    width: 100%;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.search-box-wrapper:focus-within {
    border-color: var(--accent) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 35px rgba(168, 85, 247, 0.25) !important;
}

.search-box-field {
    display: flex;
    align-items: center;
    padding: 0 15px;
    position: relative;
}

.search-box-field i {
    color: #818cf8;
    font-size: 1.25rem;
    margin-right: 10px;
}

.category-field {
    width: 40%;
}

.text-field {
    width: 45%;
    flex-grow: 1;
}

.search-box-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.search-box-wrapper .form-select, .search-box-wrapper .form-control {
    background: transparent !important;
    color: #ffffff !important;
    border: none !important;
    height: 44px !important;
    padding: 0 !important;
    font-size: 0.95rem;
}

.search-box-wrapper .form-select:focus, .search-box-wrapper .form-control:focus {
    box-shadow: none !important;
}

.search-box-wrapper .form-select option {
    background: #111827 !important;
    color: #ffffff !important;
}

.search-box-btn {
    background: var(--primary-grad) !important;
    border: none !important;
    border-radius: 100px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 0 35px !important;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3) !important;
    transition: all 0.3s ease !important;
    white-space: nowrap;
}

.search-box-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5) !important;
}

@media (max-width: 991px) {
    .search-box-wrapper {
        flex-direction: column !important;
        border-radius: 24px !important;
        padding: 15px !important;
    }
    .category-field, .text-field {
        width: 100% !important;
        padding: 10px 0 !important;
    }
    .search-box-divider {
        display: none !important;
    }
    .search-box-btn {
        width: 100% !important;
        margin-top: 10px;
    }
}

