.whatsapp-float {
    position: fixed;
/*    right: 20px;*/
    bottom: 50px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-text {
    background: #25D366;
    color: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    margin-right: 10px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(20px);
    transition: 0.4s;
    white-space: nowrap;
}

.whatsapp-btn:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media(max-width:768px){
    .whatsapp-text {
        display: none;
    }
}
 .main-cat-header {
                    background: #f1f1f1;
                    padding: 10px 20px;
                    font-weight: 800;
                    color: #3d2b5d;
                    display: flex;
                    align-items: center;
                    font-size: 13px;
                    text-transform: uppercase;
                    letter-spacing: 0.8px;
                    border-bottom: 1px solid #ddd;
                }
                .main-cat-header i { margin-right: 10px; color: #ff6600; font-size: 16px; }
                
                .sub-item-link {
                    display: flex;
                    align-items: center;
                    padding: 10px 25px;
                    color: #444 !important;
                    text-decoration: none !important;
                    border-bottom: 1px solid #f9f9f9;
                    transition: all 0.3s ease;
                    font-size: 14px;
                }
                .sub-item-link i {
                    color: #ccc;
                    margin-right: 10px;
                    font-size: 8px;
                }
                .sub-item-link:hover {
                    background-color: #fdf6f2;
                    color: #ff6600 !important;
                    padding-left: 32px;
                }
                .sub-item-link:hover i { color: #ff6600; }
                .cat-group { margin-bottom: 5px; }

                .footer-area {
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #cbd5e1;
    padding: 70px 0;
    font-family: Arial;
}

.footer-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.footer-links i {
    color: #f59e0b;
}

/* Hover */
.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a:hover {
    color: #fff;
}

/* Map */
.footer-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-top: 15px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #1e293b;
    padding-top: 20px;
}

/* Social */
.social-icons a {
    color: #cbd5e1;
    margin: 0 10px;
    font-size: 18px;
}
.social-icons a:hover {
    color: #f59e0b;
}