/*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;
}



/* Estilos generales para la sección de contacto */
/* Contenedor de la sección de contacto */
.contact-section {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Título y párrafos */
.contact-section h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-section p {
  font-size: 1.125rem;
  margin-bottom: 30px;
  color: #666;
}

/* Formulario */
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f8f8f8;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #4c438c;
  box-shadow: 0 0 5px rgba(76, 67, 140, 0.5);
  outline: none;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Botón de envío */
button[type="submit"] {
  background-color: #4c438c;
  color: #fff;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.125rem;
  transition: background-color 0.3s, transform 0.2s;
}

button[type="submit"]:hover {
  background-color: #3a3270;
  transform: translateY(-2px);
}

/* Información de contacto adicional */
.contact-info {
  margin-top: 40px;
  font-size: 1rem;
  color: #555;
}

.contact-info a {
  color: #4c438c;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}


/* 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;
  }
}