* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}



body {
    background-color:rgba(95, 26, 55, 0.308);
}

.navbar {
    height: 70px;
    background-color: rgb(95, 26, 55);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    padding: 12px 24px;
}

a {
    color: white;
    text-decoration: none;
    padding-right: 10px;
    padding-left: 10px;

}    

.brand {
    display: flex;
    align-items: center;
}

.brand span {
    color: #facc14;
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    text-decoration: none;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.nav-links a:hover {
    color: #ffd54f;
}

ul {
    list-style: none;
}


.hero {
    position: relative;
    height: 700px;
    background: url("topimage\ new.png") center / cover no-repeat;
}

.hero-text {
    position: absolute;
    transform: translateY(-50%);
    color: white;
    display: flex;
    text-align:center;
    flex-direction: column;
    justify-content: center;
    height: auto;
    max-width: 50%;
    font-size: 28px;
    padding: 20px 16px; 
    left: 0%;  
    top: 50%;
}     

@media (max-width: 768px) {
  .hero-text {
    left: 0;
    right: 0;
    text-align: left;
  }
}

.hero-text h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.1;
}

.hero-text p {
  font-size: clamp(1rem, 3.5vw, 1.4rem);
}

section {
  margin-bottom: 80px;
}

.services {
    padding: 60px 80px;
}

.services-title {
    font-size: 48px;
    color:#5f1a37 ;
    margin-bottom: 40px;
    padding: 24px;
}

.services-grid {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 28px;

}

.service-card {
    background: #ffd64f56;
    border: 4px, solid, #5F1A37 ;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 0 #5F1A37;
    transition: transform 0.3s ease;
    height:auto;
    font-size: 20px;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 18px;
  line-height: 1.6;
}

.aboutus { 
    padding: 24px;
}

.aboutus-heading {
    font-size: 48px;
    color:#5f1a37 ;
    margin-bottom: 40px;
}

.aboutus-p {
    font-size: 18px;
    line-height: 28px;
}

.image-box {
    max-width: 100%;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    max-width: 100%;
    height: 500px;
    display: block;
}

.ourclientsheading {
    font-size: 48px;
    color: #5F1A37;
}

.our-clients p {
    font-size: 18px;
    line-height: 28px;
}

.our-clients {
    padding: 24px;
    margin-bottom: 40px;
}


.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}


.client-row {
  
  
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  
}

.client-row img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.footer {
    background: #5F1A37;
    color: #f5f5f5;
    padding: 60px 0 0;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #e6cfa7;
}

.footer-col p {
  line-height: 1.6;
  font-size: 15px;
}


.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #f5f5f5;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px;
  text-align: center;
  background: #1f1216;
  font-size: 14px;
}

.contact-form {
    display: flex;
    padding: 25px;
    margin-bottom: 60vh;
    gap: 10px;
}

@media (max-width:768px) {

.contact-form {
  flex-direction: column;
 }
}

.contact-form-head {
    padding: 25px;
}
.quote-form {
    display: flex;
    padding: 25px;
    margin-bottom: 60vh;
    gap: 10px;
}

@media (max-width:768px) {

.quote-form {
  flex-direction: column;
 }
}

.quote-form-head {
    padding: 25px;
}


  .quote-btn {
    display: none;
  }
 .quote-btn {
     background: white;
    color: #7a1e2d !important;
    padding: 10px 16px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 8px;
  font-weight: 600;
    
  }

  .quote-btn:hover {
    background-color: #facc14;
  }

.hamburger {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #7a1e2d;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 16px 0;
  }

    .hamburger {
    display: block;
  }

    .nav-links.show {
    display: flex;
  }
    .nav-links li {
    text-align: center;
    padding: 12px 0;
  }
}

/* ===== FORCE MOBILE MENU TO SHOW ON TOP ===== */
@media (max-width: 768px) {

  .navbar {
    position: relative;
    z-index: 10000;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #7a1e2d;
    position: absolute;
    top: 60px;        /* just below navbar */
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 99999;  /* higher than hero */
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 12px 0;
  }

  .nav-links li a {
    color: white;
    font-size: 16px;
  }
  
  .mobile-quote {
    background: white;
    color: #7a1e2d !important;
    padding: 10px 16px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
  }

  .hamburger {
    display: block;
    font-size: 26px;
    color: white;
    cursor: pointer;
    z-index: 100000;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
  background: #25D366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    padding: 10px;
  }

  .whatsapp-float img {
    width: 32px;
    height: 32px;
  }
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}

.work-card {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  justify-content: center;
}

.work-card img {
  width: 50%;
  height: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
  margin: 25px;
  border: 3px solid #5F1A37;
}

.work-card img:hover {
  transform: scale(1.05);
}

.gallary-head {
  display: flex;
  justify-content: center;
}

.gallary-p {
  display: flex;
  justify-content: center;
}

.testimonials {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.testimonials h1 {
  font-size: 40px;
  color: #5F1A37;
}

.testimonial-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  background: #ffd64f56;
  width: 280px;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px #5F1A37 solid  ;
}

.testimonial-card p {
  font-size: 17px;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  margin: 0;
  font-size: 18px;
}

.testimonial-card span {
  font-size: 13px;
  color: #777;
}
