 /* Style the tab */
 .tab {
    overflow: hidden;
    border: 1px solid #ffffff;
    background-color: #f1f1f1;
    display: flex;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    /* float: left; */
    width: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    border-bottom:  #DD183B 3px solid;
    display: flex;
    align-items: center;
    justify-content: center;

}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ffffff;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color:  #DD183B;
    color: #f1f1f1;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    /* border: 1px solid #ccc; */
    border-top: none;
}
.whatsapp-float {
    padding: 16px 18px !important;
}

.product-page,.sproduct-page {
    display: none; /* Hide all product pages by default */
}

.product-page.active,.sproduct-page.active {
    display: block; /* Show the active page */
}
.pagination .page-link {
    color:#DD183B; /* Default color for all pagination links */
}

.pagination .page-item.active .page-link {
    background-color: #DD183B; /* Background color for the active page */
    border-color:#DD183B; /* Border color for the active page */
    color: #FFFFFF; /* Text color for the active page */
}

.pagination .page-link:hover {
    color: #DD183B; /* Hover color for all pagination links */
}

.single-project .project-thumb img {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    /* border:1px solid #DD183B; */
    box-shadow:0px 0px 6px rgba(221,24,59,0.9);
}

.single-project:hover .project-thumb img {
    transform: scale(1.1); /* Slight zoom-in effect */
    opacity: 0.9; /* Slight fade effect */
}