/* Basic reset */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%;font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;}
.container{max-width:1100px;margin:0 auto;padding:0 20px}

/* Header */
.site-header{position:fixed;left:0;right:0;top:0;padding:18px 0;z-index:40}
.site-header .container{display:flex;align-items:center;justify-content:space-between}
.brand{font-weight:700;color:#fff;}
.site-nav a{color:#fff;text-decoration:none;padding:8px 12px;border-radius:6px;background:rgba(0,0,0,0.35)}

/* Hero */
.hero{min-height:100vh;display:block;position:relative;align-items:center;justify-content:center;display:flex;background-image:url('assets/background.jpg');background-size:cover;background-position:center no-repeat}
.hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.25));}
.logo{position: absolute;
  left: 50%;
  top: 10vh;       /* places logo near the top third */
  transform: translateX(-50%);
  width: 50vw;     /* larger — adjust (e.g., 28vw–40vw) */
  height: auto;
  z-index: 50;}

/* About section */
.about{padding:80px 0;background:#fff;color:#111}
.about .container{padding-top:40px}
.about h2{margin-bottom:12px;font-size:28px;text-align:center}
.about p{line-height:1.6;color:#333;margin-bottom:24px}
.about h3{margin-top:48px;margin-bottom:32px;font-size:28px;text-align:center}

/* Services Grid */
.services{display:grid;grid-template-columns:repeat(3, 1fr);gap:24px;margin-top:24px}
.service-item{background:#f8f9fa;padding:28px;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,0.08);transition:all 0.3s ease;display:flex;flex-direction:column;align-items:center;text-align:center}
.service-item:hover{box-shadow:0 8px 16px rgba(0,0,0,0.12);transform:translateY(-4px)}
.service-item h4{color:#2c3e50;font-size:18px;margin-bottom:12px;font-weight:600}
.service-icon{width:48px;height:48px;color:#2c3e50;margin-bottom:16px;display:block}
.service-item p{color:#555;line-height:1.6;font-size:14px}

/* Footer */
.site-footer{background:#1e1d1d;padding:40px 0;text-align:center}
.footer-content{display:flex;justify-content:center;gap:80px}
.footer-icon{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;background:rgba(255,255,255,0.15);border-radius:50%;color:#fff;text-decoration:none;font-size:20px;font-weight:600;transition:all 0.3s ease}
.footer-icon:hover{background:rgba(255,255,255,0.25);transform:scale(1.1)}

/* Smooth scroll */
html{scroll-behavior:smooth}

/* Responsive tweaks */
@media (max-width:600px){.logo{width:60%}.site-nav a{padding:6px 8px;font-size:14px}.services{grid-template-columns:1fr}}
