/* =========================================
   iGrroww Index Page Premium Styles
   File: css/index.css
========================================= */

/* --- Custom Premium Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f8fafc; /* Very light gray */
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; /* Gray 300 */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00C16A; /* iGrroww Green */
}

/* --- Ambient Background Glow --- */
.premium-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 900px;
    background: radial-gradient(circle at center, rgba(0, 193, 106, 0.06) 0%, rgba(249, 250, 251, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* --- Navigation Link Smooth Underline --- */
.nav-link {
    position: relative;
    font-weight: 600;
    color: #64748b;
    transition: color 0.3s ease;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.nav-link:hover, .nav-link.active {
    color: #0f172a; /* Dark Heading Color */
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #00C16A;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth easing */
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* --- Mobile Menu Smooth Expand/Collapse --- */
#mobile-menu {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 500px;
    opacity: 1;
}

/* --- Interactive Marquee (Pause on Hover) --- */
.animate-infinite-scroll:hover {
    animation-play-state: paused;
    cursor: default;
}

/* --- "Makkhan" Lift & Glow Effect for Cards --- */
.service-card, .pricing-card {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy float effect */
    will-change: transform, box-shadow;
}

/* Hover for White Cards */
.service-card:hover, .pricing-card:not(.bg-igheading):hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 193, 106, 0.15);
    border-color: rgba(0, 193, 106, 0.4);
}

/* Hover for Premium Dark Card */
.pricing-card.bg-igheading {
    transition: all 0.4s ease;
}
.pricing-card.bg-igheading:hover {
    transform: translateY(-30px) scale(1.02) !important; /* Lifts even higher and scales slightly */
    box-shadow: 0 30px 60px -15px rgba(0, 193, 106, 0.3);
    border-color: #00C16A;
}

/* --- Live Pulse Dot Animation --- */
@keyframes subtlePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 193, 106, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 193, 106, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 193, 106, 0); }
}
.animate-pulse {
    animation: subtlePulse 2s infinite;
}

/* --- Checkout Modal Glassmorphism --- */
#checkoutModal {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}