.logo-carousel-section .top_clients{
    text-align: center;
}
.copyright p{
 text-align: center;
}
.container img{
   height: 100px;
   width: 100px;
    
}

.site-logo img{
    border-radius: 50%;
}
.contact_we{
    margin-top: 30px;
    margin-bottom: 30px;
}
.favicon_{
    border-radius: 50%;   
}
/* logo bouncung not active */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.site-logo img {
    animation: bounce 2s infinite; /* Adjust duration and iteration as needed */
    transition: transform 0.3s ease-in-out;
}
/* product glowing */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px limegreen, 0 0 10px limegreen, 0 0 20px limegreen;
    }
    50% {
        box-shadow: 0 0 10px limegreen, 0 0 20px limegreen, 0 0 30px limegreen;
    }
    100% {
        box-shadow: 0 0 5px limegreen, 0 0 10px limegreen, 0 0 20px limegreen;
    }
}

.product-lists .single-product-item {
    animation: glow 2s infinite; /* Glowing effect */
    border: 1px solid limegreen; /* Optional: border to match the glow */
    padding: 15px; /* Ensure padding so the glow looks balanced */
    transition: box-shadow 0.3s ease-in-out;
}
/* Logo glowing grean */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px limegreen, 0 0 10px limegreen, 0 0 15px limegreen;
    }
    50% {
        box-shadow: 0 0 15px limegreen, 0 0 25px limegreen, 0 0 35px limegreen;
    }
    100% {
        box-shadow: 0 0 5px limegreen, 0 0 10px limegreen, 0 0 15px limegreen;
    }
}

.site-logo img {
    animation: glow 2s infinite; /* Apply glowing effect */
    border-radius: 50%; /* Optional: smooth edges */
    border: 2px solid limegreen; /* Optional: adds a limegreen border */
    padding: 5px; /* Optional: spacing for better visibility */
    transition: box-shadow 0.3s ease-in-out;
    
}
/* Add price item glowing */
@keyframes priceGlow {
    0%, 100% {
        color: black;
        text-shadow: 0 0 5px black;
    }
    50% {
        color: limegreen;
        text-shadow: 0 0 10px limegreen, 0 0 20px limegreen;
    }
}

.product-lists .single-product-item .product-price {
    animation: priceGlow 2s infinite; /* Alternate colors with a glowing effect */
    font-weight: bold; /* Make the price stand out */
    font-size: 1.2em; /* Optional: enlarge the price */
    transition: text-shadow 0.3s ease-in-out;
}
.scanme {
    text-align: center;
    margin-top: 20px;
}

.scanme h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.scanme img {
    max-width: 150px;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 8px;
    display: inline-block;
    transition: transform 0.3s;
}

.scanme img:hover {
    transform: scale(3.2);
}



/* Add to your custom.css or main CSS file  logo rotatin*/
/* @keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.site-logo img {
    animation: rotate 3s linear infinite; /* Adjust duration and timing as needed */
    /*transition: transform 0.3s ease-in-out;
}
*/