/* Connectivity Section Styles */
.connectivity {
    padding: 8rem 0;
    text-align: center;
}

.connectivity h1 {
    color: #e5bc5d;
}

.connectivity .description {
    color: #615959;
    font-size: large;
    margin-bottom: 60px;
}

.connectivity-list {
    margin-top: 90px;
    width: 100%;
    margin: auto;
}

.connectivity-item {
    padding: 20px;
    text-align: center;
    margin: 2px;
    background-color: black;
    color: white;
    transition: all 0.5s ease;
    pointer-events: all;
}

.connectivity-item-con{
    padding: 0;
}

/* Icon styles */
.connectivity-icon {
    color: rgb(138, 136, 131);
    font-size: 48px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

/* Hover effects */
.connectivity-item:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
    font-weight: bolder;
}

.connectivity-item:hover .connectivity-icon {
    color: #e5bc5d;
}

/* Stop hover on others */
.connectivity-item:hover ~ .connectivity-item {
    opacity: 0.5;
}

/* Active effects */
.connectivity-item:active {
    background-color: gray;
    color: white;
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

