.header {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
    background-color: #f1f1f1;
}

.progress-container {
    width: 100%;
    height: 8px;
    background: #ccc;
}

.progress-bar {
    height: 8px;
    background: #455785;
    width: 0%;
}



/*Para el slider*/
.carousel {
    width: 100%;
    max-height: 400px; 
    overflow: hidden; 
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover; 
    max-height: 400px; 
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5); 
    padding: 10px;
    border-radius: 10px;
}

.carousel-caption h5 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carousel-caption p {
    font-size: 1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    line-height: 30px;
    text-align: center;
    font-size: 1.5rem;
    color: white;
}

.carousel-control-prev-icon::after {
    content: '❮';
}

.carousel-control-next-icon::after {
    content: '❯';
}

.carousel-indicators button {
    background-color: #000;
}


/*Para el container de mision y vision*/
.card {
    justify-content: center;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border-radius: 10px; /* Añade bordes redondeados */
    height: 225px;

}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.card-text {

    font-size: 1rem;
    line-height: 1.5;
}

