@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
    overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient(90deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-bg {
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.2), 0 10px 10px -5px rgba(16, 185, 129, 0.1);
}

.hero-section {
    background: radial-gradient(circle at 10% 20%, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 90%);
}

.glow {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.seo-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.web-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.marketing-badge {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* Testimonials Carousel Styles */
#testimonials-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1rem;
    padding: 0.5rem;
}

.testimonial-card {
    flex: 0 0 auto;
    opacity: 1;
    transition: all 0.3s ease;
}

#prev-testimonial, #next-testimonial {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

#prev-testimonial:hover:not(:disabled), 
#next-testimonial:hover:not(:disabled) {
    background-color: rgba(16, 185, 129, 0.8);
    transform: scale(1.1);
}

.testimonial-dot {
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-dot:hover {
    transform: scale(1.2);
    background-color: rgba(16, 185, 129, 0.8);
}

@media (max-width: 768px) {
    #prev-testimonial, #next-testimonial {
        width: 36px;
        height: 36px;
    }
    
    #testimonials-container {
        gap: 0.5rem;
        padding: 0.25rem;
    }
}

/* Navigation Styles */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-link.active {
    color: white;
}

.nav-link.active::after {
    width: 100%;
}

/* Logo Animation */
@keyframes logoGlow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    }
}

.logo-icon {
    animation: logoGlow 3s ease-in-out infinite;
} 