/* Zentropic Software Solutions - Main CSS */

:root {
  --zentropic-black: #000000;
  --zentropic-purple: #6a5acd;
  --zentropic-light-purple: #8a7edb;
  --zentropic-dark-purple: #4a3c9d;
  --zentropic-white: #ffffff;
  --zentropic-light-gray: #f5f5f7;
  --zentropic-dark-gray: #333333;
}

/* General Styling */
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--zentropic-dark-gray);
  line-height: 1.6;
}

/* Header & Navigation */
.navbar {
  background-color: var(--zentropic-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 50px;
}

.nav-link {
  color: var(--zentropic-dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link:focus {
  color: var(--zentropic-purple);
}

.nav-link.active {
  color: var(--zentropic-purple);
  font-weight: 600;
}

/* Buttons */
.btn-primary {
  background-color: var(--zentropic-purple);
  border-color: var(--zentropic-purple);
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--zentropic-dark-purple);
  border-color: var(--zentropic-dark-purple);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(106, 90, 205, 0.2);
}

.btn-outline-primary {
  color: var(--zentropic-purple);
  border-color: var(--zentropic-purple);
  padding: 8px 16px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--zentropic-purple);
  color: var(--zentropic-white);
  transform: translateY(-2px);
}

/* Section Styling */
.section-title {
  font-weight: 700;
  color: var(--zentropic-black);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--zentropic-purple);
  margin: 10px auto 0;
}

.section-subtitle {
  color: var(--zentropic-dark-gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Hero Section */
.careers-hero {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.careers-hero h1 {
  color: var(--zentropic-black);
  font-weight: 800;
}

.careers-hero .lead {
  font-size: 1.25rem;
  color: var(--zentropic-dark-gray);
}

.careers-hero img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers-hero img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(106, 90, 205, 0.15);
}

/* Benefits Section */
.benefit-card {
  background-color: var(--zentropic-white);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(106, 90, 205, 0.1);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(145deg, var(--zentropic-purple), var(--zentropic-dark-purple));
  color: var(--zentropic-white);
  border-radius: 50%;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.benefit-card h4 {
  color: var(--zentropic-black);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Job Cards */

.job-card {
  background-color: var(--zentropic-white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--zentropic-purple);
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(106, 90, 205, 0.1);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.job-title {
  font-weight: 700;
  margin-bottom: 0;
  color: var(--zentropic-black);
}

.job-type {
  background-color: rgba(106, 90, 205, 0.1);
  color: var(--zentropic-purple);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.job-detail {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--zentropic-dark-gray);
}

.job-detail i {
  color: var(--zentropic-purple);
  margin-right: 0.5rem;
}

.job-description {
  margin-bottom: 1.5rem;
}

.job-footer {
  display: flex;
  justify-content: flex-end;
}

/* Form Styling */
.form-label {
  font-weight: 500;
  color: var(--zentropic-dark-gray);
}

.form-control {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--zentropic-purple);
  box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.15);
}

.form-check-input:checked {
  background-color: var(--zentropic-purple);
  border-color: var(--zentropic-purple);
}

/* Footer */
footer {
  background-color: var(--zentropic-black);
  color: var(--zentropic-white);
  padding: 4rem 0;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-links h5 {
  color: var(--zentropic-white);
  font-weight: 600;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-links h5::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--zentropic-purple);
  margin-top: 10px;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--zentropic-purple);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--zentropic-white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--zentropic-purple);
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .careers-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 767px) {
  .job-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .job-type {
    margin-top: 0.5rem;
  }
  
  .job-details {
    flex-direction: column;
    gap: 0.5rem;
  }
}