.our-team-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    /* transition:
        transform 0.3s ease,
        box-shadow 0.3s ease; */
    background: #fff;
    overflow: hidden;
    border-radius: 20px;
}

.our-team-box:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.our-team-img {
    width: 100%;
    height: 200px;
    background-size: cover !important;
    background-position: center !important;
}

.our-team-content {
    padding: 1.5rem;
}

.our-team-content p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.custom-btn {
    border: 1px solid #bfa273;
    color: #bfa273;
    border-radius: 20px;
}

.custom-btn:hover {
    background-color: #bfa273;
    color: #fff;
}

/* Pagination Container */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 1rem 0;
}

/* Pagination Items */
.pagination .page-item {
    margin: 0;
}

/* All Pagination Links */
.pagination .page-link {
    color: #bfa273;
    background-color: #fff;
    border: 2px solid #bfa273;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0;
    min-width: 45px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

/* Hover Effect */
.pagination .page-link:hover {
    color: #fff;
    background-color: #bfa273;
    border-color: #bfa273;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 162, 115, 0.4);
}

/* Active Page */
.pagination .page-item.active .page-link {
    color: #fff;
    background-color: #bfa273;
    border-color: #bfa273;
    box-shadow: 0 4px 12px rgba(191, 162, 115, 0.5);
    font-weight: 700;
    cursor: default;
}

.pagination .page-item.active .page-link:hover {
    transform: none;
}

/* Disabled State */
.pagination .page-item.disabled .page-link {
    color: #ccc;
    background-color: #f8f9fa;
    border-color: #dee2e6;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .page-item.disabled .page-link:hover {
    color: #ccc;
    background-color: #f8f9fa;
    border-color: #dee2e6;
    transform: none;
    box-shadow: none;
}

/* Focus State */
.pagination .page-link:focus {
    color: #fff;
    background-color: #bfa273;
    border-color: #bfa273;
    box-shadow: 0 0 0 0.25rem rgba(191, 162, 115, 0.25);
    outline: none;
    z-index: 3;
}

/* Previous/Next Buttons */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    gap: 0.5rem;
}

/* Three Dots */
.pagination .page-item.disabled .page-link {
    min-width: auto;
    padding: 0.6rem 0.5rem;
}

/* Loading State */
.pagination .page-link[wire\:loading\.attr="disabled"] {
    opacity: 0.7;
    cursor: wait;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pagination {
        gap: 0.3rem;
    }

    .pagination .page-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
        min-width: 42px;
    }

    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .pagination {
        gap: 0.25rem;
    }

    .pagination .page-link {
        padding: 0.45rem 0.7rem;
        font-size: 0.85rem;
        min-width: 38px;
    }

    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link {
        padding: 0.45rem 0.9rem;
        font-size: 0.85rem;
    }

    /* Hide text on mobile, show only icons */
    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link {
        font-size: 1rem;
    }

    .pagination .page-item:first-child .page-link i,
    .pagination .page-item:last-child .page-link i {
        font-size: 1rem;
    }
}
