.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Map Pulse Effect */
.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #CE033A;
    border-radius: 50%;
}

.map-dot::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid #CE033A;
    border-radius: 50%;
    animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #17139E;
    border-radius: 10px;
}

.logistics-card:hover .logistics-icon {
    transform: translateY(-5px);
    color: #CE033A;
}

/* Perspective effect for images */
.image-stack-container {
    perspective: 1000px;
}

.depth-card {
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.depth-card:hover {
    transform: rotateY(0) rotateX(0);
}

/* Table Specific Styling */
table th {
    background-color: #17139E;
    color: white;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

table td {
    border-bottom: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    font-size: 0.825rem;
    color: #232230;
    font-weight: 600;
}

table tr:nth-child(even) td {
    background-color: #fcfcfc;
}

table tr:hover td {
    background-color: #f8f9fa;
}

.h-2px {
    height: 2px;
}