html, body {
   width: 100%;
  overflow-x: clip;
}


/* logo */
.site-logo {
  width: 250px;
  height: 35px;
  object-fit: contain;
  transition: transform 0.3s ease;
}


.post-content p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* read more */
.btn-readmore {
  background-color: #f58226;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-readmore i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.btn-readmore:hover {
  background-color: #e16e10; /* darker hover color */
  color: #fff;
  text-decoration: none;
}

.btn-readmore:hover i {
  transform: translateX(3px); /* arrow moves slightly right on hover */
}




/* === Single Post Styling === */
.single-post .container { 
  border-radius: 8px;
  padding: 2rem;
}

.single-post article {
  background-color: #ffffff; /* pure white background for content */
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.single-post h1 {
  font-size: 2rem;
  font-weight: 700;
}

.single-post .post-content {
  line-height: 1.8;
  color: #333;
}

.single-post .post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.single-post .border-top {
  border-color: #e5e5e5 !important;
}

/* === Comments Section === */
.comments-area {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 2.5rem;
}

.comments-area h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 0.5rem;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment-list li {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.comment-author {
  font-weight: 600;
  color: #222;
}

.comment-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.comment-content {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.comment-reply-link {
  font-size: 0.85rem;
  color: #0d6efd;
  text-decoration: none;
}

.comment-reply-link:hover {
  text-decoration: underline;
}

/* === Comment Form === */
.comment-respond {
  margin-top: 2.5rem;
}

.comment-respond label {
  font-weight: 500;
  color: #444;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.comment-respond textarea {
  min-height: 120px;
}

.comment-respond input[type="submit"] {
  background-color: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.comment-respond input[type="submit"]:hover {
  background-color: #084298;
}

/* === Optional: Two-column form fields for desktop === */
@media (min-width: 768px) {
  .comment-form-author,
  .comment-form-email {
    width: 48%;
    display: inline-block;
  }

  .comment-form-author {
    margin-right: 4%;
  }
}



/* Larger thumbnails */
.thumb-wrap img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain; /* optional */
}

/* Card hover + spacing */
article.card {
  transition: all 0.3s ease;
}
article.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Text responsiveness */
@media (max-width: 767.98px) {
  .thumb-wrap img {
    height: auto;
  }
}



/* Blog Listing */
.pagination .page-numbers {
  margin: 0 5px;
  padding: 8px 14px;
  border-radius: 6px;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.pagination .current {
  background: #007bff;
  color: #fff;
}

.pagination .page-numbers:hover {
  background: #0056b3;
  color: #fff;
}

h1.fw-bold {
  font-size: 1.8rem;
}



/* ===============================
   PURE CSS MEGA MENU
   =============================== */
.nav-link.dropdown-toggle::after {
  display: none !important;
}


/* === MEGA MENU (600px centered) === */
.mega-dropdown {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  width: 550px;             /* ✅ fixed width */
  padding: 1.5rem 2rem;
  background: #fff;
  border-top: 3px solid var(--bs-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 12px 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 1050;
}

/* show on hover */
.mega-dropdown:hover > .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* item styles */
.mega-item {
  display: block;
  text-align: center;
  padding: .5rem;
  border-radius: 8px;
  transition: all .2s ease;
  background: #f8f9fa;
}
.mega-item:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
}
.mega-img-wrap img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform .25s ease;
}
.mega-item:hover .mega-img-wrap img {
  transform: scale(1.08);
}

.btn-call {
  background-color: #f58226;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border: none;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-call:hover {
  background-color: #e16e10; /* Slightly darker on hover */
  color: #fff;
  text-decoration: none;
}

.btn-call i {
  font-size: 1rem;
}

/* mobile: show as normal stacked block */
@media (max-width: 991.98px) {
  .mega-menu {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 1rem;
  }
}

/* === SIMPLE DROPDOWN MENU === */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transform: translateY(10px);
  transition: all .25s ease;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  min-width: 200px;
  z-index: 1050;
}

.dropdown-item {
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  transition: background .2s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}


/* === LOCATION MEGA MENU === */
.nav-item.dropdown.position-static:hover .mega-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  background: #fff;
  border-radius: 10px;
  z-index: 1050;
}

.mega-item img.location-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.mega-item:hover img.location-thumb {
  transform: scale(1.08);
}

.mega-item span {
  display: block;
  color: #333;
  font-size: 0.9rem;
}

.mega-menu .container {
  padding: 0;
}

.mega-menu .row {
  justify-content: center;
}

.mega-menu .col-6 {
  transition: transform 0.2s ease;
}

.mega-menu .col-6:hover {
  transform: translateY(-4px);
}


/* Mobile navbar toggle fixes */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Ensure dropdown works on hover (desktop) but click (mobile) */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu,
  .mega-dropdown:hover > .mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 991.98px) {
  .mega-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 1rem 0 !important;
  }
  .mega-item img,
  .location-thumb {
    width: 60px;
    height: 60px;
  }
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    border: none;
    box-shadow: none;
  }
}


/* Mobile Menu */

/* ===============================
   PURE CSS MOBILE SLIDE MENU
   =============================== */
.mobile-menu-wrap {
  display: none;
}

/* Hide default desktop menu on small screen */
@media (max-width: 991px) {
  #mainNav {
    display: none !important;
  }
  .mobile-menu-wrap {
    display: block;
  }
}

/* Hamburger Button */
.menu-btn {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 35px;
  height: 25px;
  cursor: pointer;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.4s;
  content: "";
}
.menu-btn span::before {
  top: -8px;
}
.menu-btn span::after {
  top: 8px;
}

/* Animate to X on click */
#menu-toggle:checked + .menu-btn span {
  background: transparent;
}
#menu-toggle:checked + .menu-btn span::before {
  transform: rotate(45deg);
  top: 0;
}
#menu-toggle:checked + .menu-btn span::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
  transition: left 0.4s ease;
  z-index: 1100;
  overflow-y: auto;
  padding-top: 70px;
}

/* Slide in when toggled */
#menu-toggle:checked ~ .mobile-menu {
  left: 0;
}

/* Nav Styles */
.mobile-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0 1rem;
}
.mobile-menu nav ul li {
  border-bottom: 1px solid #eee;
}
.mobile-menu nav ul li a,
.mobile-menu nav ul li label {
  display: block;
  padding: 0.6rem 0;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.mobile-menu nav ul li a:hover,
.mobile-menu nav ul li label:hover {
  color: #f58226;
}

/* Sub Menu */
.has-sub input {
  display: none;
}
.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 1rem;
}
.has-sub input:checked ~ .sub-menu {
  max-height: 500px;
}

/* Call Button */
.call-btn {
  display: block;
  background: #f58226;
  color: #fff !important;
  margin: 1rem 0;
  text-align: center;
  border-radius: 25px;
  padding: 0.8rem;
  font-weight: 600;
  transition: background 0.3s;
}
.call-btn:hover {
  background: #e16e10;
}

/* Hide checkbox itself */
#menu-toggle {
  display: none;
}

.mobile-menu .has-sub label {
  position: relative;
  padding-right: 25px;
}

/* Label setup */
.mobile-menu .has-sub label {
  position: relative;
  padding-right: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Insert Bootstrap chevron-down icon */
.mobile-menu .has-sub label::after {
  content: "\f282"; /* bi-chevron-down (Bootstrap Icons) */
  font-family: "bootstrap-icons";
  font-size: 0.9rem;
  color: #555;
  transition: transform 0.3s ease;
}

/* Rotate arrow when opened */
.mobile-menu .has-sub input:checked + label::after {
  transform: rotate(180deg);
  color: #f58226;
}

/* Submenu styling */
.mobile-menu .sub-menu {
  background: #fafafa;
  border-left: 3px solid #f58226;
  margin-bottom: 0.3rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.mobile-menu .sub-menu li a {
  padding: 0.6rem 0.8rem;
  display: block;
  font-size: 0.95rem;
  color: #444;
  border-bottom: 1px solid #eee;
}

.mobile-menu .sub-menu li a:hover {
  background: #f0f0f0;
}

/* Smooth expand */
.has-sub input:checked ~ .sub-menu {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  max-height: 400px;
}


@media (max-width: 991px) {
  .call-btn {
    border-radius: 8px;
  }
}





.card-title a:hover {
  color: #0d6efd;
}

/* Sidebar styling */
.sidebar {
  position: relative;
}

/* Sticky form */
.sticky-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 90px; /* distance from top */
}

/* Card & form styling */
.sidebar-form .form-control, .home-mobile-form .form-control {
  border-radius: 8px;
  font-size: 0.9rem;
}

.sidebar-form .btn {
  border-radius: 8px;
  font-weight: 600;
}

.form-icon-title {
  font-size: 10px;
  font-weight: bold;
}

.icon-img {
  width: 40px;
}

.custom-input input {
   font-size: 1.6rem;
    height: 2.5rem;
    border-radius: .6rem;
    margin-bottom: .2rem;
    cursor: pointer;
}

/* === Orange Gradient Button === */
button.button {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #fe7a01;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
  background-image: linear-gradient(to top, #fe7a01 0%, #fe7a01 100%);
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.4);
}

button.button:hover {
  filter: brightness(1.1);
}

/* Spinner inside the button */
button.button i.fa-spinner {
  margin-right: 8px;
}

/* Button text */
span#hideen-text {
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

/* Shine effect */
button.button span.shine {
  position: absolute;
  top: -24px;
  left: -280px;
  height: 207px;
  width: 47px;
  background: hsla(0, 0%, 100%, 0.3);
  opacity: 0.8;
  transform: rotate(35deg);
  animation: shine 4s linear infinite;
  box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.4);
  z-index: 1;
}

button.button:hover {
	-webkit-box-shadow: inset 0 1px 10px 0 rgba(255, 255, 255, .4), 0 3px 3px 0 rgba(0, 0, 0, .4);
	-moz-box-shadow: inset 0 1px 10px 0 rgba(255, 255, 255, .4), 0 3px 3px 0 rgba(0, 0, 0, .4);
	box-shadow: inset 0 1px 10px 0 rgba(255, 255, 255, .4), 0 3px 3px 0 rgba(0, 0, 0, .4)
}

button.button:active {
	-webkit-box-shadow: inset 0 1px 15px 0 rgba(0, 0, 0, .4), inset 0 1px 1px 1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(255, 255, 255, .5);
	-moz-box-shadow: inset 0 1px 15px 0 rgba(0, 0, 0, .4), inset 0 1px 1px 1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(255, 255, 255, .5);
	box-shadow: inset 0 1px 15px 0 rgba(0, 0, 0, .4), inset 0 1px 1px 1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(255, 255, 255, .5)
}

.review_wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding-top: 7px;

}

.review_item {
    font-size: 13px;
    color: #000;
    text-align: center;
}

.review_item .star-rating{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: .3px;
}

.star-rating img {
    position: relative;
    width: 45px;
    top: -0.5px ;
}

span.rev_rating {
    font-size: 18px;
}

.review_item .star-rating-text, .total-customers-text {
    position: relative;
    font-size: 14px;
    color: #404040;
    opacity: 85%;
    top: -0.5px;
    display: inline-block;
}

.sepratervertical {
    background-color: grey;
    width: 1px;
    height: 74px;
    border: 1px solid grey;
    opacity: 1;
}

.review_item {
    font-size: 13px;
    color: #000;
    text-align: center;
}

.review_item .star-rating, .total-customers {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: .3rem;
}

.review_item .star-rating-text, .total-customers-text {
    position: relative;
    font-size: 14px;
    color: #404040;
    opacity: 85%;
    top: -0.5px;
    display: inline-block;
}

img.icon_form_svg {
    width: 35px;
}

.form_icons_name {
    font-size: 13px;
    line-height: 15px;
    margin-top: 9px;
    font-weight: 400;
    color: #000;
    text-align: center;
}

/* Keyframes for shine animation */
@keyframes shine {
  0% {
    left: -280px;
    opacity: 0;
  }
  50% {
    left: 100%;
    opacity: 0.5;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}


/* Responsive behavior */
@media (max-width: 991.98px) {
  .sticky-sidebar {
    position: static;
    margin-top: 2rem;
  }
}


/* === Footer === */
.footer {
  background-color: #111;
  color: #ddd;
  font-size: 0.95rem;
}

.footer a {
  color: #fff;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #f58226;
}

.footer-logo img {
  max-width: 180px;
}

.footer h5,
.footer h6 {
  color: #fff;
}

.footer-social a {
  font-size: 1.25rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  color: #f58226;
  transform: translateY(-3px);
}

.footer-map iframe {
  border-radius: 8px;
}

.footer .mob-number a {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.footer .mob-number a:hover {
  color: #f58226;
}

.footer .mail_a:hover {
  color: #f58226;
}

.footer .footer-social a:hover {
  color: #f58226 !important;
}

.footer_add_h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
}

.footer_add_h5 i {
  font-size: 1.2rem;
  color: #f58226;
}

.footer_location_p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-icon {
  color: #f58226;
}


@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

