/* Card */

.product-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    height:100%;
    transition:.35s ease;
    border:1px solid #ececec;
    box-shadow:0 2px 12px rgba(0,0,0,.04);
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

/* Image */

.product-thumb{
    display:block;
    background:#f8f8f8;
    height:240px;
    overflow:hidden;
}

.product-thumb img{
    width:100%;
    height:100%;
    object-fit: cover; 
    transition:.4s;
}

.product-card:hover .product-thumb img{
    transform:scale(1.06);
}

/* Content */

.product-content{
    padding:20px;
}

.product-tag{
    display:inline-block;
    font-size:12px;
    padding:5px 10px;
    border-radius:30px;
    background:#eef5ff;
    color:#0066ff;
    margin-bottom:12px;
}

.product-title{
    font-size:18px;
    line-height:1.5;
    min-height:55px;
    margin-bottom:20px;
}

.product-title a{
    color:#222;
    text-decoration:none;
}

.product-title a:hover{
    color:#0066ff;
}

.product-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:8px;
    background:#0066ff;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.product-btn:hover{
    background:#004fcc;
    color:#fff;
}

/* Mobile */

@media(max-width:767px){

.product-thumb{
    height:180px;
}

.product-title{
    font-size:16px;
}

}



/* Pagination container */
.pagination-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:60px;
    flex-wrap:wrap;
    gap:10px;
}

/* Circle buttons */
.pagination-wrap .page-numbers{
    display:flex;
    align-items:center;
    justify-content:center;

    width:48px;
    height:48px;

    border-radius:50%;
    border:1px solid #e5e5e5;

    background:#fff;
    color:#333;

    text-decoration:none;
    font-size:15px;
    font-weight:600;

    transition:all .3s ease;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}

/* Hover */
.pagination-wrap .page-numbers:hover{
    background:#0066ff;
    border-color:#0066ff;
    color:#fff;
    transform:translateY(-3px);
}

/* Active */
.pagination-wrap .page-numbers.current{
    background:#0066ff;
    color:#fff;
    border-color:#0066ff;
}

/* Dots (...) */
.pagination-wrap .page-numbers.dots{
    border:none;
    background:transparent;
    box-shadow:none;
    width:auto;
}

/* Previous / Next */
.pagination-wrap .prev,
.pagination-wrap .next{
    width:48px;
    height:48px;
}

/* Mobile */
@media(max-width:767px){
    .pagination-wrap .page-numbers{
        width:40px;
        height:40px;
        font-size:14px;
    }
}



.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

/* Common Button Style */
.float-btn {
    width: 58px;
    height: 58px;
    background: #002261;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;
    font-size: 26px;

    box-shadow: 0 6px 15px rgba(0,0,0,0.2);

    transition: 0.3s ease;
}
.whatsapp{
	background-color: #0cab1a;
}

.float-btn:hover {
    transform: scale(1.08);
}

/* Call Section */
.call-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
}
 

.call {
    position: relative;
    z-index: 2;
}

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

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .call-text {
        font-size: 14px;
        padding: 10px 14px;
    }
}