/* Client Page Specific Styles */

/* Hero Section */
.client-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.client-stats .stat-item {
    text-align: center;
}

.client-stats .stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.client-stats .stat-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Client Categories Section */
.client-categories {
    background-color: #ffffff;
}

.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.category-icon {
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(218, 161, 76, 0.1);
}

.category-features .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* Featured Clients Section */
.featured-clients {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.client-story {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.client-story:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.story-header img {
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.story-details .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #ffffff;
}

.testimonial-head h2.main-heading {
    color: var(--text-dark) !important;
}

.testimonial-slider {
    position: relative;
}

.testimonial-slider.owl-carousel .testimonial-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.rating {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testi-user-main {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonial-user-detail h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.testimonial-user-detail p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.quote-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.quote-icon img {
    width: 60px;
    height: 60px;
    opacity: 0.3;
}

.testimonial-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b98b4e 100%);
    color: white;
}

.cta-section .main-heading {
    color: white !important;
}

.cta-section .paragraph {
    color: rgba(255,255,255,0.9) !important;
}

.btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .client-hero-section {
        padding: 60px 0;
    }
    
    .client-stats {
        justify-content: center;
        gap: 2rem !important;
    }
    
    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .client-stats {
        flex-direction: column;
        gap: 1.5rem !important;
    }
    
    .client-stats .stat-item h3 {
        font-size: 2rem;
    }
    
    .main-heading {
        font-size: 2rem !important;
    }
    
    .category-card {
        margin-bottom: 1rem;
    }
    
    .client-story {
        margin-bottom: 1rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .client-hero-section {
        padding: 40px 0;
    }
    
    .client-stats .stat-item {
        text-align: center;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
    }
    
    .story-header img {
        margin-bottom: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b98b4e;
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Hover Effects */
.category-card:hover .category-icon {
    background: rgba(218, 161, 76, 0.2);
    transform: scale(1.1);
}

.client-story:hover .story-header img {
    transform: scale(1.05);
}

.testimonial-content:hover {
    background: #f0f0f0;
}

/* Badge Animations */
.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
} 