:root {
    --primary-color: #0d6efd;
    --secondary-color: #0dcaf0;
    --dark-color: #212529;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}
.trust-strip {
    background-color: rgba(13, 110, 253, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: 30px;
}
.trust-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-color);
}
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
.industry-badge {
    font-size: 0.85rem;
    padding: 8px 16px;
    margin: 4px;
    border-radius: 50px;
    background-color: #e7f1ff;
    color: var(--primary-color);
    font-weight: 500;
}
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    color: white;
}
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}
.section-alt {
    background-color: #f8f9fa;
}
.nav-link {
    font-weight: 500;
}
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}