/* True Job (Trust of India) - Google / Material UI/UX Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary: #1a73e8; /* Google Blue */
    --primary-hover: #1557b0;
    --primary-light: #e8f0fe; /* Google Light Blue Selection */
    --secondary: #34a853; /* Google Green */
    --secondary-hover: #2d8c47;
    --bg-dark: #f8f9fa; /* Google Page Background */
    --bg-card: #ffffff;
    --bg-card-hover: #f1f3f4;
    --bg-glass: rgba(255, 255, 255, 0.95);
    --border: #dadce0; /* Material Divider Line */
    --border-hover: #1a73e8;
    --text-main: #202124; /* Google Dark Text */
    --text-muted: #5f6368; /* Google Secondary Label */
    --text-inverse: #ffffff;
    
    --success: #34a853; /* Google Green */
    --warning: #fbbc05; /* Google Yellow */
    --danger: #ea4335; /* Google Red */
    --info: #1a73e8;
    
    --grad-primary: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    --grad-accent: linear-gradient(135deg, #34a853 0%, #2d8c47 100%);
    
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Google Elevation Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
    --shadow-md: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
    --shadow-lg: 0 2px 6px 0 rgba(60,64,67,0.3), 0 10px 20px 5px rgba(60,64,67,0.15);
    
    --radius-sm: 8px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--primary-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* Material Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
}
.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-btn {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    border: 1px solid var(--border);
}
.nav-btn.login {
    color: var(--primary);
    border-color: var(--border);
    background: transparent;
}
.nav-btn.login:hover {
    background: rgba(26, 115, 232, 0.04);
    border-color: var(--primary);
}
.nav-btn.signup {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.nav-btn.signup:hover {
    background: var(--primary-hover);
}

/* Footer styling */
footer {
    background: #ffffff;
    border-top: 1px solid var(--border);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--text-main);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer-col h4 {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 15px;
}
.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: var(--text-muted);
    font-size: 14px;
}
.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 4px; /* Material Design style */
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    gap: 8px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 1px 3px rgba(60,64,67,0.3);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: #f8f9fa;
    color: var(--text-main);
    border-color: #c0c0c0;
}

.btn-accent {
    background: var(--secondary);
    color: white;
}
.btn-accent:hover {
    background: var(--secondary-hover);
}

.btn-danger {
    background: var(--danger);
    color: white;
}
.btn-danger:hover {
    background: #d93025; /* Google Red hover */
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}
.hero h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #202124;
}
.hero h1 span {
    color: var(--primary);
}
.hero p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 35px;
}

/* Hero Search Bar */
.search-bar-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.search-form {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 8px;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}
.search-input-group svg {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
}
.search-input-group input,
.search-input-group select {
    width: 100%;
    padding: 12px 12px 12px 38px;
    background: #f8f9fa;
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--text-main);
    font-size: 14px;
    outline: none;
    font-family: inherit;
    appearance: none;
    transition: var(--transition);
}
.search-input-group input::placeholder {
    color: var(--text-muted);
}
.search-input-group input:focus,
.search-input-group select:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(26,115,232,0.2);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #202124;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}
.page-section {
    padding: 50px 0;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.category-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
/* Google Color Categories */
.category-card:nth-child(1) .category-icon { background: rgba(26,115,232,0.1); color: #1a73e8; } /* Blue */
.category-card:nth-child(2) .category-icon { background: rgba(52,168,83,0.1); color: #34a853; } /* Green */
.category-card:nth-child(3) .category-icon { background: rgba(234,67,53,0.1); color: #ea4335; } /* Red */
.category-card:nth-child(4) .category-icon { background: rgba(251,188,5,0.1); color: #fbbc05; } /* Yellow */

.category-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #202124;
}
.category-card p {
    color: var(--text-muted);
    font-size: 13px;
}

/* City List */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.city-pill {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 18px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-main);
    transition: var(--transition);
    cursor: pointer;
}
.city-pill:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* Banner CTAs */
.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.banner-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.banner-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #202124;
}
.banner-card p {
    color: var(--text-muted);
    font-size: 14px;
}
.banner-card .btn {
    align-self: flex-start;
}

/* Stats Section */
.stats-bar {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}
.stat-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}
.stat-item p {
    color: var(--text-muted);
    font-size: 13px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.testimonial-quote {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}
.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 13px;
}
.author-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #202124;
}
.author-info p {
    font-size: 11px;
    color: var(--text-muted);
}

/* Contact Lead Form */
.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-info-item {
    display: flex;
    gap: 15px;
}
.contact-info-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-info-details h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #202124;
}
.contact-info-details p {
    color: var(--text-muted);
    font-size: 13px;
}

.lead-form-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(26,115,232,0.2);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Notification Alerts */
.msg-alert {
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
}
.msg-alert.success {
    background: #e6f4ea; /* Google green alert bg */
    border-color: #34a853;
    color: #137333;
}
.msg-alert.error {
    background: #fce8e6; /* Google red alert bg */
    border-color: #ea4335;
    color: #c5221f;
}

/* Authentication Layout */
.auth-wrapper {
    max-width: 450px;
    width: 100%;
    margin: 60px auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}
.auth-header h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #202124;
}
.auth-header p {
    color: var(--text-muted);
    font-size: 13px;
}

.auth-tabs {
    display: flex;
    background: #f1f3f4;
    border-radius: 4px;
    padding: 3px;
    margin-bottom: 25px;
    border: 1px solid var(--border);
}
.auth-tab {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    font-weight: 500;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}
.auth-tab.active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Job Listing Page (Jobs.php) */
.jobs-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 25px;
}

.filter-sidebar {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    align-self: start;
    position: sticky;
    top: 85px;
}

.filter-section {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}
.filter-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.filter-section h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.filter-options label {
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-options label input[type="checkbox"],
.filter-options label input[type="radio"] {
    accent-color: var(--primary);
    width: 15px;
    height: 15px;
}

/* Job Cards */
.jobs-list-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.job-card:hover {
    box-shadow: 0 4px 12px rgba(60,64,67,0.1);
    border-color: #b0c9f0;
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.job-title-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a73e8; /* Google Link Blue */
    margin-bottom: 4px;
}
.job-company {
    font-weight: 500;
    color: var(--text-main);
    font-size: 14px;
}

.job-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.meta-badge {
    background: #f1f3f4;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.meta-badge.salary {
    background: rgba(52,168,83,0.08);
    color: #137333;
}

.job-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}
.job-posted-time {
    font-size: 11px;
    color: var(--text-muted);
}

/* Job Details Page */
.job-details-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin-top: 25px;
}

.job-details-main {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 30px;
}

.job-details-title-row {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.job-details-title-row h1 {
    font-size: 26px;
    font-weight: 700;
    color: #202124;
    margin-bottom: 6px;
}

.detail-section {
    margin-bottom: 25px;
}
.detail-section h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}
.detail-section p {
    font-size: 14px;
    color: var(--text-main);
    white-space: pre-line;
}

.detail-skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.skill-badge {
    background: #f1f3f4;
    color: var(--text-muted);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
}

.job-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebar-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
}
.sidebar-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #202124;
}

.sidebar-info-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 12px;
}
.sidebar-info-row:last-child {
    margin-bottom: 0;
}
.sidebar-info-row span.label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.sidebar-info-row span.val {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

/* Dashboard Core Layout */
.dashboard-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    margin-top: 25px;
}

.dashboard-menu {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 15px 5px;
    align-self: start;
}
.dashboard-user-info {
    text-align: center;
    padding: 5px 10px 15px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
}
.dashboard-user-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #202124;
}
.dashboard-user-info p {
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dashboard-menu-links {
    display: flex;
    flex-direction: column;
    gap: 3px;
    list-style: none;
}
.dashboard-menu-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    border-radius: 0 20px 20px 0; /* Google side tabs style */
    margin-right: 5px;
    transition: var(--transition);
}
.dashboard-menu-links a:hover {
    background: #f1f3f4;
    color: var(--text-main);
}
.dashboard-menu-links li.active a {
    background: #e8f0fe; /* Google selected state blue */
    color: #1a73e8; /* Google selected state blue text */
    font-weight: 600;
}

.dashboard-main-content {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 30px;
}
.dashboard-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}
.dashboard-header-row h2 {
    font-size: 20px;
    font-weight: 700;
    color: #202124;
}

/* Dashboard Forms & Tables */
.dashboard-table-container {
    overflow-x: auto;
}
.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13px;
}
.dashboard-table th {
    background: #f8f9fa;
    padding: 10px 12px;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.dashboard-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
}
.dashboard-table tr:hover td {
    background: #f8f9fa;
}

.status-indicator {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}
.status-indicator.applied,
.status-indicator.pending {
    background: #fef7e0; /* Google warning yellow alert bg */
    color: #b06000;
}
.status-indicator.shortlisted,
.status-indicator.active {
    background: #e6f4ea;
    color: #137333;
}
.status-indicator.selected {
    background: #e6f4ea;
    color: #137333;
    border: 1px solid #34a853;
}
.status-indicator.rejected {
    background: #fce8e6;
    color: #c5221f;
}

/* Dashboard Stats Grid */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}
.dash-stat-card {
    background: #f8f9fa;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 15px;
    text-align: center;
}
.dash-stat-card h4 {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.dash-stat-card p {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

/* Resume Builder / Generator Layout */
.resume-preview-container {
    background: white;
    color: #202124;
    padding: 40px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.resume-header {
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 20px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.resume-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #202124;
    margin-bottom: 5px;
}
.resume-header .contact-details {
    text-align: right;
    font-size: 13px;
    color: #5f6368;
}
.resume-section {
    margin-bottom: 25px;
}
.resume-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1a73e8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e8eaed;
    padding-bottom: 5px;
    margin-bottom: 12px;
}
.resume-grid {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 12px;
}
.resume-label {
    font-weight: 500;
    color: #5f6368;
}
.resume-val {
    color: #202124;
}

/* Print Resume Styles override */
@media print {
    body * {
        visibility: hidden;
    }
    .resume-preview-container, .resume-preview-container * {
        visibility: visible;
    }
    .resume-preview-container {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
    }
    header, footer, .dashboard-menu, .dashboard-header-row, .btn, .msg-alert, h2.no-print {
        display: none !important;
    }
}

/* Responsiveness adjustments */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 1024px) {
    .jobs-page-layout {
        grid-template-columns: 1fr;
    }
    .filter-sidebar {
        position: static;
    }
    .job-details-layout,
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 15px 5px;
        gap: 15px;
    }
    .logo {
        font-size: 18px !important;
    }
    .logo img {
        height: 28px !important;
    }
    .nav-links {
        padding: 0;
        gap: 8px 12px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .nav-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    .hero h1 {
        font-size: 30px;
    }
    .search-form {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .banner-grid,
    .testimonial-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-main-content {
        padding: 15px;
    }
    .resume-preview-container {
        padding: 20px;
        margin-top: 15px;
    }
    .resume-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .resume-header .contact-details {
        text-align: left;
    }
    .resume-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}
