/* Enterprise Icons CSS */
.enterprise-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.enterprise-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.enterprise-icon-sm {
    width: 50px;
    height: 50px;
}

.enterprise-icon-sm svg {
    width: 25px;
    height: 25px;
}

.enterprise-icon-lg {
    width: 80px;
    height: 80px;
}

.enterprise-icon-lg svg {
    width: 40px;
    height: 40px;
}

/* Icon Colors */
.icon-primary {
    background-color: #007bff;
    color: white;
}

.icon-success {
    background-color: #28a745;
    color: white;
}

.icon-warning {
    background-color: #ffc107;
    color: white;
}

.icon-info {
    background-color: #17a2b8;
    color: white;
}

.icon-secondary {
    background-color: #6c757d;
    color: white;
}

.icon-dark {
    background-color: #343a40;
    color: white;
}

.icon-danger {
    background-color: #dc3545;
    color: white;
}

/* Hover Effects */
.enterprise-icon {
    transition: all 0.3s ease;
}

.enterprise-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Contact Icons */
.contact-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
} 