@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Base styles */
body {
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.font-geist-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Utility classes */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Timeline dot */
.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #3B82F6;
    flex-shrink: 0;
    margin-top: 4px;
    position: relative;
    z-index: 10;
}

/* Timeline card animation */
.timeline-card {
    transform: translateX(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
    transform: translateX(4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-dot {
        width: 10px;
        height: 10px;
    }
    
    .company-timeline .absolute {
        left: 16px; /* Adjust timeline line for mobile */
    }
    
    .company-timeline .flex-shrink-0 {
        width: 16px; /* Adjust year display for mobile */
        text-align: left;
        padding-right: 0;
    }
}

/* IP Carousel */
.ip-carousel-container {
    scroll-behavior: smooth;
}

.ip-carousel-prev, .ip-carousel-next {
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ip-carousel-prev:hover, .ip-carousel-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

/* Global map styles */
.global-map-container {
    position: relative;
}
