
/* Our Clients Section */
.clients-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.clients-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 90%, rgba(10, 36, 99, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: center;
    justify-items: center;
}

.client-logo {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(10, 36, 99, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(10, 36, 99, 0.1);
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 36, 99, 0.15);
    border-color: var(--accent-gold);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-tier {
    margin-top: 50px;
}

.tier-badge {
    background: linear-gradient(135deg, var(--primary-blue), #1a3a8a);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 30px;
}

/* Latest News & Blog Section */
.blog-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #071a42 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--accent-gold), #f7d55f);
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    min-width : 100% ;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.coming-soon-img-container{
    width: 120px !important;
    position: absolute;
    z-index: 9;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.blog-category {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    line-height: 1.4;
    flex-grow: 1;
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
    color: #f7d55f;
}

.view-all-blogs {
    text-align: center;
    margin-top: 50px;
}

.custom-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    list-style: none;
}

.custom-pagination .page-item {
    display: inline-flex;
}

.custom-pagination .page-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    background: var(--light-bg);
    transition: all 0.25s ease;
}

@media (max-width: 590px) {
.custom-pagination .page-link {
    width: 32px;
    height: 32px;
}
}

@media (max-width: 360px) {
.custom-pagination .page-link {
    width: 28px;
    height: 28px;
}
}




/* Hover */
.custom-pagination .page-link:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* Active page */
.custom-pagination .active .page-link {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
    transform: translateY(0px) !important;
}

/* Disabled */
.custom-pagination .disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
}

.page-item:last-child .page-link{
    border-radius: 50% !important;
    border-top-left-radius: 0px !important;
     border-bottom-left-radius: 0px !important;
}

.page-item:first-child .page-link{
    border-radius: 50% !important;
    border-top-right-radius: 0px !important;
     border-bottom-right-radius: 0px !important;
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
    .client-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .client-logo {
        height: 100px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .client-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .client-logo {
        height: 90px;
        padding: 15px;
    }

    .blog-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .client-logos {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .client-logo {
        height: 80px;
        padding: 20px;
    }
}
