/* ===== BASIC RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #ffffff;
  color: #000000;
}


/* ================= HOME IMAGE SLIDER ================= */
/* ================= HOME SLIDER ================= */
.home-slider {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Track */
.slides-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.8s ease-in-out;
}

/* Slide */
.slide {
  min-width: 100%;
  height: 100%;
  
  background: linear-gradient(135deg, #fffdf5, #f6f2e6);


}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.2);
  color: #fff;
  border: none;
  font-size: 28px;
  width: 44px;
  height: 60px;
  cursor: pointer;
  z-index: 5;
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #d9c98a;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #f2b705;
}

/* Mobile */
@media (max-width: 768px) {
  .home-slider {
    height: 220px;
  }
}



/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 80px;
}

.company-name {
  font-size: 24px;
  font-weight: 800;
}

.tagline {
  font-size: 16px;
  font-weight: 700;
  color: #f2b705;
  text-align: right;
}

/* ===== NAV ===== */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.nav-menu a:hover {
  color: rgb(242, 183, 5);
}

/* ===== DESKTOP CTA ===== */
.desktop-cta {
  display: flex;
  gap: 10px;
}

.call-btn,
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.call-btn {
  background-color: #056fd9;
}

.whatsapp-btn {
  background-color: #25D366;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===== MOBILE CTA ===== */
.mobile-cta {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
  border-top: 1px solid #ddd;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {

  .logo-img {
    height: 65px;
    
  }

  .company-name {
    
    font-size: 17px;
    text-align: left;
  }

  .tagline {
    font-size: 13px;
    
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);

    transition: all 0.35s ease;
    border-top: 1px solid #ddd;
  }

  .nav-menu a {
    padding: 15px 0;
    width: 100%;
    text-align: center;
  }

  .nav-menu.show {
    max-height: 450px;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-cta {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

  .hamburger {
    display: block;
    
  }
  
}
/* ===== DESKTOP GET QUOTE BUTTON ===== */
.quote-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;
  border-radius: 20px;          /* pill shape */
  background-color: #0b4dbb;    /* brand blue */
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.quote-btn:hover {
  opacity: 0.9;
}
/* ===== MOBILE ACTION BAR ===== */
.mobile-action-bar {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {

  .mobile-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 10px;
    padding: 10px 12px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
  }

  .mobile-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 6px;
  }

  /* Call */
  .mobile-action.call {
    background: #056fd9;
    color: #ffffff;
  }

  /* WhatsApp */
  .mobile-action.whatsapp {
    background: #25D366;
    color: #ffffff;
  }

  /* Get Quote */
  .mobile-action.quote {
    background: #0b4dbb;
    color: #ffffff;
    border-radius: 20px; /* rounded pill */
  }
}



/* ================= WELCOME SECTION ================= */
.welcome-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.welcome-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.welcome-container h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
}

.welcome-text {
     text-align: justify;
  text-justify: inter-word;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 20px;
  color: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .welcome-container h2 {
    font-size: 24px;
  }

  .welcome-text {
    font-size: 15px;
     text-align: justify;
  text-justify: inter-word;
  }
}


/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 70px 20px;
  background-color: #ffffff;
  text-align: center;
}

.services-section h2 {
  font-size: 32px;
  font-weight: 800;
}

.services-container {
  max-width: 1200px;
  margin: 50px auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Service Card */
.service-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
   transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #ffffff;

}

.service-card:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 25px #f2b7055d;

  
}

/* Image */
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content */
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  padding: 20px 20px 10px;
}

.service-desc {
  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px 15px;
  color: #333;
}

/* Points */
.service-points {
  list-style: none;
  padding: 0 20px 25px;
}

.service-points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
}

.service-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f2b705;
  font-weight: bold;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .services-section h2 {
    font-size: 26px;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 180px;
  }
}





/* ================= FOOTER ================= */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  margin-top: 60px;
}

/* Main footer area */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Footer columns */
.footer-col h3,
.footer-col h4 {
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-line {
  width: 60px;
  height: 3px;
  background-color: #f2b705; /* Yellow accent */
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-col i {
  margin-right: 8px;
  color: #f2b705;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #f2b705;
}

/* Map */
.footer-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 6px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #222;
  padding: 15px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  font-size: 13px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #ffffff;
  font-size: 18px;
}

.footer-social a:hover {
  color: #f2b705;
}

/* ================= FOOTER MOBILE ================= */
@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-line {
    margin: 10px auto 15px;
  }

  .footer-map iframe {
    height: 180px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* ================= WORK PROCESS SECTION ================= */
.process-section {
  padding: 70px 20px;
  background-color: #f9f9f9; /* light contrast */
  text-align: center;
}

.process-section h2 {
  font-size: 32px;
  font-weight: 800;
}

.process-intro {
  max-width: 700px;
  margin: 20px auto 50px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Steps container */
.process-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* Step card */
.process-step {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: #f2b705;
}

/* Step number */
.step-number {
  font-size: 28px;
  font-weight: 800;
  color: #f2b705;
  display: block;
  margin-bottom: 10px;
}

/* Step title */
.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Step text */
.process-step p {
  font-size: 14px;
  line-height: 1.5;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .process-section h2 {
    font-size: 26px;
  }

  .process-container {
    grid-template-columns: 1fr;
  }

  .process-step {
    text-align: left;
  }
}


.footer-bottom {
  text-align: center;
  padding: 12px 10px;
  background: #000;
  color: #fff;
  font-size: 13px;
}

.footer-credit {
  color: #f2b705;          /* yellow accent */
  text-decoration: none;
  font-weight: 600;
}

.footer-credit:hover {
  text-decoration: underline;
}


/* ================= MOBILE ACTION BAR ================= */
.mobile-action-bar {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {

  .mobile-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    padding: 10px 12px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 999;
  }

  .mobile-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 6px;
  }

  .mobile-action.call {
    background: #056fd9;
    color: #ffffff;
  }

  .mobile-action.whatsapp {
    background: #25D366;
    color: #ffffff;
  }

  .mobile-action.quote {
    background: #0b4dbb;
    color: #ffffff;
    border-radius: 20px;
  }
}


/* ===== FOOTER MAP ===== */
.footer-map {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

/* ===== MAP ACTION BUTTONS ===== */
.footer-map-actions {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 10px;
  z-index: 5;
}

.map-btn {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  color: #ffffff;
  white-space: nowrap;
}

/* Button colors */
.map-btn.directions {
  background: #0b4dbb;
}

.map-btn.call {
  background: #056fd9;
}

.map-btn.whatsapp {
  background: #25D366;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-map iframe {
    height: 220px;
  }

  .map-btn {
    font-size: 11px;
    padding: 6px 12px;
  }
}

