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

/* HERO */
.hero {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    padding:60px 20px;
    background:#000;
    color:#fff;
    gap:40px;
}

.hero-content {
    max-width:500px;
    margin:20px;
}

.hero-content h1 {
    font-size:48px;
    margin-bottom:15px;
}

.hero-content p {
    font-size:18px;
    margin-bottom:25px;
}

.hero-buttons a {
    margin-right:10px;
}

.btn-primary, .btn-secondary {
    padding:12px 22px;
    border-radius:4px;
    text-decoration:none;
    font-weight:bold;
}

.btn-primary {
    background:#007aff;
    color:#fff;
}

.btn-primary:hover {
    background:#005ac0;
}

.btn-secondary {
    background:#fff;
    color:#000;
}

.btn-secondary:hover {
    background:#ddd;
}

/* HERO IMAGE */
.hero-image img {
    width:340px;
    max-width:90%;
    border-radius:10px;
    filter:drop-shadow(0px 6px 14px rgba(0,0,0,0.45));
    transition:transform .25s ease;
}

.hero-image img:hover {
    transform:scale(1.03);
}

/* SECTIONS */
.section {
    padding:60px 20px;
    text-align:center;
}

/* SERVICES GRID */
.service-grid {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    max-width:1100px;
    margin:0 auto;
}

.service-card {
    background:#fff;
    border-radius:6px;
    width:300px;
    padding:20px;
    border:1px solid #ddd;
    transition:transform .15s, box-shadow .15s;
}

.service-card:hover {
    transform:scale(1.03);
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

/* PROJECT HIGHLIGHTS */
.project-highlights {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    max-width:1100px;
    margin:0 auto;
}

.highlight-card {
    background:#fff;
    border-radius:6px;
    width:300px;
    padding:20px;
    color:#000;
    text-decoration:none;
    border:1px solid #ddd;
    transition:transform .15s, box-shadow .15s;
}

.highlight-card:hover {
    transform:scale(1.03);
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

/* BLOG CARDS */
.blog-cards {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    max-width:1100px;
    margin:0 auto;
}

.blog-card {
    background:#fff;
    border-radius:6px;
    width:300px;
    padding:20px;
    color:#000;
    text-decoration:none;
    border:1px solid #ddd;
    transition:transform .15s, box-shadow .15s;
}

.blog-card:hover {
    transform:scale(1.03);
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
    text-align:center;
    padding:25px;
    background:#000;
    color:#fff;
}

/* MOBILE */
@media(max-width:768px) {
    .hero {
        flex-direction:column;
        text-align:center;
    }
    .hero-content h1 {
        font-size:36px;
    }
}
/* ABOUT SECTION */
.about-container {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:40px;
    max-width:1100px;
    margin:0 auto;
    text-align:left;
}

.about-text {
    max-width:500px;
}

.about-text a {
    margin-top:15px;
    display:inline-block;
}

.about-img img {
    width:340px;
    max-width:90%;
    border-radius:10px;
    filter:drop-shadow(0px 6px 14px rgba(0,0,0,0.45));
    transition:transform .25s ease;
}

.about-img img:hover {
    transform:scale(1.03);
}

@media(max-width:768px) {
    .about-container {
        flex-direction:column;
        text-align:center;
    }
}
