/* Trusted Clients Section */
.trusted-clients-section {
    width: 100%;
    background-color: #101112;
    /* Dark background matching the theme */
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    color: #fff;
}

.tc-container {
    width: 100%;
    max-width: 1000px;
    position: relative;
    height: 500px;
    /* Specific height for the SVG canvas */
}

/* Typography Positioned Absolute or within SVG foreignObject */
.tc-text-overlay {
    position: absolute;
    top: 50px;
    right: 50px;
    text-align: right;
    z-index: 10;
}

.tc-stat-number {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tc-stat-label {
    font-size: 24px;
    color: #a1a1aa;
    margin-top: 10px;
    font-weight: 400;
}

/* SVG Styles */
.tc-svg {
    width: 100%;
    height: 100%;
    /* border: 1px solid #333; Debugging */
}

/* Server Rack Shapes */
.server-face-top {
    fill: #1c1e21;
    stroke: #4ade80;
    stroke-width: 2px;
}

.server-face-left {
    fill: #18181b;
    stroke: #4ade80;
    stroke-width: 2px;
}

.server-face-right {
    fill: #141519;
    stroke: #22c55e;
    stroke-width: 1px;
}

/* Isometric Glows */
.server-glow {
    filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.3));
}

/* Data Paths */
.tc-data-path {
    fill: none;
    stroke: #27272a;
    /* Dark path trace */
    stroke-width: 4;
    stroke-linecap: round;
}

/* Animated Dots */
.tc-dot {
    offset-anchor: center;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4ade80;
    box-shadow: 0 0 10px #4ade80;
    offset-rotate: auto;
}

/* specific animations */
/* Must match SVG d="M 230 420 L 400 320 L 650 320 L 950 150" */
.tc-dot-1 {
    offset-path: path("M 230 420 L 400 320 L 650 320 L 950 150");
    animation: flow-path 3s linear infinite;
}

.tc-dot-2 {
    offset-path: path("M 230 420 L 400 320 L 650 320 L 950 150");
    animation: flow-path 3s linear infinite;
    animation-delay: 1.0s;
    opacity: 0.8;
}

.tc-dot-3 {
    offset-path: path("M 230 420 L 400 320 L 650 320 L 950 150");
    animation: flow-path 3s linear infinite;
    animation-delay: 2.0s;
    opacity: 0.6;
}


@keyframes flow-path {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}

/* Person Styles (Placeholder) */
.person-body {
    fill: #3f3f46;
}

.person-head {
    fill: #a1a1aa;
}

.person-suit {
    fill: #10b981;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .tc-container {
        height: 400px;
    }

    .tc-text-overlay {
        top: 20px;
        right: 20px;
    }

    .tc-stat-number {
        font-size: 48px;
    }
}