.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 30px auto auto auto; /* Superior, Derecho, Inferior, Izquierdo */
  padding: 20px;
  border-radius: 10px;
  width: 70%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.h4Modal{
  margin: 20px 0px 30px 20px;
}

.modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal-close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
  
  .modal-image {
      width: 100%;
      margin-top: 15px;
      border-radius: 5px;
  }
  
  @media screen and (max-width: 700px) {
    .modal-content {
      width: 95%; /* Hacer que el modal sea más ancho incluso en pantallas más pequeñas */
      margin-top: 20px; /* Aumentar el margen en dispositivos móviles para mejor visualización */
      border-radius: 10px; /* Bordes redondeados adaptados a pantallas más pequeñas */
    }
  }
  

  
  /* Estilos para las imágenes dentro de Swiper para que sean responsivas */
  .swiper-slide img {
    width: auto;  /* Ajuste de anchura automático */
    max-width: 100%;  /* Asegura que la imagen no sea más ancha que el slide */
    height: auto;  /* Altura automática para mantener la proporción */
    max-height: 100%; /* Asegura que la imagen no sea más alta que el slide */
    display: block; /* Elimina espacio adicional debajo de la imagen */
    margin: auto; /* Centra la imagen si es más pequeña que el contenedor */
  }
  
  
  .modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
  }
  
  .swiper-container {
    position: relative;
    width: 100%;
    height: 750px;
  }
  
  .swiper-slide img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    margin: auto;
  }
  
  
  /* Estilos para la descripción y secciones de contenido */
  .project-description, .project-technologies, .project-features, 
  .project-testimonials, .project-results, .project-cta {
    margin-top: 20px;
  }
  
  .project-technologies ul, .project-features ul {
    list-style: none;
    padding: 0;
  }
  
  .project-technologies li, .project-features li {
    display: inline-block;
    margin-right: 10px;
    background-color: #f2f2f2;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .project-testimonials blockquote {
    font-style: italic;
    border-left: 4px solid #007bff;
    padding-left: 10px;
  }
  
  .project-cta button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s ease;
  }
  
  .project-cta button:hover {
    background-color: #0056b3;
  }

  .project-features {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
  }
  
  .project-features h5 {
    color: #007bff;
    font-size: 1.75em;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
  }
  
  .feature-text p {
    color: #333;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: justify;
  }
  
  .feature-text p:first-child {
    font-weight: bold;
    color: #555;
  }

  
  /* Responsive design for smaller screens */
  @media (max-width: 768px) {
    .project-features {
      padding: 15px;
    }
    
    .project-features h5 {
      font-size: 1.5em;
    }
  }

  
  .project-testimonials {
    font-family: 'Arial', sans-serif;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
  }
  
  .project-testimonials h5 {
    color: #007bff;
    font-size: 1.75em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
  }
  
  .testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .testimonial-column {
    flex: 0 0 45%;
    margin-bottom: 20px;
  }
  
  blockquote {
    quotes: "“" "”" "‘" "’";
    padding: 10px 20px;
    position: relative;
    font-style: italic;
    margin: 0;
    background: #fff;
    border-left: 5px solid #007bff;
  }
  
  blockquote:before {
    content: open-quote;
    font-size: 2em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
    color: #007bff;
  }
  
  blockquote:after {
    content: close-quote;
    font-size: 2em;
    line-height: 0.1em;
    margin-left: 0.25em;
    vertical-align: -0.4em;
    color: #007bff;
  }
  
  cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    text-align: right;
    color: #333;
  }
  
  /* Responsive design for smaller screens */
  @media (max-width: 768px) {
    .testimonials-container {
      flex-direction: column;
    }
    
    .testimonial-column {
      flex: 0 0 100%;
      margin-bottom: 10px;
    }
    
    .project-testimonials h5 {
      font-size: 1.5em;
    }
  }
  
  
  .swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: auto; /* Remueve la posición superior si está definida */
    bottom: 10px; /* Ajusta la distancia al fondo del carrusel */
    z-index: 10; /* Asegúrate de que los botones estén sobre cualquier otro elemento */
  }
  
  .swiper-button-next {
    right: 10px; /* Ajusta la distancia a la derecha del carrusel */
  }
  
  .swiper-button-prev {
    left: 10px; /* Ajusta la distancia a la izquierda del carrusel */
  }
  
  /* Estilos para que el período y la empresa se vean en línea continua (solo en Experience) */
  .timeline-second-style .left-part {
    white-space: nowrap;
  }
  
  .timeline-second-style .item-period {
    white-space: nowrap;
    display: block;
  }
  
  .timeline-second-style .item-company {
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  /* Estilos para Education: permitir ajuste de texto */
  .education-section .left-part {
    white-space: normal;
    word-wrap: break-word;
  }
  
  .education-section .item-period {
    white-space: normal;
  }
  
  .education-section .item-company {
    white-space: normal;
    word-wrap: break-word;
    display: block;
  }
  
  .timeline-second-style .item-company .ClassimgItemCompany {
    order: -1;
    margin-bottom: 5px;
  }
  
  .timeline-second-style .item-company label {
    order: 0;
  }
  
  /* Estilos para iconos más pequeños al lado del título en "What I Do" */
  .info-block-w-icon .ci-text h4 {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .info-block-w-icon .ci-text h4 i {
    font-size: 16px;
    color: #004aad;
    opacity: .7;
  }
  
  /* Uniformar el tamaño del texto en todos los párrafos - exactamente 4 líneas */
  .info-block-w-icon .ci-text p {
    font-size: 0.95em;
    line-height: 1.5;
    height: 5.7em; /* 4 líneas: 1.5 * 4 = 6em, ajustado a 5.7em para mejor visualización */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 0;
  }
  
  