 body{
            /* Estilo general para la barra de navegación */
        .navbar {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            padding: 20px 0;
            background-color: transparent;
            transition: background-color 0.3s ease, padding 0.3s ease;
            z-index: 1000;
        }
        .navbar-brand .logo {
            height: 100px; /* Ajusta la altura del logo según sea necesario */
            width: auto;
            }

        .navbar.scrolled {
            background-color: rgb(16, 122, 192);
            padding: 10px 0;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .navbar-brand {
            font-size: 24px;
            color: #ffffff;
            text-decoration: none;
        }

        .navbar-toggler {
            display: none;
            font-size: 28px;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
        }

        .navbar-nav {
            display: flex;
            gap: 20px;
            flex-direction: row;
        }

        .nav-link {
            color: #ffffff;
            text-decoration: none;
            font-size: 18px;
            font-family: "Poppins" sans-serif;
        }

        .nav-link:hover {
            color: #ffffff;
        }

        /* Responsivo para móviles */
        @media (max-width: 768px) {
            .navbar-toggler {
                display: block;
            }

            .navbar-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color:  rgb(16, 122, 192);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 10px 0;
            }

            .navbar-nav.show {
                display: flex;
            }

            .nav-link {
                padding: 10px 20px;
                text-align: center;
                color: #ffffff;
            }
        }

        .parallax {
            background-image: url('img/people-safety-equipment-work.jpg');
            height: 700px;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative; /* Necesario para el overlay */
        }
        .parallax::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Negro semi-transparente */
            z-index: 1;
        }
        
        .parallax-content {
            z-index: 2; /* Asegura que el contenido esté encima del overlay */
            color: white; /* Opcional, para hacer el texto legible */
            text-align: center; /* Centra el texto */
        }
        .parallax2 {
            background-image: url('img/landmarks-modern-city.jpg');
            height: 700px;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative; /* Necesario para el overlay */
        }
        
        .parallax2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Negro semi-transparente */
            z-index: 1;
        }
        
        .parallax2-content {
            z-index: 2; /* Asegura que el contenido esté encima del overlay */
            color: white; /* Opcional, para hacer el texto legible */
            text-align: center; /* Centra el texto */
        }

        .parallax3 {
            background-image: url('img/young-colleagues-working-together-cafe.jpg');
            height: 700px;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative; /* Necesario para el overlay */
        }
        .parallax3::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Negro semi-transparente */
            z-index: 1;
        }
        
        .parallax3-content {
            z-index: 2; /* Asegura que el contenido esté encima del overlay */
            color: white; /* Opcional, para hacer el texto legible */
            text-align: center; /* Centra el texto */
        }

        .parallax4 {
            background-image: url('img/student-849822_1280.jpg');
            height: 700px;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative; /* Necesario para el overlay */
        }
        .parallax4::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Negro semi-transparente */
            z-index: 1;
        }
        
        .parallax4-content {
            z-index: 2; /* Asegura que el contenido esté encima del overlay */
            color: white; /* Opcional, para hacer el texto legible */
            text-align: center; /* Centra el texto */
        }

        .parallax5 {
            background-image: url('img/laptop-6856557_1280.jpg');
            height: 700px;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative; /* Necesario para el overlay */
        }
        .parallax5::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Negro semi-transparente */
            z-index: 1;
        }
        
        .parallax5-content {
            z-index: 2; /* Asegura que el contenido esté encima del overlay */
            color: white; /* Opcional, para hacer el texto legible */
            text-align: center; /* Centra el texto */
        }

        .nosotros-texto {
            padding: 3rem 1rem;
            text-align: justify;
        }

        .nosotros-texto h3 {
            font-weight: 400;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .contenedor1 {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .card {
            border: none;
            background-color: #f8f9fa;
            padding: 1.5rem;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }

        .card-body p {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: #0056b3;
        }

        @media (min-width: 768px) {
            .nosotros-texto h3 {
                font-size: 1.5rem;
            }

            .contenedor1 {
                flex-direction: row;
                justify-content: space-between;
            }

            .card {
                width: 48%;
            }
        }

        footer {
            background-color: #343a40;
            color: #ffffff;
            padding: 2rem 0;
            margin-top: 2rem;
        }

        footer a {
            color: #ffffff;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

     .text-first-1 h1{
            width: 100%;
            height: 720;
            color: white;
            font-family: "Poppins", sans-serif;
            font-size:40PX;
            font-weight: 700;
            text-align: center;
        }
    h1{
        width: 100%;
        height: 720;
        color: white;
        font-family: "Poppins", sans-serif;
        font-size:40PX;
        font-weight: 700;
        text-align: center;
    }

    .box1{
        
        padding-top: 60px;
        width: 100%;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-justify: auto;
    }
    @media (min-width: 768px) {
        .box1{
        
            padding-top: 60px;
            width: 100%;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-justify: auto;
        }

        h2{
            color:black;
            font-family: "Poppins", sans-serif;
            font-size:10PX;
            font-weight: 700;
            text-align: center;
        }
    }

    h2{
        color:black;
        font-family: "Poppins", sans-serif;
        font-size:30PX;
        font-weight: 700;
        text-align: center;
    }

    .objetivo{
        padding: 50px;
        width: 100%;
        text-align: justify;
        font-family:  "poppins", sans-serif;
        font-size: 20px;
        font-weight: 400;

    }
    .highlight-box {
        background-color: #979797;
        padding: 2rem;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        margin: 2rem 0;
    }
    .highlight-box h2 {
        color: #ffffff;
        font-weight: bold;
        margin-bottom: 1rem;
    }
    .highlight-box p {
        color: #ffffff;
        font-size: 1.1rem;
        text-align: justify;
    }

    .box2{
        display: flex;
        padding: 20px;
        justify-content: center;
        align-items: center;
    }

    .cards {
        gap: 1rem;
    }

    footer {
        background-color: #343a40;
        color: #ffffff;
        padding: 2rem 0;
        margin-top: 2rem;
    }
    footer a {
        color: #ffffff;
        text-decoration: none;
    }
    footer a:hover {
        text-decoration: underline;
    }

    .nosotros-texto{
        padding: 20px;

    }

    .nosotros-texto h3{
        font-family: "Poppins" sans-serif ;
        font-weight: 300;
        text-align: justify;
    }

    .contenedor1 .nostros-texto .card .card-body p{
        font-family: "Poppins" sans-serif;
        font-size: larger;
        font-weight: 700;
    }

    .cards-course{
        display: flex;
        width: 100%;
        padding: 50px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .card-text{
        text-align: justify;
    }

    .cards-certificado{
        display: flex;
        margin: 10px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .formulario {
        max-width: 600px;
        margin: 50px auto;
        padding: 20px;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    h2 {
        font-size: 2rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 1.5rem;
        color: #007bff;
    }

    .form-label {
        font-weight: 500;
    }

    .form-control {
        border-radius: 8px;
        padding: 10px 15px;
        font-size: 1rem;
    }

    .btn-primary {
        background-color: #007bff;
        border: none;
        border-radius: 8px;
        padding: 10px 20px;
        font-size: 1.2rem;
        font-weight: 600;
        width: 100%;
        transition: background-color 0.3s ease;
    }

    .btn-primary:hover {
        background-color: #0056b3;
    }

    .form-text {
        font-size: 0.9rem;
        color: #6c757d;
    }
}