/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

:root {
  --primary: #e69d2b;
  --secondary: #c62828;
  --black: #000;
  --light-black: #1f1f1f;
  --gray: #616368;
  --light-gray: #f6f6f6;
  --white: #fff;
  --error: #ff0000;
  --success: #4caf50;
  --transition: all 0.3s ease-in-out;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}
p {
  margin: 0 0 1rem;
}
a,
a:hover,
button,
button:hover,
i,
h1,
h2,
h3,
h4,
h5,
h6,
li {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

i {
  transition: unset;
}

:focus {
  outline: 0px !important;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  background-image: -webkit-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
}
ul.slick-dots {
  left: 0;
  right: 0;
  margin: 0 auto !important;
  bottom: -5% !important;
  z-index: 9;
}

ul.slick-dots li {
  background: #bc8f8f;
  border-radius: 5px !important;
  width: 1rem;
  height: 5px;
  opacity: 0.2;
}

ul.slick-dots li.slick-active {
  background: var(--primary);
  width: 4rem !important;
  opacity: 1;
}

ul.slick-dots button {
  display: none;
}
@media (max-width: 767px) {
  p#breadcrumbs {
    font-size: 14px !important;
  }
}

/* =========================================
   BLOG POST CONTENT
   Main Wrapper: .post-containter
========================================= */

.post-containter {
  width: 100%;
  max-width: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: #333;
  overflow-wrap: break-word;
}

/* =========================================
   PARAGRAPHS
========================================= */

.post-containter p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.75;
}

/* =========================================
   HEADINGS
========================================= */

.post-containter h1,
.post-containter h2,
.post-containter h3,
.post-containter h4,
.post-containter h5,
.post-containter h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--secondary);
  margin-top: 45px;
  margin-bottom: 20px;
}

.post-containter h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 25px;
}

.post-containter h2 {
  font-size: 36px;
}

.post-containter h3 {
  font-size: 28px;
}

.post-containter h4 {
  font-size: 24px;
}

.post-containter h5 {
  font-size: 21px;
}

.post-containter h6 {
  font-size: 18px;
}

/* =========================================
   BOLD / ITALIC / EMPHASIS
========================================= */

.post-containter strong,
.post-containter b {
  font-weight: 700;
}

.post-containter em,
.post-containter i {
  font-style: italic;
}

/* =========================================
   LINKS
========================================= */

.post-containter a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.post-containter a:hover {
  color: var(--primary);
}

/* =========================================
   UNORDERED & ORDERED LISTS
========================================= */

.post-containter ul,
.post-containter ol {
  margin: 20px 0 30px;
  padding-left: 30px;
}

.post-containter ul {
  list-style-type: disc;
}

.post-containter ol {
  list-style-type: decimal;
}

.post-containter li {
  margin-bottom: 10px;
  padding-left: 5px;
  font-size: 18px;
  line-height: 1.7;
}

.post-containter li::marker {
  color: var(--primary);
  font-weight: 600;
}

/* Nested Lists */

.post-containter ul ul,
.post-containter ol ol,
.post-containter ul ol,
.post-containter ol ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* =========================================
   BLOCKQUOTE
========================================= */

.post-containter blockquote {
  margin: 35px 0;
  padding: 30px 35px;
  border-left: 4px solid var(--primary);
  background-color: #f5f5f2;
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--secondary);
}

.post-containter blockquote p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

/* =========================================
   IMAGES
========================================= */

.post-containter img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 20px;
  margin: 30px 0;
}

/* =========================================
   IMAGE CAPTIONS
========================================= */

.post-containter figure {
  margin: 35px 0;
}

.post-containter figure img {
  margin: 0;
}

.post-containter figcaption {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
  text-align: center;
  color: #777;
}

/* =========================================
   TABLE
========================================= */

.post-containter table {
  width: 100%;
  border-collapse: collapse;
  margin: 35px 0;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  border: 1px solid #ddd;
}

.post-containter th,
.post-containter td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #ddd;
}

.post-containter th {
  font-weight: 600;
  color: var(--primary);
  background-color: #f5f5f2;
}

.post-containter td {
  background-color: #fff;
}

/* =========================================
   HORIZONTAL RULE
========================================= */

.post-containter hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 45px 0;
}

/* =========================================
   BUTTON / CTA LINKS
========================================= */

.post-containter p a[href*="Request"],
.post-containter a.cta-button {
  display: inline-block;
  margin: 10px 0 25px;
  padding: 14px 28px;
  border-radius: 4px;
  background-color: var(--secondary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-containter p a[href*="Request"]:hover,
.post-containter a.cta-button:hover {
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
}

/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 1024px) {
  .post-containter {
    font-size: 17px;
    line-height: 1.7;
  }

  .post-containter p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .post-containter h1 {
    font-size: 40px;
  }

  .post-containter h2 {
    font-size: 32px;
  }

  .post-containter h3 {
    font-size: 26px;
  }

  .post-containter h4 {
    font-size: 22px;
  }

  .post-containter h5 {
    font-size: 19px;
  }

  .post-containter h6 {
    font-size: 17px;
  }

  .post-containter li {
    font-size: 17px;
  }

  .post-containter blockquote {
    padding: 25px 30px;
    font-size: 20px;
  }

  .post-containter img {
    max-height: 500px;
    border-radius: 16px;
  }

  .post-containter th,
  .post-containter td {
    padding: 13px 15px;
  }
}

/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 767px) {
  .post-containter {
    font-size: 16px;
    line-height: 1.65;
  }

  .post-containter p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .post-containter h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .post-containter h2 {
    font-size: 28px;
    line-height: 1.25;
    margin-top: 35px;
  }

  .post-containter h3 {
    font-size: 24px;
    margin-top: 30px;
  }

  .post-containter h4 {
    font-size: 21px;
  }

  .post-containter h5 {
    font-size: 18px;
  }

  .post-containter h6 {
    font-size: 16px;
  }

  .post-containter ul,
  .post-containter ol {
    margin: 15px 0 25px;
    padding-left: 25px;
  }

  .post-containter li {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 8px;
  }

  .post-containter blockquote {
    margin: 30px 0;
    padding: 20px 20px;
    font-size: 18px;
    line-height: 1.55;
  }

  .post-containter img {
    max-height: 400px;
    margin: 25px 0;
    border-radius: 12px;
  }

  .post-containter figure {
    margin: 25px 0;
  }

  .post-containter figcaption {
    font-size: 13px;
  }

  /* Responsive Table */

  .post-containter table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 14px;
    margin: 25px 0;
  }

  .post-containter th,
  .post-containter td {
    padding: 11px 13px;
  }

  .post-containter hr {
    margin: 35px 0;
  }

  .post-containter p a[href*="Request"],
  .post-containter a.cta-button {
    width: 100%;
    padding: 13px 20px;
    text-align: center;
    font-size: 15px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .post-containter {
    font-size: 15px;
  }

  .post-containter p {
    font-size: 15px;
  }

  .post-containter h1 {
    font-size: 28px;
  }

  .post-containter h2 {
    font-size: 25px;
  }

  .post-containter h3 {
    font-size: 22px;
  }

  .post-containter h4 {
    font-size: 19px;
  }

  .post-containter h5 {
    font-size: 17px;
  }

  .post-containter h6 {
    font-size: 15px;
  }

  .post-containter li {
    font-size: 15px;
  }

  .post-containter blockquote {
    padding: 18px 16px;
    font-size: 17px;
  }

  .post-containter img {
    border-radius: 10px;
  }
}

/* ==========================
	GLOBAL STYLES START  
=============================*/

/* ===============================
	HEAD & BUTTON STYLES START  
==================================*/

.section {
  position: relative;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
@media (max-width: 767px) {
  .section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

.swiper-pagination {
  display: none;
  margin-top: 2rem;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 1rem !important;
  height: 5px !important;
  transition: var(--transition);
  border-radius: 0 !important;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 4rem !important;
  border-radius: 5px !important;
}

.swiper-pagination .swiper-pagination-bullet {
  background: #bc8f8f;
}
@media (max-width: 767px) {
  .elementor-swiper-button {
    display: none !important;
  }
  .swiper-pagination {
    display: block;
  }
}

.elementor-heading-title span {
  color: var(--primary);
}

.primary-btn a {
  background: var(--secondary) !important;
  padding: 20px 52px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 4px;
  text-transform: uppercase;
}
.primary-btn a:hover {
  background: var(--primary) !important;
}

@media (max-width: 767px) {
  .primary-btn a {
    padding: 16px 33px;
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .bg-fixed {
    background-attachment: fixed;
  }
}

/* ===============================
	HEAD & BUTTON STYLES END  
==================================*/

/* ===============================
	HOME STYLES START  
==================================*/


@media (min-width: 991px) {
.homebanner,
.footer-section,
.hiw-shape,
.truck-right,
.truck-left,
.hiw-shape-about,
.innerBanner {
    position: relative;
}

.homebanner:after {
    position: absolute;
    content: '';
    border-bottom: 40px solid #fffbf8;
    border-left: 250px solid transparent;
    border-right: 200px solid transparent;
    height: 0;
    width: 100%;
    z-index: 9;
    bottom: 0;
    top: unset;
    left: 0;
}
.innerBanner:after {
    position: absolute;
    content: '';
    border-bottom: 40px solid #fff;
    border-left: 250px solid transparent;
    border-right: 200px solid transparent;
    height: 0;
    width: 100%;
    z-index: 9;
    bottom: 0;
    top: unset;
    left: 0;
}
.hiw-shape:before {
    position: absolute;
    content: '';
    border-top: 50px solid #fffbf8;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    height: 0;
    width: 100%;
    z-index: 9;
    left: 0;
}
.hiw-shape:after,
.hiw-shape-about:after {
    position: absolute;
    content: '';
    border-bottom: 50px solid #fff;
    border-left: 250px solid transparent;
    border-right: 200px solid transparent;
    height: 0;
    width: 100%;
    z-index: 9;
    bottom: 0;
    top: unset;
    left: 0;
}
.hiw-shape-about:after {
    border-bottom: 50px solid #fffbf8;
}

.footer-section:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-bottom: 50px solid #131313;
    border-right: 300px solid transparent;
    z-index: 9;
    top: -50px;
    left: 0;
}

.footer-section:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-bottom: 50px solid #131313;
    border-left: 300px solid transparent;
    z-index: 9;
    top: -50px;
    right: 0;
}


.truck-right:after {
    position: absolute;
    content: '';
    background-image: url('https://ah.dev-version.com/junkblitz/wp-content/uploads/2026/09/trash-truck.webp');
    background-repeat: no-repeat;
    background-size: contain;
    width: 371px;
    height: 170px;
    right: 0;
    bottom: 0;
}

.truck-left:after {
    position: absolute;
    content: '';
    background-image: url('https://ah.dev-version.com/junkblitz/wp-content/uploads/2026/09/trash-truck.webp');
    background-repeat: no-repeat;
    background-size: contain;
    width: 371px;
    height: 170px;
    left: -50px;
    bottom: 0;
    transform: scaleX(-1);
}

}
/* ===============================
	HOME STYLES END  
==================================*/



@media (max-width: 767px) {
  /* the content-boxes wrapper becomes the horizontal swipe track */
  .MobileSlider {
    display: flex !important;
    justify-content: start;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 14px;

    /* show + style the scrollbar (Firefox) */
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(0,0,0,0.1);
  }

  /* show + style the scrollbar (Chrome/Safari/Edge) */
  .MobileSlider::-webkit-scrollbar {
    height: 6px;
    display: block;
  }
  .MobileSlider::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
  }
 .MobileSlider::-webkit-scrollbar-thumb {
    background: var(--primary);   /* your accent color */
    border-radius: 10px;
  }

  /* each content box becomes a slide */
  .MobileSlider .e-con {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    scroll-snap-align: center;
  }


}
