/* Featured Counter Widget Styles */
.featured-section {
    padding: 60px 0;
}

.featured-box {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

/* Services Grid Styles */
.services-section-2 {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.service-column {
    position: relative;
    padding: 40px;
    background: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.service-column:hover {
    transform: translateY(-10px);
}

/* .service-bg-icon {
    position: absolute;
    right: -20px;
    top: -20px;
    opacity: 0.1;
    font-size: 120px;
    transform: rotate(15deg);
} */

.service-icon-2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

.service-content-2 h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.service-features li iconify-icon {
    margin-right: 10px;
    color: #4CAF50;
}

.service-link-2 {
    display: inline-flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 500;
}

.service-link-2 iconify-icon {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link-2:hover iconify-icon {
    transform: translateX(5px);
}

/* Partner Logos Styles */
.partner-section {
    padding: 40px 0;
}

.partner-section h4 {
    font-size: 24px;
    color: #333;
}

.partner-logo {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.partner-logo img {
    max-height: 100%;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .service-column {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .service-column {
        padding: 30px;
    }
    
    .service-bg-icon {
        font-size: 80px;
    }
    
    .service-icon-2 {
        font-size: 36px;
    }
}

.featured-box:hover {
    transform: translateY(-5px);
}

.featured-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.featured-content {
    margin-top: 15px;
}

.counter-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-text {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .featured-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .counter-value {
        font-size: 30px;
    }
    
    .featured-icon {
        font-size: 36px;
    }
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination-wrapper .page-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper .page-numbers li {
    margin: 0;
}

.pagination-wrapper .page-numbers .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background-color: #e7e7e7;
    color: #121212;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers .page-numbers:hover {
    background-color: var(--primary, #0F2947);
    color: #fff;
}

.pagination-wrapper .page-numbers .page-numbers.current {
    background-color: var(--primary, #0F2947);
    color: #fff;
}

.pagination-wrapper .page-numbers .next,
.pagination-wrapper .page-numbers .prev {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
}

.pagination-wrapper .page-numbers .next iconify-icon,
.pagination-wrapper .page-numbers .prev iconify-icon {
    font-size: 1.25rem;
}

/* Hover effect for next/prev */
.pagination-wrapper .page-numbers .next:hover,
.pagination-wrapper .page-numbers .prev:hover {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.pagination-wrapper .page-numbers .next:hover {
    transform: translateX(3px);
}

.pagination-wrapper .page-numbers .prev:hover {
    transform: translateX(-3px);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .pagination-wrapper .page-numbers {
        gap: 0.25rem;
    }

    .pagination-wrapper .page-numbers .page-numbers {
        min-width: 35px;
        height: 35px;
        padding: 0.25rem 0.75rem;
        font-size: 0.875rem;
    }

    .pagination-wrapper .page-numbers .next,
    .pagination-wrapper .page-numbers .prev {
        padding: 0.25rem 0.75rem;
    }
}
