* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

header h1 {
  text-align: center;
  padding: 20px 0 10px;
  color: #2563eb;
}

nav {
  text-align: center;
  padding-bottom: 15px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
}

nav a:hover {
  color: #2563eb;
}

/* Hero */
.hero {
  min-height: 90vh;
  background-image: url("images/packers-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero h2 {
  font-size: 44px;
  color: #1f2937;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  color: #4b5563;
  margin-top: 12px;
}


/* Sections */
.section {
  padding: 80px 0;
}

.section.light {
  background: #f4f6f8;
}

.section h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 12px;
}

.subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 50px;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.service-box h4 {
  margin-bottom: 10px;
  color: #2563eb;
}

.service-box p {
  color: #6b7280;
  font-size: 15px;
}

/* Contact */
.contact-box {
  background: #ffffff;
  padding: 30px;
  max-width: 500px;
  margin: auto;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

/* Footer */
footer {
  background: #f4f6f8;
  text-align: center;
  padding: 25px;
  color: #6b7280;
  font-size: 14px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    background-position: center top;
  }

  .hero h2 {
    font-size: 30px;
  }
}
.quote-section {
  padding: 70px 20px;
  background: #f4f6f8;
  text-align: center;
}

.quote-section h2 {
  font-size: 28px;
  color: #1f2937;
  margin-bottom: 10px;
}

.quote-section p {
  color: #6b7280;
  margin-bottom: 25px;
  font-size: 16px;
}

.quote-btn {
  padding: 14px 36px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
}

.quote-btn:hover {
  background: #1d4ed8;
}
.hero {
  min-height: 90vh;
  background-image: url("images/packers-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.quote-form-section {
  padding: 80px 20px;
  background: #f4f6f8;
  text-align: center;
}

.quote-form-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #1f2937;
}

.quote-form-section form {
  max-width: 500px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.quote-form-section input,
.quote-form-section textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 15px;
}

.quote-form-section textarea {
  height: 100px;
  resize: none;
}

.quote-form-section button {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.quote-form-section button:hover {
  background: #1d4ed8;
}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
/* Floating Call Icon Button */
.call-float-icon {
  position: fixed;
  bottom: 90px;        /* WhatsApp paina untundi */
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  font-size: 26px;
  text-align: center;
  line-height: 55px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-float-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.services-section {
  padding: 80px 20px;
  background: #f9fafb;
  text-align: center;
}

.services-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1f2937;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 20px;
  color: #1f2937;
  margin: 15px 0 5px;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  padding: 0 15px 20px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  padding: 30px;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.service-detail {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
  padding: 20px;
}

.detail-img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;        /* 👈 MAIN FIX */
  background-color: #f9fafb;  /* white/soft bg */
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;

}

.back-btn {
  margin-top: 30px;
  padding: 12px 30px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.back-btn:hover {
  background: #1d4ed8;
}
/* Clickable Gallery Images */
.gallery a {
  display: block;
  text-decoration: none;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}
/* Lightbox */
.lightbox{
display:none;
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
z-index:99999;
}

.lightbox img{
max-width:90%;
max-height:90%;
}

.close{
position:absolute;
top:20px;
right:30px;
font-size:45px;
color:white;
cursor:pointer;
}
/* ===== Mobile Responsive ===== */
@media screen and (max-width: 768px){

  header h1{
    font-size:26px;
    padding:15px;
  }

  nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    padding:10px;
  }

  nav a{
    margin:5px;
    font-size:15px;
  }

  .hero{
    min-height:45vh;
    background-size:cover;
    background-position:center;
  }

  .quote-section h2{
    font-size:24px;
  }

  .section h3{
    font-size:28px;
  }

  .services-cards,
  .services{
    grid-template-columns:1fr;
  }

  .gallery{
    grid-template-columns:1fr;
    padding:15px;
  }

  .gallery img{
    height:auto;
  }

  .quote-form-section form{
    width:100%;
    padding:20px;
  }

  .contact-box{
    width:100%;
  }

  .whatsapp-float,
  .call-float-icon{
    width:50px;
    height:50px;
  }

  .whatsapp-float img{
    width:28px;
    height:28px;
  }

  .call-float-icon{
    line-height:50px;
    font-size:22px;
    bottom:85px;
  }

}