body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #f8f9fa;
}

header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
}

.card {
    transition: transform 0.3s;
    border-radius: 10px;
}

.card:hover {
    transform: translateY(-5px);
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #007bff;
    text-decoration: none;
}

/* Sección de Logros con fondo estático */
.logros-section {
    background-image: url('../img/background_2.jpg'); /* URL de la imagen de fondo */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Hace que el fondo permanezca fijo */
    position: relative;
    color: #fff;
}

.logros-section .overlay {
    background: rgba(0, 0, 0, 0.6); /* Oscurece el fondo para resaltar el texto */
    padding: 50px 0;
}

.footer-section {
    background-image: url('../img/background_6.jpg'); /* URL de la imagen de fondo */
    background-size: auto;
    background-position: center;
    background-attachment: fixed; /* Fija la imagen de fondo */
    color: #fff;
    position: relative;
}

.footer-section .overlay {
    background: rgba(0, 0, 0, 0.7); /* Superposición oscura */
    padding: 60px 0;
}

.footer-section h5 {
    font-size: 1.25rem;
}

.footer-section a {
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section .form-control {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
}

.footer-section .form-control::placeholder {
    color: #ddd;
}

.footer-section .form-control:focus {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.footer-section .btn-primary {
    background-color: #007bff;
    border: none;
}

.footer-section .btn-primary:hover {
    background-color: #0056b3;
}


.contact-section {
    background-color: #f8f9fa;
}

.contact-section h2 {
    color: #333;
    font-size: 2.5rem;
}

.contact-section .form-control {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ced4da;
    transition: all 0.3s ease-in-out;
}

.contact-section .form-control:focus {
    background-color: #fff;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-section .form-control::placeholder {
    color: #6c757d;
}

.contact-section .btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease;
}

.contact-section .btn-primary:hover {
    background-color: #0056b3;
}