/* Features Grid Section CSS - Extracted from home.css */
/* This file contains ONLY Features Grid section styles */

/* --- FEATURES GRID (Section 6) --- */
body.home-page .features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 20px; 
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 0;
    padding-left: 0;
    padding-right: 0;
}

body.home-page .feature-card { 
    padding: 30px 20px; 
    text-align: center; 
    border-radius: 10px; 
    transition: 0.3s; 
    position: relative;
}

body.home-page .feature-card:hover { 
    transform: translateY(-5px); 
}

body.home-page .feature-card .icon { 
    font-size: 24px; 
    background: #fff; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    margin: 0 auto 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

body.home-page .feature-card:hover .icon {
    width: 100px; 
    height: 100px;
    font-size: 40px;
    transform: translateY(-20px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

body.home-page .feature-card.yellow { background: #FFE4B5; }
body.home-page .feature-card.blue { background: #D6EAF8; }
body.home-page .feature-card.gold { background: #F9E79F; }
body.home-page .feature-card.purple { background: #D7BDE2; }

