: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;
}

.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: -60px;
  right: 0;
  display: flex;
  font-size: 40px;
  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 ***/

/*** Contact Start ***/
.contact .office .office-item {
  text-align: center;
  border-radius: 10px;
  /* box-shadow: 0 0 45px rgba(0, 0, 0, 0.2); */
  background: var(--bs-light);
  transition: 0.5s;
}

/* .contact .office .office-item:hover {
  box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
} */

.contact .office .office-item .office-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}

.contact .office .office-item .office-img img {
  transition: 0.5s;
}

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

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
  transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
  color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
  color: var(--bs-primary) !important;
}

/*** Contact 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 */
.office .col-md-6,
.office .col-lg-6,
.office .col-xl-3 {
  display: flex;
}

.office-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.office-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.office-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.office-content a {
  margin-top: auto;
  /* Push 'Read Article' to the bottom */
}

/* 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;
}

/* why */
/* Section */
/* Subtitle */

/* Main Title */


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

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

/* Cards Section */
/* 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: 150px 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;
  }

}
