/* ---- RESET GENERAL ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---- ESTILOS GENERALES ---- */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #E0E0E0;
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(12px);
    color: #E0E0E0;
    z-index: 1000;
    transition: background 0.3s ease-in-out;
    padding: 15px 0;
    display: flex;
    justify-content: center;
}

/* ---- Contenedor Principal ---- */
.navbar .container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Contenedor del Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px; /* Ajusta según sea necesario */
}

/* Botón del Dropdown */
.lang-btn {
    background-color: transparent;
    border: 2px solid #ffffff; /* Azul Apple */
    color: #f5f6f7;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.lang-btn:hover {
    background-color: #106270;
    color: rgb(0, 0, 0);
}

/* Menú Desplegable */
.lang-dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
    overflow: hidden;
}

/* Mostrar el menú al hacer hover */
.lang-dropdown:hover .lang-dropdown-content {
    display: block;
}

/* Estilos para los elementos del menú */
.lang-dropdown-content button {
    width: 100%;
    padding: 10px 16px;
    text-align: left;
    border: none;
    background-color: transparent;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lang-dropdown-content button:hover {
    background-color: #f5f5f5;
}

/* Estilo para el botón activo */
.lang-dropdown-content button.active {
    background-color: #fefeff;
    color: white;
}

/* ---- Logo ---- */
.logo {
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    color: #037c7c;
    transition: 0.3s;
}

.logo:hover {
    color: #04a5a5;
}

/* ---- Menú de Navegación ---- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.nav-links li a:hover {
    background: #037c7c;
    color: #121212;
}

/* ---- Botón Acceso Clientes ---- */
.btn-clientes {
    background: #037c7c;
    color: #121212;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-clientes:hover {
    background: transparent;
    color: #037c7c;
    border: 2px solid #037c7c;
}

/* ---- Menú Responsive ---- */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #037c7c;
}

/* ---- Estilos para el menú en móviles ---- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 10px;
        background: rgba(18, 18, 18, 0.95);
        width: 200px;
        text-align: left;
        padding: 15px;
        border-radius: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin-bottom: 10px;
    }

    .menu-toggle {
        display: block;
    }
}

/* ---- SECCIÓN HEADER ---- */
.header {
    background: url('img/fondo.jpg') center/cover no-repeat;
    position: relative;
    height: 100vh; /* Altura completa de la pantalla */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Agregar opacidad al fondo */
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.7); /* Oscurece el fondo */
}

/* Contenedor del Header */
.header-overlay {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    color: #FFF;
}

/* ---- Título principal ---- */
.header-content h1 {
    font-size: 64px; /* Aumentado */
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #037c7c;
}
.header-content h2 {
    font-size: 55px; /* Aumentado */
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.header-content span {
    color: #037c7c;
}

/* ---- Descripción ---- */
.header-content p {
    font-size: 24px; /* Aumentado */
    font-weight: 400;
    opacity: 0.9;
}

/* ---- RESPONSIVO ---- */
@media (max-width: 768px) {
    .header {
        height: 70vh;
    }

    .header-content h1 {
        font-size: 42px; /* Ajustado para móviles */
    }

    .header-content p {
        font-size: 20px; /* Ajustado para móviles */
    }
}

/* 🔽 Flecha de Scroll */
.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: bounce 1.5s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}


/* ---- BOTÓN PRINCIPAL ---- */
.btn-primary {
    color: #037c7c;
    color: #121212;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: transparent;
    color: #037c7c;
    border: 2px solid #037c7c;
}

/* ---- SECCIONES GENERALES ---- */
section {
    padding: 80px 20px;
    text-align: center;
}

section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #037c7c;
    text-transform: uppercase;
    margin-bottom: 20px;
}

section p {
    font-size: 18px;
    font-weight: 400;
    color: #B0B0B0;
}

/* 🔹 Sección NUESTROS SERVICIOS con fondo blanco y efecto "bloom" */
.nuestros-servicios {
    position: relative;
    background: white;
    padding: 100px 5%;
    text-align: center;
    color: #333;
    overflow: hidden;
}

/* 🔹 Efecto "Bloom" mejorado en las esquinas con color #037c7c */
.nuestros-servicios::before, .nuestros-servicios::after {
    content: "";
    position: absolute;
    width: 400px;  /* Aumentamos el tamaño */
    height: 400px;
    background: radial-gradient(circle, rgba(3, 124, 124, 0.7) 20%, rgba(3, 124, 124, 0.3) 50%, transparent 80%);
    z-index: 0;
    filter: blur(60px); /* Suavizamos aún más */
}

.nuestros-servicios::before {
    top: -100px;
    left: -100px;
}

.nuestros-servicios::after {
    bottom: -100px;
    right: -100px;
}

/* 🔹 Contenido */
.nuestros-servicios .contenido {
    position: relative;
    max-width: 1200px;
    margin: auto;
    z-index: 1;
}

/* 🔹 Título */
.nuestros-servicios .titulo {
    font-size: 3.2em;
    font-weight: bold;
    color: #037c7c;
    margin-bottom: 30px;
}

/* 🔹 Subtítulo */
.nuestros-servicios .subtitulo {
    font-size: 1.4em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* 🔹 Diseño en cuadrícula */
.nuestros-servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: auto;
    align-items: center;
}

/* 🔹 Elementos sin cuadros */
.servicio-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
}

/* 🔹 Iconos Más Grandes */
.servicio-item i {
    font-size: 4.5em;
    color: #037c7c;
    min-width: 100px;
    text-align: center;
}

/* 🔹 Títulos */
.servicio-item h3 {
    font-size: 1.8em;
    font-weight: bold;
    color: #037c7c;
    margin-bottom: 5px;
}

/* 🔹 Texto */
.servicio-item p {
    font-size: 1.2em;
    color: #555;
}

/* 🔹 Diseño Responsivo */
@media (max-width: 768px) {
    .nuestros-servicios .titulo {
        font-size: 2.5em;
    }

    .nuestros-servicios .subtitulo {
        font-size: 1.3em;
        margin-bottom: 40px;
    }

    .nuestros-servicios-grid {
        grid-template-columns: 1fr; /* Una sola columna en móviles */
        gap: 30px;
    }

    .servicio-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .servicio-item i {
        font-size: 5em;
    }

    .servicio-item h3 {
        font-size: 1.6em;
    }

    .servicio-item p {
        font-size: 1.1em;
    }
}


/* 🔹 Sección TECNOLOGÍAS */
.tecnologias {
    position: relative;
    background: radial-gradient(circle, rgba(3, 124, 124, 0.3), #0a0a0a 80%);
    padding: 90px 5%;
    text-align: center;
    color: white;
    overflow: hidden;
}


/* 🔹 Efecto Degradado en las Esquinas */
.tecnologias::before, .tecnologias::after {
    content: "";
    position: absolute;
    width: 400px;  /* Aumentamos el tamaño */
    height: 400px;
    background: radial-gradient(circle, rgba(9, 36, 36, 0.7) 20%, rgba(3, 124, 124, 0.3) 50%, transparent 80%);
    z-index: 0;
    filter: blur(60px); /* Suavizamos aún más */
}

.tecnologias::before {
    top: -100px;
    left: -100px;
}

.tecnologias::after {
    bottom: -100px;
    right: -100px;
}

/* 🔹 Contenido */
.tecnologias .contenido {
    position: relative;
    z-index: 1;
}

/* 🔹 Título */
.tecnologias .titulo {
    font-size: 3.2em;
    font-weight: bold;
    color: #04a5a5;
    margin-bottom: 15px;
}

/* 🔹 Subtítulo */
.tecnologias .subtitulo {
    font-size: 1.4em;
    color: #bbb;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* 🔹 Contenedor de Iconos */
.tecnologias .iconos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
}

/* 🔹 Cada Icono */
.tecnologias .icono {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

/* 🔹 Estilo de los Iconos */
.tecnologias .icono i {
    font-size: 4.5em;
    color: #037c7c;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

/* 🔹 Texto Debajo del Icono */
.tecnologias .icono span {
    font-size: 1.2em;
    font-weight: bold;
    color: #ddd;
    margin-top: 10px;
}

/* 🔹 Efecto al Pasar el Mouse */
.tecnologias .icono:hover {
    transform: scale(1.1);
}

.tecnologias .icono:hover i {
    color: #04a5a5;
    text-shadow: 0 0 20px rgba(3, 124, 124, 0.8);
}

/* 🔹 Diseño Responsivo */
@media (max-width: 768px) {
    .tecnologias .titulo {
        font-size: 2.5em;
    }

    .tecnologias .subtitulo {
        font-size: 1.2em;
    }

    .tecnologias .iconos {
        gap: 30px;
    }

    .tecnologias .icono i {
        font-size: 3.5em;
    }

    .tecnologias .icono span {
        font-size: 1.1em;
    }
}


/* 🔹 Lista de beneficios */
.asistencia .beneficios {
    list-style: none;
    padding: 0;
}

.asistencia .beneficios li {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    color: #333;
    margin-bottom: 15px;
}

.asistencia .beneficios i {
    font-size: 1.8em;
    color: #037c7c;
    margin-right: 15px;
}

/* 🔹 Diseño Responsivo */
@media (max-width: 768px) {
    .asistencia .contenido {
        flex-direction: column;
        text-align: center;
    }

    .asistencia .imagen img {
        width: 80%;
    }

    .asistencia .beneficios li {
        justify-content: center;
    }
}


/* 🔹 Sección AGENCIA */
.agencia {
    position: relative;
    background: url('img/agencia.jpg') no-repeat center center/cover;
    padding: 80px 20px; /* Reducida la altura */
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

/* 🔹 Capa de opacidad con Blur */
.agencia .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 124, 124, 0.8); /* Color principal con opacidad */
    backdrop-filter: blur(3px);
}

/* 🔹 Contenido */
.agencia .contenido {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: auto;
}

/* 🔹 Título */
.agencia .titulo {
    font-size: 3em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

/* 🔹 Subtítulo */
.agencia .subtitulo {
    font-size: 1.4em;
    color: #d9f3f3;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* 🔹 Contenedor en dos columnas */
.agencia-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

/* 🔹 Tarjetas */
.agencia-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(6px);
}

/* 🔹 Efecto hover */
.agencia-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(3, 124, 124, 0.3);
}

/* 🔹 Iconos */
.agencia-item i {
    font-size: 3.5em;
    color: #124444;
    transition: transform 0.3s ease-in-out;
}

/* 🔹 Animación hover en iconos */
.agencia-item:hover i {
    transform: scale(1.1);
}

/* 🔹 Títulos */
.agencia-item h3 {
    font-size: 1.6em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

/* 🔹 Texto */
.agencia-item p {
    font-size: 1.2em;
    color: #e0ffff;
}

/* 🔹 Diseño Responsivo */
@media (max-width: 768px) {
    .agencia .titulo {
        font-size: 2.5em;
    }

    .agencia .subtitulo {
        font-size: 1.3em;
        margin-bottom: 40px;
    }

    .agencia-grid {
        grid-template-columns: 1fr; /* Una columna en móviles */
    }

    .agencia-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .agencia-item i {
        font-size: 3em;
    }

    .agencia-item h3 {
        font-size: 1.5em;
    }

    .agencia-item p {
        font-size: 1.1em;
    }
}

/* 🔹 Sección VENTAJAS con fondo blanco y efecto "bloom" */
.ventajas {
    position: relative;
    background: white;
    padding: 100px 5%;
    text-align: center;
    color: #333;
    overflow: hidden;
}

/* 🔹 Efecto "Bloom" en las esquinas con color #037c7c */
.ventajas::before, .ventajas::after {
    content: "";
    position: absolute;
    width: 400px;  /* Aumentamos el tamaño */
    height: 400px;
    background: radial-gradient(circle, rgba(3, 124, 124, 0.7) 20%, rgba(3, 124, 124, 0.3) 50%, transparent 80%);
    z-index: 0;
    filter: blur(60px); /* Suavizamos aún más */
}

.ventajas::before {
    top: -100px;
    left: -100px;
}

.ventajas::after {
    bottom: -100px;
    right: -100px;
}

/* 🔹 Contenido */
.ventajas .contenido {
    position: relative;
    max-width: 1200px;
    margin: auto;
    z-index: 1;
}

/* 🔹 Título */
.ventajas .titulo {
    font-size: 3.2em;
    font-weight: bold;
    color: #037c7c;
    margin-bottom: 30px;
}

/* 🔹 Subtítulo */
.ventajas .subtitulo {
    font-size: 1.4em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* 🔹 Diseño en cuadrícula */
.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: auto;
    align-items: center;
}

/* 🔹 Elementos sin cuadros */
.ventaja-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
}

/* 🔹 Iconos Más Grandes */
.ventaja-item i {
    font-size: 4.5em;
    color: #037c7c;
    min-width: 100px;
    text-align: center;
}

/* 🔹 Títulos */
.ventaja-item h3 {
    font-size: 1.8em;
    font-weight: bold;
    color: #037c7c;
    margin-bottom: 5px;
}

/* 🔹 Texto */
.ventaja-item p {
    font-size: 1.2em;
    color: #555;
}

/* 🔹 Diseño Responsivo */
@media (max-width: 768px) {
    .ventajas .titulo {
        font-size: 2.5em;
    }

    .ventajas .subtitulo {
        font-size: 1.3em;
        margin-bottom: 40px;
    }

    .ventajas-grid {
        grid-template-columns: 1fr; /* Una sola columna en móviles */
        gap: 30px;
    }

    .ventaja-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .ventaja-item i {
        font-size: 5em;
    }

    .ventaja-item h3 {
        font-size: 1.6em;
    }

    .ventaja-item p {
        font-size: 1.1em;
    }
}



/* ---- SECCIÓN CONTACTO ---- */
.contact-section {
    background: url('img/fondo2.jpg') center/cover no-repeat;
    position: relative;
    text-align: center;
    padding: 120px 20px;
}

/* Agregar opacidad al fondo */
.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.7); /* Oscurece el fondo */
}

/* Contenedor principal */
.contact-container {
    position: relative;
    max-width: 900px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

/* Texto */
.contact-content {
    text-align: left;
    max-width: 600px;
}

.contact-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.contact-content span {
    color: #037c7c;
}

.contact-content p {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

/* Botón de contacto */
.contact-button a {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    border: 2px solid #000;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.contact-button a:hover {
    background: #000;
    color: #FFF;
}

.contact-button a:hover i {
    transform: translateX(5px);
}

/* ---- RESPONSIVO ---- */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .contact-content {
        text-align: center;
        max-width: 100%;
        margin-bottom: 20px;
    }
}
/* 🔹 Footer */
.footer {
    background-color: #0a0a0a; /* Fondo oscuro */
    color: white;
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

/* 🔹 Contenedor Principal */
.footer-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* 🔹 Sección de Boletín */
.footer-newsletter {
    flex: 1;
    min-width: 300px;
}

.footer-newsletter h3 {
    font-size: 1.5em;
    font-weight: bold;
    color: #037c7c;
    margin-bottom: 10px;
}

.footer-newsletter p {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 15px;
}

/* 🔹 Input del Boletín */
.footer-newsletter input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #037c7c;
    background: transparent;
    color: white;
    font-size: 1em;
    outline: none;
}

/* 🔹 Botón de Suscribirse */
.footer-newsletter button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #037c7c;
    color: white;
    border: none;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 5px;
}

.footer-newsletter button:hover {
    background: #025b5b;
}

/* 🔹 Sección de Contacto */
.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h3 {
    font-size: 1.5em;
    font-weight: bold;
    color: #037c7c;
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: #037c7c;
    font-size: 1.2em;
}

/* 🔹 Derechos Reservados */
.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9em;
    color: #ccc;
}

/* 🔹 Diseño Responsivo */
@media (max-width: 768px) {
    .footer {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

.logo-img {
    height: 80px; /* Ajusta la altura según sea necesario */
    width: auto; /* Mantiene la proporción de la imagen */
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8; /* Efecto hover para el logo */
}

.header-logo {
    height: 260px; /* Ajusta la altura según sea necesario */
    width: auto; /* Mantiene la proporción de la imagen */

}

@media (max-width: 768px) {
    .logo-img {
        height: 30px; /* Tamaño más pequeño para móviles */
    }

    .header-logo {
        height: 60px; /* Tamaño más pequeño para móviles */
    }
}

/* ---- SECCIÓN STAFF ---- */
.staff-section {
    position: relative;
    padding: 100px 0; /* Aumentar el padding vertical */
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    color: #fff;
    overflow: hidden;
}

.staff-section::before,
.staff-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(3, 124, 124, 0.15), transparent 70%);
    z-index: 1;
    filter: blur(30px);
}

.staff-section::before {
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.staff-section::after {
    bottom: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

.staff-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.staff-member {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.staff-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(3, 124, 124, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.staff-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.staff-member:hover::before {
    transform: translateX(100%);
}

.staff-info {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.staff-info h3 {
    font-size: 2em;
    color: #E0E0E0;
    margin-bottom: 10px;
    font-weight: 600;
    background: linear-gradient(45deg, #E0E0E0, #037c7c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.staff-position {
    color: #037c7c;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.staff-description {
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1em;
    opacity: 0.9;
    position: relative;
    padding: 0 20px;
}

.staff-description::before,
.staff-description::after {
    content: '"';
    position: absolute;
    font-size: 2em;
    color: #037c7c;
    opacity: 0.3;
}

.staff-description::before {
    left: 0;
    top: -10px;
}

.staff-description::after {
    right: 0;
    bottom: -20px;
}

/* Responsive */
@media (max-width: 768px) {
    .staff-member {
        padding: 20px;
    }

    .staff-info h3 {
        font-size: 1.8em;
    }

    .staff-position {
        font-size: 1.1em;
    }

    .staff-description {
        font-size: 1em;
        padding: 0 15px;
    }
}