/* ===== General Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0d0d0d;
  color: #fff;
}

/* === Navbar Styling === */
/* ===== Base Styles ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* .navbar {
  background-color: #111;
  padding: 20px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
} */

.navbar {
  background-color: rgba(17, 17, 17, 0.8); /* Slight transparency */
  backdrop-filter: blur(6px); /* Optional: subtle blur effect behind navbar */
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  position: relative;
}

/* ===== Logo Image ===== */
.logo img {
  height: 100px; /* Adjust size as needed */
  width: auto;
  display: block;
}


/* ===== Desktop Phone Number ===== */
.desktop-phone {
  margin-left: 20px;
}

.desktop-phone a {
  color: #ddd;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}


/* ===== Nav List ===== */
.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: #eee;
  text-decoration: none;
  font-size: 18px;
  padding: 5px 0;
  transition: color 0.3s ease;
  position: relative;
}

.nav-list li a:hover {
  color: #aaaaaa;
}

/* ===== Hamburger Icon ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
  transition: all 0.3s ease-in-out;
}

/* ===== Responsive Styling ===== */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .desktop-phone {
    display: none;
  }

    .nav-list {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 70px); /* ensures menu doesn't overflow */
    overflow-y: auto;                /* allows scrolling */
    background-color: #111;
    padding: 60px 20px;
    display: none;
    animation: fadeInSlide 0.3s ease forwards;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
    margin: 1px 0;
  }

  .nav-list li a {
    display: block;
    font-size: 20px;
    padding: 10px 0;
    border-radius: 6px;
    transition: background 0.3s;
  }

  .nav-list li a:hover {
    background-color: #222;
  }

  .mobile-call-btn {
    display: block;
  }

  .call-now-btn {
    background-color: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s;
  }

  .call-now-btn:hover {
    background-color: #444;
  }

}

/* Hide call button in desktop */
@media screen and (min-width: 769px) {
  .mobile-call-btn {
    display: none;
  }
}

/* ===== Animation for mobile menu ===== */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Animate hamburger into X ===== */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}






/* Where we offer services */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px; /* adds spacing left and right */
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 320px;
  padding-right: 20px; /* space between text and image */
}

.about-text ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
  text-align: left;
}

.about-text ul li {
  font-size: 17px;
  margin: 8px 0;
  padding-left: 10px;
}

.about-image {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  text-align: center;
  padding-left: 20px; /* space between image and text */
}

.about-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.about-section {
  padding: 80px 0 40px; /* Top spacing from navbar */
  background-color: #0d0d0d;
}

/* Map Users */
.map-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #111;
  color: #fff;
}

.map-subtitle {
  margin-bottom: 30px;
  font-size: 18px;
  color: #ccc;
}

.map-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.map-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px #000;
}

/* Pin styles */
.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.pin img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 5px #000;
}

.pin-message {
  margin-top: 6px;
  background: rgba(0, 0, 0, 0.7);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
}

/* ===FootNote=== */
.site-footer {
  background-color: #111;
  color: #eee;
  padding: 100px 60px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-values h3,
.footer-contact h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-values p,
.footer-contact p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #4fc3f7;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Black and White Quote Button */
.quote-button {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 25px;
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.quote-button:hover {
  background-color: #000;
  color: #fff;
}

/* Social media icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  animation: fadeInUp 0.8s ease-out forwards;
}