/* ==========================================================================
   Home Screen Dedicated Stylesheet - InexpensiveCoders
   ========================================================================== */

.home-hero-a {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(111, 179, 73, 0.05) 0%, rgba(255, 255, 255, 1) 90%);
}

.hero-img-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hero-img-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 35px 70px -15px rgba(111, 179, 73, 0.35) !important;
}

.hero-brands .brand-logo img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hero-brands .brand-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
