body { margin:0; font-family:Arial, sans-serif; color:#333; background:#fafafa;}

/* HERO */
.hero { background:url('hero_bg.png') center/cover no-repeat; padding:160px 20px; text-align:center; color:#fff; position:relative;}
.logo { position:absolute; top:20px; left:20px; height:70px;}
.hero-content h1 { font-size:42px; text-shadow:0 3px 7px rgba(0,0,0,0.5);}
.hero-content p { font-size:20px; margin-top:10px; text-shadow:0 2px 5px rgba(0,0,0,0.4);}
.cta-button { display:inline-block; margin-top:20px; padding:12px 28px; background:#ffffff; color:#000; border-radius:6px; font-size:18px; text-decoration:none; font-weight:bold; transition:0.3s;}
.cta-button:hover { background:#eaeaea; }

/* SECTIONS */
.section { padding:60px 20px; max-width:1000px; margin:auto; text-align:center;}
.section h2 { font-size:32px; margin-bottom:20px;}
.section-text { max-width:700px; margin:auto; font-size:18px;}

/* CARDS */
.features { display:flex; gap:20px; justify-content:center; margin-top:30px; flex-wrap:wrap;}
.feature-card { background:white; padding:20px 30px; border-radius:8px; box-shadow:0 2px 8px rgba(0,0,0,0.1); font-size:18px; min-width:220px;}

.service-grid { display:flex; gap:20px; justify-content:center; flex-wrap:wrap;}
.service-card { background:white; padding:25px; border-radius:10px; box-shadow:0 2px 8px rgba(0,0,0,0.1); max-width:300px;}
.service-card h3 { margin-top:0;}

.alt { background:#f3f3f3; border-top:1px solid #ddd; border-bottom:1px solid #ddd;}

/* STEPS */
.steps { text-align:left; max-width:400px; margin:auto; font-size:18px;}
.steps li { margin-bottom:10px; padding-left:5px;}

/* CONTACT */
.contact p { font-size:18px; }

/* FOOTER */
footer { background:#111; color:#fff; text-align:center; padding:25px; margin-top:30px;}

.work-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    padding: 30px 10px;
}

.work-card {
    background: white;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 24px rgba(0,0,0,0.12);
}

.icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.work-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #222;
}

.work-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.45rem;
}

/* Make the logo larger and clean */
.hero .logo {
    width: 130px;     /* half size */
    max-width: 90%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}