/* ===== GENERAL ===== */
body{
  margin:0;
  font-family:Arial, sans-serif;
  background:#0f0f0f;
  color:#fff;
}

h1,h2,h3{
  margin:0;
}

section{
  padding:70px 20px;
  text-align:center;
}

/* ===== NAVBAR ===== */
.navbar{
  background:#000;
  padding:15px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:2px solid #d4af37;
}


.logo{
  display:flex;
  font-size:20px;
  align-items:center;
  gap:10px;
  font-weight:bold;
  color:#d4af37;
}


.logo img{
  width:50px;
  height:50px;
  object-fit:cover;
  border:2px solid #d4af37;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:25px;
  margin:0;
}

.nav-links a{
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.nav-links a:hover{
  color:#d4af37;
}

/* Hamburger hidden on PC */
.menu-toggle{
  display:none;
  font-size:26px;
  color:#d4af37;
  cursor:pointer;
}


/* ===== HERO ===== */
.hero{
  background:linear-gradient(to right,#000,#1a1a1a);
}

.hero h1{
  font-size:42px;
  color:#d4af37;
}

.hero p{
  margin-top:15px;
  color:#ccc;
}

.hero-btn{
  display:inline-block;
  margin-top:25px;
  padding:10px 25px;
  border-radius:30px;
  background:#d4af37;
  color:#000;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.hero-btn:hover{
  background:#fff;
}

/* ===== SERVICES ===== */
.service-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:25px;
  margin-top:40px;
}

.service-card{
  width:280px;
  background:#111;
  border:1px solid #d4af37;
  border-radius:15px;
  overflow:hidden;
  transition:0.4s;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 0 20px rgba(212,175,55,0.4);
}

.service-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.service-info{
  padding:20px;
}

.service-info h3{
  color:#d4af37;
}

.service-info p{
  font-size:14px;
  color:#ccc;
  margin:10px 0;
}

.call-btn{
  display:inline-block;
  margin-top:10px;
  padding:8px 18px;
  background:#d4af37;
  color:#000;
  border-radius:25px;
  text-decoration:none;
  font-weight:bold;
}

/* ===== GALLERY ===== */
.gallery-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:15px;
  margin-top:40px;
}

.gallery-row img{
  width:250px;
  height:180px;
  object-fit:cover;
  border-radius:10px;
  transition:0.3s;
}

.gallery-row img:hover{
  transform:scale(1.05);
}

/* ===== CONTACT ===== */
.contact{
  background:#111;
}

.contact p{
  color:#ccc;
  margin:10px 0;
}

.contact a{
  color:#d4af37;
  text-decoration:none;
}

/* ===== FOOTER ===== */
.footer{
  background:#000;
  padding:20px;
  text-align:center;
  color:#888;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:70px;
    right:0;
    background:#000;
    width:100%;
    flex-direction:column;
    text-align:center;
    align-items:center;
    gap:20px;
    padding:20px 0;
    display:none;
  }

.nav-links.active{
    display:flex;   /* 👈 Show when clicked */
  }

  .nav-links.show{
    display:flex;
  }

  .hero h1{
    font-size:28px;
  }

  .service-card{
    width:90%;
  }

  .gallery-row img{
    width:90%;
  }

}


/* LOGO WRAPPER */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}

/* LOGO CONTAINER */
.logo-circle{
  width:150px;
  height:auto; /* height auto */
  border-radius:10px; /* radius badhaya */
  overflow:hidden;
  position:relative;
  transition:0.4s ease;
}

/* IMAGE */
.logo-circle img{
  width:100%;
  height:auto; /* image ratio maintain */
  display:block; /* extra line remove */
  transition:0.4s ease;
}

/* ZOOM EFFECT */
.logo-circle:hover img{
  transform:scale(1.08);
}

/* GLITTER SHINE EFFECT */
.logo-circle::before{
  content:"";
  position:absolute;
  top:-100%;
  left:-100%;
  width:200%;
  height:200%;
  background:linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.7) 50%,
    transparent 60%
  );
  transform:rotate(25deg);
  transition:0.6s;
  opacity:0;
}

/* Shine on hover */
.logo-circle:hover::before{
  animation:shine 0.8s forwards;
  opacity:1;
}

@keyframes shine{
  0%{
    top:-100%;
    left:-100%;
  }
  100%{
    top:100%;
    left:100%;
  }
}

/* Extra Glow Effect */
.logo-circle:hover{
  box-shadow:0 0 20px #d4af37, 0 0 40px rgba(212,175,55,0.5);
}


/* ===== PAGE TITLE ===== */
.page-title{
  text-align:center;
  padding:50px 20px 20px;
}

.page-title h1{
  color:#d4af37;
  font-size:40px;
}

/* ===== GALLERY GRID ===== */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
  padding:40px;
}

/* ===== CARD ===== */
.gallery-card{
  background:#111;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 0 15px rgba(212,175,55,0.2);
  transition:0.4s;
}

.gallery-card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 25px rgba(212,175,55,0.5);
}

.image-wrapper{
  position:relative;
  overflow:hidden;
}

.image-wrapper img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition:0.5s;
}

.gallery-card:hover img{
  transform:scale(1.1);
}

/* BEFORE / AFTER LABEL */
.label{
  position:absolute;
  top:10px;
  left:10px;
  background:#d4af37;
  color:#000;
  padding:5px 12px;
  font-size:14px;
  font-weight:bold;
  border-radius:20px;
}

/* CARD CONTENT */
.card-content{
  padding:15px;
  text-align:center;
}

.card-content h3{
  margin:10px 0;
  color:#d4af37;
}

.card-content p{
  font-size:14px;
  color:#ccc;
}

/* ===== FOOTER ===== */
.footer{
  text-align:center;
  padding:20px;
  border-top:1px solid #d4af37;
  margin-top:40px;
  color:#aaa;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .page-title h1{
    font-size:28px;
  }
  .gallery{
    padding:20px;
  }
}

/* GALLERY SECTION */
#gallery{
  text-align:center;
  padding:50px 20px;
  background:#000;
}

.gallery-row{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-top:30px;
}

.gallery-row img{
  width:300px;
  height:220px;
  object-fit:cover;
  border:3px solid #d4af37;   /* Yellow Border */
  border-radius:10px;
  transition:0.4s ease;
}

/* HOVER EFFECT */
.gallery-row img:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px #d4af37;
}


.contact-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:500px;
  margin:12px auto;
  padding:8px 12px;
  border-bottom:1px solid #333;
}

.contact-item span{
  font-size:14px;
}

/* Button */
.contact-btn{
  padding:4px 10px;
  font-size:12px;
  background:#d4af37;
  color:#000 !important;
  text-decoration:none;
  font-weight:600;
  border-radius:20px;
  border:1.5px solid #d4af37;
  transition:all 0.3s ease;
}

.contact-btn:hover{
  background:#000;
  color:#d4af37 !important;
  box-shadow:0 0 10px #d4af37;
  transform:translateY(-2px);
}

/* MOBILE FIX */
@media(max-width:600px){

  .contact-item{
    flex-direction:row;      /* Same line me rakhe */
    justify-content:space-between;
  }

  .contact-item span{
    font-size:13px;
  }

  .contact-btn{
    padding:3px 8px;
    font-size:11px;
  }

}

.logo{
  color:#d4af37;
  font-size:22px;
  font-weight:bold;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:25px;
}

.nav-links a{
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.nav-links a:hover{
  color:#d4af37;
}

/* ===== HERO ===== */
.hero{
  text-align:center;
  padding:60px 20px;
  background:linear-gradient(to right,#000,#111);
}

.hero h1{
  font-size:25px;
  color:#d4af37;
}

.hero p{
  color:#ccc;
}

/* ===== GALLERY ===== */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
  gap:30px;
  padding:50px;
}

/* ===== CARD ===== */
.card{
  background:#111;
  padding:20px;
  border-radius:15px;
  box-shadow:0 0 15px rgba(212,175,55,0.2);
  transition:0.3s;
}

.card:hover{
  box-shadow:0 0 25px rgba(212,175,55,0.6);
  transform:translateY(-5px);
}

.images{
  display:flex;
  gap:10px;
}

.images img{
  width:50%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
  cursor:pointer;
  transition:0.4s;
}

.images img:hover{
  transform:scale(1.05);
}

.project-title{
  text-align:center;
  margin-top:15px;
  color:#d4af37;
  font-weight:bold;
}

/* ===== LIGHTBOX ===== */
.lightbox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.95);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.lightbox img{
  max-width:90%;
  max-height:80%;
  border:5px solid #d4af37;
  border-radius:10px;
}

.lightbox span{
  position:absolute;
  top:30px;
  right:40px;
  font-size:40px;
  color:#d4af37;
  cursor:pointer;
}

/* ===== FOOTER ===== */
.footer{
  background:#111;
  text-align:center;
  padding:25px;
  border-top:2px solid #d4af37;
  margin-top:40px;
}

.footer p{
  color:#aaa;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .images{
    flex-direction:column;
  }
  .images img{
    width:100%;
  }
  .hero h1{
    font-size:28px;
  }
}

/* ===== FINAL MOBILE NAV FIX ===== */
@media(max-width:768px){

  .nav-links{
    display:none !important;      /* Force hide */
    flex-direction:column;
    position:absolute;
    top:70px;
    right:0;
    width:100%;
    background:#000;
    text-align:center;
    padding:20px 0;
    z-index:999;
  }

  .nav-links.active{
    display:flex !important;      /* Show only when active */
  }

}

.logo span{
  font-size:18px;   /* size kam kar diya */
  font-weight:600;  /* optional */
}
@media(max-width:768px){
  .logo span{
    font-size:14px;
  }
}

/* LIGHTBOX BACKGROUND */
#imgBox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.95);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* Image same size */
#imgBox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.95);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* Wrapper */
.imgWrapper{
  position:relative;
  max-width:90vw;
  max-height:90vh;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* Image */
#imgBox img{
  max-width:100%;
  max-height:90vh;
  object-fit:contain;
  border:3px solid #d4af37;
  border-radius:8px;
  display:block;
}

/* Close Button */
.closeBtn{
  position:absolute;
  top:-12px;
  right:-12px;
  font-size:18px;
  background:#d4af37;
  color:#000;
  padding:4px 8px;
  border-radius:50%;
  cursor:pointer;
  font-weight:bold;
}

.offer-bar{
  width:100%;
  display:flex;
  align-items:center;
  background:#111;
  border-top:2px solid #d4af37;
  border-bottom:2px solid #d4af37;
  overflow:hidden;
}

.offer-title{
  background:#d4af37;
  color:#000;
  font-weight:700;
  padding:6px 18px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:2px;
  border-radius:30px;   /* Round shape */
  margin:6px 10px;      /* Thoda space */
  box-shadow:0 4px 10px rgba(212,175,55,0.5);
}


.offer-marquee{
  flex:1;
  overflow:hidden;
  position:relative;
}

.offer-text{
  display:inline-block;
  white-space:nowrap;
  color:#fff;
  padding-left:100%;
  animation:scrollText 18s linear infinite;
  font-weight:500;
}

/* Hover par stop */
.offer-marquee:hover .offer-text{
  animation-play-state:paused;
}

/* Smooth scrolling */
@keyframes scrollText{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-100%);
  }
}

/* Gold glow effect */
.offer-bar{
  box-shadow:0 0 10px rgba(212,175,55,0.4);
}

