/* Modern Client List Page Styles - Scoped to .new_design */

/* Hero Section */
.new_design .clients-hero {
    position: relative !important;
    min-height: 40vh !important;
    background-image: url('/images/new/Image_202512311344.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.new_design .clients-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(0, 92, 187, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%) !important;
    z-index: 1 !important;
}

.new_design .clients-hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: #ffffff !important;
    padding: 40px 20px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.new_design .clients-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
}

.new_design .clients-hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem) !important;
    font-weight: 400 !important;
    color: #ffd700 !important;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4) !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* Content Section */
.new_design .clients-content-section {
    padding: 80px 0 0 !important;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%) !important;
}

/* Header */
.new_design .clients-header {
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto 60px !important;
}

.new_design .clients-main-heading {
    font-size: clamp(2rem, 4vw, 2.75rem) !important;
    font-weight: 700 !important;
    color: #005cbb !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
    position: relative !important;
    padding-bottom: 20px !important;
}

.new_design .clients-main-heading::after {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 0 !important;
    transform: translateX(-50%) !important;
    width: 100px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #005cbb, #00a8e8) !important;
    border-radius: 2px !important;
}

.new_design .clients-subheading {
    font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
    color: #6c757d !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* Client Grid */
.new_design .clients-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
    max-width: 1200px !important;
    margin: 0 auto 60px !important;
    padding: 0 20px !important;
}

.new_design .clients-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.new_design .client-item {
    padding: 15px 20px !important;
    font-size: 1.05rem !important;
    color: #2c3e50 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e9ecef !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    padding-left: 40px !important;
}

.new_design .client-item:first-child {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
}

.new_design .client-item:last-child {
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
    border-bottom: none !important;
}

.new_design .client-item::before {
    content: '✓' !important;
    position: absolute !important;
    left: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #005cbb !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.new_design .client-item:hover {
    background: #f8f9ff !important;
    padding-left: 45px !important;
    color: #005cbb !important;
    border-left: 4px solid #005cbb !important;
}

.new_design .client-item:hover::before {
    opacity: 1 !important;
}

/* Stats Section - Now using shared component */

/* Responsive Design */
@media (max-width: 992px) {
    .new_design .clients-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
    
    .new_design .clients-hero {
        min-height: 35vh !important;
    }
}

@media (max-width: 768px) {
    .new_design .clients-content-section {
        padding: 50px 0 0 !important;
    }
    
    .new_design .clients-hero {
        min-height: 30vh !important;
    }
    
    .new_design .clients-hero-content {
        padding: 30px 20px !important;
    }
    
    .new_design .clients-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .new_design .client-item {
        padding: 12px 15px !important;
        padding-left: 35px !important;
        font-size: 1rem !important;
    }
    
    .new_design .client-item:hover {
        padding-left: 40px !important;
    }
}

@media (max-width: 480px) {
    .new_design .clients-header {
        margin-bottom: 40px !important;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new_design .clients-header {
    animation: fadeInUp 0.6s ease-out backwards !important;
}

.new_design .clients-column {
    animation: fadeInUp 0.6s ease-out backwards !important;
}

.new_design .clients-column:nth-child(1) {
    animation-delay: 0.1s !important;
}

.new_design .clients-column:nth-child(2) {
    animation-delay: 0.2s !important;
}

.new_design .clients-column:nth-child(3) {
    animation-delay: 0.3s !important;
}
