body {
  font-family: 'Roboto', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 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 h2 {
  position: relative;
  font-weight: bold;
}

.heading_container h2 span {
  color: #f07b26;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* ===============================
   Header / Navbar Polished
================================ */

.header_section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
}

/* HEADER BOTTOM */
.header_section .header_bottom {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  /* Logo left, nav right */
  padding: 0 2rem;
  /* consistent horizontal padding */
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

/* NAV CONTAINER */
.custom_nav-container {
  padding: 0;
  width: 100%;
}

/* LOGO */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  width: 50px;
  height: auto;
}

.navbar-brand div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-brand div span:first-child {
  font-weight: 700;
  font-size: 18px;
  color: #ff8c00;
  text-shadow: 0 0 6px rgba(255, 140, 0, 0.6);
}

.navbar-brand div span:last-child {
  font-size: 12px;
  font-weight: 500;
  color: #ffbb66;
  letter-spacing: 0.5px;
}

/* NAV LINKS - DESKTOP */
.custom_nav-container .navbar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  /* push nav to the right */
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  color: #000000;
  font-weight: 500;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link,
.custom_nav-container .navbar-nav .nav-item:hover .nav-link {
  color: #ffffff;
  background-color: #000000;
}

/* ===============================
   HAMBURGER / TOGGLER
================================ */
/* Hamburger / Toggler */
.custom_nav-container .navbar-toggler {
  outline: none;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

/* Middle bar */
.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #000;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

/* Top & bottom bars */
.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 4px;
  background-color: #000;
  border-radius: 2px;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.custom_nav-container .navbar-toggler span::before {
  top: -10px;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

/* Toggle animation - form perfect X */
.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  background-color: transparent;
  /* hide middle bar */
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}


/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 992px) {

  /* Stack header vertically */
  .header_section .header_bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
  }

  /* Collapse nav menu */
  .custom_nav-container .navbar-collapse {
    display: none;
    width: 100%;
    text-align: center;
    background-color: #ffffff;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .custom_nav-container .navbar-collapse.show {
    display: block;
  }

  /* Stack nav links */
  .custom_nav-container .navbar-nav {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin: 0;
  }

  .custom_nav-container .navbar-nav .nav-item {
    margin: 0;
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 10px 0;
    width: 100%;
  }
}

/* ===============================
   MOBILE BRAND COMPACTING
================================ */

@media (max-width: 991.98px) {

  /* Logo smaller */
  .navbar-brand img {
    max-width: 70px !important;
  }

  /* Main brand text */
  .navbar-brand span:first-child {
    font-size: 20px !important;
    line-height: 1.1;
  }

  /* Tagline text */
  .navbar-brand span:last-child {
    font-size: 11px !important;
    line-height: 1.1;
  }

  /* Reduce spacing between logo & text */
  .navbar-brand {
    gap: 6px !important;
  }
}

/* ===============================
   PRODUCT DROPDOWN (CLEAN)
================================ */

.product-dropdown {
  display: flex;
  align-items: center;
  position: relative;
}

/* Dropdown menu */
.product-dropdown .dropdown-menu {
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 8px;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: dropdownFade 0.25s ease;
}

/* Animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown items */
.product-dropdown .dropdown-item {
  font-weight: 500;
  padding: 10px 20px;
  color: #000;
  transition: all 0.25s ease;
}

.product-dropdown .dropdown-item:hover {
  background-color: #000;
  color: #fff;
}

/* Product text link */
.product-dropdown>.product-link {
  padding-right: 6px;
}

/* Caret button */
.product-dropdown .dropdown-toggle-split {
  padding: 5px 10px;
  color: #000;
}

/* Remove default Bootstrap caret spacing */
.product-dropdown .dropdown-toggle-split::after {
  margin-left: 0;
}

/* Unified hover styling */
.product-dropdown:hover>.product-link,
.product-dropdown:hover .dropdown-toggle-split {
  background-color: #000;
  color: #fff;
  border-radius: 5px;
}

/* Desktop hover */
@media (min-width: 992px) {
  .product-dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile behavior */
@media (max-width: 992px) {
  .product-dropdown {
    flex-direction: column;
    align-items: center;
  }

  .product-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-top: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }

  .product-dropdown .dropdown-item {
    padding: 10px 0;
  }
}

/* Kill Bootstrap dropdown gap */
.navbar .dropdown-menu {
  margin-top: 0 !important;
}

.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-menu {
  top: 100%;
  margin-top: 0 !important;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
  }
}


/* slider section */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* background-image: url(../images/slider-bg.jpg); */
  background-color: transparent;
  background-size: contain;
}

.slider_section .dot_design {
  position: absolute;
  width: 450px;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  z-index: 1;
}

.slider_section .dot_design img {
  width: 100%;
}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #252525;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #000;
}

.slider_section .detail-box p {
  color: #6d6d6d;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  margin-top: 45px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 165px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #f07b26;
  color: #000;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: #bc570d;
}

.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #000000;
  color: #000;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: black;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
}

.slider_section .carousel-indicators li {
  background-color: #000;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 23px;
  height: 23px;
  background-color: #f07b26;
}

.slider_section {
  width: 100%;
  position: relative;
  z-index: 1;
}


.slider_section .carousel-item img {
  height: 600px;
  object-fit: cover;
}

/* ===============================
   Slider – Mobile Fix
================================ */
@media (max-width: 768px) {

  /* Remove flex behavior that causes vertical spacing */
  .slider_section {
    display: block;
    min-height: auto;
    padding: 0;
    margin: 0;
  }

  /* Let carousel define its own height */
  .slider_section #customCarousel1 {
    position: relative;
  }

  /* Fix carousel item sizing */
  .slider_section .carousel-item {
    height: auto;
  }

  .slider_section .carousel-item img {
    height: 60vh;
    /* responsive height */
    min-height: 300px;
    /* safety */
    width: 100%;
    object-fit: cover;
    display: block;
  }

  /* Reduce indicator spacing */
  .slider_section .carousel-indicators {
    margin-top: 10px;
  }

  /* Smaller indicators for mobile */
  .slider_section .carousel-indicators li {
    width: 10px;
    height: 10px;
  }

  .slider_section .carousel-indicators li.active {
    width: 14px;
    height: 14px;
  }
}

/* Carousel Text Overlay - Middle Left */
.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%) translateX(-30px);
  opacity: 0;
  transition: all 1s ease-out 0.5s;
  max-width: 45%;
  z-index: 5;
}

/* Active slide: show overlay */
.carousel-item.active .carousel-caption-custom {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

/* Text content wrapper */
.carousel-caption-custom .text-content {
  background: rgba(0, 0, 0, 0.5);
  /* dark semi-transparent */
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Accent line */
.carousel-caption-custom .accent-line {
  display: inline-block;
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, #f07b26, #ffbb66);
  margin-right: 15px;
  vertical-align: middle;
  border-radius: 2px;
}

/* Heading */
.carousel-caption-custom h2 {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  /* modern bold font */
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  vertical-align: middle;
  margin: 0;
}

/* Paragraph */
.carousel-caption-custom p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #ffd07b;
  margin-top: 10px;
  line-height: 1.4;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .carousel-caption-custom {
    max-width: 80%;
    left: 15px;
    transform: translateY(-50%) translateX(-15px);
  }

  .carousel-caption-custom h2 {
    font-size: 1.5rem;
  }

  .carousel-caption-custom p {
    font-size: 0.95rem;
  }

  .carousel-caption-custom .accent-line {
    height: 30px;
  }
}

/* ===============================
   Service / Product Section
================================ */

.service_section {
  position: relative;
  background: #f7e45b;
  overflow: hidden;
}

/* ===============================
   Floating Background Shapes
================================ */

.service_section .bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.service_section .shape-1 {
  width: 420px;
  height: 420px;
  background: #ffffff;
  top: -120px;
  left: -140px;
}

.service_section .shape-2 {
  width: 520px;
  height: 520px;
  background: #f8f8f7;
  bottom: -200px;
  right: -160px;
}

.service_section .shape-3 {
  width: 300px;
  height: 300px;
  background: #fff5c7;
  top: 40%;
  left: 60%;
  transform: translate(-50%, -50%);
}

/* Keep content above shapes */
.service_section .container {
  position: relative;
  z-index: 2;
}

/* ===============================
   Heading
================================ */

.service_section .heading_container h2 {
  text-transform: none;
}

/* ===============================
   Owl Carousel Equal Height
================================ */

.service-carousel .owl-stage {
  display: flex;
}

.service-carousel .owl-item {
  display: flex;
}

.service-carousel .item {
  display: flex;
  height: 100%;
  padding: 0 12px;
}

/* ===============================
   Card
================================ */

.service_section .box {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* ===============================
   Image
================================ */

.service_section .box .img-box {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 10px;
  flex-shrink: 0;
}

.service_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===============================
   Text Content
================================ */

.service_section .box .detail-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 15px;
}

.service_section .box .detail-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: none;
}

.service_section .box .detail-box p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service_section .box .detail-box a {
  margin-top: auto;
  font-weight: 600;
  color: #252525;
  text-decoration: none;
}

.service_section .box .detail-box a:hover {
  color: #f07b26;
}

/* ===============================
   Carousel Navigation
================================ */

.service-carousel .owl-nav {
  text-align: center;
  margin-top: 30px;
}

.service-carousel .owl-nav button {
  width: 44px;
  height: 44px;
  margin: 0 8px;
  border-radius: 50%;
  background: #f07b26 !important;
  color: #fff !important;
  font-size: 20px !important;
}

/* ===============================
   Full-width Carousel
================================ */

.service_section .service-carousel {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

@media (max-width: 768px) {
  .service_section .box .img-box {
    height: 200px;
  }

  .service-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 18px !important;
  }

  .service_section .service-carousel {
    width: 100%;
    margin-left: 0;
  }
}


/* ===============================
   About Section
================================ */
.about_section {
  position: relative;
  background: #fdcb91;
  padding: 100px 0;
  /* controls top & bottom spacing */
  overflow: hidden;
}

.about_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_section .img-box {
  position: relative;
}

.about_section .img-box img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.about_section .img-box::before,
.about_section .img-box::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  height: 70%;
  background-color: #f07b26;
  z-index: 3;
}

.about_section .img-box::before {
  left: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about_section .img-box::after {
  right: 0;
  z-index: 1;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.about_section .detail-box p {
  color: #1f1f1f;
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #f07b26;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: #bc570d;
}

/* ===============================
   About Background Shapes
================================ */

.about_section .about-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.about_section .shape-a {
  width: 420px;
  height: 420px;
  background: #fde7d2;
  top: -150px;
  right: -150px;
}

.about_section .shape-b {
  width: 300px;
  height: 300px;
  background: #fde7d2;
  bottom: -120px;
  left: -120px;
}

/* Keep content above shapes */
.about_section .container {
  position: relative;
  z-index: 2;
}

.about_section .shape-a {
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
}

.about_section .shape-b {
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
}

.about_section .detail-box p {
  color: #1f1f1f;
  margin-top: 15px;
  line-height: 1.7;
}

.about_section .detail-box {
  padding-right: 30px;
}

@media (max-width: 768px) {
  .about_section {
    padding: 70px 0;
  }

  .about_section .detail-box {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

/* ===============================
   ABOUT SECTION – POLISHED
   (Sub page only)
================================ */
.sub_page .about_section {
  position: relative;
  padding: 130px 0;
  background: #fdcb91;
  overflow: hidden;
  flex: 1;
}

/* Decorative shape */
.sub_page .about_section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: #f8e3ca;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}

.sub_page .about_section .container {
  position: relative;
  z-index: 1;
}

/* Text box */
.sub_page .about_section .detail-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sub_page .about_section .heading_container h2 {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.sub_page .about_section .heading_container h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ff8c00;
  display: block;
  margin-top: 8px;
}

/* About text */
.sub_page .about_section p {
  line-height: 1.8;
  color: #555;
  font-size: 15px;
}

/* Image box */
.sub_page .about_section .img-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.sub_page .about_section .img-box img {
  width: 100%;
  display: block;
}


/* ===============================
   Project Section
================================ */

.project_section {
  position: relative;
  background-color: #f8efa8;
  padding: 100px 0;
  overflow: hidden;

}

.project_section .heading_container {
  margin-bottom: 45px;
}

.project_section .heading_container h2 {
  color: #000;
  text-transform: uppercase;
  margin: 0;
}

/* ===============================
   PRODUCT PAGE – BASE (Sub Page)
================================ */
.sub_page .project_section {
  position: relative;
  padding: 80px 0;
  background: #f8f0a4;
  overflow: hidden;
  flex: 1;
}

/* soften background shapes */
.sub_page .project_section .bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  z-index: 0;
}

.sub_page .project_section .shape-1 {
  width: 280px;
  height: 280px;
  background: #ff8c00;
  top: -120px;
  left: -120px;
}

.sub_page .project_section .shape-2 {
  width: 200px;
  height: 200px;
  background: #000;
  bottom: 80px;
  right: -100px;
}

.sub_page .project_section .shape-3 {
  display: none;
  /* remove clutter */
}

.sub_page .project_section .container {
  position: relative;
  z-index: 1;
}

.sub_page .project_section .heading_container {
  text-align: center;
  margin-bottom: 40px;
}

.sub_page .project_section .heading_container h2 {
  font-weight: 700;
  font-size: 34px;
  position: relative;
}

.sub_page .project_section .heading_container h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #ff8c00;
  display: block;
  margin: 12px auto 0;
}

/* ===============================
   PRODUCT PDF VIEWER
================================ */

.product_pdf_wrapper {
  margin-top: 40px;
}

.pdf_card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Header */
.pdf_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: linear-gradient(135deg, #ff8c00, #ffb347);
  color: #fff;
}

.pdf_header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.pdf_download {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.pdf_download i {
  margin-right: 6px;
}

.pdf_download:hover {
  background: #fff;
  color: #ff8c00;
}

/* PDF iframe */
.pdf_viewer {
  width: 100%;
  height: 700px;
  background: #f4f4f4;
}

.pdf_viewer iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .pdf_viewer {
    height: 480px;
  }

  .pdf_header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ===============================
   FILTER BAR
================================ */
.sub_page .filter_box {
  background: #ffffff;
  padding: 18px 25px;
  border-radius: 10px;
  margin-bottom: 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.sub_page .filter_box h6 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.sub_page .owl-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sub_page .owl-filter-bar .item {
  padding: 6px 18px;
  border-radius: 20px;
  background: #f1f1f1;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sub_page .owl-filter-bar .item:hover,
.sub_page .owl-filter-bar .item.active {
  background: #ff8c00;
  color: #ffffff;
}

/* ===============================
   PRODUCT CARDS
================================ */
/* PRODUCT CARD – calm by default */
.sub_page .project_carousel .box {
  background: #f8f0a4;
  /* soft grey instead of white */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  /* remove floating feel */
  transition: all 0.35s ease;
  border: 1px solid #fff27c;
}

/* Elevation ONLY on hover */
.sub_page .project_carousel .box:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


/* Image */
.sub_page .project_carousel .img-box {
  background: #eaeaea;
  height: 220px;
}

.sub_page .project_carousel .img-box img {
  transition: transform 0.4s ease;
}

.sub_page .project_carousel .box:hover img {
  transform: scale(1.06);
}

/* ===============================
   PORTFOLIO CAROUSEL – BASE
================================ */

.sub_page .portfolio_carousel .box {
  background: transparent;
  border: none;
  box-shadow: none;
}

.sub_page .portfolio_carousel .detail-box {
  display: none;
}


/* ===============================
   IMAGE AREA
================================ */

/* Portfolio carousel – larger, more immersive images */
.sub_page .portfolio_carousel .img-box {
  position: relative;
  width: 100%;
  height: 70vh; /* 70% of viewport height */
  min-height: 480px; /* ensure minimum size on small screens */
  max-height: 700px; /* optional, prevent overly tall on large screens */
  overflow: hidden;
}

.sub_page .portfolio_carousel .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill box without distortion */
  display: block;
  transition: transform 6s ease; /* smooth zoom effect */
}

/* Subtle zoom on active slide */
.sub_page .portfolio_carousel .owl-item.active img {
  transform: scale(1.05);
}


/* ===============================
   IMAGE GRADIENT OVERLAY
================================ */

.sub_page .portfolio_carousel .img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}


/* ===============================
   LOCATION TEXT
================================ */

.sub_page .portfolio_carousel .location-overlay {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 10px;

  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Accent line */
.sub_page .portfolio_carousel .location-overlay::before {
  content: "";
  width: 30px;
  height: 2px;
  background: #ff8c00;
}

/* Animate in only for active slide */
.sub_page .portfolio_carousel .owl-item.active .location-overlay {
  opacity: 1;
  transform: translateY(0);
}


/* ===============================
   NAVIGATION (CLEAN & FIXED)
================================ */

.sub_page .portfolio_carousel .owl-stage-outer {
  overflow: hidden;
}

.sub_page .portfolio_carousel .owl-nav {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 3;

  display: flex;
  gap: 12px;
}

.sub_page .portfolio_carousel .owl-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.85) !important;
  color: #000 !important;
  border: none !important;

  transition: all 0.3s ease;
}

.sub_page .portfolio_carousel .owl-nav button:hover {
  background: #ff8c00 !important;
  color: #ffffff !important;
}

html, body {
  height: 100%;
}

.page-wrapper {
  min-height: calc(100vh - 40px); /* footer approx height */
  display: flex;
  flex-direction: column;
}


/* ===============================
   SECTION SPACING
================================ */

.sub_page .project_section {
  padding-bottom: 60px;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .sub_page .portfolio_carousel .img-box {
    height: 300px;
  }

  .sub_page .portfolio_carousel .location-overlay {
    left: 20px;
    bottom: 20px;
    font-size: 14px;
  }
}

/* Text */
.sub_page .project_carousel .detail-box {
  padding: 18px 20px;
}

.sub_page .project_carousel .detail-box h5 {
  font-weight: 600;
  color: #000000;
}

.sub_page .project_carousel .detail-box p {
  font-size: 14px;
  color: #000000;
  transition: color 0.3s ease;
}

.sub_page .project_carousel .box:hover .detail-box p {
  color: #000000;
}

/* ===============================
   OWL NAV
================================ */
/* CAROUSEL NAV – invisible by default */
.sub_page .project_carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 25px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

/* Show nav only when interacting */
.sub_page .project_section:hover .owl-nav {
  opacity: 1;
}

.sub_page .project_carousel .owl-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f2f3f5 !important;
  border: 1px solid #ddd !important;
  color: #444 !important;
  font-size: 18px !important;
  box-shadow: none;
  transition: all 0.3s ease;
}

.sub_page .project_carousel .owl-nav button:hover {
  background: #ff8c00 !important;
  color: #ffffff !important;
  border-color: #ff8c00 !important;
}

/* View More Button */
.project_section .view-more-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ff8c00;
  border: 2px solid #ff8c00;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.project_section .view-more-btn:hover {
  background-color: #ff8c00;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.35);
}

/* Align button nicely */
.project_section .detail-box {
  text-align: center;
}


/* ===============================
   Filter
================================ */

.project_section .filter_box {
  display: flex;
  align-items: center;
}

.project_section .filter_box h6 {
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  padding: 5px 10px;
  font-weight: normal;
}

.project_section .filter_box .owl-filter-bar {
  margin-left: 25px;
}

.project_section .filter_box .owl-filter-bar a {
  text-transform: uppercase;
  color: #252525;
  padding: 0 10px;
  font-size: 15px;
}

.project_section .filter_box .owl-filter-bar a.active {
  color: #f07b26;
}

/* ===============================
   Project Card
================================ */

.project_section .box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Image */
.project_section .box .img-box {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.project_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Detail */
.project_section .box .detail-box {
  padding: 15px;
  background-color: #f07b26;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
}

.project_section .box .detail-box h5 {
  font-weight: bold;
}

.project_section .owl-item.active.center .box .detail-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===============================
   Carousel Nav
================================ */

.project_section .project_carousel {
  margin-top: 45px;
  padding: 0 45px;
}

.project_section .project_carousel .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.project_section .project_carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: #252525;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}

.project_section .project_carousel .owl-nav button:hover {
  background-color: #f07b26;
}

/* ===============================
   Background Shapes
================================ */

.project_section .project-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.project_section .shape-left {
  width: 420px;
  height: 420px;
  background: #ffdd00;
  top: 120px;
  left: -160px;
  transform: rotate(25deg);
}

.project_section .shape-right {
  width: 520px;
  height: 520px;
  background: #ffdd00;
  bottom: -200px;
  right: -200px;
  transform: rotate(-20deg);
}

/* Keep content above shapes */
.project_section .container {
  position: relative;
  z-index: 2;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 768px) {
  .project_section {
    padding: 70px 0;
  }
}



/* ===============================
   Client Section
================================ */

.client_section {
  background-image: url(../images/about-image2.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.client_section .heading_container {
  margin-bottom: 45px;
  color: #ffffff;
}

.client_section .heading_container h2 {
  text-transform: uppercase;
  margin: 0;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.client_section .box .img-box {
  width: 125px;
  height: 125px;
  min-width: 125px;
  border-radius: 30px;
  overflow: hidden;
  margin-right: -65px;
  margin-top: 15px;
  position: relative;
}

.client_section .box .img-box img {
  width: 100%;
}

.client_section .box .client_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.client_section .box .client_info .client_name h5 {
  font-weight: bold;
  color: #252525;
  margin-bottom: 0;
  text-transform: uppercase;
}

.client_section .box .client_info .client_name h6 {
  margin-bottom: 0;
  color: #f07b26;
  font-weight: normal;
  font-size: 15px;
  text-transform: uppercase;
}

.client_section .box .client_info i {
  font-size: 24px;
  color: #f07b26;
}

.client_section .box p {
  margin-top: 25px;
}

.client_section .box .detail-box {
  background-color: #ffffff;
  padding: 45px 45px 45px 85px;
}

.client_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
}

.client_section .carousel-indicators li {
  background-color: #f07b26;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  opacity: 1;
}

.client_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
}

/* ===============================
   Why Us Section
================================ */

.why_us_section {
  padding: 90px 0;
}

.why_us_section .heading_container {
  margin-bottom: 50px;
}

.why_us_section .why_us_container {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.why_us_section .why_us_container .box {
  display: flex;
  align-items: center;
  /* center vertically */
}

/* Arrow / icon box */
.why_us_section .why_us_container .box .img-box {
  background-color: #f07b26;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  min-width: 160px;
  height: 100px;
  margin-right: 30px;
  clip-path: polygon(0 0,
      85% 0,
      85% 35%,
      100% 50%,
      85% 65%,
      85% 100%,
      0 100%);
  transition: background-color 0.3s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.why_us_section .why_us_container .box .img-box img {
  width: 42px;
}

/* Text box */
.why_us_section .why_us_container .box .detail-box {
  max-width: 520px;
}

.why_us_section .why_us_container .box .detail-box h5 {
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #1f1f1f;
}

/* Hover effect */
.why_us_section .why_us_container .box:hover .img-box {
  background-color: #252525;
}

/* ===============================
   Responsive Fix
================================ */
@media (max-width: 768px) {
  .why_us_section {
    padding: 70px 0;
  }

  .why_us_section .why_us_container .box {
    flex-direction: column;
    /* stack arrow above text */
    align-items: center;
    /* center horizontally */
    text-align: center;
  }

  .why_us_section .why_us_container .box .img-box {
    width: 140px;
    /* uniform mobile width */
    min-width: 140px;
    height: 90px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .why_us_section .why_us_container .box .detail-box {
    max-width: 100%;
  }

  .why_us_section .why_us_container .box .detail-box h5 {
    font-size: 16px;
    line-height: 1.45;
  }
}

/* ===============================
   Contact Section
================================ */
.contact_section {
  padding: 80px 0;
  background: #f9f9f9;
}

/* Section Divider under headings */
.section-divider {
  width: 80px;
  /* length of the line */
  height: 4px;
  /* thickness */
  margin: 10px auto 0;
  /* spacing: top 10px, bottom 0 */
  border-radius: 2px;
  /* rounded edges */
  background: linear-gradient(90deg, #ff8c00, #f07b26);
  /* gradient color */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  /* subtle shadow for depth */
}

.contact_section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 50px;
}

/* Grid Layout: 2x2 */
.contact_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

/* Map & Office Image */
.map_wrapper,
.office_wrapper {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.map_wrapper #mapid,
.office_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Info & Buttons */
.contact_info_box {
  font-size: 15px;
}

.contact_info_box a {
  color: #007bff;
  text-decoration: none;
}

/* Make email link black */
.contact_info_box a[href^="mailto:"] {
  color: #000000;
  /* black text */
  text-decoration: none;
}

.contact_info_box a[href^="mailto:"]:hover {
  text-decoration: underline;
}

/* Icon Buttons */
.contact_buttons .btn-icon {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 12px;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
  text-align: center;
}

.contact_buttons .btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact_buttons .btn-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact_info_box a:hover {
  text-decoration: underline;
}

.contact_buttons a {
  display: inline-block;
  margin-right: 10px;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-map {
  background: #007bff;
}

.btn-map:hover {
  background: #0056b3;
}

.btn-waze {
  background: #1dbf73;
}

.btn-waze:hover {
  background: #159f5e;
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff !important;
  /* text color */
  font-weight: 600;
  font-size: 16px;
  padding: 12px 25px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.btn-whatsapp i {
  color: #ffffff !important;
  /* ensures icon is white */
}

.btn-whatsapp:hover {
  background-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ===============================
   WeChat Inline Button (WhatsApp-like)
================================ */

.wechat-inline {
  position: relative;
  display: inline-block;
}

/* WeChat button – mirrors WhatsApp */
.btn-wechat {
  background-color: #07c160;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 25px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-wechat i {
  font-size: 18px;
}

/* Hover = same feel as WhatsApp */
.btn-wechat:hover {
  background-color: #06a854;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* QR Popup – hidden by default */
.wechat-qr-pop {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  background: #ffffff;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s ease;
  z-index: 10;
}

.wechat-qr-pop img {
  width: 120px;
  border-radius: 6px;
  display: block;
}

.wechat-qr-pop small {
  display: block;
  text-align: center;
  margin-top: 5px;
  font-size: 12px;
  color: #666;
}

/* Show QR on hover (desktop) */
.wechat-inline:hover .wechat-qr-pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Quotation Form */
.quotation_form_box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quotation_form_box h5 {
  margin-bottom: 20px;
  font-weight: 600;
}

.quotation_form_box input,
.quotation_form_box textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
}

.quotation_form_box button.btn-submit {
  background: #f07b26;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.quotation_form_box button.btn-submit:hover {
  background: #bc570d;
}

/* ===============================
   Responsive
================================ */
@media (max-width: 992px) {
  .contact_grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .map_wrapper,
  .office_wrapper,
  .contact_info_box,
  .quotation_form_box {
    height: auto;
  }

  .map_wrapper #mapid,
  .office_wrapper img {
    height: 300px;
  }
}



/* Sometimes Bootstrap columns cause layout collapse */
.contact_section .row {
  display: block !important;
}

/* Make sure nothing is covering the map */
.leaflet-container {
  z-index: 0 !important;
}

/* ===============================
   Info Section - Minimal Height
================================ */
.info_section {
  background-color: #252525;
  color: #ffffff;
  padding: 0;
  /* remove all extra padding */
  font-family: Arial, sans-serif;
}

/* Info bottom container */
.info_section .info_bottom {
  padding: 5px 0;
  /* just a tiny padding so it doesn't feel cramped */
}

/* Flex row adjustments */
.info_section .info_bottom .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* space between logo and social icons */
  flex-wrap: wrap;
}

/* Logo adjustments */
.info_section .info_bottom .info_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.info_section .info_bottom .info_logo a img {
  width: 50px;
  /* adjust logo size as needed */
  height: auto;
  display: block;
}

/* Social icons adjustments */
.info_section .info_bottom .social_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.info_section .info_bottom .social_box a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  color: #f07b26;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
}

.info_section .info_bottom .social_box a:hover {
  color: #252525;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .info_section .info_bottom .row {
    flex-direction: column;
    gap: 8px;
    /* tighter vertical spacing on mobile */
  }

  .info_section .info_bottom .info_logo a img {
    width: 40px;
    /* smaller logo for mobile */
  }

  .info_section .info_bottom .social_box a {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}

/* footer section*/

.footer_section {
  background-color: #ffffff;
  text-align: center;
  border-top: 1px solid #e5e5e5;
}

.footer_section p {
  color: #252525;
  padding: 12px 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.footer_section p a {
  color: inherit;
}

@media (max-width: 768px) {
  .footer_section p {
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.3;
  }
}


.carousel-item {
  height: 70vh;
  /* adjustable height */
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* or try "cover" if you prefer banner-style */
  background-color: #000;
  /* fills behind image */
  display: block;
}

/* Make it smaller on mobile */
@media (max-width: 768px) {
  .carousel-item {
    height: 40vh;
  }
}

/* Modal container */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

/* Modal image */
.image-modal img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Close button */
.image-modal .close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Caption (optional) */
#caption {
  text-align: center;
  color: #ccc;
  font-size: 18px;
  margin-top: 15px;
}

/* Remove spacing between navbar and carousel on mobile */
@media (max-width: 768px) {

  .header_section,
  .header_bottom,
  .navbar {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .slider_section {
    margin-top: 0;
    padding-top: 0;
  }
}

/* Full-height mobile carousel */
@media (max-width: 768px) {
  .slider_section .carousel-item {
    height: 65vh;
    /* adjust: 60–80vh depending on taste */
  }

  .slider_section .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* prevents shrinking */
  }
}

@media (max-width: 768px) {
  .slider_section {
    overflow: hidden;
  }
}

/* ===============================
   Our Services Section
================================ */
.our_services {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg,
      #f7d9b5 0%,
      #f3c28c 50%,
      #f7d9b5 100%);
  overflow: hidden;
}

/* Decorative shapes */
.our_services::before,
.our_services::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  z-index: 0;
}

.our_services::before {
  top: -120px;
  left: -120px;
}

.our_services::after {
  bottom: -120px;
  right: -120px;
}

/* keep content above shapes */
.our_services>.container {
  position: relative;
  z-index: 2;
}

.section_title {
  text-align: center;
  font-size: 42px;
  letter-spacing: 6px;
  margin-bottom: 50px;
}

/* MAIN GRID */
.services_grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-areas:
    "left right"
    "text right";
  gap: 30px;
}

/* IMAGE GROUPS */
.image_group img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid #000;
}

.image_group.horizontal {
  grid-area: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.image_group.vertical {
  grid-area: right;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

/* TEXT */
.services_text {
  grid-area: text;
  font-size: 16px;
  line-height: 1.7;
  max-width: 90%;
}

/* SERVICE STEPS */
.services_arrows {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

/* ARROW BLOCK */
.arrow_item {
  flex: 1;
  text-align: center;
}

.arrow_step {
  background: #ff9b50;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;

  clip-path: polygon(0 0,
      88% 0,
      100% 50%,
      88% 100%,
      0 100%,
      8% 50%);

  transition: 0.3s ease;
}

/* ICON CONTAINER */
/* ICON CONTAINER */
.arrow_icon {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON IMAGE */
.arrow_icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* TEXT */
.arrow_label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

.arrow_step p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 768px) {
  .services_arrows {
    flex-direction: column;
  }

  .arrow_step {
    clip-path: polygon(0 0,
        100% 0,
        100% 85%,
        50% 100%,
        0 85%);
  }
}



.arrow_step:hover {
  background: #ff7f2a;
  transform: translateY(-6px);
}

.service_ribbon {
  text-align: center;
  background: #c17a3a;
  /* brown tone like your image */
  padding: 20px 30px;
  margin-top: 25px;
  max-width: 85%;
  position: relative;

  clip-path: polygon(0 0,
      95% 0,
      100% 50%,
      95% 100%,
      0 100%,
      5% 50%);
}

.service_ribbon p {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.4;
  color: #000;
}

@media (max-width: 768px) {
  .service_ribbon {
    max-width: 100%;
    clip-path: polygon(0 0,
        100% 0,
        100% 100%,
        0 100%);
    border-radius: 10px;
  }
}

.service_ribbon {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.image_group {
  width: 100%;
}

.image_group img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid #000;
  display: block;
}

.image_group.horizontal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.image_group.vertical {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .image_group img {
    aspect-ratio: 1 / 1;
  }
}

.services_grid {
  align-items: start;
}

/* ===============================
   Back To Top Button
================================ */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f07b26;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 9999;
}

/* Show button */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover effect */
#backToTop:hover {
  background-color: #bc570d;
  transform: translateY(-3px);
}

/* Mobile size adjustment */
@media (max-width: 768px) {
  #backToTop {
    width: 42px;
    height: 42px;
    font-size: 16px;
    bottom: 20px;
    right: 20px;
  }
}

/* ===============================
   Floating WhatsApp Button
================================ */
.whatsapp-float {
  position: fixed;
  left: 25px;
  bottom: 120px;
  /* stays above Back-to-Top button */
  width: 52px;
  height: 52px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s ease;
}

/* Glow animation */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.5);
  animation: whatsappGlow 1.8s infinite;
  z-index: -1;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* Glow keyframes */
@keyframes whatsappGlow {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 46px;
    height: 46px;
    font-size: 22px;
    left: 15px;
    bottom: 90px;
  }
}