/* Job Details Page - Zoho Inspired Design */

/* Smooth Scrolling & Performance */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* Hardware Acceleration */
.btn-interested,
.btn-view-all,
.interview-step,
.job-info-item {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

:root {
    --zoho-blue: #3A7BD5;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
}

/* Job Header Section */
.job-header-section {
    background: var(--white);
    padding: 40px 0 60px;
    border-bottom: 1px solid var(--border-color);
}

.job-header-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.breadcrumb a {
    color: var(--zoho-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #2563B8;
}

.breadcrumb i {
    font-size: 10px;
    color: var(--text-light);
}

.breadcrumb span {
    color: var(--text-dark);
}

.job-title-wrapper {
    text-align: center;
}

.job-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.job-meta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.job-company {
    display: inline-flex;
    align-items: center;
}

.job-company img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

.job-separator {
    color: var(--border-color);
}

.job-type {
    color: var(--text-light);
}

/* Job Content Section */
.job-content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.job-content-container {
    background: var(--white);
}

.job-content-block {
    margin-bottom: 50px;
}

.section-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.job-description-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.job-content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-content-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    padding: 12px 0 12px 30px;
    position: relative;
    border-bottom: 1px solid #F0F0F0;
}

.job-content-list li:last-child {
    border-bottom: none;
}

.job-content-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--zoho-blue);
    font-size: 20px;
    font-weight: 700;
}

/* Action Button */
.job-action-wrapper {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.btn-interested {
    display: inline-block;
    padding: 16px 50px;
    background: var(--zoho-blue);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-interested:hover {
    background: #2563B8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 123, 213, 0.3);
}

/* Job Information Sidebar */
.job-info-sidebar {
    position: fixed;
    right: 40px;
    top: 200px;
    width: 280px;
    z-index: 100;
}

.job-info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 30px 25px;
    margin-bottom: 20px;
}

.info-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.info-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

.info-item-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.info-value {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    text-align: right;
}

/* View All Jobs Button */
.view-all-wrapper {
    text-align: center;
}

.btn-view-all-jobs {
    display: block;
    padding: 14px 30px;
    background: var(--white);
    color: var(--zoho-blue);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--zoho-blue);
    border-radius: 0;
    transition: all 0.3s;
    text-align: center;
}

.btn-view-all-jobs:hover {
    background: var(--zoho-blue);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .job-info-sidebar {
        right: 20px;
        width: 260px;
    }
}

@media (max-width: 1200px) {
    .job-info-sidebar {
        position: static;
        width: 100%;
        max-width: 900px;
        margin: 40px auto 0;
        padding: 0 20px;
    }
    
    .job-info-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .job-header-section {
        padding: 30px 0 40px;
    }
    
    .job-title {
        font-size: 28px;
    }
    
    .job-meta-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .job-separator {
        display: none;
    }
    
    .job-content-section {
        padding: 40px 20px 60px;
    }
    
    .section-heading {
        font-size: 20px;
    }
    
    .job-description-text,
    .job-content-list li {
        font-size: 15px;
    }
    
    .btn-interested {
        padding: 14px 40px;
        font-size: 15px;
        width: 100%;
    }
    
    .job-info-sidebar {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .job-title {
        font-size: 24px;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
    
    .job-meta-info {
        font-size: 14px;
    }
    
    .job-content-list li {
        padding-left: 25px;
    }
    
    .job-info-card {
        padding: 20px 15px;
    }
}


/* Footer */
.job-footer {
    background: #F8F9FA;
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    margin-top: 80px;
    text-align: center;
}

.job-footer-text {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 0.3px;
}


/* Interview Process Section */
.interview-process-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.interview-process-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 30px 0;
    text-align: center;
}

.interview-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.interview-step {
    background: var(--bg-light);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.interview-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--zoho-blue);
    color: var(--white);
    border-radius: 50%;
    line-height: 40px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.interview-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.interview-step p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Motivational Quote Section */
.motivational-quote-section {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.motivational-quote-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
}

.quote-text {
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .interview-steps {
        grid-template-columns: 1fr;
    }
    
    .motivational-quote-section {
        padding: 30px 20px;
    }
    
    .quote-text {
        font-size: 18px;
    }
}
