/* Custom Utilities and Micro-animations for jejelaye */

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.15);
}

.hero-pattern {
    background-color: #047857;
    background-image: radial-gradient(#10b981 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Custom Radio Button styling for networks and amounts */
.network-radio:checked + div, .platform-radio:checked + div {
    border-color: #059669;
    background-color: #ecfdf5;
    box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.2);
}

.network-radio:checked + div .check-icon, .platform-radio:checked + div .check-icon {
    opacity: 1;
    transform: scale(1);
}

.amount-radio:checked + div {
    border-color: #059669;
    color: #059669;
    background-color: #ecfdf5;
}

.tab-btn.active {
    border-bottom: 2px solid #059669;
    color: #059669;
    font-weight: 700;
}

/* Sidebar Transition */
.sidebar {
    transition: transform 0.3s ease-in-out;
}
