/* =========================================
   iGrroww.in | Pricing Page Styles
   File: assets/css/pricing.css
========================================= */

/* Smooth Card Hover Interactions */
.pricing-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.pricing-card:hover {
    transform: translateY(-8px);
}

/* Premium Card Glow inside Pricing */
.pricing-card.bg-gradient-to-b::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    border-radius: inherit;
    pointer-events: none;
}

/* Form Input Styling for Checkout */
.input-minimal {
    background-color: #f8fafc; 
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}
.input-minimal:focus {
    background-color: #ffffff; 
    border-color: #00C16A;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 193, 106, 0.1);
}

/* Animations */
.animate-on-scroll {
    will-change: transform, opacity;
}