/* Custom CSS for BizBoost Consulting */

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
}

/* Service Card Hover Effects */
.service-card:hover {
    transform: translateY(-5px);
}

.service-card {
    transition: all 0.3s ease;
}

/* Team Member Hover Effects */
.team-member:hover img {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.5);
}

.team-member img {
    transition: all 0.3s ease;
}

/* Case Study Carousel */
.case-carousel {
    overflow: hidden;
}

.case-slides {
    transition: transform 0.5s ease;
}

.carousel-dot {
    transition: background-color 0.3s ease;
}

/* Form Input Focus States */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .team-member {
        margin-bottom: 2rem;
    }
}

/* Animation for Hero CTA Buttons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.get-started-btn:hover {
    animation: pulse 1.5s infinite;
}