* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #333; scroll-behavior: smooth; }
.container { width: 90%; max-width: 1100px; margin: auto; }
.section { padding: 80px 0; }
.bg-light { background: #f9f9f9; }
.bg-blue { background: #2b5672; color: white; }
.accent { color: #7b9e36; margin-top: 20px; font-weight: bold; }

/* Header */
header { background: white; border-bottom: 1px solid #ddd; position: sticky; top: 0; z-index: 1000; }
.top-bar { background: #2b5672; color: white; font-size: 14px; padding: 5px 0; text-align: center; }
.top-bar a { color: white; text-decoration: none; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: #333; font-weight: bold; transition: 0.3s; }
.nav-links a:hover { color: #7b9e36; }
.logo img { height: 70px; }

/* Hero */
.hero { height: 60vh; background-size: cover; background-position: center; display: flex; align-items: center; text-align: center; color: white; }
.hero h1 { font-size: 3rem; margin-bottom: 10px; }

/* Services */
.section-title { text-align: center; margin-bottom: 40px; font-size: 2.5rem; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; margin-bottom: 40px; }
.service-item img { height: 100px; margin-bottom: 15px; }
.service-description { text-align: center; max-width: 800px; margin: auto; font-size: 1.1rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img img { width: 100%; border-radius: 10px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 5px; }

/* Testimonials */
.testimonials { text-align: center; }
.quote { font-size: 1.5rem; font-style: italic; margin-bottom: 15px; }
.author { font-weight: bold; }

/* Footer */
footer { background: #1a1a1a; color: white; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.copyright { text-align: center; margin-top: 40px; border-top: 1px solid #444; padding-top: 20px; font-size: 12px; }

@media (max-width: 768px) {
    .about-grid, .gallery-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
}
