body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #f7f7f7;
}

header {
    background: #111;
    color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: 1px;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.about {
    background: #fff;
    padding: 40px;
    border-top: 4px solid #ffcc00;
}

.services p { margin: 0.6em 0 0; }

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.testimonial .meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 12px;
}

.meta img { width:48px; height:48px; object-fit:cover; border-radius:6px }

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.gallery img { width:100%; height:140px; object-fit:cover; border-radius:6px }

.contact-form { max-width:700px; margin: 0 auto; display:flex; flex-direction:column; gap:12px }

.contact-form input, .contact-form textarea { padding:12px; border-radius:6px; border:1px solid #ddd; font-size:15px }

.contact-form button { background:#ffcc00; border:none; padding:12px 18px; font-size:16px; border-radius:6px; cursor:pointer }

.hero h2 {
    font-size: 42px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

.section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: auto;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.card h3 {
    margin-top: 0;
}

.cta {
    background: #111;
    color: white;
    padding: 50px 40px;
    text-align: center;
}

.cta button {
    background: #ffcc00;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
}

footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.brand-highlight { color: #d32f2f; }

.footer-note { margin-top:8px; font-size:13px; color:#ddd; display:block }
.footer-note .flag { margin-left:6px; font-size:14px }

/* Project gallery slideshow */
.project-gallery { max-width:1100px; margin: 20px auto 60px; }
.slideshow { display:flex; align-items:center; gap:12px; justify-content:center }
.slide-frame { width:840px; max-width:86%; height:500px; background:#eee; display:flex; align-items:center; justify-content:center; border-radius:8px; overflow:hidden }
.slide-frame img { width:100%; height:100%; object-fit:cover; display:block }
.prev, .next { background:rgba(0,0,0,0.6); color:#fff; border:none; padding:14px 18px; font-size:24px; border-radius:6px; cursor:pointer }
.thumbs { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin-top:12px }
.thumbs img { width:120px; height:80px; object-fit:cover; border-radius:6px; cursor:pointer; opacity:0.85; border:2px solid transparent }
.thumbs img.active { outline:2px solid #ffcc00; opacity:1 }

@media (max-width:700px){
    .slide-frame{height:300px}
    .thumbs img{width:90px;height:60px}
}

@media (max-width:600px){
    header { padding: 14px }
    .hero { height: 40vh }
    .hero h2 { font-size: 28px }
}
