/*
Theme Name: Taj Brand
*/

/* Left Side Social Media */
.social-sidebar {
    position: fixed;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-sidebar a {
    width: 45px;
    height: 45px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-sidebar a:hover {
    background: #007bff;
}

/* WhatsApp Bottom Right */
.whatsapp-chat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 32px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-chat:hover {
    background: #1ebe5d;
}