/*-------------------- Padding Start --------------------*/
.listing-page-padding {
    padding: 80px 0;
}
/*-------------------- Padding End --------------------*/


/*-------------------- Top Header Start --------------------*/
.top-heading-wrapper .title_before{
    display: inline-block;
    text-transform: uppercase;
    color: #F9452D;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22.4px;
    letter-spacing: 20%;
}

.top-heading-wrapper .heading {
    font-weight: 400;
    font-size: 48px;
    line-height: 67px;
    letter-spacing: -1.5px;
    color: var(--black);
    margin-bottom: 16px;
}

.top-heading-wrapper .paragraph {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: normal;
    color: #6D6D6D;
}

/*-------------------- Top Header End --------------------*/


/*-------------------- Tabs Start --------------------*/

.tabs-container {
    margin: 10px auto 20px auto;
}

.hero-section-navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px ;
}
.tabs-wrapper{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.tab{
    padding: 8px 14px;
    border: 1px solid #E4E4E4;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: normal;
    background-color: white;
    color: #6D6D6D;
    text-wrap: nowrap;
}
.tab-active{
    background-color: black;
    color: white;
}

.project-tabs .tabs-wrapper {
    gap: 30px;
}

.project-tabs .dot-tab {
font-size: 16px;
    line-height: 25px;
    color: #6D6D6D;
    position: relative;
    white-space: nowrap;
}
.project-tabs .dot-tab::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 11px;
    width: 4px;
    height: 4px;
    background-color: #888;
    border-radius: 50%;
}
.project-tabs .dot-tab:last-child::after {
    display: none;
}

.project-tabs .dot-tab.active {
color: #000000;
    text-decoration: underline;
}

/* Webkit-specific styles (Chrome, Edge, Safari) */
.tabs-wrapper::-webkit-scrollbar {
    width: 12px;
}

.tabs-wrapper::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 6px;
}

.tabs-wrapper::-webkit-scrollbar-track {
    background: #ddd;
}

/*-------------------- Tabs Start --------------------*/

/*-------------------- Search Start --------------------*/
.search-wrapper{
    position: relative;
    /*padding-bottom: 10px;*/
    margin-bottom: 15px;
    display:none;


}
.search{
    padding: 8px 16px;
    border: 1px solid #E4E4E4;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: normal ;
    width: 286px;
}
.search:focus{
    outline: none;
}
.search-icon{
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
/*-------------------- Search End --------------------*/


/*-------------------- Items Card  Start --------------------*/

.card-item{
    display: block;
    margin-bottom: 20px;
}
.card-item .thumbnail-rounded {
    border-radius: 8px;
}
.card-item .card-content {
    margin-top: 20px;
}
.card-item .sub-title{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: normal;
    color: #F9452D;
    margin-bottom: 12px;
    display: inline-block;
    text-transform:uppercase;
}
.card-item .heading, .card-item .heading a{
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-item .paragraph{
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: normal;
    color: #6D6D6D;
}


/*-------------------- Items Card  Start --------------------*/



/*@media (min-width: 767.98px) and (max-width: 1600px) {*/
/*    .tabs-container {*/
/*        padding: 0 48px;*/
/*    }*/
/*}*/



@media (max-width: 1023.98px) {

    /*-------------------- Top Header Start --------------------*/
    .top-heading-wrapper .heading {
        font-size: 34px;
        line-height: 44px;
        letter-spacing: -0.65px;
    }
    /*-------------------- Top Header End --------------------*/

    /*-------------------- Items Card  Start --------------------*/

    .card-item{
        margin-bottom: 50px;
    }
    .card-item .card-content {
        margin-top: 16px;
    }

    /*-------------------- Items Card  Start --------------------*/
}



@media (max-width: 767.98px) {


    .search-wrapper{
        width: 100%;
        margin-bottom: 0;
        margin-top: 10px;
    }
    .search{
        width: 100%;
    }


    /*-------------------- Top Header Start --------------------*/
    .top-heading-wrapper .title_before{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }

    .top-heading-wrapper .heading {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: -0.56px;
        margin-bottom: 10px;
    }

    .top-heading-wrapper .paragraph {
        font-size: 14px;
        line-height: 20px;
    }

    /*-------------------- Top Header End --------------------*/

    /*-------------------- Tabs Start --------------------*/
    .tabs-container {
        margin: 10px auto 10px auto;
    }

    .tabs-wrapper{
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .tabs-wrapper::-webkit-scrollbar {
        display: none;
    }
    .hero-section-navigation{
        flex-direction: column-reverse;
        gap: 0;
        margin-bottom: 0;
    }



    /*-------------------- Tabs End --------------------*/


    /*-------------------- Padding Start --------------------*/
    .listing-page-padding {
        padding: 50px 0;
    }
    /*-------------------- Padding End --------------------*/




    /*-------------------- Items Card  Start --------------------*/

    .card-item{
        margin-bottom: 30px;
    }

    .card-item .sub-title{
        margin-bottom: 5px;
    }

    .card-item .heading{
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .card-item .paragraph{
        font-size: 14px;
        line-height: 20px;
    }


    /*-------------------- Items Card  Start --------------------*/
}






/* Pagination Container */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    /*margin-bottom: 40px;*/
}

/* Pagination Navigation */
.pagination {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Base Pagination Buttons */
.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 35px;
    padding: 5px 12px;
    background-color: transparent;
    border: none;
    color: #000000;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
}

/* Hover */
.pagination .page-numbers:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Click animation */
.pagination .page-numbers:active {
    transform: scale(0.95);
}

/* Active Page */
.pagination .page-numbers.current {
    background-color: #000000;
    color: #ffffff;
}

/* Arrow buttons */
.pagination .prev,
.pagination .next {
    padding: 5px 10px;
}

/* Arrow images */
.pagination .prev img,
.pagination .next img {
    width: 16px;
    height: 16px;
}


/* Ellipsis */
.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: #000000;
    font-size: 16px;
    padding: 0 4px;
    user-select: none;
}

/* Disabled State (for future use) */
.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn:disabled:hover {
    background-color: transparent;
}




/*!* Pagination Container *!*/
/*.pagination-container {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    width: 100%;*/
/*    padding-top: 50px;*/
/*}*/

/*!* Pagination Navigation *!*/
/*.pagination {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 12px;*/
/*    list-style: none;*/
/*}*/

/*!* Pagination Buttons *!*/
/*.pagination-btn {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    min-width: 30px;*/
/*    height: 35px;*/
/*    padding: 5px 12px;*/
/*    background-color: transparent;*/
/*    border: none;*/
/*    color: #000000;*/
/*    cursor: pointer;*/
/*    border-radius: 6px;*/
/*    transition: all 0.2s ease;*/
/*}*/

/*.pagination-btn:hover {*/
/*    background-color: rgba(0, 0, 0, 0.05);*/
/*}*/

/*.pagination-btn:active {*/
/*    transform: scale(0.95);*/
/*}*/

/*!* Active State *!*/
/*.pagination-btn.active {*/
/*    background-color: #000000;*/
/*    color: #ffffff;*/
/*}*/

/*.pagination-btn.active:hover {*/
/*    background-color: #000000;*/
/*    opacity: 0.9;*/
/*}*/

/*!* Number Buttons *!*/
/*.pagination-number {*/
/*    font-weight: 400;*/
/*    font-size: 16px;*/
/*    line-height: 25px;*/
/*    letter-spacing: normal;*/
/*}*/

/*!* Ellipsis *!*/
/*.pagination-ellipsis {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    min-width: 40px;*/
/*    height: 40px;*/
/*    color: #000000;*/
/*    font-size: 16px;*/
/*    padding: 0 4px;*/
/*    user-select: none;*/
/*}*/

/*!* Disabled State (for future use) *!*/
/*.pagination-btn:disabled {*/
/*    opacity: 0.4;*/
/*    cursor: not-allowed;*/
/*}*/

/*.pagination-btn:disabled:hover {*/
/*    background-color: transparent;*/
/*}*/

/*@media screen and (max-width: 768px) {*/

/*.pagination-container {*/
/*    display: none;*/
/*}*/
/*}*/