*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f3efe8;
  color:#2d2d2d;
}

/* NAVBAR */
nav{
  display:flex;
  justify-content:space-between;
  /*padding:18px 60px;*/
 
  color:white;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);

  
  align-items: center;
  
  padding: 15px 80px;   /* left-right spacing control */
  background: #1c1f26;
}
  

nav a{
  color:white;
  margin-left:20px;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover{
  color:#c9a227;
}

/*navlinks*/
.nav-links {
  display: flex;
  gap: 35px;   /* pages ke beech equal spacing */
}
.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #c9a227;
}




.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;

  
}

.logo img {
  height: 55px;        /* yahan size control karo */
  width: auto;
  object-fit: contain;
  animation: floatLogo 3s ease-in-out infinite;

  
}

.logo span {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 3px;

}

/* Smooth Up-Down Animation */
@keyframes floatLogo {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}





/* HERO */
header{
  background:
  linear-gradient(
    to right,
    rgba(28,31,38,0.55),
    rgba(28,31,38,0.25)
  ),
  url('https://plus.unsplash.com/premium_photo-1683120730432-b5ea74bd9047?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');

  background-size:cover;
  background-position:center;

  color:white;
  padding:180px 20px;
  text-align:center;
}

.hero-content{
  max-width:900px;
  margin:auto;
}

/* BUTTON */
.btn{
  background:#c9a227;
  color:#1c1f26;
  padding:14px 40px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
  transition:0.4s;
  letter-spacing:1px;
}

.btn:hover{
  transform:translateY(-5px);
  background:#b08d20;
}

/* SECTIONS */
.section{
  padding:90px 20px;
  max-width:1200px;
  margin:auto;
  background:#f3efe8;
}

.alt{
  background:#e2d6c5;
}

/* HEADINGS */
h2{
  text-align:center;
  margin-bottom:40px;
  color:#1c1f26;
  letter-spacing:1px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* PREMIUM CARDS */
.box{
  background:#ffffff;
  border-radius:20px;
  padding:25px;
  text-align:center;

  box-shadow:0 10px 30px rgba(0,0,0,0.1);

  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:center;

  min-height:420px;

  transition:0.4s;

  border-top:6px solid #c9a227;
}

.box:hover{
  transform:translateY(-12px);
  box-shadow:0 15px 50px rgba(0,0,0,0.2);
}

.card-img{
  width:100%;
  border-radius:15px;
  margin-bottom:15px;
  height:180px;
  object-fit:cover;
}

/* TWO COLUMN */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.side-img{
  width:100%;
  border-radius:25px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* SERVICES */
#services .box{
  background:#1c1f26;
  color:white;
  min-height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  font-size:18px;
  border-top:6px solid #c9a227;
}

#services .box:hover{
  background:#c9a227;
  color:#1c1f26;
}

/* SERVICE ICON */
.service-icon{
  font-size:40px;
  margin-bottom:15px;
  color:#c9a227;
  transition:0.3s;
}

#services .box:hover .service-icon{
  color:#1c1f26;
}


/* CONTACT SECTION 
.contact-wrapper{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.contact-card{
  background:white;
  padding:40px;
  border-radius:25px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  transition:0.3s;
}

.contact-card:hover{
  transform:translateY(-8px);
}

.contact-card h3{
  color:#c9a227;
  margin-bottom:10px;
}*/


/* Contact Section */
#contact {
  text-align: center;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.contact-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.contact-card h3 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #111;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.contact-card a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.contact-card a:hover {
  color: blue;
}

/* Social Icons */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin: 0 8px;
  font-size: 18px;
  color: #333;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: blue;
  transform: scale(1.2);
}










/* WHATSAPP */
.whatsapp{
  position:fixed;
  bottom:30px;
  right:30px;
  background:#25d366;
  color:white;
  padding:14px 22px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  transition:0.3s;
}

.whatsapp:hover{
  transform:scale(1.1);
}

/* FOOTER */
footer{
  background:#1c1f26;
  color:white;
  text-align:center;
  padding:25px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .two-col{
    grid-template-columns:1fr;
  }

  nav{
    padding:15px 20px;
  }

  header{
    padding:120px 15px;
  }
}
