body {
  font-family: "Georgia", serif;
  background-color: #f8f6f4;
  margin: 0;
  padding: 0;
    box-sizing: border-box;
}

/* Top Bar */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 100; /* high value to stay on top of all content */
  background-color: #f2f2f0;
  padding: 8px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.top-bar .location i {
  color: #fc8b00;
}

/* Header */
header{
  background-color: #f2f2f0;
}
header .logo {
  width: 50px; /* smaller than before */
  height: auto; /* maintain aspect ratio */
}

header h1 {
  font-size: 30px;
  color: #000;
}

header p {
  color: #7a7a7a;
  font-size: 14px;
}

.phone{
  width: 35px;
  height: 35px;
  margin-right: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}
.phone-link {
  color: #6c757d; /* same as text-secondary */
  text-decoration: none; /* remove underline */
  transition: color 0.3s, transform 0.3s;;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.phone-link:hover {
  color: #ee4906; /* change color on hover */
  transform: scale(1.2);
  text-decoration: none; /* optional */
}


/* Navbar */
.navbar {
  font-size: 16px;
}

.navbar-nav .nav-link {
  color: #fff;
  margin: 5px 15px;
  padding: 8px 15px; /* add padding to make the square visible */
  border-radius: 6px; /* smooth corners — change to 0 for sharp edges */
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #fff; /* keep text white */
  background-color: #ee4906; /* hover background color */
  transform: scale(1.05); /* slight zoom for a nice feel */
}
.navbar-nav .nav-link.active {
  color: #fff; /* text stays white */
  background-color: #ee4906; /* orange background for active page */
  transform: scale(1.05); /* same zoom effect as hover */
}

   /* Scroll to Top Button */
        .scroll_to_top {
            position: fixed;
            bottom: 7px;
            right: 40px;
            width: 50px;
            height: 50px;
            background-color: #0b0b0b;
            color: #fff;
            font-size: 24px;
            text-align: center;
            line-height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: none; /* hidden initially */
            z-index: 1000;
            transition: background 0.3s;
        }

        .scroll_to_top:hover {
            background-color: #5d5a5a;
        }

        /* WhatsApp Floating Button */
        .qlwapp__button {
            position: fixed;
            bottom: 60px; /* slightly above scroll button */
            right: 40px;
            width: 50px;
            height: 50px;
            background-color: #25d366;
            border-radius: 50%;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            font-size: 28px;
            color: white;
            text-decoration: none;
        }

        .qlwapp__button:hover {
            background-color: #20c957;
        }

        .qlwapp__close {
            display: none; /* optional */
        }



/* Footer Section */
.footer-section {
  background-color: #f8f6f4;
  color: #333;
  font-family: "Georgia", serif;
  border-top: 1px solid #ddd;
}

.footer-section h4,
.footer-section h5 {
  color: #000;
}

.footer-section p {
  color: #555;
  line-height: 1.6;
}

.footer-section .list-unstyled li {
  color: #555;
  font-size: 15px;
}

.footer-section .fa-solid {
    color: #ee4906 !important;
}

.footer-bottom {
  background-color: #000;
}

.footer-bottom p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}


.contact-list li {
    display: flex;
    align-items: flex-start;
}

.contact-list i {
    width: 20px; /* Keeps icons aligned nicely */
    margin-top: 3px; /* Vertically centers icons with text */
}

.contact-list div {
    line-height: 1.4;
}



/* Mobile adjustments */
@media (max-width: 950px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  header h1 {
    font-size: 24px;
  }

  header .logo {
    width: 45px;
    height: auto;
  }

  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .navbar-nav {
    text-align: center;
  }
}
