/* Career Page Specific Styles */

.nav-link.active {
    color: #00d4ff !important;
    border-bottom: 2px solid #00d4ff;
}

/* Career Hero Section */
.career-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.career-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.career-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.career-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.career-hero .hero-description {
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 500px;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b3b3b3;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Positions Section */
.positions-section {
    padding: 6rem 0;
    background: #111111;
    text-align: center;
}

.positions-section .container {
    text-align: center;
}

.positions-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    text-shadow: none !important;
}

/* New simple positions styles */
.simple-positions {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
}

.position-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.position-item h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.position-item p {
    color: #b3b3b3;
    line-height: 1.6;
}

.contact-hiring {
    text-align: center;
    margin: 3rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    display: block;
}

.contact-hiring p {
    color: #b3b3b3;
    font-size: 1.1rem;
    margin: 0;
}

.contact-hiring a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.contact-hiring a:hover {
    text-decoration: underline;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    text-align: center;
}

.benefits-section .container {
    text-align: center;
}

.benefits-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    text-shadow: none !important;
}

/* New simple benefits styles */
.benefits-simple {
    text-align: center;
    margin-top: 3rem;
    max-width: 600px;
    margin: 3rem auto 0;
}

.benefits-simple p {
    color: #b3b3b3;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.benefits-simple p:hover {
    transform: translateY(-3px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: #1a1a2e;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.close:hover {
    color: #00d4ff;
}

#modalTitle {
    color: #ffffff;
    margin-bottom: 2rem;
    margin-top: 0;
}

.modal .form-group label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.modal .form-group input,
.modal .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .simple-positions {
        margin: 2rem auto 0;
        padding: 0 1rem;
        text-align: center;
    }
    
    .position-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .position-item h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .contact-hiring {
        margin: 2rem auto 0;
        padding: 1.5rem;
        text-align: center;
    }
    
    .benefits-simple {
        margin: 2rem auto 0;
        padding: 0 1rem;
        text-align: center;
    }
    
    .benefits-simple p {
        font-size: 1.1rem;
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .career-hero {
        padding-top: 100px;
        min-height: 70vh;
    }
    
    .career-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .career-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .career-hero .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .career-hero .hero-description {
        font-size: 1rem;
    }
    
    .position-item {
        padding: 1.2rem;
        text-align: center;
    }
    
    .position-item h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .contact-hiring {
        padding: 1.2rem;
        text-align: center;
        margin: 2rem auto 0;
    }
    
    .benefits-simple p {
        font-size: 1rem;
        padding: 0.7rem;
    }
}
