body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f6f2f9;
  color: #333;
}
/*NAV BAR STYLES*/
.navbar-custom { 
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 0.75rem 1rem;
}

.navbar-custom .nav-link {
  color: #000000;
  font-weight: 400;
  font-size: 1rem;
}

.navbar-custom .nav-link:hover {
  color: #5b57a4;
}

.hire-now-btn {
  background-color: #5b57a4;
  color: white;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.hire-now-btn:hover {
  background-color: #49449a;
  color: #ffffff;
}

/* Estilo para que el logo se ajuste correctamente */
.navbar-brand img {
  height: 40px; /* ajusta la altura según necesites */
  width: auto;
  object-fit: contain;
  max-height: 100%;
  display: block;
}


/* === CAREERS SECTION === */
.careers-section {
  padding: 60px 20px;
}

.careers-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.careers-header h1 {
  font-size: 2.8rem;
  color: #4c438c;
  margin-bottom: 20px;
}

.careers-header p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.careers-btn {
  background-color: #4c438c;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.careers-btn:hover {
  background-color: #3a3270;
}

.careers-content {
  max-width: 1100px;
  margin: 0 auto;
}

.careers-block {
  margin-bottom: 60px;
  text-align: center;
}

.careers-block h2 {
  font-size: 2rem;
  color: #4c438c;
  margin-bottom: 20px;
}

.careers-block p {
  color: #666;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid of benefits */
.careers-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.careers-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  max-width: 300px;
  text-align: center;
  flex: 1 1 280px;
  transition: transform 0.3s ease;
}

.careers-card:hover {
  transform: translateY(-5px);
}

.careers-card h3 {
  color: #4c438c;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.careers-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Open Positions */
.careers-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.careers-list li {
  margin-bottom: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.apply-link {
  background-color: #4c438c;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.apply-link:hover {
  background-color: #3a3270;
}

@media (max-width: 768px) {
  .careers-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Footer Styles */ 
.footer-custom {
  background-color: #f6f2f9;
  color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
}

.footer-custom h6 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-custom ul {
  padding-left: 0;
  list-style: none;
}

.footer-custom ul li {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-custom ul li:hover {
  color: #999;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #4c438c;
  color: white;
  border-radius: 50%;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.social-icon:hover {
  background-color: #3a3270;
  transform: scale(1.1);
}

.btn-get-hired {
  background-color: #4c438c;
  color: #fff;
  padding: 6px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s;
}

.btn-get-hired:hover {
  background-color: #3a3270;
}

@media (max-width: 768px) {
  .footer-custom .col-md-4 {
    text-align: center;
  }

  .footer-custom .social-icon {
    margin: 0 4px;
  }

  .btn-get-hired {
    text-align: center;
  }
}
