/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    color: #0d6efd;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin-bottom: 2rem;
}

.back-button i {
    margin-right: 8px;
}

/* Hero Section */
.careers-hero {
    background: linear-gradient(rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.1));
    padding: 4rem 0;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.careers-hero h1 {
    font-weight: 700;
    color: #0d6efd;
}

/* Benefits List */
.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

/* Culture Cards */
.culture-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-5px);
}

.culture-card i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* Benefit Cards */
.benefit-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.benefit-card i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* Position Cards */
.position-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.position-details {
    display: flex;
    gap: 1.5rem;
    color: #666;
}

.position-details i {
    margin-right: 0.5rem;
}

/* Position Filters */
.position-filters {
    margin-bottom: 2rem;
}

.position-filters .btn {
    margin: 0 0.5rem;
}

/* Modal Styles */
.modal-content {
    border-radius: 10px;
}

.modal-body {
    padding: 2rem;
}

/* Form Styles */
.form-control {
    padding: 0.8rem;
    border-radius: 8px;
}

.form-label {
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .careers-hero {
        padding: 2rem 0;
    }

    .position-filters .btn {
        margin: 0.5rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-item i {
        margin-bottom: 1rem;
        margin-right: 0;
    }
} 