/* SUPER ATTRACTIVE COLORFUL CATEGORY ICONS */
.cat-card {
    text-align: center;
    padding: 30px 15px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 20px;
}

.cat-card:hover::before {
    opacity: 0.9;
}

.cat-card:hover .cat-icon,
.cat-card:hover h5,
.cat-card:hover small {
    color: white !important;
    position: relative;
    z-index: 2;
}

.cat-icon {
    font-size: 45px !important;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b00, #ff8a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s;
}

.cat-card h5 {
    color: #003087;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.4s;
}

.cat-card small {
    color: #666;
    transition: color 0.4s;
}

/* 8 PER ROW */
.category-grid .col-lg-3 { width: 12.5%; }
@media (max-width: 1400px) { .category-grid .col-lg-3 { width: 16.666%; } }
@media (max-width: 992px) { .category-grid .col-lg-3 { width: 25%; } }
@media (max-width: 576px) { .category-grid .col-lg-3 { width: 50%; } }


/* GOOGLE TRANSLATOR STYLE – CLEAN & PROFESSIONAL */
#google_translate_element {
    display: inline-block;
}
.goog-te-gadget-simple {
    background-color: #ff6b00 !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 8px 15px !important;
    font-size: 14px !important;
    color: white !important;
}
.goog-te-gadget-simple img {
    display: none !important;
}
.goog-te-gadget-simple a {
    color: white !important;
}