.projects.section-padding {
    padding: 80px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.slider-container {
    width: 100%;
    max-width: 1200px;
    height: 700px;
    margin: 0 auto;
    background: #1a1a2e;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.slider-wrapper {
    display: flex;
    height: 100%;
    cursor: grab;
    transition: transform 0.1s ease-out;
}

.slider-wrapper:active {
    cursor: grabbing;
}

.project-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.parallax-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    will-change: transform;
}

.parallax-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    will-change: transform;
}


@media (max-width: 768px) {
    .parallax-content,
    .parallax-bg,
    .parallax-overlay {
        transform: none !important;
        will-change: auto !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .project-slide {
        transform: none !important;
    }
    
    .project-content {
        transform: none !important;
        position: relative !important;
        left: 0 !important;
    }
    
    .project-info {
        transform: none !important;
        position: relative !important;
        left: 0 !important;
    }
}


.project-slide-1 .parallax-bg,
.project-slide-2 .parallax-bg,
.project-slide-3 .parallax-bg,
.project-slide-4 .parallax-bg 
.project-slide-5 .parallax-bg {
    background: #2a2a3e;
}


.project-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    z-index: 10;
    transition: width 0.3s ease;
}

.project-slide-1::after {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.project-slide-2::after {
    background: linear-gradient(180deg, #f093fb 0%, #f5576c 100%);
}

.project-slide-3::after {
    background: linear-gradient(180deg, #4facfe 0%, #00f2fe 100%);
}

.project-slide-4::after {
    background: linear-gradient(180deg, #ff9a9e 0%, #fecfef 100%);
}
.project-slide-5::after {
    background: linear-gradient(180deg, #11998e 0%, #38ef7d 100%);
}


.tech-badge.tiendanube {
    background: #00a8ff;
    color: white;
}


.project-slide:hover::after {
    width: 12px;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 30px;
    height: 100%;
    max-height: 600px;
    grid-template-areas:
        "info image"
        "buttons buttons";
}

.project-info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.project-tag {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    width: fit-content;
}

.project-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.project-description {
    font-size: 1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.project-features {
    margin-bottom: 15px;
    flex: 1;
    overflow: hidden;
}

.project-features h4 {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.project-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.project-features li {
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.project-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0 0 0;
}

.tech-badge {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tech-badge.html {
    background: #e34f26;
    color: white;
}

.tech-badge.css {
    background: #1572b6;
    color: white;
}

.tech-badge.js {
    background: #f7df1e;
    color: black;
}

.tech-badge.php {
    background: #777bb4;
    color: white;
}

.tech-badge.mysql {
    background: #4479a1;
    color: white;
}

.tech-badge.bootstrap {
    background: #7952b3;
    color: white;
}

.project-image-container {
    grid-area: image;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.project-image {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.project-image:hover {
    transform: scale(1.05);
}

.project-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 20px;
}

.project-info .project-actions {
    display: none;
}

.project-image-area .project-actions {
    display: flex;
}

.btn-ver-pagina {
    padding: 14px 26px;
    background: linear-gradient(45deg, #ffc107, #ff6b35);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.btn-ver-pagina:hover {
    background: linear-gradient(45deg, #ff6b35, #ffc107);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    gap: .7rem;     
}

.btn-access {
    padding: 12px 24px;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 25px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    gap: .7rem;     
}

.btn-access:hover {
    background: linear-gradient(45deg, #45a049, #4CAF50);
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.nav-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #ffc107;
    transform: scale(1.3);
}

.nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.nav-arrows.prev {
    left: 20px;
}

.nav-arrows.next {
    right: 20px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    /* Cambiar a fondo negro semitransparente para mejor contraste */
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-arrow:hover {
    /* Hover más oscuro con borde amarillo */
    background: rgba(0, 0, 0, 0.85);
    border-color: #ffc107;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.nav-arrow::after {
    content: '';
    width: 12px;
    height: 12px;
    /* Cambiar flechas a blanco para mejor contraste */
    border: 2px solid #ffffff;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

/* En hover, las flechas se vuelven amarillas con efecto de brillo */
.nav-arrow:hover::after {
    border-color: #ffc107;
    filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.8));
}

.nav-arrows.prev .nav-arrow::after {
    transform: rotate(-135deg);
}

/* Mantener el mismo efecto hover para la flecha izquierda */
.nav-arrows.prev .nav-arrow:hover::after {
    border-color: #ffc107;
    filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.8));
    transform: rotate(-135deg);
}


.project-image-mobile {
    display: none;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #ffc107;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    margin: 0 auto;
}

/* TABLET - 401px a 768px (ESPECÍFICO) */
@media (min-width: 401px) and (max-width: 768px) {
    .slider-container {
        height: 700px;
        width: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .slider-wrapper {
        width: 400%;
        height: 100%;
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: row;
    }

    .project-slide {
        padding: 25px 15px 120px 15px;
        min-width: 25%;
        max-width: 25%;
        width: 25%;
        flex-shrink: 0;
        box-sizing: border-box;
        position: relative;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .project-content {
        grid-template-columns: 1fr;
        grid-template-areas: "info";
        gap: 20px;
        max-height: 580px;
        overflow-y: auto;
        padding: 0 40px;
        transform: none !important;
        will-change: auto !important;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
        left: 0 !important;
        right: 0 !important;
    }

    .project-image-area {
        display: none;
    }

    .project-image-mobile {
        display: block !important;
        width: 280px;
        height: 160px;
        margin: 15px auto;
        order: 3;
    }

    .project-info {
        grid-area: info;
        text-align: justify;
        max-height: none;
        overflow: visible;
        display: flex;
        flex-direction: column;
        transform: none !important;
        will-change: auto !important;
        position: relative;
        left: 0 !important;
    }

    .project-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .project-info .project-actions {
        display: flex;
        margin-top: 20px;
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        order: 7;
    }

    .project-image-area .project-actions {
        display: none;
    }

    .btn-ver-pagina,
    .btn-secondary,
    .btn-access {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 140px;
        justify-content: center;
    }

    .project-slide::after {
        width: 6px;
    }
    
    .project-slide:hover::after {
        width: 8px;
    }

    /* FLECHAS CON MEJOR CONTRASTE PARA TABLETS */
    .nav-arrows.prev {
        left: 15px;
    }

    .nav-arrows.next {
        right: 15px;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
        /* APLICAR EL MISMO ESTILO NEGRO/BLANCO */
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(8px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .nav-arrow:hover {
        background: rgba(0, 0, 0, 0.85);
        border-color: #ffc107;
        transform: scale(1.1);
    }

    .nav-arrow::after {
        width: 10px;
        height: 10px;
        border-width: 2px;
        border-color: #ffffff;
        border-left: none;
        border-bottom: none;
        transform: rotate(45deg);
    }

    .nav-arrows.prev .nav-arrow::after {
        border-color: #ffffff;
        transform: rotate(-135deg);
    }

    .nav-arrow:hover::after {
        border-color: #ffc107;
        filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.8));
    }

    .nav-indicators {
        bottom: 25px;
        gap: 12px;
    }

    .nav-dot {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(0, 0, 0, 0.3);
    }

    .nav-dot.active {
        background: #ffc107;
        border-color: #000000;
        transform: scale(1.2);
        box-shadow: 0 2px 8px rgba(255, 193, 7, 0.5);
    }
}

/* MÓVILES MEDIANOS - 401px a 768px (CAMBIAR RANGO) */
@media (min-width: 401px) and (max-width: 767px) {
    /* Orden de elementos móviles */
    .project-tag {
        order: 1;
    }

    .project-title {
        order: 2;
    }

    .project-image-mobile {
        order: 3;
    }

    .project-description {
        text-align: justify;
        line-height: 1.6;
        order: 4;
    }

    .project-features {
        order: 5;
    }

    .tech-badges {
        order: 6;
        gap: 8px;
        margin: 15px 0;
        justify-content: center;
    }

    .project-info .project-actions {
        order: 7;
    }

    .project-features li {
        padding: 8px 0;
        padding-left: 25px;
        position: relative;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: justify;
    }

    .project-features li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #ffc107;
        font-weight: bold;
        font-size: 1rem;
    }
}

/* MÓVILES PEQUEÑOS - máximo 400px */
@media (max-width: 400px) {
    .slider-container {
        height: 650px;
        border-radius: 15px;
        margin: 0 10px;
        width: calc(100% - 20px);
        overflow: hidden;
    }

    .slider-wrapper {
        width: 400%;
        height: 100%;
        transition: transform 0.3s ease;
    }

    .project-slide {
        padding: 10px 5px 70px 5px;
        min-width: 25%;
        max-width: 25%;
        width: 25%;
        flex-shrink: 0;
        box-sizing: border-box;
        position: relative;
        left: 0;
        right: 0;
    }

    .project-slide::after {
        width: 5px;
    }
    
    .project-slide:hover::after {
        width: 6px;
    }

    .project-content {
        padding: 0 50px;
        max-height: 520px;
        gap: 8px;
        transform: none !important;
        will-change: auto !important;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
        left: 0 !important;
        right: 0 !important;
        grid-template-columns: 1fr;
        grid-template-areas: "info";
        overflow-y: auto;
    }

    .project-image-area {
        display: none;
    }

    .project-info {
        grid-area: info;
        text-align: justify;
        max-height: none;
        overflow: visible;
        display: flex;
        flex-direction: column;
        transform: none !important;
        will-change: auto !important;
        position: relative;
        left: 0 !important;
    }

    .parallax-content,
    .parallax-bg,
    .parallax-overlay {
        transform: none !important;
        will-change: auto !important;
    }

    .project-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
        margin: 0 0 8px 0;
        border-radius: 15px;
        order: 1;
    }

    .project-title {
        font-size: 1.6rem;
        margin: 0 0 8px 0;
        order: 2;
    }

    .project-image-mobile {
        display: block !important;
        width: 200px;
        height: 110px;
        margin: 10px auto;
        order: 3;
    }

    .project-description {
        font-size: 0.9rem;
        margin: 0 0 10px 0;
        text-align: justify;
        order: 4;
    }

    .project-features {
        order: 5;
    }

    .project-features h4 {
        font-size: 1rem;
        margin-bottom: 8px;
        text-align: center;
    }

    .project-features li {
        font-size: 0.85rem;
        padding: 6px 0;
        padding-left: 20px;
        text-align: justify;
    }

    .tech-badges {
        order: 6;
        gap: 6px;
        margin: 8px 0 0 0;
        justify-content: center;
    }

    .tech-badge {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .project-info .project-actions {
        order: 7;
        gap: 8px;
        padding: 10px 0;
        margin: 5px 0 0 0;
        display: flex;
        flex-direction: column;
    }

    .project-image-area .project-actions {
        display: none;
    }

    .btn-ver-pagina,
    .btn-secondary,
    .btn-access {
        padding: 10px 18px;
        font-size: 0.85rem;
        min-width: 180px;
        justify-content: center;
    }

    .nav-arrows.prev {
        left: 5px;
    }

    .nav-arrows.next {
        right: 5px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(8px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .nav-arrow:hover {
        background: rgba(0, 0, 0, 0.85);
        border-color: #ffc107;
        transform: scale(1.1);
    }

    .nav-arrow::after {
        width: 8px;
        height: 8px;
        border-width: 2px;
        border-color: #ffffff;
        border-left: none;
        border-bottom: none;
        transform: rotate(45deg);
    }
    
    .nav-arrows.prev .nav-arrow::after {
        border-color: #ffffff;
        transform: rotate(-135deg);
    }
    
    .nav-arrow:hover::after {
        border-color: #ffc107;
        filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.8));
    }

    .nav-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .nav-dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(0, 0, 0, 0.3);
    }

    .nav-dot.active {
        background: #ffc107;
        border-color: #000000;
        transform: scale(1.3);
        box-shadow: 0 2px 8px rgba(255, 193, 7, 0.5);
    }

    .nav-dot:hover {
        background: rgba(255, 255, 255, 0.8);
    }

    .project-content::-webkit-scrollbar {
        width: 4px;
    }

    .project-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .project-content::-webkit-scrollbar-thumb {
        background: rgba(255, 193, 7, 0.6);
        border-radius: 2px;
    }

    .project-content::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 193, 7, 0.8);
    }
}


@media (max-width: 480px) {
    .slider-container {
        height: 650px;
        border-radius: 15px;
        margin: 0 10px;
        width: calc(100% - 20px);
        overflow: hidden;
    }

    .slider-wrapper {
        width: 400%;
        height: 100%;
        transition: transform 0.3s ease;
    }

    .project-slide {
        padding: 10px 5px 70px 5px;
        min-width: 25%;
        max-width: 25%;
        width: 25%;
        flex-shrink: 0;
        box-sizing: border-box;
        position: relative;
        left: 0;
        right: 0;
    }

   
    .project-slide::after {
        width: 5px;
    }
    
    .project-slide:hover::after {
        width: 6px;
    }

    .project-content {
        padding: 0 50px;
        max-height: 520px;
        gap: 8px;
        transform: none !important;
        will-change: auto !important;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
        left: 0 !important;
        right: 0 !important;
    }

    .project-info {
        transform: none !important;
        will-change: auto !important;
        position: relative;
        left: 0 !important;
    }

   
    .parallax-content,
    .parallax-bg,
    .parallax-overlay {
        transform: none !important;
        will-change: auto !important;
    }

    .project-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
        margin: 0 0 8px 0;
        border-radius: 15px;
        order: 1;
    }

    .project-title {
        font-size: 1.6rem;
        margin: 0 0 8px 0;
        order: 2;
    }

    .project-image-mobile {
        display: block !important;
        width: 200px;
        height: 110px;
        margin: 10px auto;
        order: 3;
    }

    .project-description {
        font-size: 0.9rem;
        margin: 0 0 10px 0;
        text-align: justify;
        order: 4;
    }

    .project-features {
        order: 5;
    }

    .tech-badges {
        order: 6;
        gap: 6px;
        margin: 8px 0 0 0;
        justify-content: center;
    }

    .project-info .project-actions {
        order: 7;
        gap: 8px;
        padding: 10px 0;
        margin: 5px 0 0 0;
    }

    .project-features h4 {
        font-size: 1rem;
        margin-bottom: 8px;
        text-align: center;
    }

    .project-features li {
        font-size: 0.85rem;
        padding: 6px 0;
        padding-left: 20px;
        text-align: justify;
    }

    .btn-ver-pagina,
    .btn-secondary {
        padding: 10px 18px;
        font-size: 0.85rem;
        min-width: 180px;
        justify-content: center;
    }

    .nav-arrows.prev {
        left: 5px;
    }

    .nav-arrows.next {
        right: 5px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
        /* Cambiar el fondo para mejor contraste */
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(8px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .nav-arrow::after {
        width: 8px;
        height: 8px;
        border-width: 2px;
        border-color: #ffffff;
        border-left: none;
        border-bottom: none;
        transform: rotate(45deg);
    }
    .nav-arrows.prev .nav-arrow::after {
        border-color: #ffffff;
        transform: rotate(-135deg);
    }
    
    /* Opcional: Agregar un efecto de brillo en hover */
    .nav-arrow:hover::after {
        border-color: #ffc107;
        filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.8));
    }
    
    /* Mejorar también los dots para consistencia */
    .nav-dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(0, 0, 0, 0.3);
    }
    
    .nav-dot.active {
        background: #ffc107;
        border-color: #000000;
        transform: scale(1.3);
        box-shadow: 0 2px 8px rgba(255, 193, 7, 0.5);
    }
    
    .nav-dot:hover {
        background: rgba(255, 255, 255, 0.8);
    }

    .nav-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .nav-dot {
        width: 8px;
        height: 8px;
    }

    .nav-dot.active {
        transform: scale(1.3);
    }

    .tech-badge {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}




