.project-content{
    /*padding: 20px;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%,);*/
}

.product-btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: #ffffff;
    color: #ffffff;
    border-radius: 100px;
    padding: 10px 0;
    border: none;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.product-btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: #ffffff;
    color: #000000;
    border-radius: 100px;
    padding: 10px 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    border: 1px solid transparent;
}

/* Gradient Border (Default State) */
.product-btn-default::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 2px;

    background: linear-gradient(
        100deg,
        var(--accent-secondary-color) 0%,
        var(--accent-color) 50%,
        var(--accent-secondary-color) 100%
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    z-index: -1;
    transition: background 0.4s ease;
}

/* Gradient Fill Layer */
.product-btn-default::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        var(--accent-secondary-color) 0%,
        var(--accent-color) 50%,
        var(--accent-secondary-color) 100%
    );
    border-radius: 100px;

    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s ease;
    z-index: -2;
}

/* Hover Fill */
.project-item:hover .product-btn-default::before {
    transform: scaleX(1);
}

/* Border turns white but stays */
.project-item:hover .product-btn-default {
    border: 2px solid #ffffff;
    color: #ffffff;
    transition: color 0.3s ease, border 0.3s ease;
}

.innerproductsubheading{
    margin-top: 10px;  
}
.innerproductsubheading a{   
    color: #B63532;
    padding: 8px 0;
   
}
.innerproductsubheading a:hover{
    color: #2B2A29;
}

.product-list h5{
    font-size: 22px;
}
.product-list{
    margin: 0;
}

.product-padding{
    padding: 10px 0;
}



.table td, .table th {
    min-width: 150px;
}

@media (max-width: 768px) {
    .table td {
        font-size: 12px;
    }
    .table td, .table th {
    min-width: 100px;
}
}

.table thead th{
    background: #B63532;
    color: #ffffff;
}
.table tbody td{
    line-height: 22px;
}
/*.table-responsive {
    overflow-x: auto;
}

.table td, .table th {
    vertical-align: middle;
    min-width: 140px;
}

.table td:nth-child(3) {
    min-width: 280px;
}

.table td:nth-child(5) {
    min-width: 220px;
}*/


/*red B63532
black 2B2A29*/




.custom-btn {
    position: relative;
    padding: 12px 22px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    animation: pulse 2s infinite;
}

/* Hover Effect */
.custom-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Mobile Full Width */
@media (max-width: 576px) {
    .custom-btn {
        width: 100%;
        text-align: center;
    }
}
