body {
    font-family: 'Poppins','Roboto','Arial', sans-serif;
    margin: 0;
    max-width: 1980px; 
    margin: auto;
}
.topbar {
    padding-right: 10px;
    color: #fff;
}
.btn-all {
    background: #D79F4C;
    color: #fff;
    border: none;
    border-radius: 25px;
}
.arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
    top: -2px;
    border-radius: 50%;
    padding: 2px;
}
.ochre {
    color: #D79F4C;
}
.hero {
  background: url('../assets/hero.png') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  font-family: 'Roboto','Montserrat', 'Poppins', sans-serif;
}
.orange-line {
  width: 90px;
  height: 3px;
  background: #D79F4C;
  opacity: 1;
  border-radius: 2px;
}
.feature-box {
  background: rgba(215, 159, 76, 0.2); /* match your tan colour */
  border-radius: 25px;
}
.what-we-do-section {
  background: url('../assets/section-2_bgrd.png') center/cover no-repeat;
  position: relative;
  min-height: 500px;
}
.what-we-do-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.what-we-do-section .container {
  position: relative;
  z-index: 2;
}
dl, ol, ul {
    margin-top: 5px;
    margin-bottom: 0.2rem;
}
.package-box {
  background: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.checkmark {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.bg-light {
  background-color: #fae7c9 !important;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
}
.dot.active {
  background: #d4a24c; /* gold highlight */
}
.process-section {
  background: url('../assets/section-7_bgrd.png') center/cover no-repeat;
  position: relative;
  min-height: 80vh;
}
.process-section .container {
  position: relative;
  z-index: 2; /* ensures text sits above overlay */
}
.text-muted2 {
  color: #dee2e6 !important;
}
.button-center {
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 20px;
    }
    .orange-line {
        margin: 20px auto;
    }
    .feature-box {
        width: 150px;   
        margin: 0 auto 40px auto;
    }
    .what-we-do-section {
        min-height: 400px;
    }
    .package-box {
        margin-bottom: 20px;
    }
    .process-section {
        min-height: 60vh;
    }
    .icon-mob {
        width: 300px;
        height: auto;
    }
    .contact-address {
      display: none !important;
    }
}