/* Career Page Specific Styles */

/* Career Hero Section */
.career-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.career-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: heroFloat 8s ease-in-out infinite;
}

    .hero-shape.shape-1 {
        width: 120px;
        height: 120px;
        background: var(--secondary-color);
        top: 20%;
        right: 10%;
        animation-delay: 0s;
    }

    .hero-shape.shape-2 {
        width: 80px;
        height: 80px;
        background: var(--accent-color);
        bottom: 30%;
        left: 15%;
        animation-delay: 2s;
    }

    .hero-shape.shape-3 {
        width: 100px;
        height: 100px;
        background: var(--light-blue);
        top: 60%;
        right: 25%;
        animation-delay: 4s;
    }

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.career-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 16px;
}

    .breadcrumb a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .breadcrumb a:hover {
            color: var(--secondary-color);
        }

    .breadcrumb span {
        color: rgba(255, 255, 255, 0.6);
        margin: 0 10px;
    }

.career-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.career-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.career-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.career-stat {
    text-align: center;
}

    .career-stat .stat-number {
        font-size: 36px;
        font-weight: 700;
        color: var(--secondary-color);
        display: block;
        margin-bottom: 5px;
    }

    .career-stat .stat-text {
        color: rgba(255, 255, 255, 0.8);
        font-size: 16px;
        font-weight: 500;
    }

/* Why Work With Us Section */
.why-work-with-us {
    padding: 120px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(34, 57, 100, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    animation: fadeInUp 0.8s ease-out;
    animation-play-state: paused;
}

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(34, 57, 100, 0.15);
        border-color: var(--secondary-color);
    }

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Job Listings Section */
.job-listings {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Quick Links Section */
.quick-links-section {
    margin-bottom: 80px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.quick-link-card {
    background: white;
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(34, 57, 100, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .quick-link-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .quick-link-card:hover::before {
        transform: scaleX(1);
    }

    .quick-link-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(34, 57, 100, 0.15);
        border-color: var(--secondary-color);
    }

.quick-link-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: white;
}

.quick-link-card h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.quick-link-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.quick-link-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

    .quick-link-btn:hover {
        background: linear-gradient(135deg, var(--light-blue), var(--primary-color));
        transform: translateX(5px);
    }

.job-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid transparent;
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .filter-btn:hover,
    .filter-btn.active {
        background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 95, 0, 0.3);
    }

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.job-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(34, 57, 100, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    opacity: 1;
    transform: translateY(0);
}

    .job-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(34, 57, 100, 0.15);
        border-color: var(--secondary-color);
    }

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    flex: 1;
}

.job-type {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.job-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

    .job-info i {
        color: var(--secondary-color);
        width: 16px;
    }

.job-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.tag {
    background: rgba(255, 95, 0, 0.1);
    color: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.apply-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .apply-btn:hover {
        background: linear-gradient(135deg, var(--light-blue), var(--primary-color));
        transform: translateY(-2px);
    }

/* Application Modal */
.application-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 0;
    margin-bottom: 30px;
}

    .modal-header h3 {
        color: var(--primary-color);
        font-size: 24px;
        font-weight: 600;
        margin: 0;
    }

.modal-close {
    font-size: 30px;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

    .modal-close:hover {
        color: var(--secondary-color);
    }

.modal-body {
    padding: 0 30px 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--primary-color);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
        }

    .form-group small {
        color: var(--text-light);
        font-size: 12px;
        margin-top: 5px;
        display: block;
    }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 0 !important;
}

    .checkbox-label input[type="checkbox"] {
        width: auto;
        margin: 0;
    }

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .submit-btn:hover {
        background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
        transform: translateY(-2px);
    }

/* Footer Styles for Career Page */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
    color: white;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 25%, var(--light-blue) 50%, var(--accent-color) 75%, var(--secondary-color) 100%);
    }

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h4.footer-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

    .footer-section h4.footer-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        border-radius: 2px;
    }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        border-color: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 95, 0, 0.3);
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s ease;
        position: relative;
    }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 10px;
        }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .contact-detail i {
        color: var(--secondary-color);
        font-size: 18px;
        margin-top: 2px;
        min-width: 20px;
    }

    .contact-detail span {
        color: rgba(255, 255, 255, 0.8);
        font-size: 16px;
        line-height: 1.5;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

    .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .footer-bottom-links a:hover {
            color: var(--accent-color);
        }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .career-hero {
        padding: 100px 0 60px;
    }

    .career-hero-title {
        font-size: 36px;
    }

    .career-hero-description {
        font-size: 18px;
    }

    .career-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .why-work-with-us,
    .job-listings {
        padding: 80px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
}

@media (max-width: 480px) {
    .career-hero-title {
        font-size: 28px;
    }

    .career-stats {
        flex-direction: column;
        gap: 20px;
    }

    .job-filters {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .job-card {
        padding: 20px;
    }

    .modal-header,
    .modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section:first-child {
        grid-column: 1;
    }

    .footer-links {
        text-align: center;
    }

    .contact-details {
        text-align: left;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
