
    /* Base Styles */
    :root {
        --primary-color: #000;
        --secondary-color: #333;
        --accent-color: #0066cc;
        --bg-color: #f9f9f9;
        --text-color: #333;
        --light-gray: #e5e5e5;
        --white: #fff;
        --transition: all 0.3s ease;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: var(--bg-color);
        color: var(--text-color);
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Hero Section */
    .hero {
        height: 57vh;
        position: relative;
        overflow: hidden;
        margin-top: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .hero-content {
        position: relative;
        text-align: center;
        color: var(--white);
        max-width: 800px;
        padding: 0 20px;
        animation: fadeInUp 1s ease-out;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        font-weight: 400;
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .hero-button {
        display: inline-block;
        padding: 12px 30px;
        background-color: var(--accent-color);
        color: var(--white);
        border: none;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .hero-button:hover {
        background-color: var(--white);
        color: var(--accent-color);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }
    
    /* Job Detail Content */
    .job-detail-section {
        padding: 80px 0;
    }
    
    .job-detail-container {
       
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .job-image-container {
        position: sticky;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 50vh;
        opacity: 0;
        animation: fadeInLeft 1s ease forwards;
        animation-delay: 0.3s;
    }
    
    .job-image {
        width: 100%;
      
        object-fit: cover;
        height: auto;
        transition: var(--transition);
    }
    
    .job-image-container:hover .job-image {
        transform: scale(1.05);
    }
    
    .job-content {
        opacity: 0;
        animation: fadeInRight 1s ease forwards;
        animation-delay: 0.5s;

    }
    
    .job-badge {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--white);
        font-size: 0.9rem;
        font-weight: 600;
        padding: 6px 15px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .job-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: var(--primary-color);
        position: relative;
        padding-bottom: 15px;
    }
    
    .job-title:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: var(--accent-color);
        bottom: 0;
        left: 0;
    }
    
    .job-meta {
        display: flex;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    
    .meta-item {
        display: flex;
        align-items: center;
        margin-right: 30px;
        margin-bottom: 10px;
    }
    
    .meta-icon {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        fill: var(--accent-color);
    }
    
    .job-description {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 40px;
    }
    
    .job-highlights {
        margin-bottom: 40px;
    }
    
    .highlights-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: var(--primary-color);
    }
    
    .highlights-list {
        list-style: none;
    }
    
    .highlights-item {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    .highlights-item:before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 12px;
        height: 12px;
        background-color: var(--accent-color);
        border-radius: 50%;
    }
    
    .apply-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: var(--primary-color);
        color: #ffff;
        border: none;
        border-radius: 5px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    
    .apply-button:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--accent-color);
        color: #fff;
        z-index: -1;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s ease;
    }
    
    .apply-button:hover:before {
        transform: scaleX(1);
        transform-origin: left;
        color: #fff;
    }
    
    .apply-button:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        color: #ffff;
    }
    
    /* Particles background */
    .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .particle {
        position: absolute;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        pointer-events: none;
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .job-detail-container {
            grid-template-columns: 1fr;
        }
        
        .job-image-container {
            height: 400px;
            margin-bottom: 30px;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
    }
    
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .job-title {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 576px) {
        .job-image-container {
            height: 300px;
        }
        
        .hero-title {
            font-size: 1.8rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
        }
        
        .job-title {
            font-size: 1.8rem;
        }
        
        .meta-item {
            margin-right: 15px;
        }
        
        .apply-button {
            width: 100%;
            text-align: center;
        }
    }




  
 
