#category-section {
    padding: 60px 0 20px;
}

.category-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 4px solid #4A5D8F;  /* Changed to lighter dusty pastel blue */
    position: relative;
    box-shadow:
        /* Inner white highlight at top */
        inset 0 2px 3px -1px rgba(255,255,255,0.7),
        /* Inner shadow at bottom */
        inset 0 -2px 3px -1px rgba(0,0,0,0.2),
        /* Outer edge lift effect */
        0 3px 3px -2px rgba(0,0,0,0.2),
        /* Subtle blue glow */
        0 0 6px rgba(74,93,143,0.25);  /* Matching glow color */
}

/* Add highlight effect to the border */
.category-icon-wrap::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.4) 0%,
        rgba(255,255,255,0) 50%,
        rgba(0,0,0,0.1) 100%
    );
    pointer-events: none;
}

.category-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-icon-wrap:hover {
    transform: scale(1.05) translateY(-2px);
    border-color: #5B71A9;  /* Slightly lighter dusty blue for hover */
    box-shadow:
        /* Enhanced inner highlights */
        inset 0 3px 4px -1px rgba(255,255,255,0.8),
        inset 0 -3px 4px -1px rgba(0,0,0,0.3),
        /* Enhanced outer shadow for more lift */
        0 5px 6px -2px rgba(0,0,0,0.25),
        /* Enhanced glow */
        0 0 8px rgba(74,93,143,0.35);  /* Matching glow color */
}

/* Enhance highlight effect on hover */
.category-icon-wrap:hover::before {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.5) 0%,
        rgba(255,255,255,0) 60%,
        rgba(0,0,0,0.15) 100%
    );
}

.category-name {
    color: #566985;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-top: 8px;
} 