/* ========================================== 
   Our Clients Page - Premium Design
   Clean, Modern, Fully Visible
   ========================================== */

/* Brand Colors */
:root {
    --primary: #003E73;
    --primary-light: #e6f0f7;
    --orange: #FF9F28;
    --orange-light: #fff5e6;
}

/* ========================================== 
   Breadcrumb
   ========================================== */
.breadcrumb {
    background-color: #f8f9fa !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0.5rem !important;
}

.breadcrumb-item a {
    color: var(--primary) !important;
    text-decoration: none !important;
}

.breadcrumb-item a:hover {
    color: var(--orange) !important;
}

.breadcrumb-item.active {
    color: #6c757d !important;
}

/* ========================================== 
   Hero Section
   ========================================== */
.clients-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.stat-box {
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 62, 115, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 62, 115, 0.15);
}

/* Client Preview Grid */
.clients-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.client-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.client-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 62, 115, 0.15);
}

.client-preview-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-preview-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-placeholder {
    font-size: 2.5rem;
    color: #dee2e6;
}

/* ========================================== 
   Client Portfolio
   ========================================== */
.client-portfolio {
    background: #f8f9fa;
}

.client-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 62, 115, 0.15);
}

.client-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.client-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-card:hover .client-logo img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.client-logo-placeholder {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.client-logo-placeholder i {
    font-size: 3rem;
    color: #dee2e6;
}

.client-name {
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ========================================== 
   Industry Sectors
   ========================================== */
.sector-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 62, 115, 0.15);
}

.sector-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #004a8a 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sector-icon i {
    font-size: 2rem;
    color: white;
}

.sector-card h4 {
    color: var(--primary);
}

.sector-percentage {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.percentage-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--orange) 100%);
    border-radius: 10px;
    transition: width 1s ease;
}

/* ========================================== 
   Why Choose Us Section - Premium Design
   ========================================== */
.why-choose-clients {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-clients::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 62, 115, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.stat-highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 62, 115, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 62, 115, 0.15);
}

.excellence-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.excellence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--orange) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.excellence-card:hover::before {
    transform: scaleX(1);
}

.excellence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 62, 115, 0.15);
    border-color: var(--primary);
}

.excellence-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 62, 115, 0.05);
    line-height: 1;
    transition: all 0.3s ease;
}

.excellence-card:hover .excellence-number {
    color: rgba(255, 159, 40, 0.1);
    transform: scale(1.1);
}

.excellence-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #004a8a 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 62, 115, 0.2);
}

.excellence-icon i {
    font-size: 2.25rem;
    color: white;
}

.excellence-card:hover .excellence-icon {
    background: linear-gradient(135deg, var(--orange) 0%, #ffb347 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 159, 40, 0.3);
}

.excellence-card h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.excellence-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.excellence-list li {
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.excellence-list i {
    font-size: 1.1rem;
}

/* ========================================== 
   Benefits Section (Old - Keep for compatibility)
   ========================================== */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 62, 115, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #004a8a 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h4 {
    color: var(--primary);
}

.benefit-card .badge {
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

/* ========================================== 
   CTA Section
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #004a8a 100%) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    font-weight: 600 !important;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    background-color: #002a52 !important;
    border-color: #002a52 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 62, 115, 0.3);
}

.btn-light {
    font-weight: 600 !important;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s ease !important;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    font-weight: 600 !important;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s ease !important;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* ========================================== 
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .clients-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .display-3 {
        font-size: 2.5rem !important;
    }
    
    .display-5 {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .clients-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .client-preview-card {
        padding: 1.5rem;
        min-height: 100px;
    }
}

/* ========================================== 
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.client-card,
.sector-card,
.benefit-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation delays */
.client-card:nth-child(1) { animation-delay: 0.1s; }
.client-card:nth-child(2) { animation-delay: 0.2s; }
.client-card:nth-child(3) { animation-delay: 0.3s; }
.client-card:nth-child(4) { animation-delay: 0.4s; }

.sector-card:nth-child(1) { animation-delay: 0.1s; }
.sector-card:nth-child(2) { animation-delay: 0.2s; }
.sector-card:nth-child(3) { animation-delay: 0.3s; }
.sector-card:nth-child(4) { animation-delay: 0.4s; }
