@charset "utf-8";
/* CSS Document */
/*
Theme Name: Designer Portfolio-09(Future development)
Theme URI: [https://yourdomain.com](https://yourdomain.com)
Author: Graphic Designer
Author URI: [https://yourdomain.com](https://yourdomain.com)
Description: TFuture development for portfolio..
Version: 9.00
License: GNU General Public License v2 or later
License URI: [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)
Text Domain: designer-portfolio-09
*/

/* Card Hover Effect */
.project-card:hover .project-image {
    transform: scale(1.05);
}

/* WordPress Native Pagination Styling */
.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
}
.custom-pagination .page-numbers {
	display:flex;
	margin:4px;
	border: none;
}

.custom-pagination .page-numbers {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.custom-pagination a.page-numbers:hover {
    background-color: #f8fafc;
}

.custom-pagination .page-numbers.current {
    background-color: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.custom-pagination .page-numbers.dots {
    border-color: transparent;
    color: #94a3b8;
    background-color: transparent;
}
.primary_color
{
	color: #1C2F38;	
}

.pstname
{
    padding-top: 6%;
}
/* coustomouse */

.text-xl {

}

.flex {

}
.text-aln
{

}

/* ==========================================================================
   Simple Pagination Styles
   ========================================================================== */

.simple-pagination {
    margin: 40px 0;
    text-align: center;
}

/* Reset the list styling generated by WordPress */
.simple-pagination ul.page-numbers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px; /* Space between buttons */
	border: none;
}

.simple-pagination ul.page-numbers li {
    display: inline-block;
}

/* Default link and text styling */
.simple-pagination ul.page-numbers a.page-numbers,
.simple-pagination ul.page-numbers span.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    background-color: #f5f5f5;
    color: #333333;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    border: 1px solid #e2e2e2;
}

/* Hover effects for clickable links */
.simple-pagination ul.page-numbers a.page-numbers:hover {
    background-color: #e2e2e2;
    color: #000;
}

/* Styling for the current active page */
.simple-pagination ul.page-numbers span.current {
    background-color: #1C2F38; /* WordPress Blue - Change this to your theme color! */
    color: #ffffff;
    border-color: #1C2F38;
    font-weight: bold;
}

/* Styling for the ellipsis (...) when there are many pages */
.simple-pagination ul.page-numbers span.dots {
    background-color: transparent;
    border: none;
    padding: 8px 4px;
}