﻿/* Cleanex Custom Styles */
.nav-link {
    position: relative;
    color: #1f2937; /* Tailwind gray-800 for high contrast */
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
}

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        bottom: 0;
        left: 0;
        background-color: #1e3a8a; /* Tailwind blue-900 */
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover {
        color: #1e3a8a; /* Tailwind blue-900 */
        background-color: rgba(59, 130, 246, 0.2); /* Stronger blue background for hover */
        border-radius: 6px;
        transform: translateY(-2px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

.install-btn {
    background: linear-gradient(45deg, #3b82f6, #10b981); /* Blue to emerald gradient */
    border-radius: 9999px;
    padding: 0.75rem 2.25rem;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    animation: pulse 1.8s infinite;
    border: 2px solid #ffffff; /* White border for extra pop */
}

    .install-btn:hover {
        background: linear-gradient(45deg, #2563eb, #059669);
        transform: scale(1.15);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
        border-color: #e5e7eb; /* Light gray border on hover */
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.8);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.hero-bg {
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}
