/* All In Service Biz — custom styles */

/* Smooth transitions */
*, *::before, *::after {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Blue glow effect for CTA buttons */
.btn-orange {
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    transition: box-shadow 0.3s ease, background-color 0.2s ease;
}
.btn-orange:hover {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.35);
}

/* Card hover lift */
.card-hover {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Orange underline for section titles */
.title-underline::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #0066FF;
    margin-top: 10px;
    border-radius: 2px;
}

.title-underline-center::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #0066FF;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Grid pattern background */
.bg-grid {
    background-image:
        linear-gradient(rgba(0,102,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,102,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Section spacing */
.section {
    padding: 5rem 0;
}

/* Technique badge */
.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(0,102,255,0.12);
    border: 1px solid rgba(0,102,255,0.25);
    color: #0066FF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1A1A1A; }
::-webkit-scrollbar-thumb { background: #3A3A3A; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #0066FF; }

/* Input focus */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #0066FF !important;
    box-shadow: 0 0 0 3px rgba(0,102,255,0.15);
}
