    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@500;700&display=swap');

    :root {
        --primary: #141527;
        --secondary: #503987;
        --color-white: #FFFFFF;
        --color-text-general: #333;
    }

    body {
        font-family: 'Roboto', sans-serif;
        color: var(--color-text-general) !important;
        ;
    }

    .logo {
        width: 160px;
    }

    .navbar {
        background-color: var(--primary) !important;
    }

    .navbar-brand,
    .navbar-nav .nav-link {
        color: var(--color-white) !important;
    }

    .navbar-nav .nav-link:hover {
        color: var(--secondary) !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Montserrat', sans-serif;
        color: var(--primary) !important;
    }

    h3{
        font-size: 26px !important;
    }
    .hero-section {
        position: relative;
        height: 80vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-white) !important;
        text-align: center;
    }

    .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }

    .video-background video {
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .hero-section h1 {
        font-size: 3.5rem;
        font-weight: 700;
    }

    .hero-section p {
        font-size: 1.5rem;
    }

    .btn-primary-custom {
        background-color: var(--secondary) !important;
        ;
        border-color: var(--secondary) !important;
        ;
        font-weight: bold;
        padding: 12px 30px;
        border-radius: 50px;
        transition: background-color 0.3s ease;
        color: white !important;
    }

    .btn-primary-custom:hover {
        background-color: #3e2d6b;
        border-color: #3e2d6b;
    }

    .section-padding {
        padding: 80px 0;
    }

    .service-card {
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        text-align: center;
        padding: 30px;
        margin-bottom: 30px;
        min-height: 320px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .service-card:hover {
        transform: translateY(-10px);
    }

    .service-card .icon {
        font-size: 3rem;
        color: var(--color-text-general) !important;
        margin-bottom: 20px;
    }

    .about-us-section img {
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .testimonial-carousel .card {
        background-color: #f8f9fa;
        border: none;
        border-radius: 10px;
        padding: 30px;
        margin: 20px 0;
    }

    .contact-info .icon {
        font-size: 1.5rem;
        color: var(--secondary) !important;
        margin-right: 15px;
    }

    footer {
        background-color: var(--primary) !important;
        color: var(--color-white);
        padding: 40px 0;
        font-size: 0.9rem;
    }

    footer a {
        color: var(--secondary) !important;
        text-decoration: none;
    }

    footer a:hover {
        color: #6a539b;
    }

    @media (max-width: 768px) {
        .hero-section h1 {
            font-size: 2.5rem;
        }

        .hero-section p {
            font-size: 1.2rem;
        }

        .service-card {
            min-height: auto;
        }
    }

 /* Estilos para la nueva sección de Galería con Carrusel */
#galeria .carousel-inner {
    border-radius: 10px;
    overflow: hidden; /* Asegura que las esquinas redondeadas se apliquen a las imágenes */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 500px; /* Limita la altura del carrusel, ajusta según necesites */
}

#galeria .carousel-item img {
    width: 100%;
    height: 500px; /* Hace que todas las imágenes tengan la misma altura dentro del carrusel */
    object-fit: cover; /* Recorta las imágenes para que cubran el área sin distorsión */
    border-radius: 10px; /* Asegura esquinas redondeadas para las imágenes */
}

#galeria .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 10px 20px;
    bottom: 20px; /* Ajusta la posición de la leyenda */
}

#galeria .carousel-caption p {
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 0;
}

#galeria .carousel-control-prev,
#galeria .carousel-control-next {
    width: 5%; /* Hace los controles más delgados */
    color: var(--secondary) !important;
}

#galeria .carousel-control-prev-icon,
#galeria .carousel-control-next-icon {
    background-color: var(--secondary); /* Color de los iconos de navegación */
    border-radius: 50%;
    padding: 15px;
}

#galeria .carousel-indicators button {
    background-color: var(--secondary); /* Color de los indicadores */
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

#galeria .carousel-indicators .active {
    background-color: var(--primary); /* Color del indicador activo */
}
