@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #4f46e5;
    --secondary: #0ea5e9;
    --dark-surface: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --text-main: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: var(--text-main);
}

h2,
h4,
h3 {
    color: #161c40;
}

/* Hero Section */
.hero {
    /*background: linear-gradient(135deg, var(--primary-color) 0%, #004a94 100%);*/
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.hero .container {
    z-index: 9;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #00000057, #000000cf);
    backdrop-filter: blur(3px);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}


/* Filter Section */
.filter-section {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 12px;
    font-weight: 700;
    color: #00000099;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jobsection {
    padding: 60px 0;
}

.filter-section input,
.filter-section select {
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f1f5f9;
    color: #00000099;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.filter-section input:focus {
    border-color: var(--accent-color);
}

/* Job Cards Grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.job-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    z-index: 999;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-tag {
    background: #eff6ff;
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    width: fit-content;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00000099;
    margin: 0 0 12px 0;
}

.job-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    color: var(--accent-color);
}

.job-desc {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.apply-btn {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.apply-btn:hover {
    background-color: var(--accent-color);
    gap: 15px;
    color: #fff;
}


/* Header Styling */
.site-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    /* Logo size adjust karein */
    display: block;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-contact {
    /*background-color: var(--accent-color);*/
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-contact:hover {
    background-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Mobile Menu Toggle (Basic) */
.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }

    /* Mobile ke liye aap isse hamburger mein badal sakte hain */
    .mobile-toggle {
        display: block;
    }
}

nav.nav-menu a {
    color: #000000c2;
}


/* Footer Styling */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 0px 0 1px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-about img {
    height: 40px;
    filter: brightness(0) invert(1);
    /* Logo ko white karne ke liye */
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--accent-color);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /*margin-top: 60px;*/
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 20px 0;
    }

    .footer-container {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }
}

.job-listing-section {
    margin-top: -87px;
}

/* PREMIUM HERO SECTION */
.premium-hero {
    position: relative;
    padding: 110px 0 180px;
    background: var(--dark-surface);
    overflow: hidden;
    color: white;
    text-align: center;
    border-radius: 0 0 60px 60px;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    /*background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 50%);*/
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;

    margin-bottom: 20px;
}

/* JOB DETAILS LAYOUT */
.job-content-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.main-detail-card {
    background: white;
    border-radius: 32px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    padding: 50px 35px;
    margin-bottom: 40px;
}

.section-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

/* JOB TAGS (GLASS STYLE) */
.modern-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

/* SIDEBAR SUMMARY CARD */
.sidebar-card {
    background: white;
    border-radius: 32px;
    padding: 35px;
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 100px;
}

.summary-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-list li:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--text-muted);
    font-weight: 500;
}

.summary-value {
    font-weight: 700;
    color: var(--dark-surface);
}

/* CTA BUTTON (NEON SHADOW) */
.btn-premium-apply {
    background: var(--primary);
    color: white;
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.5);
}

.btn-premium-apply:hover {
    transform: translateY(-5px);
    background: var(--dark-surface);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.3);
    color: #fff;
}

/* CONTENT STYLING */
.description-text {
    line-height: 160%;
    font-size: 16px;
    color: #64748b;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    color: #161c40;
    font-size: 1.3rem;
    font-weight: 700;
}

.description-text h2 {
    font-weight: 800;
    margin-top: 40px;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .main-detail-card {
        padding: 30px;
    }
}

/* PREMIUM HERO SECTION */
.career-hero {
    background: var(--dark-surface);
    padding: 120px 0 120px;
    color: white;
    text-align: center;
    border-radius: 0 0 60px 60px;
    position: relative;
    overflow: hidden;
}

.career-hero::after {
    /*content: '';*/
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.2), transparent);*/
}


/* JOB CARD DESIGN */
.modern-job-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-job-card:hover {
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
    border-color: var(--primary);
}

.job-title-link {
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.job-title-link:hover {
    color: var(--primary);
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.job-meta-item i {
    color: var(--primary);
    width: 16px;
}

.job-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0px 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* MODERN BUTTON */
.btn-view-job {
    margin-top: auto;
    padding: 14px 24px;
    background: #f8fafc;
    color: var(--text-main);
    text-align: center;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

.modern-job-card:hover .btn-view-job {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .career-hero h1 {
        font-size: 2.5rem;
    }
}

/* ULTRA PREMIUM JOB CARD DESIGN */
.modern-job-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 26px;
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* Soft Elevation Shadow */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}


.modern-job-card:hover::before {
    opacity: 1;
}

/* Badge Styling */
.job-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: #f0f3ff;
    color: var(--primary);
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: 0.8px;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.category-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.5px;
}

/* Title Styling */
.job-title-link {
    color: var(--dark-surface);
    font-size: 1.6rem;
    font-weight: 800;
    margin: 20px 0 15px;
    text-decoration: none;
    line-height: 1.3;
    transition: 0.3s;
}

.job-title-link:hover {
    color: var(--primary);
}

/* Meta Data Grid */
.job-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.meta-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    background: #f8fafc;
    padding: 10px 14px;
    border-radius: 12px;
    transition: 0.3s;
}


.meta-box i {
    color: var(--primary);
}

/* Excerpt */
.job-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Premium Button */
.btn-view-job {
    width: 100%;
    padding: 16px;
    background: var(--dark-surface);
    color: #fff;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
    border: none;
}

.btn-view-job i {
    font-size: 14px;
    transition: 0.3s;
}

.modern-job-card:hover .btn-view-job {
    background: var(--primary);
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
}

.modern-job-card:hover .btn-view-job i {
    transform: translateX(5px);
}

.ai-notice-card {
    background: linear-gradient(145deg, #ffffff, #f0f4ff);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(79, 70, 229, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.ai-icon-pulse {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.5rem;
    position: relative;
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

.ai-step {
    background: white;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #eef2ff;
    font-size: 0.95rem;
    transition: 0.3s;
}

.ai-step:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white !important;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.icon-label {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Brand Colors */
.li-bg {
    background: #0077b5;
}

/* LinkedIn Blue */
.wa-bg {
    background: #25d366;
}

/* WhatsApp Green */
.nk-bg {
    background: #ff7519;
}

/* Naukri Orange */
.id-bg {
    background: #2164f3;
}

/* Indeed Blue */

.social-icon:hover {
    transform: translateY(-5px);
    filter: brightness(0.3);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.fw-800 {
    font-weight: 800;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Custom Input Styling */


.custom-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    background-color: #fff;
}

/* CV Upload UI */
.cv-upload-wrapper {
    position: relative;
    cursor: pointer;
}

.cv-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.cv-upload-box {
    padding: 14px;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.cv-upload-wrapper:hover .cv-upload-box {
    border-color: #4f46e5;
    background: #f0f4ff;
}

.shadow-primary {
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

.modal-header {
    background-color: var(--dark-surface);
}

.register-page-wrapper {
    background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

/* Left Side Content */
.brand-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
}

.brand-content p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 500px;
}

.feature-list {
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #f1f5f9;
    margin-bottom: 20px;
    font-weight: 500;
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

/* Right Side Card */
.reg-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.reg-header {
    padding: 30px 30px 10px;
    text-align: center;
}

.reg-header h2 {
    color: white;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.reg-header p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Form Elements */
.form-label {
    font-weight: 600;
    color: #cbd5e1;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}


.custom-input { background: rgba(2, 6, 23, 0.5) !important; border: 1px solid #334155 !important; color: white !important; padding: 12px 15px; border-radius: 12px; transition: 0.3s; }

.custom-input:focus {
    border-color: #38bdf8 !important;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15) !important;
}

.custom-input::placeholder {
    color: #475569;
}

/* Premium CV Upload Area */
.upload-zone {
    border: 2px dashed #334155;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    background: rgba(30, 41, 59, 0.3);
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.upload-zone:hover {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.05);
}

.cv-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

#uploadUI i {
    color: #38bdf8;
    margin-bottom: 10px;
}

#uploadUI h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Processing States */
#processingLoader {
    display: none;
}

.spinner-grow {
    width: 1.2rem;
    height: 1.2rem;
    background-color: #38bdf8;
}

/* Button Styling */
.btn-premium {
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
    color: white;
    font-weight: 700;
    padding: 15px;
    border-radius: 12px;
    width: 100%;
    border: none;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Utility */
.text-primary-glow {
    color: #38bdf8;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

@media (max-width: 991px) {
    .brand-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }
}

.login-page-wrapper {
    background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.login-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}



.profile-page-wrapper {
    /*background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);*/
    /*min-height: 100vh;*/
    margin-top: -100px;
    padding: 0 0 60px;
    /*color: #ffffff;*/
}

.glass-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    /*box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);*/
    overflow: hidden;
}

/* Profile Header with Accent */
.profile-hero-header {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, transparent 100%);
    padding: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-avatar-glow {
    width: 90px;
    height: 90px;
    background: rgba(2, 6, 23, 0.6);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
    color: #38bdf8;
}

/* Section Styling */
.form-section-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #38bdf8;
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-section-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* Premium Dark Inputs */
.label-premium {
    font-weight: 600;
    color: #cbd5e1;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.input-premium {
    /*background: rgba(2, 6, 23, 0.6) !important;*/
    /*border: 1px solid #334155 !important;*/
    /*color: #ffffff !important;*/
    /*padding: 14px 18px;*/
    /*border-radius: 14px;*/
    /*transition: 0.3s;*/
    /*font-size: 0.95rem;*/
}

.input-premium:focus {
    border-color: #38bdf8 !important;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15) !important;
    outline: none;
}

/* Resume Box Styling */
.cv-dark-box {
    background: rgba(30, 41, 59, 0.4);
    border: 2px dashed #334155;
    border-radius: 20px;
    padding: 30px;
    transition: 0.3s;
}

.cv-dark-box:hover {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.05);
}

.btn-view-cv {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-view-cv:hover {
    background: #38bdf8;
    color: #020617;
    border-color: #38bdf8;
}

/* Action Buttons */
.btn-save-neon {
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 16px 45px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transition: 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-save-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5);
    filter: brightness(1.1);
}

.text-glow {
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

.text-dim {
    color: #94a3b8;
}

/* Career Hero Section Styles */


.user-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    border-radius: 50rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 6, 23, 0.6);
    border: 2px solid #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    font-weight: 700;
}

.badge-text-top {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    line-height: 1;
}

.badge-text-name {
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-top: 4px;
    font-size: 1rem;
}

.hero-main-title {
    font-weight: 800;
    color: #ffffff;
    margin-top: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.matched-role-highlight {
    color: #38bdf8;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

/* Career Hero Dynamic Styling */
.career-hero-dynamic {
    background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
    border-radius: 0 0 40px 40px;
    padding: 80px 0 150px;
    position: relative;
    overflow: hidden;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(2, 6, 23, 0.6);
    border: 2px solid #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.user-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1.5rem 0.6rem 0.6rem;
    border-radius: 50rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    /*background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(20px);*/
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    /*box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); overflow: hidden;*/
    background: #fff;
}

.input-premium {
    /*background: rgba(2, 6, 23, 0.6) !important; border: 1px solid #334155 !important;*/
    /*color: #ffffff !important; padding: 14px; border-radius: 14px; transition: 0.3s;*/
}

.input-premium:focus {
    border-color: #38bdf8 !important;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15) !important;
}

.ai-insight-box {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px;
    padding: 25px;
}

.skill-badge {
    background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.progress-custom {
    height: 8px;
    border-radius: 10px;
}

.btn-save-neon {
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
    color: #fff;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transition: 0.3s;
}
#profileDropdown i {
    font-size: 26px;
    color: #0f172a;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .filter-section {
        flex-direction: column;
        padding: 20px;
    }

    .user-avatar-glow {
        display: none;
    }
    #navbarNav {
        padding: 21px 4px;
    }
    .login-page-wrapper{
        min-height: auto;
    }
}