.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 */
}

/* .popular-product{
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

.popular-product.show{
    opacity: 1;
    transform: translateY(0);
} */

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.gallery-card img{
    width:100%;
    height:261px;
    object-fit:cover;
    transition:.5s;
}

.gallery-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    top:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.15));
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    opacity:0;
    transition:.4s;
}

.gallery-overlay i{
    font-size:42px;
    margin-bottom:15px;
}

.gallery-overlay h5{
    margin:0;
    font-weight:600;
    letter-spacing:1px;
}

.gallery-card:hover img{
    transform:scale(1.12);
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

/* Pagination css */
.gallery-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
}

.pagination .page-link{
    color:#dc3545;
}

.pagination .active .page-link{
    background:#dc3545;
    border-color:#dc3545;
    color:#fff;
}

/* loader gallery */
.loader-content{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.loader-content img{
    width:120px;
    margin-bottom:20px;
}

#thumbnailContainer img{
    width:70px;
    height:70px;
    object-fit:cover;
    cursor:pointer;
    border:2px solid #ddd;
    padding:2px;
    transition:.3s;
}

#thumbnailContainer img:hover{
    border-color:#0d6efd;
}

#thumbnailContainer img.active{
    border-color:#0d6efd;
}

.product-image{
    width:100%;
}

/* CARRER */
.job-row {
    border-bottom: 2px solid #bdbdbd;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.job-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.career-box{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:8px;
    padding:30px;
    height:100%;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    transition:.3s;
}

.career-box:hover{
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transform:translateY(-3px);
}

.career-box h2{
    font-size:30px;
    font-weight:700;
    margin-bottom:15px;
}

.career-box ul{
    padding-left:18px;
}

.career-box li{
    margin-bottom:6px;
}

.career-box p{
    margin-bottom:8px;
}

/* // slide button */

/* .carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    margin:0 5px;
    background:#051647 !important;
    opacity:.5;
}

.carousel-indicators .active{
    opacity:1;
    background:#ff6600 !important;
} */

.carousel-item img{
    width:100%;
    display:block;
}

@media (max-width:767px){

    .carousel-item img{
        height:auto;
    }

}
@media (max-width:768px){

    .carousel-item{
        min-height:auto !important;
    }

    .carousel-item img{
        width:100%;
        height:auto !important;
        object-fit:contain !important;
    }

}

.section-title{
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-15px;
    width:120px;
    height:5px;
    background:linear-gradient(90deg,#FE000E,#001942);
    border-radius:10px;
}

.text-dark-blue{
    color:#001942;
}

.text-danger{
    color:#FE000E;
}