body {
    font-family: 'Roboto', sans-serif;
}
h1, h2, h3, h4, .font-heading {
    font-family: 'Poppins', sans-serif;
}
.gradient-text {
    background: linear-gradient(90deg, #005792, #00A896);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-button {
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.product-card {
    transition: all 0.3s ease-in-out;
    border: 1px solid #e2e8f0;
}
.product-card:hover {
    transform: translateY(-5px);
    border-color: #00A896;
    box-shadow: 0 15px 30px rgba(0, 87, 146, 0.1);
}
.hero-section {
    background-image: linear-gradient(rgba(249, 250, 251, 0.8), rgba(249, 250, 251, 1)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}
/* Styles for scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.product-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

