/* GLOBAL BACKGROUND AND TEXT */
body {
  background: url('img/bg2img.jpg') center/cover no-repeat fixed;
  background-color: #2c2c2c !important; /* Dark gray fallback */
  color: #fff !important; /* White text for contrast */
  font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR - WHITE TEXT */
.navbar {
  background-color: #d4d1d1 !important; /* Dark navbar */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-brand,
.navbar-light .nav-link {
  color: #fff !important;
  font-weight: 500;
}
.navbar-light .nav-link:hover {
  color: #f15a29 !important;
}

/* ALL SECTIONS */
section {
  background-color: rgba(44, 44, 44, 0.8) !important; /* Semi-transparent dark gray */
  color: #fff !important;
}

/* CARDS */
.card {
  background-color: #3a3a3a !important; /* Slightly lighter dark gray */
  color: #fff !important;
  border: 1px solid #555 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.card .btn-orange {
  background-color: #f15a29 !important;
  color: #fff !important;
}
.card .btn-orange:hover {
  background-color: #d94c21 !important;
}

/* STATS SECTION */
.stats {
  background-color: #262626 !important; /* Dark gray */
  color: #fff !important;
}

/* BLOG SECTION */
.bg-light {
  background-color: #2c2c2c !important;
  color: #fff !important;
}

/* CTA SECTION */
section.text-center.text-white {
  background: url('https://source.unsplash.com/1600x600/?skyscraper') center/cover no-repeat !important;
  color: #fff !important;
}

/* FOOTER - DARK */
footer {
  background-color: #d4d1d1!important;
  color: #0a0a0a !important;
}
footer a {
  color: #f15a29 !important;
}
footer a:hover {
  color: #fff !important;
}

/* ENQUIRY FORM POPUP */
.enquiry-popup {
  background: #3a3a3a !important;
  color: #fff !important;
  border: 1px solid #555 !important;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}
.enquiry-popup input,
.enquiry-popup select {
  background: #555 !important;
  color: #fff !important;
  border: 1px solid #666 !important;
}
.enquiry-popup button {
  background-color: #f15a29 !important;
  color: #fff !important;
}
.enquiry-popup .close-btn {
  color: #fff !important;
}

/* BUTTONS */
.btn-orange {
  background-color: #f15a29 !important;
  color: #fff !important;
}
.btn-orange:hover {
  background-color: #d94c21 !important;
}

/* OPEN ENQUIRY BUTTON */
.open-btn {
  background: #f15a29 !important;
  color: #fff !important;
}
