.layout_padding {
    padding: 90px 0px 0px 0px;  /*90px*/
  }

  .heading_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .heading_container.heading_center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }



/*---------------------------------------
  SERVICES           
-----------------------------------------*/

  .portfolio_section .owl-item.active.center .box .detail-box {
    opacity: 1;
    visibility: visible;
  }


  .service_section {
	text-align: center;
  position: relative;
  margin-bottom: 40px;
  }

  .service_section h2 {
	font-size: 36px;
	font-weight: 600;
	color: #1e1e1e;
   }

  .service_section em {
	font-style: normal;
	color: #da7426;
   }
  
  .service_section .box {
    margin-top: 30px;  /*30px*/
    text-align: center;
    -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
    padding: 25px 15px;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .service_section .box .img-box {
    width: 65px;
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .service_section .box .img-box img {
    max-height: 100%;
    max-width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  
  .service_section .box .detail-box {
    margin-top: 15px;
  }
  
  .service_section .box .detail-box h5 {
    font-weight: bold;
  }
  
  .service_section .box .detail-box p {
    margin: 0;
  }

  .service_section .box:hover h5,
  .service_section .box:hover p {
    color: #ffffff;
  } 
   
  .service_section .box:hover {
    background-color: #da7426;
    color: #ffffff;
  }
  
  .service_section .box:hover .img-box img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  
  .service_section .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 45px;
   
  }
  
  .service_section .btn-box a {
	background-color: transparent;
	color: #fff;
	background-color: #da7426;
	border: none;
	font-size: 13px; 
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
  }
  
  .service_section .btn-box a:hover {
    background-color: transparent;
    color: #da7426;
  } 



/* ---------------------------------------
   TIMELINE (final)
   - Grey track = first icon center → last icon center
   - Orange fluid fills on scroll (driven by timeline.js)
----------------------------------------- */

/* ===== TIMELINE (final) ===== */
:root {
  --primary-color: #da7426;
  --secondary-color: #1e1e1e;
  --white-color: #ffffff;
}

.fun-facts { position: relative; z-index: 0; }
.timeline-container { position: relative; overflow: visible; }

/* Vertical bar from first → last icon center (JS sets top/height) */
.timeline-container .list-progress{
  position:absolute; left:52px; top:0; width:8px;
  z-index: 20;
}
.timeline-container .list-progress .track{
  position:absolute; left:0; top:0; width:8px; height:100%;
  background: #2a2a2a;
  border-radius:4px;
}
.timeline-container .list-progress .progress{
  position:absolute; left:0; top:0; width:8px; height:0;  /* top anchor (fills downward) */
  background: var(--primary-color);
  border-radius:4px;
  transition: height .25s ease;
}

/* Timeline list/items */
.timeline-container .vertical-scrollable-timeline{
  list-style:none; position:relative; padding-left:0;
  overflow:visible; z-index:30;
}
.timeline-container .vertical-scrollable-timeline li{
  position:relative; padding:20px 0 65px 145px;
}
.timeline-container .vertical-scrollable-timeline li:last-child{ padding-bottom:0; }
.timeline-container .vertical-scrollable-timeline li p{ line-height:40px; }
.timeline-container .vertical-scrollable-timeline li p:last-child{ margin-bottom:0; }

/* Dots */
.timeline-container .vertical-scrollable-timeline li .icon-holder{
  position:absolute; left:0; top:0;
  width:104px; height:104px;
  display:flex; align-items:center; justify-content:center;
  background: var(--secondary-color);
  border-radius:50%;
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
  z-index: 40;
  isolation: isolate;              /* keep child z-order predictable */
}
.timeline-container .vertical-scrollable-timeline li .icon-holder::before{
  content:""; position:absolute;
  width:80px; height:80px;
  border:4px solid #fff; background: var(--secondary-color);
  border-radius:50%;
  z-index: 1;                      /* behind the glyph */
}
.timeline-container .vertical-scrollable-timeline li .icon-holder i{
  font-size:25px; color: var(--white-color);
  position: relative; z-index: 2;  /* above the ring */
}

/* Dot goes orange once passed */
.timeline-container .vertical-scrollable-timeline li.active .icon-holder,
.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before{
  background: var(--primary-color);
}

/* Mobile tightening so bar aligns with icon centers */
@media (max-width: 768px){
  .timeline-container .vertical-scrollable-timeline li{ padding:15px 0 50px 135px; }
  .timeline-container .list-progress{ left:48px; }
}


/*---------------------------------------
  FAQs              


  .faq-section .accordion-item {
    border: 0;
  }
  
  .faq-section .accordion-button {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-semibold);
  }
  
  .faq-section .accordion-item:first-of-type .accordion-button {
    border-radius: var(--border-radius-large);
  }
  
  .faq-section .accordion-button:not(.collapsed) {
    border-radius: var(--border-radius-large);
    box-shadow: none;
    color: var(--primary-color);
  }
  
  .faq-section .accordion-body {
    color: var(--p-color);
    font-size: var(--btn-font-size);
    line-height: 40px;
  }

----------------------------*/

.testimonials {
  padding: 60px;
  margin-top: 40px;
  background-color: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 2.5rem;
  color: #1e1e1e;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.section-heading span {
  font-size: 1rem;
  color: #555;
}

/* Image Styling */
img.img-fluid {
  border-radius: 8px;
}

/* Accordion Styles */

.faq-section,
.faq-section .accordion {
  position: relative;
  z-index: 2;
}

.accordion-button {
  background-color: #f57c00;
  color: #fff;
  font-weight: bold;
  border: none;
  outline: none;
  padding: 15px;
  text-align: left;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #d66a00;
  color: #fff;

}

.accordion-button:hover {
  background-color: #FF9F66;  /*e37200*/
}

.accordion-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;

}

.accordion-body {
  background-color: #fff;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  padding: 20px;
  border-top: 1px solid #ddd;
  border-radius: 0 0 5px 5px;
}

.accordion-header {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-heading h2 {
      font-size: 2rem;
  }

  .accordion-button {
      font-size: 0.9rem;
      padding: 10px;
  }

  .accordion-body {
      font-size: 0.9rem;
  }
}
