
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:#050209;
  color:#fff;
}
a{ color:inherit; text-decoration:none; }

/* HEADER & NAV */
header{
  background:radial-gradient(circle at top,#3d1b07,#050209);
  border-bottom:2px solid #ff9800;
  padding:8px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  position:sticky;
  top:0;
  z-index:100;
}
.header-left,.header-right{
  display:flex;
  align-items:center;
  gap:8px;
}
.header-logo,
.header-img{
  width:60px;
  height:60px;
  border-radius:16px;
  overflow:hidden;
  border:2px solid #ffb74d;
  box-shadow:0 0 10px rgba(255,183,77,0.7);
  background:#000;
}
.header-logo img,
.header-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.header-center{
  text-align:center;
  flex:1;
}
.main-title{
  font-size:22px;
  font-weight:800;
  color:#ffe082;
  letter-spacing:.5px;
}
.sub-title{
  font-size:14px;
  font-weight:700;
  color:#fff3e0;
}
.nav{
  margin-top:6px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  font-size:13px;
}
.nav a{
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(255,183,77,0.5);
  background:rgba(0,0,0,0.25);
}
.nav a.active,
.nav a:hover{
  background:#ffb300;
  color:#000;
  font-weight:700;
}

/* HERO BACKGROUND (home only) */
.hero-wrapper{
  position:relative;
  overflow:hidden;
  height:280px;
}
.hero-bg{
  position:absolute;
  inset:0;
  z-index:-1;
  overflow:hidden;
}
.hero-bg img{
  width:115%;
  height:115%;
  object-fit:cover;
  filter:brightness(0.5) saturate(1.2);
  transform-origin:center;
  animation:zoom 32s ease-in-out infinite alternate;
}
@keyframes zoom{
  from{ transform:translate3d(0,0,0) scale(1); }
  to{ transform:translate3d(-4%, -4%, 0) scale(1.15); }
}
.hero-content{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 16px;
}
.hero-heading{
  font-size:24px;
  font-weight:800;
  color:#ffe082;
  text-shadow:0 0 12px #000;
}
.hero-line{
  margin-top:8px;
  font-size:16px;
  font-weight:600;
  color:#fff8e1;
}
.hero-badges{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
}
.badge{
  border-radius:999px;
  border:1px solid rgba(255,213,79,0.9);
  padding:4px 10px;
  font-size:11px;
  background:rgba(0,0,0,0.65);
  color:#fff3e0;
}

/* LAYOUT */
main{
  padding:18px 14px 24px;
  max-width:1100px;
  margin:0 auto;
}
.section-title{
  font-size:20px;
  font-weight:800;
  color:#ffa726;
  margin-bottom:10px;
  border-left:3px solid #ffa726;
  padding-left:8px;
}
.section-sub{
  font-size:14px;
  color:#ffecb3;
  margin-bottom:12px;
}
p{
  font-size:14px;
  color:#fbe9e7;
  line-height:1.7;
  margin-bottom:10px;
}

/* SERVICES */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:10px;
}
.service-card{
  background:radial-gradient(circle at top,#2b1507,#050209);
  border-radius:12px;
  border:1px solid rgba(255,152,0,0.4);
  padding:10px;
  box-shadow:0 0 12px rgba(0,0,0,0.9);
}
.service-title{
  font-size:16px;
  font-weight:700;
  color:#ffb74d;
  margin-bottom:4px;
}
.service-img{
  width:100%;
  margin-bottom:6px;
}
.service-img img{
  width:100%;
  height:auto;
  object-fit:contain; /* इमेज कटेगी नहीं */
}

/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:14px;
}
.about-photo{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,183,77,0.7);
  box-shadow:0 0 10px rgba(0,0,0,0.9);
}
.about-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:10px;
}
.gallery-item{
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,171,64,0.6);
  background:radial-gradient(circle at top,#2b1507,#050209);
}
.gallery-item img{
  width:100%;
  height:auto;
  object-fit:contain;
}

/* CONTACT */
.contact-row{
  font-size:14px;
  margin-bottom:6px;
}
.contact-row strong{
  color:#ffb74d;
}
.contact-buttons{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.btn{
  border:none;
  border-radius:999px;
  padding:8px 14px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn-call{
  background:#2e7d32;
  color:#fff;
  box-shadow:0 0 8px rgba(46,125,50,0.7);
}
.btn-wa{
  background:#128c7e;
  color:#fff;
  box-shadow:0 0 8px rgba(18,140,126,0.8);
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 0 12px rgba(255,255,255,0.25);
}

/* BLOG */
.blog-post{
  border-bottom:1px solid #3b2409;
  padding:10px 0;
}
.blog-post h3{
  color:#ffb74d;
  margin-bottom:4px;
}
.blog-post small{
  color:#ffecb3;
  display:block;
  margin-bottom:6px;
}

/* FLOATING CONTACT BUTTONS */
.floating-buttons{
  position:fixed;
  right:12px;
  bottom:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  z-index:200;
}
.float-btn{
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:#fff;
  text-decoration:none;
  box-shadow:0 0 10px rgba(0,0,0,0.8);
}
.float-call{
  background:#2e7d32;
}
.float-wa{
  background:#128c7e;
}

/* FOOTER */
footer{
  text-align:center;
  padding:12px;
  font-size:12px;
  background:#050305;
  border-top:1px solid #1b1005;
  color:#ffcc80;
  margin-top:10px;
}

/* RESPONSIVE */
@media(min-width:768px){
  .hero-wrapper{ height:330px; }
  .hero-heading{ font-size:28px; }
  .hero-line{ font-size:18px; }
  .main-title{ font-size:26px; }
}
@media(max-width:640px){
  header{
    flex-direction:column;
    align-items:stretch;
  }
  .header-right{
    justify-content:center;
  }
}
