﻿/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%; /* Asegura que ocupen toda la pantalla */
    margin: 0; /* Elimina márgenes predeterminados */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Estilo del botón flotante de WhatsApp */
.btn-wsp {
    position: fixed; /* Fijo para que siempre sea visible */
    bottom: 20px; /* Separado 20px del fondo */
    right: 20px; /* Separado 20px de la derecha */
    background-color: #25D366; /* Color verde WhatsApp */
    color: white; /* Icono blanco */
    font-size: 24px; /* Tamaño del icono */
    width: 60px; /* Ancho del botón */
    height: 60px; /* Alto del botón */
    border-radius: 50%; /* Forma circular */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra */
    z-index: 9999; /* Siempre encima de otros elementos */
    text-decoration: none; /* Sin subrayado */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

    .btn-wsp:hover {
        background-color: #128C7E; /* Cambia a un verde más oscuro al pasar el mouse */
        transform: scale(1.1); /* Aumenta ligeramente el tamaño */
    }

    .btn-wsp i {
        font-size: 32px; /* Ajusta el tamaño del ícono */
    }




/* MODAL INICIO DE SESION */

.custom-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor del modal inicio de session */
.custom-modal-dialog {
    width: 100%;
    max-width: 500px;
    margin: auto;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1060;
}

/* Contenido del modal inicio de session */
.custom-modal-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Encabezado del modal inicio de session */
.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Título del modal inicio de session */
.custom-modal-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

/* Cuerpo del modal inicio de session */
.custom-modal-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Pie del modal inicio de session */
.custom-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

    /* Botones inicio de session */
    .custom-modal-footer .btn {
        min-width: 100px;
    }

/* FIN MODAL INICIO DE SESION */




/* HEADER PRINCIPAL ICONO INICIO DE SESION Y CONTENDEDOR */
header {
    background-color: #2c2c2c;
    color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    /* Contenedor principal */
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 5vw; /* Padding relativo al ancho de pantalla */
        box-sizing: border-box;
    }


/* Contenedor del logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 0;
    padding-left: 0;
}

/* Imagen del logo */
.header-logo-image {
    height: 50px;
    width: auto;
}

/* Contenedor de texto del logo */
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Título del logo */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

/* Subtítulo */
.subtitle {
    font-size: 0.85rem;
    color: #d0d0d0;
    margin: 0;
    text-transform: capitalize;
}

/* Icono del botón */
.btn-icon i {
    font-size: 1.8rem;
    color: #fff;
    transition: color 0.3s ease;
}

    .btn-icon i:hover {
        color: #e0e0e0;
    }

/* Contenedor del menú de usuario */
.user-menu-container {
    position: relative;
}

/* Dropdown del menú */
.user-menu-dropdown {
    position: absolute;
    top: 55px;
    left: 50%; /* Centra el menú respecto al botón */
    transform: translateX(-90%);
    min-width: 180px; /* tamaño mínimo */
    max-width: 300px; /* tamaño máximo para permitir correos largos */
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: fadeIn 0.2s ease-in-out;
    word-wrap: break-word; /* fuerza salto de línea */
    overflow-wrap: break-word;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-90%) translateY(-8px); /* Mantiene el desplazamiento horizontal base */
    }

    to {
        opacity: 1;
        transform: translateX(-90%) translateY(0); /* Solo anima el eje Y */
    }
}

/* Resto del código sigue igual */
.user-menu-header {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #333;
}

.username {
    display: block;
    font-weight: 500;
}

.user-role {
    font-size: 0.75rem;
    color: #666;
}

.user-menu-item {
    padding: 10px 12px;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .user-menu-item:hover {
        background-color: #f5f5f5;
    }

.user-btn:focus {
    outline: none;
}



header .header-logo-image {
    position: relative;
    height: 50px;
    width: auto;
    top: -5px;
}

header nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-right: 50px;
    gap: 20px;
}

    header nav a,
    header nav .btn { /* Aplica el mismo estilo tanto a los enlaces como a los botones */
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        background-color: transparent; /* Sin fondo */
        border: none; /* Sin bordes */
        cursor: pointer; /* Cambia el cursor al pasar sobre el elemento */
        padding: 0; /* Elimina el relleno adicional */
    }

        header nav .btn:focus,
        header nav .btn:active {
            outline: none; /* Evita contornos visibles */
            transform: none; /* Evita el efecto de hundimiento */
            box-shadow: none; /* Elimina cualquier sombra adicional */
        }

.btn-monitoreo {
    margin-left: 15px;
    padding: 8px 16px;
    background-color: #003366;
    color: white !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .btn-monitoreo:hover {
        background-color: #0056b3;
        color: white !important;
        text-decoration: none;
    }

.btn-iniciar-sesion {
    margin-left: 15px;
    padding: 8px 16px;
    background-color: #003366;
    color: white !important;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-iniciar-sesion:hover {
        background-color: #0056b3;
        color: white !important;
        text-decoration: none;
    }

/* Alerta general */
.alert-box {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}



@media (max-width: 1140px) {
    /* Ya existente */
    .botones-header {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

        .botones-header .btn-monitoreo,
        .botones-header .btn-iniciar-sesion {
            width: auto;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

    /* NUEVO BLOQUE para alinear solo esos tres enlaces */
    header nav a[href="#about"],
    header nav a[href="#nuestros-productos"],
    header nav a[href="#clientes"] {
        align-self: flex-end;
        text-align: right;
        width: 100%;
        padding-right: 20px;
    }
}

@media (max-width: 968px) {
    header .container {
        flex-direction: column;
        align-items: center;
        padding: 10px 20px;
    }

    header nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
        margin-top: 10px;
        margin-right: 0px; /* Anula el desplazamiento en móviles */
    }

        header nav a,
        header nav .btn {
            font-size: 1rem;
            padding: 8px 12px;
            width: 100%;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

            header nav a[href="#about"],
            header nav a[href="#nuestros-productos"],
            header nav a[href="#clientes"] {
                text-align: center;
                padding-right: 0;
                align-self: center;
            }

    .user-menu-container {
        margin-top: 10px;
    }
}

/* FIN HEADER PRINCIPAL ICONO INICIO DE SESION Y CONTENDEDOR */



/* INICIO METRICAS */

.metricas {
    background-image: url('/Imagenes/backgroudpagebanner.png');
    color: white;
    padding: 20px 20px;
    position: relative;
    z-index: 1;
}

    .metricas::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* oscurece un poco para mejor legibilidad */
        z-index: 0;
    }

    .metricas .container,
    .metricas .titulo,
    .metricas .descripcion,
    .metricasicon {
        position: relative;
        z-index: 1;
    }



.metricasicon {
    background: #003366; /* Fondo azul oscuro */
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px;
    border-radius: 10px;
    margin-top: 40px;
    flex-wrap: wrap; /* Para que sea responsive */
    gap: 20px;
}

    .metricasicon .col-md-4 {
        flex: 1 1 250px;
        text-align: center;
    }

    .metricasicon i {
        color: #ffffff; /* Íconos en color amarillo */
        margin-bottom: 10px;
    }

    .metricasicon p {
        font-size: 18px;
        font-weight: bold;
        margin: 0;
    }

/* FIN INICIO METRICAS */




/*  INICIO TRAZABILIDAD */

#seccion-trazabilidad {
    padding: 60px 20px;
    background-color: #ffffff;
}

.contenedor-trazabilidad {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.texto-trazabilidad {
    flex: 1 1 500px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

    .texto-trazabilidad h2 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #001f5c;
    }

.resaltado {
    color: #0056b3;
    font-weight: bold;
}

.lista-beneficios {
    list-style: none;
    padding: 0;
    font-size: 15px;
    line-height: 1.7;
}

    .lista-beneficios li::before {
        color: #007bff;
        margin-right: 8px;
    }

.texto-inicia {
    margin-top: 20px;
    font-weight: 600;
    color: #333;
}



.boton-trazabilidad {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #000d3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

    .boton-trazabilidad:active {
        transform: scale(0.95);
        background-color: #000a2f;
    }

.boton-trazabilidad-particular {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #000d3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

    .boton-trazabilidad-particular:active {
        transform: scale(0.95);
        background-color: #000a2f;
    }

    .boton-trazabilidad:hover,
    .boton-trazabilidad-particular:hover {
        background-color: #0056b3;
    }


/*  FIN INICIO TRAZABILIDAD */



/* INICIO PRODUCTOS E IMAGENES */
#nuestros-productos {
    padding: 10px 0;
    background-color: #f9f9f9;
    position: relative;
    text-align: center;
    margin: 0px auto;
    overflow: hidden;
    max-width: 100%;
}

    #nuestros-productos h2 {
        font-size: 32px;
        color: #222;
        margin-bottom: 30px;
    }

/* Imagen dentro del slide */
.imagen-app {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .imagen-app:hover {
        animation: orbitar 3s ease-in-out infinite;
    }

@keyframes orbitar {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(4px, -3px);
    }

    50% {
        transform: translate(-4px, 3px);
    }

    75% {
        transform: translate(3px, 2px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.contenedor-app-funciones {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.funcion {
    display: flex;
    align-items: center;
    font-size: 16px;
}


.funcion-izquierda {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin-right: -70px;
}

.funcion-derecha {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin-left: -30px;
}

.columna-funciones-derecha {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: flex-end;
}


.columna-funciones-izquierda {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Espacio entre cada función */
    justify-content: center;
}

.columna-funciones {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.centro-app {
    max-width: 400px; /* Aumenta aquí gradualmente */
    width: 100%;
    position: relative;
}

/* Estilo base del contenedor Swiper */
.swiper-container {
    position: relative;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 30px;
    overflow: hidden;
}


/* Íconos circulares */
.icono-circular {
    background-color: #4a4a4a;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}


.swiper-button-prev::after,
.swiper-button-next::after {
    color: #000000;
}


/* Responsive */
@media (max-width: 1124px) {
    .contenedor-app-funciones {
        flex-direction: column;
        gap: 20px;
    }

    .columna-funciones {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin: 0; /* elimina los márgenes negativos */
        max-width: 100%;
    }

    .funcion {
        flex: 1 1 45%;
        justify-content: center;
        font-size: 14px;
    }

    .icono {
        font-size: 26px;
    }

    /* Flechas más cerca en móvil */
    #nuestros-productos .swiper-button-next {
        right: 20px;
        transform: translateY(-50%);
    }

    #nuestros-productos .swiper-button-prev {
        left: 20px;
        transform: translateY(-50%);
    }

    .imagen-app {
        max-width: 100%;
        height: auto;
    }

    .funcion-derecha {
        font-size: 14px;
        margin-left: -15px;
    }

    .funcion-izquierda {
        font-size: 14px;
        margin-left: -15px;
    }
}

/* FIN PRODUCTOS E IMAGENES */





/* INICIO BARRA INFORMATIVA APP */

#barra-informativa-apps {
    background: linear-gradient(to right, #c1c3c6, #003067);
    padding: 30px 0;
    color: white;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.contenedor-barra-apps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.columna-izquierda {
    flex: 1;
    display: flex;
    justify-content: center;
}

.imagen-app-barra {
    width: 250px;
    height: auto;
    transform: rotate(-8deg); /* Inclinación inicial */
    margin-top: -40px;
    filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.4));
    animation: flotar 3s ease-in-out infinite;
}

@keyframes flotar {
    0%, 100% {
        transform: rotate(-8deg) translateY(0);
    }

    50% {
        transform: rotate(-8deg) translateY(-15px);
    }
}

.columna-centro {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-texto-apps h2 {
    font-size: 24px;
    margin: 0;
}

.info-texto-apps p {
    font-size: 16px;
    margin: 5px 0 15px;
}

.botones-descarga {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}


.boton-store {
    width: 150px;
    height: auto;
    transition: transform 0.2s ease;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: block;
}

    .boton-store:hover {
        transform: scale(1.05);
    }

.boton-solicitud {
    padding: 12px 24px;
    font-size: 16px;
    background-color: #000d3c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .boton-solicitud:hover {
        background-color: #003edc;
    }

/* FIN BARRA INFORMATIVA APP */




/* INICIO PRODUCTO URBANO */

#nuestros-productos-urbano {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.contenedor-producto {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.texto-producto {
    flex: 1 1 50%;
    text-align: left;
}

    .texto-producto h2 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #000d3c;
    }

    .texto-producto p {
        font-size: 16px;
        margin-bottom: 15px;
        line-height: 1.6;
        color: #333;
    }

.imagen-producto {
    flex: 1 1 40%;
    text-align: right;
}

    .imagen-producto img {
        max-width: 100%;
        height: auto;
    }

.boton-contenedor {
    margin-top: 25px;
}


.boton-contenedor {
    margin-top: 25px;
}

.boton-solicitud-urbano {
    padding: 12px 24px;
    font-size: 16px;
    background-color: #000d3c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .boton-solicitud-urbano:hover {
        background-color: #003edc;
    }

    .boton-solicitud-urbano:focus {
        outline: none;
    }


@media (max-width: 1190px) {
    .imagen-producto img {
        max-width: 100%;
        margin-left: 10px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .contenedor-producto {
        flex-direction: column;
        text-align: center;
    }

    .texto-producto {
        order: 1;
        flex: 1 1 100%;
        text-align: center;
    }

    .imagen-producto {
        order: 2;
        flex: 1 1 100%;
        text-align: center;
    }

        .imagen-producto img {
            max-width: 100%;
            margin-left: 10px;
            height: auto;
        }
}
/* FIN PRODUCTO URBANO*/


/* INICIO BARRA INFORMATIVA URBANO*/


#barra-informativa-urbano {
    padding: 60px 20px;
    background-color: #000d3c;
    color: white;
    text-align: center;
}

.contenedor-barra-urbano {
    max-width: 1200px;
    margin: auto;
}

.info-texto-urbano h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}

.info-texto-urbano p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #ccc;
}

.iconos-barra-urbano {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.bloque-info {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .bloque-info img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .bloque-info h3 {
        font-size: 24px;
        margin: 0;
        color: #fff;
    }

    .bloque-info p {
        margin: 5px 0 0;
        font-size: 14px;
        color: #ccc;
    }

.icono-bootstrap {
    font-size: 48px; /* Puedes ajustar a 64px, 72px, etc. */
    margin-left: 10PX;
    margin-top: 10PX;
    margin-bottom: 1px;
    color: white; /* Asegura que el color sea visible sobre fondo oscuro */
}

/* FIN BARRA INFORMATIVA URBANO*/



/* INICIO INFORMATIVA CLIENTES*/


/* Contenedor general */
.clientes-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    position: relative;
}

    .clientes-section .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #003366;
        margin-bottom: 40px;
    }

/* Tarjeta de cliente */
.client-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .client-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

/* Logo como texto */
.client-logo-text {
    font-size: 36px;
    font-weight: bold;
    color: #fd0000;
    margin-bottom: 15px;
}

/* Imagen del logo */
.client-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Nombre y descripción */
.client-name {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.client-description {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
}

/* Swiper buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #003366;
    transition: transform 0.2s ease;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        transform: scale(1.2);
    }

/* Paginación Swiper */
.swiper-pagination-bullet {
    background-color: #0056b3;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}


@media (max-width: 768px) {
    .client-card {
        padding: 20px 15px;
    }

    .client-logo-text {
        font-size: 28px;
    }

    .client-name {
        font-size: 18px;
    }

    .client-description {
        font-size: 14px;
    }
}

/* FIN INFORMATIVA CLIENTES*/

footer {
    background-color: #222;
    color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    margin-top: auto; /* Empuja el footer completamente abajo */
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1 1 calc(33.33% - 20px);
    margin: 10px;
}

    .footer-column h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: #f9f9f9;
    }

    .footer-column p {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #ddd;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

        .footer-column ul li {
            margin-bottom: 10px;
        }

            .footer-column ul li a {
                color: #ddd;
                text-decoration: none;
                font-size: 0.9rem;
                transition: color 0.3s ease;
            }

                .footer-column ul li a:hover {
                    color: #00aaff;
                }

.social-icons {
    display: flex;
    gap: 10px;
}

    .social-icons a img {
        width: 30px;
        height: 30px;
        transition: transform 0.3s ease;
    }

        .social-icons a img:hover {
            transform: scale(1.2);
        }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #bbb;
}
