/* Logo colors */
.st0 {
    fill:#7BC472;
}

.st1{
    fill:#A7A9AC;
}

.tech-carousel-track img {
    height: 100px;
    margin: 0 20px 0 0;
}

/* Custom shadows for better contrast */
.shadow-card {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.shadow-card strong {
    letter-spacing: 0.01em;
}

/* Text shadows */
.shadow-text-white {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.shadow-text-black {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Navigation shadow */
nav {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.shadow-card.bg-gray-800 {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.shadow-card.bg-gray-50 {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tech-carousel {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.tech-carousel-fullbleed {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.tech-carousel-track {
    display: flex;
    gap: 12px;
    width: max-content;
    padding: 12px;
    animation: tech-scroll 28s linear infinite;
}

.tech-carousel:hover .tech-carousel-track {
    animation-play-state: paused;
}

.tech-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-icon-slot {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 7px;
    border: 1px dashed rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.03);
}

@keyframes tech-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 6px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .tech-carousel-track {
        animation: none;
    }
}

/* Print styles */
@media print {
    .print-hidden {
        display: none !important;
    }

    footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white !important;
        color: black !important;
        padding: 0.5cm;
        font-size: 10pt;
    }

    footer p {
        display: inline;
        margin: 0 1em 0 0;
    }

    footer h4 {
        display: inline;
        margin-right: 1em;
    }

    * {
        color: black !important;
        background: white !important;
        text-shadow: none !important;
        box-shadow: none !important;
    }

    body {
        font-size: 11pt;
        line-height: 1.3;
        padding-bottom: 3cm;
    }

    section {
        margin-bottom: 1cm;
        page-break-inside: avoid;
    }

    header {
        padding: 0.5cm 0;
    }

    h1 {
        font-size: 18pt;
    }

    h2 {
        font-size: 16pt;
        page-break-after: avoid;
    }

    h3 {
        font-size: 14pt;
        page-break-after: avoid;
    }

    .grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.3cm !important;
    }

    .grid > div {
        padding: 0.3cm;
        page-break-inside: avoid;
        font-size: 10pt;
    }

    .max-w-7xl {
        max-width: none !important;
        margin: 2em !important;
        padding: 0 0.5cm !important;
    }

    a {
        text-decoration: underline;
        color: black !important;
    }
}
