
            .widget_social li a,
.footer_social li a {
    color: #d4af37; /* gold */
    transition: 0.3s;
}

.widget_social li a:hover,
.footer_social li a:hover {
    color: #ffffff;
}

.footer_widget h3 {
    color: #d4af37;
}

.footer_widget img {
    width: 180px;      /* adjust as you like */
    height: auto;      /* keeps ratio perfect */
    object-fit: contain;
}


/* HEADER */
.st-header {
    background: #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
   
    position: relative;
}


/* CONTAINER */
.st-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.st-logo img {
    width: 140px;
    height: auto;
}

/* NAV */
.st-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* MENU LIST */
.st-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.st-nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.st-nav ul li a:hover {
    color: #d4af37;
}

/* BUTTON */
.st-btn {
    background: #d4af37;
    color: #000;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* TOGGLE */
.st-toggle {
    display: none;
    font-size: 28px;
    color: #d4af37;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .st-toggle {
        display: block;
    }

.st-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    display: none;
    flex-direction: column;
    padding: 20px 0;
    text-align: center;

    z-index: 999; /* logo se neeche */
}
/* when active */
.st-nav.active {
    display: flex;
}
    .st-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .st-btn {
        margin-top: 15px;
        display: inline-block;
    }
}
.st-whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    animation: stPulse 1.5s infinite;
    text-decoration: none;
}

/* HOVER EFFECT */
.st-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* PULSE ANIMATION */
@keyframes stPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}