
/* =======================================================
   HERO SECTION (MAIN BANNER)
======================================================= */
.hero {
    background: url('IMG/Products.png') center/cover no-repeat;
    position: relative;

    padding: 18px 140px;
    text-align: left;

    color: white;
}

/* Overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Keep content above overlay */
.hero * {
    position: relative;
    z-index: 2;
}


/* =======================================================
   CARDS (PRODUCTS / SERVICES)
======================================================= */
.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Card images */
.card img {
    width: 100px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}
