/* Business page specific styles */
:root {
    --business-primary: #1e88e5;
    --business-secondary: #0d47a1;
    --business-accent: #f44336;
}

/* Header modifications */
header {
    background: linear-gradient(to right, #0d47a1, #1976d2);
    padding: 60px 0;
}

/* Services section */
.service-icon {
    font-size: 2.5rem;
    color: var(--business-primary);
    margin-bottom: 15px;
}

.service-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--business-primary);
    font-weight: bold;
}

/* CTA section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1569012871812-f38ee64cd54c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Animate service cards on hover */
.service-card {
    overflow: hidden;
}

.service-card img {
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

/* Stats section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--business-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* Testimonials */
.testimonial {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.testimonial-content {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content:before,
.testimonial-content:after {
    content: '"';
    font-size: 2rem;
    color: var(--business-primary);
    opacity: 0.3;
    position: absolute;
}

.testimonial-content:before {
    top: -10px;
    left: 0;
}

.testimonial-content:after {
    bottom: -10px;
    right: 0;
}

.testimonial-author {
    margin-top: 20px;
    font-weight: bold;
    text-align: right;
}

.testimonial-author span {
    display: block;
    font-weight: normal;
    font-size: 0.9rem;
    color: #777;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
} 