:root {
  --bs-primary: #323431;
  /* Main brand color (dark blue) */
  --bs-secondary: #ef5213;
  /* Accent color (yellow/gold) */
  --bs-white: #ffffff;
  --bs-dark: #000000;
  --bs-light: #f8f9fa;
  --service-btn: #ff8701;
  --paper: #f6f4ef;
  /* Optional additional colors */
  --accent-color: var(--bs-primary);
  --contrast-color: var(--bs-white);
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Spinner End ***/

.back-to-top-left {
  position: fixed;
  right: 30px;
  bottom: 30px;

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  z-index: 99;

  padding: 0;
  /* IMPORTANT */
  line-height: 1;
  /* IMPORTANT */
}

.back-to-top-left i {
  font-size: 18px;
  line-height: 1;
  margin: 15px;
}

/* right floating action (+) group */
.fab-container-right {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 99;
}

/* main + button */
.fab-main {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* sub icons (hidden by default) */
.fab-icon {
  position: absolute;
  right: 10px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d6efd;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: 0.3s;
}

.fab-icon:hover {
  background: #0d6efd;
  /* keep blue */
  color: #fff;
  /* force white */
}

/* also force icon inside */
.fab-icon:hover i {
  color: #fff;
}


/* open state: show and offset vertically */
.fab-container-right.open .fab-whatsapp {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50px);
}

.fab-container-right.open .fab-phone {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-100px);
}

.fab-container-right.open .fab-email {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-150px);
}


/*** Button Start ***/
.text-secondary {
  color: var(--bs-secondary) !important;
}

.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.main-btn {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
}

.service-btn {
  background: var(--service-btn) !important;
}

.service-btn:hover {
  color: #fff;
  transition: 1;
}

.project-btn {
  border: 1px solid #fff;
}

.project-btn:hover {
  /* background: var(--service-btn) !important; */
  color: #fff;
  transition: 1;
}


.btn.btn-primary {
  background: var(--bs-secondary) !important;
  color: var(--bs-white) !important;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  transition: 0.5s;
  border: none;
}

.btn.btn.btn-primary:hover {
  background: #c74730 !important;
  color: white;
  border: none !important;
  outline: none;
}

.btn.btn.btn-primary:focus {
  background: #c74730 !important;
  color: white;
  border: none !important;
  outline: none;
  box-shadow: none !important;
}

.btn.btn-secondary {
  background: transparent;
  color: var(--bs-secondary);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  border: none;
  transition: 0.5s;
}

.btn.btn-secondary:hover {
  color: var(--bs-primary) !important;
}

.icon-box {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* mega-menu */
/* Mega menu container */
.mega-menu {
  width: 100%;
  max-width: 1250px;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-radius: 10px;
  background: #fff;
  top: 80% !important;

}

/* Titles */
.mega-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--bs-primary);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #eaeaea;
}

/* Links */
.mega-link {
  display: flex;
  align-items: center;
  color: #0a1a44;
  gap: 0px !important;
  font-size: 14.5px;
  margin-bottom: 8px;
  text-decoration: none;
  color: #0a1a44 !important;
}

.mega-link i {
  margin-right: 0 !important;
  line-height: 0;

  font-size: 15px;
  color: #0a1a44 !important;
}

/* Hover */
.mega-link:hover {
  color: var(--bs-light) !important;
  padding-left: 5px;

}

/* FIX column width (4 per row on large) */
.mega-menu .col-lg-3 {
  padding-left: 10px !important;
}

/* Dropdown on hover (desktop) */
@media (min-width: 992px) {
  .mega-dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile & Tablet Fix */
@media (max-width: 991px) {
  .mega-menu {
    position: static !important;
    transform: none !important;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 15px !important;
  }

  .mega-link {
    padding: 6px 0;
  }
}

.mega-menu {
  max-height: 520px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* scrollbar */
.mega-menu::-webkit-scrollbar {
  width: 6px;
}

.mega-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.mega-menu::-webkit-scrollbar-thumb {
  background: var(--bs-primary);
  border-radius: 10px;
}

.mega-menu::-webkit-scrollbar-thumb:hover {
  background: #0b5ed7;
}

/* hover fix */
@media (min-width: 992px) {

  .mega-dropdown:hover>.dropdown-menu,
  .mega-dropdown .dropdown-menu:hover {
    display: block;
  }
}



/* Slider Card */
.team-slider {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Image wrapper */
.team-slide {
  position: relative;
}

.team-slide img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* Gradient Overlay */
.team-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.1));
}

/* Text overlay */
.team-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 2;
  color: #fff;
}

.team-overlay h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.team-overlay span {
  font-size: 14px;
  opacity: 0.85;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* Mobile */
@media (max-width: 768px) {
  .team-slide img {
    height: 300px;
  }
}

.team-highlight {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 18px 15px;
  text-align: center;
  border: 1px solid #eaeaea;
  transition: 0.3s;
}

.team-highlight h4 {
  margin: 0;
  font-weight: 700;
  color: var(--bs-primary);
}

.team-highlight span {
  font-size: 13px;
  color: #555;
}

.team-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* Left Accordion Styles */
.service-accordion .accordion-button.custom-accordion-btn {
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
  padding: 14px 18px;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.service-accordion .accordion-button:not(.collapsed) {
  background: var(--bs-primary) !important;
  color: #fff !important;
  box-shadow: none;
}

.service-accordion .accordion-item {
  border-radius: 10px !important;
  border: 1px solid #eee !important;
  background: #fff;
}

/* Hover Effect */
.service-accordion .accordion-button:hover {
  background: #e9f2ff;
}

/* Service Lists */
.service-list li {
  list-style: none;
  margin-bottom: 8px;
}

.service-list li a {
  text-decoration: none;
  font-size: 14px;
  color: #555;
  transition: 0.3s;
  padding: 6px 4px;
  display: block;
  border-radius: 6px;
}

.service-list li a i {
  font-size: 12px;
  margin-right: 6px;
  color: var(--bs-primary);
}

.service-list li a:hover {
  background: #f1f7ff;
  color: var(--bs-primary);
}

/* Right Side Content */
.service-details {
  line-height: 1.7;
  font-size: 15.5px;
}

.service-details h3 {
  margin-top: 25px;
  border-left: 4px solid var(--bs-primary);
  padding-left: 10px;
}

.custom-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
}

/* Mobile Spacing */
@media (max-width: 768px) {
  .service-details {
    padding: 20px;
  }
}

/*** Section Title Start ***/
.section-title {
  /* max-width: 900px; */
  text-align: center;
  margin: 0 auto;
}

.section-title .sub-style {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.section-title .sub-style::before {
  content: "";
  width: 100px;
  position: absolute;
  bottom: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-bottom: -6px;
  margin-left: -100px;
  border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-top: -8px;
  margin-left: -50px;
  border: 1px solid var(--bs-primary) !important;
}

.sub-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.sub-title::before {
  content: "";
  width: 100px;
  position: absolute;
  bottom: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-bottom: -8px;
  margin-right: -100px;
  border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-top: -6px;
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}

/*** Topbar Start ***/
.topbar {
  background: #000000;
}

/*** Topbar End ***/

/*** Navbar ***/
.nav-bar {
  position: absolute;
  /* top: 68px;  */
  left: 0;
  width: 100%;
  z-index: 999;
}


.navbar.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.navbar:not(.sticky-nav) .navbar-brand img {
  filter: brightness(0) invert(1);
}

.navbar:not(.sticky-nav) .navbar-nav .nav-link {
  color: #fff !important;
}

.navbar:not(.sticky-nav) .navbar-nav .nav-link:hover,
.navbar:not(.sticky-nav) .navbar-nav .nav-link.active {
  color: #ff8701 !important;
}

.navbar.sticky-nav .navbar-nav .nav-link {
  color: var(--bs-primary) !important;
}

.navbar.sticky-nav .navbar-nav .nav-link:hover,
.navbar.sticky-nav .navbar-nav .nav-link.active {
  color: var(--bs-secondary) !important;
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: var(--bs-primary) !important;
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
  max-height: 50px;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
  max-height: 45px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light) !important;
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top {
    position: relative;
    background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary) !important;
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark) !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 991.98px) {
  .sticky-top .navbar-light {
    background: var(--bs-light) !important;
  }

  /*** Top and Bottom borders go out ***/
  .navbar-light .navbar-nav .nav-link:after {
    position: absolute;
    content: "";
    bottom: 20px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: #ff8701;
    opacity: 0;
    transition: all 0.5s;
  }



  .navbar-light .navbar-nav .nav-link:after {
    top: auto;
  }


  .navbar-light .navbar-nav .nav-link:hover::after,
  .navbar-light .navbar-nav .nav-link.active::after {
    bottom: 20px;
    opacity: 1;
  }
}

#searchModal .modal-content {
  background: rgba(240, 245, 251, 0.5);
}

/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  background: linear-gradient(rgba(35, 30, 25, 0.45),
      rgba(20, 30, 35, 0.55)),
    url(../img/breadscrum.jpeg);
  background-position: center;
  background-size: cover;
  background-position: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: initial;
  background-size: cover;
  padding: 100px 0 60px 0;
}

/*** Single Page Hero Header End ***/

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
  width: 4rem;
  height: 4rem;
  margin-left: -60px;
  border-radius: 50%;
  background-size: 60% 60%;
  transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
  margin-left: 0;
  margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
  padding-bottom: 0;
  transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
  width: 8px;
  height: 8px;
  border: 8px solid var(--bs-primary);
  border-radius: 50%;
  margin-right: 30px;
  transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
  width: 8px;
  height: 8px;
  border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
  position: relative;
  min-height: 100vh;
}

.carousel-header .carousel-inner .carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50;
  left: 0;
  display: flex;
  align-items: flex-start;
  /* justify-content: center; */
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  background-size: cover;
}

.banner-content {
  margin-top: 150px;
  text-align: left;
  padding-left: 60px !important;
}

.display-3 {
  font-size: 35px;
}



@media (max-width: 768px) {
  .carousel-header {
    height: 100% !important;
  }


  .banner-content {
    margin-top: 50px;
    text-align: left;
    padding-left: 60px !important;
  }

  .display-3 {
    font-size: 24px;
  }

  .carousel-header .carousel-control-prev .carousel-control-prev-icon,
  .carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-top: 500px;
    background-color: #e85337 !important;
  }

  .carousel-header .carousel-control-prev .carousel-control-prev-icon {
    margin-left: 0px;
  }

  .carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-right: 0px;
  }

  .carousel-header .carousel .carousel-indicators {
    padding: 0;
  }
}

/*** Carousel Hero Header End ***/

/*** service Start ***/
.service .service-item {
  position: relative;
  overflow: hidden;
}

.service .service-item {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.service .service-item .service-inner .service-title {
  position: relative;
  margin-top: -30px;
  text-align: center;
  transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  margin-left: 30px;
  margin-right: 30px;
  text-align: center;
  border-radius: 10px;
  background: var(--bs-primary);
  opacity: 0;
  transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
  bottom: 0;
  opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
  border-bottom: 1px solid rgba(256, 256, 256, 0.1);
}

.service .service-item .service-inner .service-title .service-title-name {
  transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
  opacity: 0;
}

.service .service-item .service-inner .service-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
}

.service .service-item .service-inner .service-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.5s;
  opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
  height: 100%;
  opacity: 1;
}

.service .service-item .service-inner .service-img img {
  transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
  transform: scale(1.3);
}

/*** Service End ***/

/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
  position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
  position: relative;
  border-radius: 10px;
  background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  bottom: -20px;
  left: 30px;
  transform: rotate(45deg);
  background: var(--bs-light);
  z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
  position: absolute;
  top: -40px;
  right: 0;
  display: flex;
  font-size: 20px;
  color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
  margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
  transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--bs-secondary);
}

/* ==============================
   Equal Height Testimonial Cards
   ============================== */

.testimonial .owl-carousel.testimonial-carousel .owl-stage {
  display: flex;
}

.testimonial .owl-carousel.testimonial-carousel .owl-item {
  display: flex;
  height: auto;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*** testimonial end ***/


/*** Footer Start ***/
.footer {
  background: var(--bs-primary);
}

.footer .footer-item a {
  line-height: 36px;
  color: var(--bs-white);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 30px;
}

.footer .footer-item a:hover {
  letter-spacing: 2px;
  color: var(--bs-secondary);
}

.btn-social {
  width: 40px;
  /* Set equal width */
  height: 40px;
  /* Set equal height */
  display: flex;
  align-items: center;
  /* Center icon vertically */
  justify-content: center;
  /* Center icon horizontally */
  border-radius: 50%;
  /* Perfect circle */
  font-size: 18px;
  transition: 0.3s;
  padding: 0;
  /* Remove inner spacing */
}

.btn-social i {
  line-height: 1;
}


/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-secondary) !important;
}

/*** copyright end ***/

.service .service-item {
  height: 100%;
}

.service .service-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service .service-title-name {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service .service-title-name>a.btn {
  margin-top: auto;
  /* PUSHES BUTTON DOWN */
}

/* =========================
   BLOG CARDS
========================= */

.office .row {
  align-items: stretch;
}

.office .col-md-6,
.office .col-lg-6,
.office .col-xl-3 {
  display: flex;
}

/* Card */
.office-item {
  width: 100%;
  height: 100%;
  min-height: 520px;
  padding: 12px !important;

  display: flex;
  flex-direction: column;

  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;

  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;
}

/* Hover */
.office-item:hover {
  transform: translateY(-5px);
  border-color: #f68524;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

/* =========================
   BLOG IMAGE
========================= */

.office-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  flex-shrink: 0;
}

.office-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.4s ease;
}

.office-item:hover .office-img img {
  transform: scale(1.05);
}

/* =========================
   CONTENT
========================= */

.office-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 4px 5px;
}

/* Title */
.office-content h6 {
  min-height: 48px;
  margin-bottom: 12px !important;

  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;

  color: #111111;
}

/* Description */
.office-content p {
  min-height: 105px;
  margin-bottom: 15px !important;

  font-size: 16px;
  line-height: 1.65;
  color: #718096;
}

/* Read Article */
.office-content a {
  margin-top: auto !important;

  display: inline-block;
  width: fit-content;

  font-size: 16px !important;
  font-weight: 500;

  color: #f68524 !important;
  text-decoration: none;

  transition: all 0.3s ease;
}

.office-content a:hover {
  color: #d96d0b !important;
  padding-left: 4px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .office-item {
    min-height: 510px;
  }

  .office-img {
    height: 210px;
  }
}

@media (max-width: 767px) {
  .office-item {
    min-height: auto;
  }

  .office-img {
    height: 220px;
  }

  .office-content h6 {
    min-height: auto;
  }

  .office-content p {
    min-height: auto;
  }
}

/* blog */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--bs-secondary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}



/* Main Title */


.wc-title span {
  color: var(--service-btn);
  /* orange highlight */
}

/* Right Paragraph */
.wc-desc {
  color: #6c6c6c;
  font-size: 16px;
  line-height: 1.7;
}


/* Card Container */
.wc-card-box {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e6e6e6;
  padding: 35px 20px;
  transition: 0.3s ease;
  height: 100%;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Hover effect */
.wc-card-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.08);
  border-color: var(--service-btn);
  /* orange theme */
}

/* Icon box */
.wc-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: #f9f9f9;
  border: 2px solid #e6e6e6;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
  font-size: 32px;
  color: var(--bs-primary);
  transition: 0.3s;
}

/* Icon hover style */
.wc-card-box:hover .wc-card-icon {
  border-color: var(--service-btn);
  color: var(--service-btn);
}

/* Title */
.wc-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--service-btn);
  /* deep blue */
  margin-bottom: 10px;
}

/* Text */
.wc-card-text {
  font-size: 14px;
  color: #6c6c6c;
  margin: 0;
}

/* Gold Divider (Between Cards) */


/* Mobile Responsive */
/* faq */

/* FAQ Section */
.wc-faq-section {
  max-width: 1000px;
}

.wc-faq-heading {
  font-weight: 700;
  font-size: 32px;
  color: #0d6efd;
}

/* Card Styles */
.wc-faq-card {
  border: none;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.wc-faq-header {
  background: #f7f9fc;
  border-bottom: none;
  padding: 0;
}

.wc-faq-btn {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  background: none;
  outline: none;
  border: none;
  box-shadow: none;
  position: relative;
}

.wc-faq-btn:after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  font-weight: bold;
  transition: 0.3s;
}

.wc-faq-btn[aria-expanded="true"]:after {
  content: "-";
  transform: rotate(180deg);
}

.wc-faq-body {
  background: #fff;
  padding: 16px 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.fab-container-right {
  display: none;
}

.back-to-top-left {
  display: none;
}

.industries-section .wc-card-icon {
  font-size: 36px;
  color: var(--bs-primary);
  /* golden accent */
  margin-bottom: 15px;
}

.industries-section .wc-card-box {
  padding: 30px 20px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.industries-section .wc-card-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industries-section .wc-card-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.industries-section .wc-card-text {
  font-size: 14.5px;
  color: #555;
}


.about-images {
  position: relative;
  max-width: 520px;
  min-height: 420px;
  border-radius: 10px !important;
}

.about-img {
  position: absolute;
  width: 68%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
}

.about-img-1 {
  top: 0;
  left: 0;
  z-index: 1;
}

.about-img-2 {
  right: 0;
  left: 150px;
  top: 100px;
  z-index: 2;
}


/* Responsive */

@media(max-width:991px) {
  .about-images {
    min-height: 240px;
    margin-bottom: 40px;
  }

  .about-img {
    height: 260px;
  }

}

@media(max-width:767px) {

  .about-images {
    max-width: 100%;
    min-height: 240px;
  }

  .about-img {
    width: 50%;
    height: 220px;
  }

  .about-img-2 {
    top: 70px;
  }

}

/* Key Strenght start */

.strength-section {
  position: relative;
  background: url("../img/strength.jpeg") center center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 100px 0 !important;
}

/* Background Overlay */
.strength-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(35, 30, 25, 0.45),
      rgba(20, 30, 35, 0.55));
  z-index: 0;
}


.strength-section .container {
  position: relative;
  z-index: 1;
}

.section-label {
  color: var(--service-btn);
  font-weight: 700;
  letter-spacing: .5px;
}

.section-label small {
  font-size: 14px;
}

.section-label span {
  width: 38px;
  height: 2px;
  background: var(--service-btn);
  display: inline-block;
}

.strength-section h2 {
  font-size: 30px;
  color: #fff;
}


/* ===============================
   STRENGTH ITEMS
================================ */

.strength-item {
  border-right: 1px solid #ddd;
}

.strength-item:last-child {
  border-right: 0;
}

.strength-icon {
  color: var(--service-btn);
  font-size: 44px;
}

.strength-item h5 {
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
}

.strength-item p {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}


/* ===============================
   INFORMATION CARDS
================================ */

.info-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .04);
  overflow: hidden;
}

.card-heading h5 {
  font-size: 16px;
  color: #171717;
}

.card-heading span {
  width: 38px;
  height: 3px;
  background: var(--service-btn);
  display: inline-block;
}

.card-text {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  max-width: 95%;
}


/* ===============================
   VALUES LIST
================================ */

.values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: #555;
  font-size: 15px;
}

.values-list li i {
  color: var(--service-btn);
  font-size: 18px;
  flex-shrink: 0;
}


/* ===============================
   BACKGROUND ICON
================================ */

.card-bg-icon {
  position: absolute;
  right: 25px;
  bottom: 15px;
  font-size: 90px;
  color: #f3f3f3;
  z-index: 0;
}

.info-card>*:not(.card-bg-icon) {
  position: relative;
  z-index: 1;
}


/* ===============================
   TABLET
================================ */

@media (max-width: 991.98px) {

  .strength-item {
    border-bottom: 1px solid #ddd;
  }

  .strength-row .col-md-4:nth-child(3n) .strength-item {
    border-right: 0;
  }

  .strength-row .col-md-4:nth-child(4) .strength-item,
  .strength-row .col-md-4:nth-child(5) .strength-item,
  .strength-row .col-md-4:nth-child(6) .strength-item {
    border-bottom: 0;
  }

  .strength-section h2 {
    font-size: 26px;
  }

}


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

@media (max-width: 575.98px) {

  .strength-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .strength-section h2 {
    font-size: 23px;
  }

  .section-label small {
    font-size: 12px;
  }

  .section-label span {
    width: 25px;
  }

  .strength-item {
    padding-left: 8px !important;
    padding-right: 8px !important;
    border-right: 1px solid #ddd;
  }

  .strength-row .col-6:nth-child(2n) .strength-item {
    border-right: 0;
  }

  .strength-row .col-6:nth-child(5) .strength-item,
  .strength-row .col-6:nth-child(6) .strength-item {
    border-bottom: 0;
  }

  .strength-icon {
    font-size: 35px;
  }

  .strength-item h5 {
    font-size: 15px;
  }

  .strength-item p {
    font-size: 12px;
    line-height: 1.5;
  }

  .info-card {
    padding: 20px !important;
  }

  .card-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .values-list li {
    font-size: 14px;
  }

  .card-bg-icon {
    font-size: 70px;
  }

}

/* Key Strenght ends */

/* WHy choose Us  */
.why-section {
  overflow: hidden;
}

.why-left {
  position: relative;
  overflow: hidden;
  min-height: 550px;
  display: flex;
  align-items: center;
  padding: 0 40px;

  background: url("../img/why-choose-us.jpg") center center/cover no-repeat;
}

.why-left::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(110deg,
      rgba(18, 25, 32, .88) 10%,
      rgba(18, 25, 32, .78) 45%,
      rgba(18, 25, 32, .58) 70%,
      rgba(18, 25, 32, .45) 100%);

  z-index: 1;
}

.why-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.why-content h3 {
  color: #fff;
}

.why-content h5 {
  color: #fff;
}

.eyebrow {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.why-left p {
  color: #bcc3cb;
  font-size: 20px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 35px;
}

/* Right Side */

.stats-wrapper {
  background: var(--paper);
  min-height: 550px;
}

.stat-box {
  position: relative;

  height: 275px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-right: 1px solid #ddd8cd;
  border-bottom: 1px solid #ddd8cd;

  overflow: hidden;
}

.stats-wrapper .col-6:nth-child(2) .stat-box,
.stats-wrapper .col-6:nth-child(4) .stat-box {
  border-right: none;
}

.stats-wrapper .col-6:nth-child(3) .stat-box,
.stats-wrapper .col-6:nth-child(4) .stat-box {
  border-bottom: none;
}

.ghost {
  position: absolute;

  font-size: 120px;
  font-weight: 700;

  color: #e8e5df;

  line-height: 1;

  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.content h3 {
  margin: 0;
  color: var(--bs-secondary);
  font-size: 56px;
  font-weight: 700;
}

.content p {
  margin-top: 8px;
  color: #3e4b59;

  text-transform: uppercase;
  letter-spacing: 1px;

  font-size: 18px;
}

/* Responsive */

@media(max-width:991px) {

  .why-left {
    min-height: auto;
    padding: 60px 35px;
  }

  .why-left p {
    font-size: 18px;
  }

  .stats-wrapper {
    min-height: auto;
  }

  .stat-box {
    height: 240px;
  }

  .ghost {
    font-size: 90px;
  }

  .content h3 {
    font-size: 42px;
  }

  .content p {
    font-size: 15px;
  }

}

/* ===============================
   OUR JOURNEY
================================ */

.journey-section {
  position: relative;
  background: url("../img/our-journey.jpeg") center center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 150px 0 !important;
}

.journey-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(35, 30, 25, 0.45),
      rgba(20, 30, 35, 0.55));
}

.journey-section .container {
  z-index: 1;
}

.journey-section .section-label {
  color: var(--service-btn);
  font-weight: 700;
  letter-spacing: .5px;
}

.journey-section .section-label small {
  font-size: 14px;
}

.journey-section .section-label span {
  width: 38px;
  height: 2px;
  background: var(--service-btn);
}

.journey-section h2 {
  color: #111;
  font-size: 30px;
}


/* ===============================
   TIMELINE
================================ */

.journey-timeline {
  position: relative;
  padding-top: 5px;
}

.timeline-line {
  position: absolute;
  top: 10px;
  left: 8.33%;
  right: 8.33%;
  height: 2px;
  background: #ddd;
}

.journey-item {
  position: relative;
  padding: 0 10px;
}


/* Dot */

.timeline-dot {
  width: 15px;
  height: 15px;
  background: #fff;
  border: 3px solid var(--service-btn);
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}


/* Year */

.journey-year {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}


/* Description */

.journey-item p {
  color: #fff;
  font-size: 14px;
  line-height: 1.55;
}


/* ===============================
   TABLET
================================ */

@media (max-width: 991.98px) {

  .timeline-line {
    display: none;
  }

  .journey-item {
    padding: 15px 10px;
  }

  .journey-item::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 50%;
    width: 100%;
    height: 1px;
    background: #ddd;
    z-index: 0;
  }

  .journey-item:nth-child(3n)::before {
    display: none;
  }

  .timeline-dot {
    margin-bottom: 12px;
  }

  .journey-section h2 {
    font-size: 26px;
  }

}


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

@media (max-width: 575.98px) {

  .journey-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .journey-section h2 {
    font-size: 23px;
  }

  .journey-section .section-label small {
    font-size: 12px;
  }

  .journey-section .section-label span {
    width: 25px;
  }

  .journey-timeline {
    padding-left: 30px;
  }

  .journey-timeline .row {
    display: block;
  }

  .journey-timeline .col-6 {
    width: 100%;
  }

  /* Vertical line */

  .journey-timeline::before {
    content: "";
    position: absolute;
    left: 36px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #ddd;
  }

  .journey-item {
    min-height: 125px;
    padding: 0 0 25px 30px;
    text-align: left !important;
  }

  .journey-item::before {
    display: none;
  }

  .timeline-dot {
    position: absolute;
    left: -1px;
    top: 3px;
    width: 15px;
    height: 15px;
    margin: 0;
  }

  .journey-year {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .journey-item p {
    font-size: 13px;
    line-height: 1.5;
  }

}

/* ===============================
   CERTIFICATIONS
================================ */

.certifications-section {
  background: #fff;
}

.certifications-title {
  color: var(--service-btn);
  font-size: 14px;
  font-weight: 700;
}

/* Carousel Item */

.certifications-carousel .certification-item {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid #f1f1f1;
  background: #fff;
}

.certifications-carousel .certification-item img {
  max-width: 150px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-left: 20px;
}


/* Remove Owl default spacing */

.certifications-carousel .owl-stage {
  display: flex;
}

.certifications-carousel .owl-item {
  display: flex;
}

.certifications-carousel .owl-item>div {
  width: 100%;
}


/* ===============================
   TABLET
================================ */

@media (max-width: 991.98px) {

  .certifications-carousel .certification-item {
    height: 160px;
    padding: 15px;
  }

  .certifications-carousel .certification-item img {
    max-width: 130px;
    max-height: 100px;
  }

}

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

@media (max-width: 575.98px) {

  .certifications-carousel .certification-item {
    height: 140px;
    padding: 12px;
  }

  .certifications-carousel .certification-item img {
    max-width: 110px;
    max-height: 85px;
  }

}

/* =================================
   INDUSTRIES SECTION
================================= */

.industries-section {
  background: #fff;
}


/* =================================
   SECTION HEADING
================================= */

.industries-label {
  color: var(--service-btn);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
}

.industry-line {
  width: 25px;
  height: 2px;
  background: var(--service-btn);
  display: inline-block;
}

.industries-section h2 {
  color: #111;
  font-size: 30px;
}


/* =================================
   INDUSTRY CARD
================================= */

.industry-card {
  transition: all .3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .12) !important;
}


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

.industry-image {
  height: 160px;
  object-fit: cover;
  display: block;
}


/* =================================
   ORANGE ICON
================================= */

.industry-icon {
  bottom: -26px;

  width: 52px;
  height: 52px;

  border-radius: 50%;

  background: var(--service-btn);
  color: #fff;

  border: 3px solid #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;

  z-index: 2;
}


/* =================================
   CARD CONTENT
================================= */

.industry-card h5 {
  color: #161616;
  font-size: 17px;
}

.industry-card p {
  color: #666;
  line-height: 1.6;
  font-size: 13px;
}


/* =================================
   EXPLORE LINK
================================= */

.industry-card a {
  color: var(--service-btn) !important;
  transition: all .2s ease;
}

.industry-card a:hover {
  letter-spacing: .3px;
}

.industry-card a i {
  transition: transform .2s ease;
}

.industry-card a:hover i {
  transform: translateX(3px);
}


/* =================================
   TABLET
================================= */

@media (max-width: 991.98px) {

  .industries-section h2 {
    font-size: 27px;
  }

  .industry-image {
    height: 170px;
  }

}


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

@media (max-width: 575.98px) {

  .industries-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .industries-section h2 {
    font-size: 23px;
  }

  .industries-label {
    font-size: 11px;
  }

  .industry-line {
    width: 20px;
  }

  .industry-image {
    height: 180px;
  }

  .industry-card h5 {
    font-size: 16px;
  }

  .industry-card p {
    font-size: 13px;
  }

}

/* =========================================
   OUR APPROACH
========================================= */

.approach-section {
  position: relative;
  background:
    linear-gradient(rgba(15, 18, 19, .92), rgba(15, 18, 19, .94)),
    url("../img/approach-bg.jpg") center / cover no-repeat;
}

.approach-label {
  color: var(--service-btn);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
}

.approach-content h2 {
  font-size: 30px;
  line-height: 1.25;
}

.approach-line {
  width: 45px;
  height: 3px;
  background: var(--service-btn);
}

.approach-content p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 400px;
}


/* =========================================
   APPROACH STATS
========================================= */

.approach-stat {
  min-height: 155px;
  padding: 10px 15px;
  border-left: 1px solid rgba(255, 255, 255, .22);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.approach-stat:last-child {
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.approach-icon {
  color: var(--service-btn);
  font-size: 35px;
  margin-bottom: 10px;
}

.approach-stat h3 {
  font-size: 25px;
}

.approach-stat p {
  font-size: 14px;
  line-height: 1.5;
}


/* =========================================
   TRUSTED ORGANIZATIONS
========================================= */

.trusted-section {
  background: #fff;
}

.trusted-title {
  color: var(--service-btn);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
}

.trusted-line {
  width: 35px;
  height: 2px;
  background: var(--service-btn);
  display: inline-block;
}


/* Logo box */

.trusted-logo {
  height: 90px;
  margin: 0 8px;
  padding: 10px 20px;

  background: #fff;
  border: 1px solid #f0f0f0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo img {
  max-width: 145px;
  max-height: 65px;
  width: auto;
  height: auto;
  object-fit: contain;
}


/* Owl carousel arrows */

.trusted-carousel .owl-nav {
  margin-top: 0;
}

.trusted-carousel .owl-nav button {
  color: var(--service-btn) !important;
  font-size: 35px !important;
  background: transparent !important;
}

.trusted-carousel .owl-nav button:hover {
  background: transparent !important;
  color: #d85f0c !important;
}


/* =========================================
   PROJECT CTA
========================================= */

.project-cta {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(90deg,
      #ff4b00,
      var(--service-btn));

}

/* Optional construction background */

.project-cta::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;

  background:
    linear-gradient(90deg,
      rgba(244, 119, 33, 1),
      rgba(244, 119, 33, .45)),
    url("../img/cta-bg.jpg") center / cover no-repeat;

  opacity: .55;
  pointer-events: none;
}

.project-cta .container {
  position: relative;
  z-index: 1;
}


/* CTA Icon */

.cta-icon {
  width: 55px;
  height: 55px;

  flex-shrink: 0;

  color: #fff;
  font-size: 38px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.project-cta h3 {
  font-size: 25px;
}

.project-cta p {
  font-size: 15px;
}


/* CTA Button */



/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .approach-content {
    text-align: center;
  }

  .approach-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .approach-line {
    margin-left: auto;
    margin-right: auto;
  }

  .approach-stat {
    min-height: 145px;
  }

  .project-cta h3 {
    font-size: 22px;
  }

}


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

@media (max-width: 575.98px) {

  .approach-section {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .approach-content h2 {
    font-size: 24px;
  }

  .approach-content p {
    font-size: 13px;
  }

  .approach-stat {
    min-height: 135px;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .approach-stat:nth-child(odd) {
    border-left: 0;
  }

  .approach-stat:last-child {
    border-right: 0;
    border-left: 0;
  }

  .approach-icon {
    font-size: 28px;
  }

  .approach-stat h3 {
    font-size: 21px;
  }

  .approach-stat p {
    font-size: 12px;
  }


  /* Trusted */

  .trusted-title {
    font-size: 11px;
  }

  .trusted-line {
    width: 20px;
  }

  .trusted-logo {
    height: 80px;
    margin: 0 5px;
    padding: 8px 12px;
  }

  .trusted-logo img {
    max-width: 115px;
    max-height: 55px;
  }


  /* CTA */

  .project-cta {
    text-align: center;
  }

  .project-cta::after {
    display: none;
  }

  .project-cta .d-flex {
    justify-content: center;
    text-align: left;
  }

  .project-cta h3 {
    font-size: 20px;
  }

  .project-cta p {
    font-size: 13px;
  }

  .cta-icon {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }

  .project-btn {
    padding: 10px 18px;
    font-size: 12px;
  }

}

/* =========================================
   OUR PROJECT SECTION
========================================= */

.our-project-section {
  background: #f8f8f8;
}


/* =========================================
   PROJECT CARD
========================================= */

.our-project-card {
  transition: all .3s ease;
  border: 1px solid #eeeeee;
}

.our-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12) !important;
}


/* =========================================
   PROJECT IMAGE
========================================= */

.our-project-image {
  height: 155px;
  object-fit: cover;
  display: block;
}


/* =========================================
   PROJECT CATEGORY TAG
========================================= */

.our-project-tag {
  position: absolute;
  left: 0;
  bottom: 0;

  min-width: 155px;
  padding: 8px 18px;

  background: #151515;
  color: #fff;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3px;

  clip-path: polygon(0 0,
      92% 0,
      100% 50%,
      92% 100%,
      0 100%);
}

.our-project-tag i {
  color: var(--service-btn);
}


/* =========================================
   PROJECT CONTENT
========================================= */

.our-project-content h5 {
  color: #171717;
  font-size: 16px;
  line-height: 1.35;
}

.our-project-location {
  color: #666;
  font-size: 11px;
}

.our-project-location i {
  color: var(--service-btn);
}

.our-project-content p {
  font-size: 11px;
  line-height: 1.55;
}


/* =========================================
   VIEW DETAILS
========================================= */

.our-project-link {
  color: var(--service-btn);
  text-decoration: none;

  font-size: 10px;
  font-weight: 700;

  display: inline-flex;
  align-items: center;
}

.our-project-link:hover {
  color: #d95f0c;
}

.our-project-link i {
  transition: transform .2s ease;
}

.our-project-link:hover i {
  transform: translateX(3px);
}


/* =========================================
   LOAD MORE BUTTON
========================================= */

.our-project-load-btn {
  display: inline-flex;
  align-items: center;

  padding: 8px 22px;

  color: var(--service-btn);
  background: #fff;

  border: 1px solid var(--service-btn);
  border-radius: 3px;

  text-decoration: none;

  font-size: 10px;
  font-weight: 700;

  transition: all .3s ease;
}

.our-project-load-btn:hover {
  color: #fff;
  background: var(--service-btn);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .our-project-image {
    height: 175px;
  }

  .our-project-tag {
    font-size: 10px;
  }

}


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

@media (max-width: 575.98px) {

  .our-project-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .our-project-image {
    height: 200px;
  }

  .our-project-content {
    padding: 18px !important;
  }

  .our-project-content h5 {
    font-size: 17px;
  }

  .our-project-content p {
    font-size: 12px;
  }

}

/* =========================================
   OUR PROJECTS STATS SECTION
========================================= */

.our-projects-stats-section {
  position: relative;

  background:
    linear-gradient(rgba(15, 17, 18, .94),
      rgba(15, 17, 18, .94)),
    url("../img/projects-stats-bg.jpg") center / cover no-repeat;

  overflow: hidden;
}


/* =========================================
   LEFT CONTENT
========================================= */

.our-projects-label {
  color: var(--service-btn);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
}

.our-projects-content h2 {
  font-size: 30px;
  line-height: 1.2;
}

.our-projects-line {
  width: 45px;
  height: 3px;
  background: var(--service-btn);
}

.our-projects-content p {
  max-width: 330px;
  font-size: 13px;
  line-height: 1.6;
}


/* =========================================
   STATS
========================================= */

.our-projects-stat {
  min-height: 130px;
  padding: 15px 15px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-left: 1px solid rgba(255, 255, 255, .20);
}

.our-projects-stat:last-child {
  border-right: 1px solid rgba(255, 255, 255, .20);
}


/* =========================================
   ICON
========================================= */

.our-projects-icon {
  color: var(--service-btn);
  font-size: 34px;
  margin-bottom: 8px;
}


/* =========================================
   NUMBER
========================================= */

.our-projects-stat h3 {
  font-size: 27px;
  line-height: 1;
}


/* =========================================
   DESCRIPTION
========================================= */

.our-projects-stat p {
  font-size: 12px;
  line-height: 1.4;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .our-projects-content {
    text-align: center;
  }

  .our-projects-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .our-projects-line {
    margin-left: auto;
    margin-right: auto;
  }

  .our-projects-stat {
    min-height: 125px;
  }

}


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

@media (max-width: 575.98px) {

  .our-projects-stats-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .our-projects-content h2 {
    font-size: 24px;
  }

  .our-projects-content p {
    font-size: 12px;
  }

  .our-projects-stat {
    min-height: 120px;
    padding: 10px 5px;

    border-bottom: 1px solid rgba(255, 255, 255, .20);
  }

  .our-projects-stat:nth-child(odd) {
    border-left: 0;
  }

  .our-projects-stat:nth-child(3),
  .our-projects-stat:nth-child(4) {
    border-bottom: 0;
  }

  .our-projects-icon {
    font-size: 27px;
  }

  .our-projects-stat h3 {
    font-size: 21px;
  }

  .our-projects-stat p {
    font-size: 11px;
  }

}

/* =========================================
   SERVICES SECTION
========================================= */

.services-section-our-services {
  background: #fff;
}

.services-label-our-services {
  color: var(--service-btn);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
}

.services-line-our-services {
  width: 35px;
  height: 2px;
  background: var(--service-btn);
  display: inline-block;
}

.services-section-our-services h2 {
  color: #151515;
  font-size: 30px;
}

.services-intro-our-services {
  max-width: 650px;
  font-size: 14px;
  line-height: 1.7;
}


/* =========================================
   SERVICE ROW
========================================= */

.service-row-our-services {
  min-height: 150px !important;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
}


/* =========================================
   SERVICE IMAGE
========================================= */

.service-image-wrap-our-services {
  overflow: hidden;
  min-height: 150px !important;
}

.service-image-our-services {
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  height: 180px;
}

.service-row-our-services:hover .service-image-our-services {
  transform: scale(1.04);
}


.service-content-our-services {
  position: relative;
  background: #f7f7f7;
  padding: 20px 45px;
  display: flex;
  align-items: center;
  overflow: hidden;
}


.service-number-our-services {
  position: absolute;
  left: -5px;
  top: 0;
  bottom: 0;
  width: 80px;
  background: #181818;
  color: var(--service-btn);
  font-size: 38px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0,
      75% 0,
      100% 50%,
      75% 100%,
      0 100%);
}



.service-info-our-services {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-left: 55px;
}

.service-icon-our-services {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--service-btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.service-info-our-services h3 {
  font-size: 21px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 10px;
}

.service-info-our-services p {
  color: #666;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 15px;
  max-width: 480px;
}


/* =========================================
   SERVICE LINK
========================================= */

.service-link-our-services {
  color: var(--service-btn);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: all .25s ease;
}

.service-link-our-services:hover {
  color: #d95f0c;
}

.service-link-our-services i {
  transition: transform .25s ease;
}

.service-link-our-services:hover i {
  transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .services-section-our-services h2 {
    font-size: 27px;
  }

  .service-content-our-services {
    padding: 35px 30px;
  }

  .service-info-our-services {
    margin-left: 50px;
  }

  .service-number-our-services {
    width: 70px;
    font-size: 32px;
  }

  .service-info-our-services h3 {
    font-size: 19px;
  }

}

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

@media (max-width: 767.98px) {

  .services-section-our-services {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .services-section-our-services h2 {
    font-size: 24px;
  }

  .services-intro-our-services {
    font-size: 13px;
  }

  /* Remove alternating desktop order */
  .service-row-our-services .order-1,
  .service-row-our-services .order-2 {
    order: initial !important;
  }

  .service-image-wrap-our-services {
    min-height: 220px;
    height: 150px;
  }

  .service-content-our-services {
    min-height: 260px;
    padding: 35px 25px;
  }

  .service-number-our-services {
    width: 60px;
    font-size: 28px;
  }

  .service-info-our-services {
    margin-left: 40px;
    gap: 15px;
  }

  .service-icon-our-services {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .service-info-our-services h3 {
    font-size: 18px;
  }

  .service-info-our-services p {
    font-size: 12px;
    line-height: 1.6;
  }

}


@media (max-width: 480px) {

  .services-label-our-services {
    font-size: 11px;
  }

  .services-line-our-services {
    width: 22px;
  }

  .service-image-wrap-our-services {
    min-height: 150px;
    height: 150px;
  }

  .service-content-our-services {
    min-height: 150px;
    padding: 30px 20px;
  }

  .service-number-our-services {
    width: 52px;
    font-size: 24px;
  }

  .service-info-our-services {
    margin-left: 35px;
    display: block;
  }

  .service-icon-our-services {
    margin-bottom: 12px;
  }

  .service-info-our-services h3 {
    font-size: 17px;
  }

}

/* =========================================
   PROJECT DETAILS HERO
========================================= */

.project-details-hero {
  position: relative;
  padding: 120px 0 45px;

  background:
    linear-gradient(90deg,
      rgba(10, 13, 14, .98) 0%,
      rgba(10, 13, 14, .92) 38%,
      rgba(10, 13, 14, .45) 70%,
      rgba(10, 13, 14, .25) 100%),
    url("../img/breadscrum.jpeg") center / cover no-repeat;

  overflow: hidden;
}

.project-details-category {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
}

.project-details-category-icon {
  width: 30px;
  height: 30px;

  background: var(--bs-secondary);
  color: #111;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 3px;
}

.project-details-title {
  font-size: 42px;
  line-height: 1.15;
}

.project-details-location {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.project-details-location i {
  color: var(--bs-secondary);
}

.project-details-description {
  max-width: 650px;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================
   HERO META
========================================= */

.project-details-meta-row {
  border-top: 1px solid #fff;
  padding-top: 25px;
}

.project-details-meta {
  min-height: 65px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid #fff;
}

.project-details-meta i {
  color: var(--bs-secondary);
  font-size: 24px;
  flex-shrink: 0;
}

.project-details-meta small {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
}

.project-details-meta strong {
  display: block;
  color: #fff;

  font-size: 13px;
  font-weight: 600;
}

.project-details-meta-row>div:last-child .project-details-meta {
  border-right: 0;
}


/* PROJECT DETAILS */

.project-details-section {
  background: #fff;
}

.project-details-heading h3,
.project-details-heading h4 {
  color: #171717;
  font-size: 20px;
}

.project-details-heading span {
  display: block;
  width: 35px;
  height: 3px;
  background: var(--bs-secondary);
  margin-top: 8px;
}

.project-details-text {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}


/* =========================================
   KEY FEATURES
========================================= */

.project-details-feature-box {
  background: #f7f7f7;
  padding: 22px 20px;
  border-radius: 6px;
}

.project-details-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #555;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.project-details-check i {
  color: var(--bs-secondary);
  font-size: 16px;
  flex-shrink: 0;
}


/* =========================================
   GALLERY
========================================= */

.project-details-gallery-item {
  height: 110px;
  overflow: hidden;
  border-radius: 5px;
}

.project-details-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.project-details-gallery-item:hover img {
  transform: scale(1.06);
}


/* =========================================
   INFORMATION
========================================= */

.project-details-info-box {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 6px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, .05);
}

.project-details-info-row {
  display: grid;
  grid-template-columns: 22px 100px 1fr;
  align-items: center;
  gap: 9px;
  padding: 12px 0;
  border-bottom: 1px solid #eeeeee;
  font-size: 12px;
}

.project-details-info-row i {
  color: var(--bs-secondary);
  font-size: 16px;
}

.project-details-info-row span {
  color: #777;
}

.project-details-info-row strong {
  color: #222;
  font-weight: 600;
}

.project-details-status {
  color: #198754 !important;
}


/* =========================================
   BROCHURE
========================================= */

.project-details-brochure {
  background: #181818;
  color: #fff;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.project-details-brochure-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: var(--bs-secondary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.project-details-brochure h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.project-details-brochure p {
  color: #aaa;
  font-size: 11px;
  margin-bottom: 7px;
}

.project-details-brochure a {
  color: var(--bs-secondary);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
}


/* =========================================
   PROJECT STATS
========================================= */

.project-details-stats {
  background: #181818;
}

.project-details-stat {
  min-height: 105px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-right: 1px solid #444;
}

.project-details-stat i {
  color: var(--bs-secondary);
  font-size: 31px;
}

.project-details-stat h3 {
  color: #fff;
  font-size: 27px;
  font-weight: 800;
  margin-bottom: 3px;
}

.project-details-stat p {
  color: #aaa;
  font-size: 11px;
  margin: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .project-details-info-box {
    margin-top: 10px;
  }

  .project-details-stat {
    padding: 18px 12px;
  }

}


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

@media (max-width: 767px) {

  .project-details-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .project-details-heading h3,
  .project-details-heading h4 {
    font-size: 18px;
  }

  .project-details-text {
    font-size: 13px;
  }

  .project-details-feature-box {
    padding: 20px 16px;
  }

  .project-details-info-box {
    padding: 20px;
  }

  .project-details-info-row {
    grid-template-columns: 20px 80px 1fr;
    font-size: 11px;
  }

  .project-details-gallery-item {
    height: 120px;
  }

  .project-details-stat {
    min-height: 95px;
    padding: 15px 10px;
    justify-content: flex-start;
  }

  .project-details-stat i {
    font-size: 23px;
  }

  .project-details-stat h3 {
    font-size: 21px;
  }

  .project-details-stat p {
    font-size: 9px;
  }

}


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

@media (max-width: 480px) {

  .project-details-info-row {
    grid-template-columns: 18px 70px 1fr;
    gap: 6px;
    font-size: 10px;
  }

  .project-details-brochure {
    padding: 15px;
    gap: 12px;
  }

  .project-details-brochure-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 20px;
  }

  .project-details-gallery-item {
    height: 100px;
  }

}

/* =========================================
   CONTACT US SECTION
========================================= */

.contact-us-section {
  background: #f7f7f7;
}

.contact-us-label {
  color: var(--bs-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
}

.contact-us-line {
  width: 35px;
  height: 2px;
  background: var(--bs-secondary);
  display: inline-block;
}

.contact-us-title {
  color: #171717;
  font-size: 32px;
}

.contact-us-intro {
  max-width: 650px;
  font-size: 14px;
  line-height: 1.7;
}


/* =========================================
   MAIN CONTACT WRAPPER
========================================= */

.contact-us-wrapper {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
}


/* =========================================
   LEFT CONTACT INFORMATION
========================================= */

.contact-us-info {
  position: relative;
  background:
    linear-gradient(rgba(15, 18, 19, .92),
      rgba(15, 18, 19, .95)),
    url("../img/contact-bg.jpg") center / cover no-repeat;

  padding: 50px 40px;
  overflow: hidden;
}

.contact-us-info-content {
  z-index: 2;
}

.contact-us-small-title {
  color: var(--bs-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
}

.contact-us-info h3 {
  font-size: 30px;
  line-height: 1.3;
}

.contact-us-info h3 span {
  color: var(--bs-secondary);
}

.contact-us-info-text {
  font-size: 13px;
  line-height: 1.8;
  max-width: 400px;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-us-detail {
  margin-bottom: 24px;
}

.contact-us-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;

  background: var(--bs-secondary);
  color: #fff;

  border-radius: 4px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 17px;
}

.contact-us-detail small {
  display: block;
  color: #999;
  font-size: 9px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-us-detail p {
  color: #fff;
  font-size: 13px;
  margin: 0;
}


/* =========================================
   FORM
========================================= */

.contact-us-form {
  background: #fff;
  padding: 45px;
}

.contact-us-form-heading>span {
  color: var(--bs-secondary);
  font-size: 11px;
  font-weight: 700;
}

.contact-us-form-heading h3 {
  font-size: 24px;
}

.contact-us-form-heading p {
  font-size: 13px;
}


/* =========================================
   INPUTS
========================================= */

.contact-us-form .form-label {
  color: #333;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 7px;
}

.contact-us-input-wrap {
  position: relative;
}

.contact-us-input-wrap>i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs-secondary);
  font-size: 14px;
  z-index: 2;
}

.contact-us-input-wrap .form-control,
.contact-us-input-wrap .form-select {
  min-height: 48px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  padding-left: 40px;
  font-size: 12px;
  box-shadow: none;
}

.contact-us-input-wrap .form-control:focus,
.contact-us-input-wrap .form-select:focus {
  border-color: var(--bs-secondary);
  box-shadow: 0 0 0 2px rgba(244, 119, 33, .08);
}

.contact-us-textarea-wrap>i {
  top: 20px;
  transform: none;
}

.contact-us-textarea-wrap textarea {
  resize: none;
  padding-top: 13px;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.contact-us-submit {
  background: var(--bs-secondary);
  color: #fff;
  border: 1px solid var(--bs-secondary);
  border-radius: 4px;
  padding: 13px 25px;
  font-size: 11px;
  font-weight: 700;
  transition: .3s;
}

.contact-us-submit:hover {
  background: #181818;
  border-color: #181818;
  color: #fff;
}


/* =========================================
   QUICK CONTACT
========================================= */

.contact-us-quick {
  min-height: 80px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 5px;

  padding: 15px 18px;

  display: flex;
  align-items: center;
  gap: 13px;

  transition: .3s;
}

.contact-us-quick:hover {
  border-color: var(--bs-secondary);
  transform: translateY(-3px);
}

.contact-us-quick-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;

  background: #fff2e9;
  color: var(--bs-secondary);

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
}

.contact-us-quick small {
  display: block;
  color: #999;
  font-size: 8px;
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-us-quick strong {
  display: block;
  color: #222;
  font-size: 12px;
}

.contact-us-quick-arrow {
  margin-left: auto;
  color: var(--bs-secondary);
  font-size: 13px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .contact-us-info {
    padding: 40px 30px;
  }

  .contact-us-form {
    padding: 35px 30px;
  }

  .contact-us-title {
    font-size: 28px;
  }

}


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

@media (max-width: 767.98px) {

  .contact-us-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .contact-us-title {
    font-size: 24px;
  }

  .contact-us-intro {
    font-size: 12px;
  }

  .contact-us-info {
    padding: 35px 25px;
  }

  .contact-us-info h3 {
    font-size: 25px;
  }

  .contact-us-form {
    padding: 30px 20px;
  }

  .contact-us-form-heading h3 {
    font-size: 21px;
  }

  .contact-us-quick {
    min-height: 70px;
  }

}


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

@media (max-width: 480px) {

  .contact-us-line {
    width: 22px;
  }

  .contact-us-label {
    font-size: 11px;
  }

  .contact-us-title {
    font-size: 22px;
  }

  .contact-us-info h3 {
    font-size: 23px;
  }

  .contact-us-info {
    padding: 30px 20px;
  }

  .contact-us-form {
    padding: 25px 16px;
  }

}

/* =========================================
   CAREER HERO
========================================= */

.career-hero {
  min-height: 430px;
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(10, 13, 14, .97) 0%, rgba(10, 13, 14, .85) 40%, rgba(10, 13, 14, .25)),
    url("../img/breadscrum.jpeg") center / cover no-repeat;
}

.career-label {
  color: var(--bs-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
}

.career-line,
.career-section-line {
  width: 35px;
  height: 2px;
  background: var(--bs-secondary);
}

.career-title {
  font-size: 48px;
  line-height: 1.08;
}

.heading-color {
  color: var(--bs-secondary);
}

.career-title span {
  color: var(--bs-secondary);
}

.career-description {
  max-width: 480px;
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
}

.career-btn,
.career-submit-btn {
  background: var(--bs-secondary);
  color: #fff;
  border: 1px solid var(--bs-secondary);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 13px 22px;
}

.career-btn:hover,
.career-submit-btn:hover {
  background: #fff;
  color: var(--bs-secondary);
}


/* =========================================
   STATS
========================================= */

.career-stat {
  min-height: 90px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid #fff;
}

.career-stat i {
  color: var(--bs-secondary);
  font-size: 30px;
}

.career-stat h3 {
  font-size: 25px;
  font-weight: 800;
  margin: 0;
}

.career-stat p {
  color: #aaa;
  font-size: 11px;
  margin: 2px 0 0;
}


/* =========================================
   WHY JOIN
========================================= */

.career-benefit {
  padding: 20px 12px;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
  transition: .3s;
}

.career-benefit:hover {
  transform: translateY(-5px);
  border-color: var(--bs-secondary);
}

.career-benefit-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #fff1e8;
  color: var(--bs-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.career-benefit h5 {
  font-size: 16px;
  font-weight: 700;
}

.career-benefit p {
  color: #666;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}


/* =========================================
   JOB LIST
========================================= */

.career-job-list {
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
}

.career-job {
  min-height: 105px;
  padding: 18px;
  display: grid;
  grid-template-columns: 50px 1.1fr 1.4fr 100px;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #eee;
}

.career-job-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff1e8;
  color: var(--bs-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-job-title h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.career-job-title p,
.career-job-description p {
  color: #666;
  font-size: 11px;
  margin: 0;
}

.career-job-title span {
  color: var(--bs-secondary);
  margin: 0 4px;
}

.career-job-link {
  color: var(--bs-secondary);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
}

.career-job-link:hover {
  color: #d95f0c;
}

.career-outline-btn {
  border: 1px solid var(--bs-secondary);
  color: var(--bs-secondary);
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 11px 20px;
}

.career-outline-btn:hover {
  background: var(--bs-secondary);
  color: #fff;
}


/* =========================================
   APPLICATION FORM
========================================= */

.career-application {
  border: 1px solid #eee;
  box-shadow: 0 3px 15px rgba(0, 0, 0, .04);
}

.career-form-title {
  font-size: 23px;
}

.career-form-line {
  display: block;
  width: 35px;
  height: 3px;
  background: var(--bs-secondary);
}

.career-form-label {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 6px;
}

.career-form-control {
  min-height: 44px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 11px;
  box-shadow: none !important;
}

.career-form-control:focus {
  border-color: var(--bs-secondary);
}

textarea.career-form-control {
  resize: none;
}

.career-submit-btn {
  padding: 13px;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .career-title {
    font-size: 32px;
  }

  .career-stat {
    justify-content: flex-start;
    padding-left: 30px;
  }

  .career-job {
    grid-template-columns: 50px 1fr 1fr;
  }

  .career-job-link {
    grid-column: 2 / -1;
  }

}


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

@media (max-width: 767px) {

  .career-hero {
    min-height: 480px;
    padding: 55px 0;
    background:
      linear-gradient(rgba(10, 13, 14, .88),
        rgba(10, 13, 14, .92)),
      url("../img/breadscrum.jpeg") center / cover no-repeat;
  }

  .career-title {
    font-size: 32px;
  }

  .career-description {
    font-size: 13px;
  }

  .career-stat {
    min-height: 85px;
    padding: 12px;
    border-bottom: 1px solid #444;
  }

  .career-stat i {
    font-size: 24px;
  }

  .career-stat h3 {
    font-size: 20px;
  }

  .career-stat p {
    font-size: 9px;
  }


  .career-job {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 10px;
    padding: 16px;
  }

  .career-job-icon {
    grid-row: span 2;
  }

  .career-job-title {
    grid-column: 2;
  }

  .career-job-description {
    grid-column: 2;
  }

  .career-job-link {
    grid-column: 2;
  }

  .career-resume {
    text-align: center;
  }

  .career-resume-icon {
    margin-bottom: 10px;
  }

}


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

@media (max-width: 480px) {

  .career-title {
    font-size: 28px;
  }

  .career-benefit {
    min-height: 190px;
  }

  .career-benefit h5 {
    font-size: 14px;
  }

  .career-benefit p {
    font-size: 11px;
  }

  .career-stat {
    justify-content: center;
  }

}

/* =========================================
   SERVICE DETAILS
========================================= */

.project-details-breadcrumb li {
  list-style: none;
  color: #fff;
}

.service-details-section {
  background: #fff;
}

.service-details-heading h3,
.service-details-heading h4 {
  color: #171717;
  font-size: 20px;
}

.service-details-heading span {
  display: block;
  width: 35px;
  height: 3px;
  background: #f47721;
  margin-top: 8px;
}

.service-details-text {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}



/* =========================================
   WHAT WE DO
========================================= */

.service-details-work-box {
  background: #f7f7f7;
  padding: 22px 20px;
  border-radius: 6px;
}

.service-details-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #444;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.service-details-check i {
  color: #f47721;
  font-size: 15px;
  flex-shrink: 0;
}


/* =========================================
   KEY HIGHLIGHTS
========================================= */

.service-details-highlight {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 20px 10px;
  text-align: center;
  transition: .3s;
}

.service-details-highlight:hover {
  border-color: #f47721;
  transform: translateY(-3px);
}

.service-details-highlight>i {
  color: #f47721;
  font-size: 27px;
  margin-bottom: 12px;
}

.service-details-highlight h6 {
  font-size: 12px;
}

.service-details-highlight p {
  color: #777;
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
}


/* =========================================
   SIDEBAR
========================================= */

.service-details-info-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, .04);
}

.service-details-info-row {
  display: grid;
  grid-template-columns: 20px 105px 1fr;
  align-items: center;
  gap: 8px;
  padding: 11px 0;
  border-bottom: 1px solid #eee;
  font-size: 11px;
}

.service-details-info-row i {
  color: #f47721;
  font-size: 14px;
}

.service-details-info-row span {
  color: #777;
}

.service-details-info-row strong {
  color: #222;
  font-weight: 600;
}


/* =========================================
   RELATED PROJECTS
========================================= */

.service-details-project img {
  width: 145px;
  height: 75px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.service-details-project h6 {
  font-size: 12px;
}

.service-details-project small {
  font-size: 10px;
}

.service-details-project a {
  color: #f47721;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
}


/* =========================================
   BOTTOM FEATURES
========================================= */

.service-details-bottom {
  background: #181818 !important;
}

.service-details-bottom-item {
  min-height: 105px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid #444;
}

.service-details-bottom-item>i {
  color: #f47721;
  font-size: 29px;
  flex-shrink: 0;
}

.service-details-bottom-item h6 {
  font-size: 14px;
}

.service-details-bottom-item p {
  color: #aaa;
  font-size: 12px;
  line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .service-details-info-box {
    margin-top: 10px;
  }

  .service-details-bottom-item {
    padding: 18px 15px;
  }

}


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

@media (max-width: 767.98px) {

  .service-details-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .service-details-heading h3,
  .service-details-heading h4 {
    font-size: 18px;
  }

  .service-details-text {
    font-size: 13px;
  }

  .service-details-work-box {
    padding: 20px 16px;
  }

  .service-details-info-box {
    padding: 20px;
  }

  .service-details-info-row {
    grid-template-columns: 18px 90px 1fr;
    font-size: 10px;
  }

  .service-details-project img {
    width: 120px;
    height: 70px;
  }

  .service-details-bottom-item {
    min-height: 100px;
    padding: 15px 12px;
    gap: 10px;
  }

  .service-details-bottom-item>i {
    font-size: 22px;
  }

}

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

@media (max-width: 480px) {

  .service-details-info-row {
    grid-template-columns: 17px 75px 1fr;
    gap: 6px;
  }

  .service-details-project img {
    width: 105px;
    height: 65px;
  }

  .service-details-project h6 {
    font-size: 11px;
  }

  .service-details-project small {
    font-size: 9px;
  }

  .service-details-highlight {
    padding: 16px 8px;
  }

}

/* ==========================================================================
   SECTION HEADING FONT SIZE NORMALIZATIONnn (Desktop & Mobile)
   ========================================================================== */

/* Desktop override to match Homepage 'Our Core Services' (h5 tag size / 1.25rem) */
.section-label small,
.journey-section .section-label small,
.trusted-title,
.services-label-our-services,
.career-label {
  font-size: 1.25rem !important;
}

/* Mobile override to keep it responsive (matching h5 responsive size / 1.1rem) */
@media (max-width: 768px) {

  .section-label small,
  .journey-section .section-label small,
  .trusted-title,
  .services-label-our-services,
  .career-label {
    font-size: 1.1rem !important;
  }
}