﻿body {
    font-family: 'Work Sans', sans-serif;
}

.hero-gradient {
    background: linear-gradient(to right, rgba(16, 25, 34, 0.8), rgba(16, 25, 34, 0.2));
}
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.banner-gradient {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}
.product-card-border {
    border: 1px solid #e5e7eb;
}

.dark .product-card-border {
    border: 1px solid #334155;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #137fec;
}
.wave-bg {
    background-color: #f8fafc;
    position: relative;
}

.wave-separator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

    .wave-separator svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 60px;
    }

.service-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
}

.floating-wa {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: bounce-slow 3s infinite;
}
.contact-card:hover .card-icon {
    transform: translateY(-5px);
    background-color: #137fec;
    color: white;
}