/* Company Logo Enhancements */
.company-logo {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.company-logo .company-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #003b5c;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0 1rem;
    text-align: center;
}

.company-logo:hover .company-name {
    opacity: 1;
    color: #005c8f;
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reference-card,
.info-block,
.company-logo,
.stat-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.reference-card:nth-child(2),
.info-block:nth-child(2),
.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.reference-card:nth-child(3),
.info-block:nth-child(3),
.stat-item:nth-child(3) {
    animation-delay: 0.4s;
}

.company-logo:nth-child(2n) {
    animation-delay: 0.2s;
}

.company-logo:nth-child(3n) {
    animation-delay: 0.3s;
}

.company-logo:nth-child(4n) {
    animation-delay: 0.4s;
}

/* Hover Effect Enhancements */
.info-block:hover {
    background: linear-gradient(145deg, #f5f5f5, #ffffff);
}

.info-block:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.stat-item {
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.stat-item:hover::after {
    width: 50%;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .company-logo .company-name {
        font-size: 0.8rem;
    }
    
    .stat-item::after {
        display: none;
    }
} 