.rouded{
    border-radius: 10px !important;
}
.custom-btn{
background-color: #d61c1c !important;
}

.zoom-img {
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* smooth animation for zoom + shadow */
    cursor: pointer;
}

.zoom-img:hover {
    transform: scale(1.2); /* zoom 120% */
  
}
.highlight-box {
  background: #fff3cd;   /* light yellow */
  border: 1px solid #ffeeba;
  padding: 10px;
  margin-top: 10px;
  font-weight: bold;
  color: #856404;
  border-radius: 5px;
}

/* new css */

.zoom-animation{
    animation: zoomInOut 8s ease-in-out infinite;
    will-change: transform;
}

@keyframes zoomInOut{
    0%{
        transform: scale(1);
    }
    25%{
        transform: scale(1.04);
    }
    50%{
        transform: scale(1.08);
    }
    75%{
        transform: scale(1.04);
    }
    100%{
        transform: scale(1);
    }
}

.vm-card{
    background:#fff;
    border-left:6px solid #FE000E;
    border-radius:15px;
    padding:45px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.vm-card::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:120px;
    height:120px;
    background:rgba(254,0,14,.05);
    border-radius:50%;
    transform:translate(40px,-40px);
}

.vm-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.vm-icon{
    width:75px;
    height:75px;
    background:#FE000E;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.vm-card h2{
    font-weight:700;
    margin-bottom:20px;
}

.vm-card p{
    color:#666;
    line-height:1.9;
}

.vm-card ul li{
    padding:10px 0;
    font-weight:500;
    color:#333;
}

.vm-card ul li i{
    font-size:18px;
}

.popular-product{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.popular-product:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.product-img{
    background:#f8f8f8;
    padding:30px;
}

.product-img img{
    height:220px;
    object-fit:contain;
    transition:.4s;
}

.popular-product:hover img{
    transform:scale(1.08);
}

.product-content{
    padding:25px;
}

.product-content h4{
    font-weight:700;
    margin-bottom:10px;
}

.product-content p{
    color:#666;
    font-size:15px;
    min-height:60px;
}

.product-content .btn{
    border-radius:30px;
    padding:10px 25px;
}

.linkedin-btn{
    width:50px;
    height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#0077B5;
    color:#fff;
    text-decoration:none;
    border-radius:50%;
    transition:0.3s ease;
    box-shadow:0 5px 15px rgba(0,119,181,.3);
}

.linkedin-btn:hover{
    background:#005885;
    color:#fff;
    transform:translateY(-3px) scale(1.08);
}

.linkedin-btn i{
    font-size:22px;
}

.linkedin-btn,
.whatsapp-btn{
    width:50px;
    height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    transition:.3s ease;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.linkedin-btn{
    background:#0077B5;
}

.linkedin-btn:hover{
    background:#005885;
    color:#fff;
    transform:translateY(-3px) scale(1.08);
}

.whatsapp-btn{
    background:#25D366;
}

.whatsapp-btn:hover{
    background:#1DA851;
    color:#fff;
    transform:translateY(-3px) scale(1.08);
}

.linkedin-btn i,
.whatsapp-btn i{
    font-size:22px;
}
.social-icons{
    display: flex;
    /* justify-content: center;
    align-items: center; */
    gap: 18px;   /* 15px, 20px ya 25px bhi kar sakte hain */
}