/* =========================================
   iGrroww.in | Portfolio Specific Styles
   File: assets/css/portfolio.css
========================================= */

/* Base transition for project images */
.project-card img { 
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

/* Image Scale on Hover to give depth effect */
.project-card:hover img { 
    transform: scale(1.06); 
}

/* Adding a nice glow when hovering the main wrapper */
.project-card {
    transition: all 0.4s ease;
}
.project-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 193, 106, 0.2);
}

/* Scroll Animation Initial States */
.animate-on-scroll {
    will-change: transform, opacity;
}