:root {
  /* Primary theme fonts based on index.php usage */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Roboto", sans-serif;
  --font-theme-body-alt: "Rubik", sans-serif;
  --font-accent: "Playfair Display", serif;

  /* Brand colors */
  --color-primary: #02315c;
  --color-secondary: #00a389;
  --color-accent: #ff5d17;

  /* Heading colors */
  --color-heading-primary: #02315c;
  --color-heading-secondary: #150a33;
  --color-heading-light: #ffffff;

  /* Text colors */
  --color-text-primary: #555555;
  --color-text-secondary: #545454;
  --color-text-muted: #888888;
  --color-text-muted-soft: #878787;
  --color-text-footer: #d5caca;
  --color-text-light: #ffffff;

  /* Base neutrals */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #181818;
  --color-dark-soft: #212121;

  /* Backgrounds */
  --color-bg: #ffffff;
  --color-bg-light: #f6f6f6;
  --color-bg-light-alt: #f5f5f5;
  --color-bg-soft: #f2f2f2;

  /* Borders and UI neutrals */
  --color-border: #dddddd;
  --color-border-soft: #e0e0e0;
  --color-border-panel: #ebebef;
  --color-border-input: #ececf0;
  --color-ui-gray: #bcbcbc;
  --color-ui-gray-alt: #7e7e7e;
}

a,
button {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  background-color: transparent;
  border: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

/* <!-- Top Bar --> */

.top-bar .top {
  display: flex;
  justify-content: space-between;
  /* LEFT + RIGHT */
  align-items: center;
}

.top-bar {
  background-color: var(--color-black);
}

.header-to-bar a {
  color: inherit;
  text-decoration: none;
  color: var(--color-white);
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  text-decoration: none;
  margin-right: 15px;
  font-family: var(--font-primary);
}



.header-to-bar i {
  margin: 0px 5px 0px 0px;
}

.header-to-bar {
  position: relative;
  z-index: 9999;
}

.navbar-nav {
  padding: 10px 0px;
}

.social-icon a {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  margin-left: 20px;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  font-size: 16px;
}

.top-right a {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);

}

.top-right i {
  margin: 0px 5px 0px 0px;
}

.social-icon a:hover {
  color: var(--color-secondary);
}

/* -------------navbar---------------- */



/* NAVBAR */
.nav-w100 {
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 999;
}

.nav-logo img {
  width: 240px;
}


.nav-item .nav-link {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark-soft);
  margin: 0 10px;
}


.sticky-nav.menu-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  animation: sticky .4s;
  box-shadow: 2px 4px 8px rgba(51, 51, 51, .25);
  background: var(--color-bg);
}

.sticky-nav.menu-fixed .nav-logo {
  width: 150px;
}

@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}


.header-cta-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  height: 45px;
  width: 160px;
  line-height: 45px;
  border-radius: 40px;
  text-align: center;
  font-weight: 500;
  background: var(--color-secondary);
}

.header-cta-btn a {
  color: var(--color-bg);
  text-decoration: none;
  display: block;
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-family: var(--font-primary);
}

.header-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  transform: translateY(-100%);
  transition: .4s;
}

.header-cta-btn:hover::before {
  transform: translateY(0);
}



.blogs,
.services-menu {
  position: relative;
}

.blogs .dropdown-menu,
.services-menu .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-top: 0;
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  min-width: 220px;
  padding: 10px 0;
}

.blogs:hover .dropdown-menu,
.services-menu:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Arrow */
.blogs .dropdown-toggle::after,
.services-menu .dropdown-toggle::after {
  color: var(--color-secondary);
  border-top-color: var(--color-secondary);
  margin-left: 6px;
}

/* Dropdown Links */
.dropdown-menu a {
  font-size: 16px;
  font-family: var(--font-primary);
  padding: 10px 18px;
  transition: 0.3s ease;
}

/* Hover Effect */
.dropdown-menu .dropdown-item:hover {
  color: var(--color-text-light);
  background-color: var(--color-secondary);
  padding-left: 24px;
}

/* Active Link */
.dropdown-item.active,
.dropdown-item:active {
  color: var(--color-text-light);
  background-color: var(--color-secondary);
}

/* <!-- SLIDER --> */

.slider-section {
  background-image: url("../images/banner/1920-700-banner-constraction.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.owl-carousel {
  position: relative;
  min-height: 1px;
  float: none;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}

.slider-text {
  max-width: 750px;
  position: relative;
  z-index: 1;
  padding: 180px 0px 140px 60px;
  color: var(--color-bg);
  font-family: var(--font-primary);
}

.slider-text::before {
  top: 0;
  left: 0;
  z-index: -1;
  height: 112%;
  content: '';
  width: 85%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
}

.slider-text h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-bg);
  font-family: var(--font-primary);

}

.slider-text p {
  color: var(--color-bg);
  font-family: var(--font-primary);
  font-size: 24px;
  margin: 10px 0 10px 0;
}

.slider-text a {
  color: var(--color-bg);
  height: 55px;
  width: 170px;
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 55px;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 10px;
  font-family: var(--font-primary);
  background-color: var(--color-secondary);
  border: none;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-text h1,
.slider-text p,
.slider-text a {
  opacity: 0;
}


.owl-item.active .slider-text h1 {
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.3s;
}

.owl-item.active .slider-text p {
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.7s;
}

.owl-item.active .slider-text a {
  animation: slideDown 0.8s ease forwards;
  animation-delay: 1.1s;
}

.txt-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 12px 30px;
  background: var(--color-secondary);
  color: var(--color-bg);
  z-index: 1;
}


.txt-btn::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-heading-secondary);
  transition: all 0.4s ease;
  z-index: -1;
}


.txt-btn:hover::before {
  top: 0;
  background-color: var(--color-heading-primary);
}


.owl-dots {
  position: absolute;
  right: 0;
  left: 100%;
  top: 39%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
  align-items: center;
}

.owl-dot {
  width: 20px;
  height: 20px;
  background: var(--color-bg) !important;
  border-radius: 50%;

  transition: all 0.3s ease;
}


.owl-dot.active {
  width: 25px;
  height: 25px;
  background: var(--color-secondary) !important;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}


.owl-dot.active::after {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--color-bg) !important;
  border-radius: 50%;
}

.video-play-btn {
  width: 145px;
  height: 145px;
  line-height: 145px;
  border-radius: 100%;
  position: absolute;
  right: 20%;
  top: 38%;
  z-index: 5;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7);

}

.video-play-btn a {
  display: block;
  width: 100%;
  color: var(--color-bg);
  font-size: 45px;
  position: relative;
  text-align: center;
}

.video-btn-border {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  border: 2px solid var(--color-secondary);
  animation: ripple 2s infinite;
}


.border_wrap-1 {
  animation-delay: 0s;
}

.border_wrap-2 {
  animation-delay: 0.6s;
}

.border_wrap-3 {
  animation-delay: 1.2s;
}

.video-play-btn::after {
  content: '';
  top: 0;
  left: 0;
  position: absolute;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* <!-- ABOUT --> */

.about-section {
  padding: 60px 0;
}

.about-left-text {
  padding-top: 50px;
}

.ind-section-title {
  position: relative;
}

.title-icon {
  left: -3px;
  top: -63px;
  z-index: -1;
  position: absolute;
}

.title-icon i {
  font-size: 70px;
  display: block;
  background: linear-gradient(to top, #fff, #00a389);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ind-section-title h2 {
  color: var(--color-heading-primary);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.222;
  margin-bottom: 15px;
  font-family: var(--font-primary);
}

.section-title-text {
  margin: 0px 0px 38px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
}

.ind-about-list {
  margin-left: 10px;
}

.about-icon-text {
  margin-bottom: 34px;
}

.ind-about-icon {
  width: 65px;
  height: 65px;
  margin-right: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--color-secondary);
  float: left;
}

.ind-about-icon i {
  color: var(--color-bg);
  font-size: 38px;
}

.ind-about-text {
  overflow: hidden;
  max-width: 365px;
}

.ind-about-text h3 {
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
  color: var(--color-dark-soft);
}

.ind-about-text p {
  line-height: 21px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
}

.about-right-img {
  position: relative;
  z-index: 1;

}

.about-main-img img {
  height: auto;
  max-width: 100%;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.about-down-img {
  z-index: 1;
  left: -68px;
  bottom: -30px;
  position: absolute;
}

.about-down-img img {
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.about-down-img span {
  left: 0;
  top: 50%;
  right: 0;
  z-index: 2;
  color: var(--color-bg);
  font-family: var(--font-secondary);
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}

.about-down-img::after {
  top: 0;
  left: 0;
  opacity: .7;
  width: 100%;
  content: '';
  min-height: 100%;
  position: absolute;
  background-color: var(--color-secondary);
}

.about-side-vector {
  right: 0;
  z-index: 0;
  bottom: -95px;
  position: absolute;
}

.about-side-vector img {
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* <!-- SERVICES --> */

.custom-bg-light {
  padding: 60px 0;
  position: relative;
  z-index: 1;
  top: 60px;
}

.custom-bg-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-dark);
  z-index: -1;
  min-height: 500px;
  bottom: 140px;
}

.ind-section-title h3 {
  color: var(--color-bg);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.222;
  margin-top: 30px;
  font-family: var(--font-primary);
}

.section-title-text h2 {
  padding-left: 55px;
  font-size: 18px;
  margin-top: 30px;
  line-height: 24px;
  color: var(--color-bg);
  font-family: var(--font-secondary);
}

.section-title-text span {
  font-weight: 700;
  color: var(--color-secondary);
}

.feature-content {
  padding: 60px 0px 60px 0px
}

.feature-img-text {
  position: relative;
  z-index: 1;
  border: 20px solid var(--color-bg);
  box-shadow: 0px 11px 24px 0px rgba(12, 12, 12, 0.11);
  margin: 0px 0px 50px 0px;
}

.feature-img img {
  transition: .7s all ease-in-out;
  height: auto;
  max-width: 100%;
  border: none;
  box-shadow: none;
}

.feature-text-icon {
  position: relative;
  background-color: var(--color-primary);
  padding: 75px 15px 35px;
  min-height: 264px;
}

.feature-icon {
  color: var(--color-bg);
  width: 100px;
  left: 0;
  right: 0;
  top: -48px;
  height: 100px;
  display: flex;
  margin: 0 auto;
  font-size: 50px;
  position: absolute;
  border-radius: 100%;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border: 10px solid var(--color-bg);
  background-color: var(--color-secondary);
}

.feature-text h3 {
  margin-bottom: 15px;
}

.feature-text h3 a {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-secondary);
  color: var(--color-bg);
}

.feature-text p {
  font-family: var(--font-secondary);
  color: var(--color-ui-gray);
  line-height: 1.625;
  margin-bottom: 0;
}

.feature-plus {
  left: 0;
  right: 0;
  opacity: 0;
  width: 67px;
  color: var(--color-bg);
  height: 67px;
  bottom: -40px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 67px;
  visibility: hidden;
  text-align: center;
  position: absolute;
  background-color: var(--color-secondary);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.feature-plus::before {
  content: '';
  position: absolute;
  left: -17px;
  border-bottom: 17px solid #078f79;
  border-left: 17px solid transparent;
}


.feature-plus::after {
  content: '';
  right: -17px;
  border-bottom: 17px solid #078f79;
  border-right: 17px solid transparent;
  top: 0;
  width: 0;
  height: 0;
  content: '';
  position: absolute;
}

.feature-plus a {
  color: var(--color-bg);
}

.feature-img-text:hover .feature-plus {
  opacity: 1;
  bottom: -50px;
  visibility: visible;
}

.feature-img {
  overflow: hidden;
}

.feature-img img {
  transition: 0.5s ease;
}

.feature-img-text:hover .feature-img img {
  transform: scale(1.1);
}

/* <!-- SERVICE SECTION --> */



.ind-section-title {
  max-width: 500px;
}

.ind-service-content {
  padding-top: 50px;
}

.ind-service-side-text {
  z-index: 2;
  top: 100px;
  padding: 35px 40px;
  max-width: 355px;
  position: absolute;
  background-color: var(--color-bg);
}

.ind-service-side-text h3 {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 15px;
  font-family: var(--font-primary);
  color: var(--color-bg);
}

.ind-service-side-text p {
  line-height: 1.625;
  margin-bottom: 20px;
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
  font-size: 18px;
}

.ind-service-side-text a {
  font-family: var(--font-primary);
  color: var(--color-bg);
  height: 53px;
  width: 150px;
  display: block;
  font-weight: 700;
  line-height: 53px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--color-secondary);
}

.service-slide-area {
  padding-left: 300px;
}

.service-slide-area .owl-nav {
  top: -120px;
}

.ind-service-img {
  overflow: hidden;
}

.ind-service-img img {
  -webkit-transition: .5s all ease-in-out;
  -o-transition: .5s all ease-in-out;
  transition: .5s all ease-in-out;
}

.ind-service-text {
  left: 0;
  right: 0;
  z-index: 1;
  bottom: -75px;
  position: absolute;
  padding: 30px 0px;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.ind-service-text:before {
  content: '';
  height: 100%;
  width: 100%;
  top: -50px;
  z-index: -1;
  left: 0;
  position: absolute;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(0, 0, 0, 0)), color-stop(35%, black));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 10%, black 35%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 10%, black 35%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 10%, black 35%);
}

.ind-service-text h3 a {
  color: var(--color-bg);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 10px;
}

.ind-service-text p {
  opacity: 0;
  color: var(--color-text-footer);
  font-family: var(--font-secondary);
  font-size: 14px;
  padding-bottom: 10px;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.ind-service-icon a {
  opacity: 0;
  color: var(--color-bg);
  width: 58px;
  height: 58px;
  display: block;
  font-size: 20px;
  margin: 0 auto;
  line-height: 58px;
  border-radius: 100%;
  background-color: var(--color-secondary);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.ind-service-img-text:hover .ind-service-img img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.ind-service-img-text:hover .ind-service-text {
  bottom: 0;
  background-color: var(--color-heading-primary);
}

.ind-service-img-text:hover .ind-service-text:before {
  opacity: 0;
}

.ind-service-img-text:hover .ind-service-text p {
  opacity: 1;
}

.ind-service-img-text:hover .ind-service-text .ind-service-icon a {
  opacity: 1;
}


/*------breadcrumb-section-------*/


.breadcrumb-section {
  background-image: url('../images/banner/banabout.webp');
  min-height: 200px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.breadcrumb {
  display: block;
  justify-content: center;
  display: flex;
  text-align: center;

}

.breadcrumb-section ul.breadcrumb li a {
  text-decoration: none;
  color: var(--color-secondary);
  font-size: 18px;
  font-family: var(--font-primary);
}

.breadcrumb li span {
  color: var(--color-text-light);
}

.breadcrumb li span.sep {
  color: var(--color-secondary);
  padding: 0 6px;
}

.breadcrumb-section .container {
  padding-top: 50px;
}

.breadcrumb-section .container h3 {
  font-size: 40px;
  font-family: var(--font-primary);
  color: var(--color-text-light);
  font-weight: 600;
}

/* <!-- About Company Section --> */

.about-style-three {
  padding: 60px 0;
}

.about-img-box {
  position: relative;
}

.about-img-box img {
  width: 100%;
}

.content-abt {
  position: absolute;
  top: 20px;
  left: 0;
  background: var(--color-secondary);
  width: 100%;
  max-width: 263px;
  min-height: 245px;
  padding: 40px;
}

.content-abt span {
  color: var(--color-bg);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-secondary);
  line-height: 27px;
}

.content-abt h3 {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 32px;
  line-height: 36px;
  color: var(--color-bg);
  font-weight: 700;
  margin-top: 13px;
}

.content-abt h3::after {
  content: '';
  width: 38px;
  height: 2px;
  display: inline-block;
  vertical-align: middle;
  background: var(--color-bg);
  margin-left: 10px;
}

.about-content {
  padding-top: 60px;
}

.about-content h3 {
  font-size: 30px;
  line-height: 38px;
  color: var(--color-heading-primary);
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 27px;
  text-align: justify;
  font-family: var(--font-secondary);
  font-weight: 500;
}

/* <!-- Features Section --> */

.features-style-two {
  padding: 0px 0 60px 0;
}


.single-features-style {
  border: 1px solid var(--color-text-footer);
  text-align: center;
  min-height: 306px;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  z-index: 1;
}

.single-features-style::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  z-index: -1;

  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease;
}

.single-features-style:hover::before {
  transform: scaleY(1);
}


.inner {
  position: relative;
  z-index: 2;
  transition: 0.3s ease;
  width: 100%;
}


.single-features-style:hover .inner {
  color: var(--color-bg);
}

.single-features-style:hover i {
  color: var(--color-bg);
}

.single-features-style:hover .inner h3 {
  color: var(--color-bg);
}

.single-features-style:hover .inner p {
  color: var(--color-bg);
}

.inner i {
  font-size: 53px;
  color: var(--color-primary);
  transition: all .4s ease;
}

.inner h3 {
  font-size: 22px;
  line-height: 27px;
  color: var(--color-heading-primary);
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-top: 18px;
  margin-bottom: 10px;
}

.inner p {
  font-size: 15px;
  line-height: 27px;
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
  width: 73%;
  margin-left: auto;
  margin-right: auto;
}

/* <!-- services Showcase Section Carousel --> */

.service-style {
  padding: 0px 0 60px 0;
}

.sec-title {
  margin-bottom: 25px;
}

.sec-title h3 {
  margin: 0;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  font-family: var(--font-primary);
}

.sec-title span {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-style: italic;
  font-size: 30px;
  line-height: 1.1;
}


.sec-title h3::after {
  display: inline-block;
  vertical-align: middle;
  content: '';
  width: 30px;
  height: 2px;
  background: var(--color-ui-gray-alt);
  margin-left: 10px;
}

.sec-para {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-text-primary);
  padding-left: 100px;
  font-weight: 400;
  text-align: justify;
  font-family: var(--font-secondary);
}

.img-box1 {
  position: relative;
  margin: 0 0 14px 0;
}

.svc-card .img-box {
  position: relative;
  /* margin: 0 0 14px 0; */
}

.img-box img {
  width: 100%;
}

.box-cnt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
}

.content-box {
  width: 100%;
  padding-left: 55px;
}

.content-box i {
  color: var(--color-bg);
  font-size: 56px;
}

.content-box h3 {
  color: var(--color-bg);
  font-weight: 300;
  font-size: 28px;
  font-family: var(--font-primary);
  line-height: 1.2em;
  margin: 0;
  margin-top: 15px;
}

.content-box h3 span {
  color: var(--color-secondary);
  font-weight: 600;
}

.content-box a {
  width: 121px;
  height: 40px;
  background: var(--color-secondary);
  color: var(--color-bg);
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 600;
  display: inline-block;
  line-height: 38px;
  text-align: center;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .4s ease;
}


.content-box a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-heading-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: -1;
}


.content-box a:hover::before {
  transform: scaleX(1);
}


.content-box a:hover {
  color: var(--color-bg);
}

/* testimonials-style */

.testimonials-style {
  position: relative;
  background-image: url("../images/about/about.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.testimonials-style::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 60, 0.65);
  z-index: 1;
}

.testimonials-style .container {
  position: relative;
  z-index: 2;
}

.testi-title {
  margin-bottom: 70px;
  margin-top: 60px;
}

.testi-title h3 {
  margin: 0;
  color: var(--color-bg);
  font-weight: 600;
  font-size: 32px;
  font-family: var(--font-primary);
  margin-bottom: 15px
}

.testi-title h3::after {
  display: inline-block;
  vertical-align: middle;
  content: '';
  width: 38px;
  height: 2px;
  background: var(--color-ui-gray-alt);
  margin-left: 15px;
  margin-top: 12px;

}

.testi-title p {
  color: var(--color-border-input);
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--font-secondary);

}

.single-testi-style {
  background: var(--color-white);
  position: relative;
  padding-left: 55px;
  padding-top: 50px;
  min-height: 260px;
  margin-bottom: 100px;
  z-index: 1;
}

.single-testi-style img {
  position: absolute;
  top: 25px;
  right: 35px;
  width: 40px !important;
  opacity: 0.2;
}

.single-testi-style h3 {
  font-size: 22px;
  font-family: var(--font-primary);
  color: var(--color-black);
  font-weight: 600;
  margin-bottom: 15px;
}

.single-testi-style p {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-black);
  font-family: var(--font-secondary);
  width: 83%;
}

.vm-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.vision-icon i {
  color: var(--color-white);
  font-size: 24px;
}

.vm-header h3 {
  margin: 0;
}

.vm-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.quote-img {
  width: 35px;
  height: auto;
}

.vision-icon {
  width: 55px;
  height: 55px;
  background: var(--color-heading-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-header h3 {
  margin: 0;
}

/* <!--footer-area start--> */

.copyright-area {
  padding: 40px 0px 0px 0px;
}

.footer-bg-two {
  background-color: var(--color-dark-soft);
  background-size: cover;
  background-position: center;
  width: 100%;
  background-repeat: repeat;
  position: relative;
  z-index: 1;
  padding: 50px 0px;
}

.footer-bg-two::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: var(--color-black);
  opacity: 0.9;
}

.footer-desc p {
  color: var(--color-bg);
  line-height: 34px;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
  max-width: 400px;
}

.fot-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fot-list li {
  margin-bottom: 15px;
  color: var(--color-bg);
  line-height: 20px;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-secondary);
}

.fot-list li a {
  color: var(--color-bg);
  line-height: 14px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  font-family: var(--font-secondary);
}

.fot-list li a:hover {
  color: var(--color-secondary);
}

.footer-contact h3 {
  color: var(--color-bg);
  font-size: 30px;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
}

.footer-contact p {
  color: var(--color-bg);
  line-height: 34px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0px;
  font-family: var(--font-secondary);
  margin-bottom: 15px;

}

.footer-contact span p {
  margin-bottom: 35px;
}

.social_media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--color-primary);
}

.social_media a:hover {
  background: var(--color-bg);
  color: var(--color-secondary) !important;
}

.widget__title h4 {
  background: var(--color-bg);
  font-size: 30px;
  margin-bottom: 25px;
  font-family: var(--font-primary);
}

.ht-footer-form input {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(49, 49, 49, 0.3) 0%, rgba(49, 49, 49, 0.1) 100%);
  backdrop-filter: blur(7.5px);
  width: 100%;
  height: 50px;
  background: var(--color-bg);
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 400;
  padding-left: 20px;
  margin-bottom: 25px;
}

.copyright-border {
  border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.copyright-text p {
  font-size: 14px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-bg);
  line-height: 30px;
}

.copyright-text a {
  color: inherit;
  outline: medium none;
  text-decoration: none;
  font-size: 16px;
  font-family: var(--font-primary);
}

.footer-menu li a {
  color: var(--color-bg);
  font-size: 14px;
  font-family: var(--font-primary);
  line-height: 28px;
  font-weight: 400;
  display: inline-block;
  margin-left: 67px;
  text-decoration: none;

}

.footer-menu li {
  list-style: none;
  color: var(--color-bg);
  font-size: 20px;
  font-family: var(--font-primary);
  line-height: 28px;
  font-weight: 400;
  display: inline-block;
}

.footer-widget img {
  width: 200px;
  height: auto;
}

.footer-widget h3 {
  color: var(--color-bg);
  font-size: 30px;
  font-family: var(--font-primary);

}

.quick-line {
  width: 100px;
  height: 1.5px;
  background-color: var(--color-heading-primary);
  margin: 10px 0;
}

.footer-contact a {
  color: var(--color-bg);
  font-size: 16px;
  font-family: var(--font-primary);
}

.footer-contact a:hover {
  color: var(--color-secondary);
}

.office-icon-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.office-icon-text i {
  font-size: 18px;
  color: var(--color-bg);
  margin-top: 5px;
}

.phone-text {
  display: flex;
  flex-direction: column;
}



.phone-text a:hover {
  color: var(--color-secondary);
}

/* <!-- Featured blog-section --> */


.ind-blog-section {
  padding: 60px 0;
}

.ind-blog-content {
  padding-top: 40px;
}


.ind-blog-img-text {
  transition: 0.3s;
}


.ind-blog-img {
  position: relative;
  margin-bottom: 25px;
  overflow: hidden;
}

.ind-blog-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  transition: 0.5s;
}


.ind-blog-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  z-index: 1;
  transition: 0.3s;
}


.ind-blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  background: var(--color-secondary);
  color: var(--color-bg);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  font-family: var(--font-primary);
  border-radius: 4px;
  z-index: 2;
}


.ind-blog-cat {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-bg);
  font-size: 14px;
  font-family: var(--font-secondary);
  font-weight: 600;
  padding: 6px 14px;
}


.ind-blog-text {
  padding-left: 15px;
}

.ind-blog-text h3 {
  margin-bottom: 15px;
}

.ind-blog-text h3 a {
  margin: 20px 0 8px;
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
}

.ind-blog-text p {
  line-height: 1.6;
  color: var(--color-text-primary);
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font-secondary);
  text-align: justify;
}


.b-more {
  margin-top: 20px;
}


.b-more a {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 40px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
  background: var(--color-secondary);
  color: var(--color-bg);
  font-size: 14px;
  font-family: var(--font-primary);
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}


.b-more a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}


.b-more a:hover::before {
  transform: translateY(0);
}


.b-more a:hover {
  color: var(--color-bg);
}

.ind-blog-img-text:hover img {
  transform: scale(1.2);
}

/*----th-get-cont-sec-----*/
.th-get-cont-sec {
  background-color: var(--color-primary);

}

.get-detail {
  padding: 50px 0;
  display: flex;
  align-items: center;
}

.th-get-content {
  padding: 0 15px;
}

.th-get-content p {
  font-size: 18px;
  color: var(--color-text-footer);
  font-family: var(--font-secondary);
  line-height: 25px;
}

.th-get-content h3 {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--color-bg-light);
  font-family: var(--font-primary);
}

.th-get-call-box {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 30px;
}

.th-get-call {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.th-get-call-box .icon-box {
  font-size: 32px;
}

.th-get-icon-txt {
  padding: 0 0 0 15px;
}

.th-get-icon-txt p {
  margin: 0;
}

.get-detail .icon-box i {
  text-align: center;
  color: var(--color-bg-light);
  font-size: 26px;
}

.th-get-icon-txt a {
  font-size: 18px;
  text-decoration: none;
  color: var(--color-text-footer);

  font-family: var(--font-secondary);
}

.th-get-icon-txt h3 {
  margin: 0;
  color: var(--color-bg-light);
  font-family: var(--font-primary);
  font-size: 22px;
}

.th-get-call-box .th-get-call+.th-get-call {
  padding: 0 0 0 40px;
}

/*-----End-of-contact----*/

/*----th-get-map,th-get-form----*/
.th-get-map {
  margin: 0 0 30px 0;
}

.th-get-map iframe {
  width: 100%;
  height: 440px;
  min-height: 440px;

}

.th-get-cont {
  text-align: center;
}

.th-get-cont h3 {
  padding-bottom: 10px;
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 600;
}

.th-get-cont p {
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 18px;
  max-width: 600px;
  color: var(--color-text-secondary);
  margin: 0 auto;
  line-height: 30px;
}

.th-get-form h3 {
  font-family: var(--font-primary);
  text-align: center;
  padding-bottom: 10px;
  color: var(--color-black);

}

.th-get-form input {
  width: 100%;
  height: 45px;
  margin-bottom: 20px;
  background-color: var(--color-bg-light);
  color: var(--color-text-muted);
  padding-left: 20px;
  border: 0px;
  font-family: var(--font-secondary);
  font-size: 14px;
}

.th-get-form textarea {

  width: 100%;
  height: 130px;
  margin-bottom: 20px;
  background-color: var(--color-bg-light);
  color: var(--color-text-muted);
  padding-left: 20px;
  padding-top: 20px;
  border: 0px;
}

.th-get-form .th-get-button {
  width: 100%;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-bg);
  font-family: var(--font-secondary);
  height: 45px;
  background-color: var(--color-secondary);
  cursor: pointer;
}

.th-get-form input:focus,
.th-get-form textarea:focus {
  outline: none;
  border: 1px solid var(--color-primary);
}

/*----End-of-th-get-map-th-get-form----*/

/*---------Blog-Details---------*/
.text-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
}


/*-----next-prev------*/
.post-links a {
  text-decoration: none;
  display: inline-block;
  color: var(--color-text-btn);
  font-family: var(--font-theme-body-alt);
}

.post-links {
  justify-content: space-between;
  padding: 25px 0;
  border-top: 1px solid var(--color-ui-gray);
  border-bottom: 1px solid var(--color-ui-gray);
  margin-bottom: 40px;
}

.post-links a.pull-right {
  float: right;
}

/*-----End-0f-next-prev----*/

/*------breadcrumb-section-------*/
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


.blog {
  background-image: url('../images/blog/blog-banner.webp');
  min-height: 200px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.contact {
  background-image: url('../images/blog/contact-banner.webp');
  min-height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-light-gray);
  height: 200px;
}

.container {
  position: relative;
}

.breadcrumb {

  display: flex;
  justify-content: center;

}

.breadcrumb-section ul.breadcrumb li a {
  text-decoration: none;
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-secondary);

}

.breadcrumb li span {
  color: var(--color-text-light);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.breadcrumb li span.sep {
  color: var(--color-secondary);
  padding: 0 6px;
}

.breadcrumb-section .container {
  padding-top: 50px;
}

.breadcrumb-section .container h3 {
  font-size: 40px;
  font-family: var(--font-primary);
  color: var(--color-text-light);
  font-weight: 600;
}

/*------end-of-breadcrumb-section-------*/
/*------blog-page------*/

.row {
  padding: 0 10px;
}

.blog-page {

  background-color: var(--color-bg-light);
  margin-bottom: 20px;

}

.img-box img {
  width: 100%;
}

.text-box {
  padding: 15px 15px;
  background-color: var(--color-bg-light);
}

.text-box h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 28px;
  color: var(--color-heading-primary);
  transition: color 0.3s ease;
  margin-bottom: 10px;
}

.text-box h3:hover {
  color: var(--color-secondary);
}

.text-box a {
  text-decoration: none;
  font-size: 15px;
  color: var(--color-text-primary);
  transition: color 0.3s ease;

}

.text-box a:hover {
  color: var(--color-secondary);
}

.blog-tag {

  display: inline-block;
  margin: 0 0 15px;
}

.blog-tag a+a {
  margin-left: 10px;

}

.blog-tag a i {
  margin-right: 10px;
  color: var(--color-secondary);
}

.text-box p {
  font-family: var(--font-theme-body-alt);
  text-align: justify;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 28px;
  margin-bottom: 15px;
  font-weight: 400;
  color: var(--color-text-primary);
}


.blog-page .text-box a.txt-btn {

  min-height: 100%;
}

.text-box a.txt-btn {

  color: var(--color-heading-light);
  font-size: 15px;
  font-weight: 600;

}

.txt-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 12px 30px;
  background: var(--color-secondary);
  color: var(--color-bg);
  z-index: 1;
}


.txt-btn::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-heading-secondary);
  transition: all 0.4s ease;
  z-index: -1;
}


.txt-btn:hover::before {
  left: 0;
  background-color: var(--color-heading-primary);
}

/*------end-of-blog-page------*/


/*------recent-post-widget------*/
.blog-title h3 {
  font-size: 26px;
  font-family: var(--font-primary);
  color: var(--color-heading-secondary);
  font-weight: 600;
  margin-top: 30px;
}

.single-sidebar.recent-post-widget {
  border: 1px solid var(--color-border-input);

  padding: 0 30px;
  padding-top: 30px;
}

.single-recent-post a {
  text-decoration: none;

}

.single-recent-post {
  padding-top: 20px;
}

.single-recent-post a h3 {
  font-size: 16px;
  color: var(--color-heading-primary);
  font-weight: 600;
  font-family: var(--font-primary);
  transition: color 0.3s ease;
  line-height: 22px;

}

.single-recent-post a h3:hover {
  color: var(--color-secondary);
}

.single-recent-post+.single-recent-post {
  padding-bottom: 10px;
  border-top: 1px solid var(--color-border-input);
}

/*------End-of-recent-post-widget------*/

/*------category-widget-------*/
.single-sidebar.category-widget {
  border: 1px solid var(--color-border-input);
  margin-top: 40px;
  padding: 10px;

}

.single-sidebar.category-widget .blog-title {
  margin-bottom: 30px;
}

.category-widget ul.category-list {
  margin: 0px;
  padding: 0px;
  list-style: none;

}

.category-widget ul.category-list a {
  text-decoration: none;
  color: var(--color-text-primary);
  font-size: 16px;
  line-height: 25px;
  transition: color 0.3s ease;
}

.category-widget ul.category-list a:hover {
  color: var(--color-secondary);
}

.category-widget ul.category-list li+li {
  border-top: 1px solid var(--color-border-input);
  margin-top: 10px;
  padding-top: 10px;
}

.sidebar .single-sidebar ul.category-list li a {
  font-family: var(--font-theme-body-alt);
}

/*------End-of-category-widget-------*/
/* ====== Projects page section start ======= */
.products-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.products-section .container {
  padding-left: 24px;
  padding-right: 24px;
}

.gallery-filter {
  margin-bottom: 60px;
}

.gallery-filter ul {
  display: block;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;

  scrollbar-width: thin;
}

.gallery-filter li {
  flex: 0 0 auto;
  vertical-align: middle;
  text-align: left;
}

.gallery-filter li span {
  display: block;
  color: var(--color-heading-primary);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  line-height: 25px;
  position: relative;
  padding: 17px 37px;
}

.gallery-filter li span:after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-secondary);
  transform: scale(0);
  transition: all 0.4s ease;
}

.gallery-filter li span i {
  font-size: 25px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 13px;
}

.gallery-filter li.active span {
  color: var(--color-secondary);
}

.gallery-filter li.active span:after {
  transform: scale(1);
}

/* project images section */
.projects-masonry {
  column-count: 4;
  column-gap: 8px;
  margin: 0;
}


.project-card {
  display: block;
  width: 100%;
  margin: 0 0 8px;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 5px;
  background: var(--color-bg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  opacity: 1;
  transition: all .35s ease;
}


.project-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);

}

.project-card.is-hidden {
  display: none;
}

.project-card:hover {
  box-shadow: var(--project-card-shadow-hover);
}

.project-card__link,
.project-card__media {
  display: block;
  position: relative;
}

.project-card__link {
  color: var(--color-text-light);
  overflow: hidden;
}

.project-card__link:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 4px;
}

.project-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--project-card-overlay);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.project-card:hover .project-card__link::after,
.project-card__link:focus-visible::after {
  opacity: 1;
}

.project-card__image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.55s ease;
}

.project-card:hover .project-card__image {
  transform: scale(1.06);
}

.project-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-card:hover .project-card__content,
.project-card__link:focus-visible .project-card__content {
  opacity: 1;
  transform: translateY(0);
}

.project-card__category,
.project-card__title {
  display: block;
  font-family: var(--font-primary);
}

.project-card__category {
  font-family: var(--font-primary);
  width: fit-content;
  margin-bottom: 6px;
  color: var(--color-text-light);
  font-size: 10px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__title {
  font-family: var(--font-primary);
  color: var(--color-text-light);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
}

.mfp-bg {
  z-index: 10000;
}

.mfp-wrap {
  z-index: 10001;
}

/* Services section home page */
.svc-grid,
.svc-single {
  padding: 60px 0;
}

.single-sidebar:not(.search-widget):not(.tags-widget) {
  padding: 0 30px 30px;
  border: 1px solid var(--color-border);
}


.single-sidebar .title {
  margin-bottom: 7px;
}

.single-sidebar .title h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 28px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.single-sidebar .title h3:after {
  display: inline-block;
  vertical-align: middle;
  content: '';
  width: 38px;
  height: 2px;
  background: var(--color-text-muted-soft);
  margin-left: 15px;
  margin-top: 18px;
}

.svc-sb {
  border: none !important;
  padding: 0 !important;
  margin: 0 0 7px 0;
}

.svc-sb .s-list {
  margin: 0;
  padding: 0 0 10px 0;
  list-style: none;
}

.svc-sb .s-list li+li {
  margin-top: 7px;
}

.svc-sb .s-list li a {
  display: block;
  color: var(--color-primary);
  text-align: left;
  font-weight: 500;
  font-size: 16px;
  background: var(--color-border-soft);
  position: relative;
  padding: 15px 20px;
  transition: all 0.4s ease;
  font-family: var(--font-secondary);
}

.svc-sb .s-list li a.deco {
  padding-left: 15px;
  height: 58px;
}

.svc-sb .s-list li a:before {
  content: '';
  width: 6px;
  height: 0;
  background: var(--color-secondary);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.svc-sb .s-list li:hover a,
.svc-sb .s-list li.active a {
  background: var(--color-primary);
  color: var(--color-bg);
}

.svc-sb .s-list li:hover a:before,
.svc-sb .s-list li.active a:before {
  height: 100%;
}

.single-sidebar.broucher-sidebar {
  border: none !important;
  padding: 0 !important;
}

.single-sidebar.broucher-sidebar .title h3:after {
  display: none;
}

.single-sidebar.broucher-sidebar p {
  font-size: 16px;
  line-height: 27px;
  color: var(--color-text-primary);
  text-align: justify;
  font-family: var(--font-secondary);
  margin: 0 0 14px 0;
}

.single-sidebar.broucher-sidebar a.broucher-btn {
  display: block;
  background: var(--color-bg);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 45px;
  padding: 10px 25px;
  color: var(--color-primary);
  position: relative;
  transition: all 0.4s ease;
  text-align: center;
}

.single-sidebar.broucher-sidebar a.broucher-btn i {
  font-size: 25px;
  margin-right: 13px;
  line-height: 45px;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

.single-sidebar.broucher-sidebar a.broucher-btn+a {
  margin-top: 15px;
}

.single-sidebar.broucher-sidebar a.broucher-btn:hover {
  background: var(--color-primary);
  color: #FFFFFF;
}

.single-sidebar.broucher-sidebar a.broucher-btn:hover i {
  color: var(--color-secondary);
}

.single-sidebar.broucher-sidebar li {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  font-size: 16px;
  text-align: left;
  margin: 0 0 10px 0;
}

/* service section right side */
.svc-grid .svc-grid-row>[class*=col-] {
  padding: 5px;
}

/* ===== Service Style Four Overlay ===== */
.svc-card .img-box {
  position: relative;
}

.svc-card .img-box>img {
  width: 100%;
  display: block;
  border-radius: 5px;
}

.svc-card .box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.svc-card .box .content {
  width: 100%;
  padding-left: 55px;
}

.svc-card .box .content i {
  color: var(--color-bg-light);
  font-size: 56px;
}

.svc-card .box .content h3 {
  color: var(--color-bg-light);
  font-weight: 300;
  font-size: 28px;
  font-family: var(--font-primary);
  line-height: 1.2em;
  margin: 0 0 20px 0;
}

.svc-card .box .content h3 span {
  font-weight: 600;
}

.svc-card .box .content a.more {
  width: 121px;
  height: 38px;
  background: var(--color-secondary);
  color: var(--color-bg-light);
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 600;
  display: inline-block;
  line-height: 38px;
  transition: all 0.4s ease;
  text-align: center;
}

.svc-card .box .content a.more:hover {
  background: var(--color-primary-dark);
}

/* Service color variations */
.gas.svc-card .box .content h3 span {
  color: var(--color-secondary);
}

.chemical.svc-card .box .content h3 span {
  color: #31DAF9;
}

.eco.svc-card .box .content h3 span {
  color: #B1EA04;
}

.mechanical.svc-card .box .content h3 span {
  color: #D3AE3A;
}

.petrol.svc-card .box .content h3 span {
  color: #FDFD1E;
}

.power.svc-card .box .content h3 span {
  color: #54C4FD;
}


.svc-detail .svc-copy h4,
.svc-detail .svc-copy p {
  margin: 0 0 14px 0;
}

.svc-detail .svc-copy h3 {
  font-size: 34px;
  color: var(--color-primary);
  font-weight: 600;
  font-family: var(--font-primary);
  margin: 0 0 7px 0;
}

/* ===== Projects Final Section ===== */
.projects-final-section {
  position: relative;
  overflow: hidden;
  background: var(--color-dark) url("../images/project-video-box-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 80px 0;
  min-height: 400px;
  color: var(--color-bg-light);
}

.projects-final-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 163, 137, 0.9);
  z-index: 1;
}

.projects-final-section__content {
  position: relative;
  z-index: 2;
  max-width: 95%;
}

.projects-final-section__content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-text-light);
  font-family: var(--font-primary);
}

.projects-final-section__content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--color-text-light);
  text-align: justify;
  font-family: var(--font-secondary);
}

.projects-final-section__content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--color-text-light);
  font-family: var(--font-primary);
}

.projects-final-section__social {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.projects-final-section__social li {
  display: inline-block;
}

.projects-final-section__social a {
  display: grid;
  place-items: center;
  width: 16px;
  height: 32px;
  color: var(--color-text-light);
  font-size: 22px;
  line-height: 1;
  transition: all 0.3s ease;
}

.projects-final-section__social a:hover {
  color: var(--color-primary);
}

.projects-final-section__top {
  position: fixed;
  bottom: 76px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.projects-final-section__top:hover {
  background: var(--color-heading-primary);
  transform: translateY(-2px);
}

.svc-detail .svc-copy p {
  font-size: 16px;
  line-height: 27px;
  color: var(--color-text-primary);
  text-align: justify;
  font-family: var(--font-secondary);
}

.svc-detail .svc-copy b {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--color-primary);
}

.svc-detail .svc-copy h4 {
  font-size: 24px;
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 600;
  margin: 0 0 10px 0;
}

.svc-detail .svc-copy ul.list-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.svc-detail .svc-copy ul.list-items li {
  font-family: var(--font-secondary);
  position: relative;
  color: var(--color-text-primary);
  font-size: 16px;
  padding-left: 26px;
}

.svc-detail .svc-copy ul.list-items li+li {
  margin-top: 5px;
}

.svc-detail .svc-copy ul.list-items li i {
  font-size: 16px;
  color: var(--color-text-secondary);
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateY(-50%);
}

.svc-detail .svc-copy .svc-features {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  align-items: center;
  gap: 30px;
}

.svc-detail .svc-copy .svc-features .svc-text {
  min-width: 0;
  margin: 0 0 14px 0;
}

.svc-detail .svc-copy .svc-features .img-box {
  width: 100%;
  max-width: 400px;
  margin: 0 0 0 auto;
}

.svc-detail .svc-copy .svc-features .img-box img {
  display: block;
  width: 100%;
}

/*------breadcrumb-section-------*/

.breadcrumb-section {
  display: flex;
  align-items: center;
  text-align: center;
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

.single-service-breadbg {
  background-image: url('../images/banner/banservice-pg.webp');
}

.service-breadbg {
  background-image: url('../images/banner/banservice.webp');
}

.project-breadbg {
  background-image: url('../images/banner/banproject.webp');
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-light-gray);
  height: 200px;
}

.container {
  position: relative;
}

.breadcrumb {
  display: block;
  justify-content: center;
  display: flex;
}

.breadcrumb-section ul.breadcrumb li a {
  text-decoration: none;
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-primary);
}



.breadcrumb li span.sep {
  color: var(--color-secondary);
  padding: 0 6px;
}

.breadcrumb-section .container h3 {
  font-size: 40px;
  font-family: var(--font-primary);
  color: var(--color-text-light);
  font-weight: 600;
}

/*------end-of-breadcrumb-section-------*/


/* Shared sticky WhatsApp CTA: fixed quick contact button. */
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1fa855;
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.26);
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  animation: whatsappAttention 2.2s ease-in-out infinite;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.floating-whatsapp i {
  font-size: 18px;
  line-height: 1;
}

.floating-whatsapp:hover {
  color: #ffffff;
  background: #20ba5a;
  transform: translateY(-2px);
}

@keyframes whatsappAttention {

  0%,
  100% {
    transform: translateY(0);
  }

  18% {
    transform: translateY(-4px);
  }

  32% {
    transform: translateY(0);
  }

  46% {
    transform: translateY(-2px);
  }
}

/* contact-ts-cont-info */

.th-get {
  padding: 60px 0 30px 0;
}

.th-get-info {
  padding-bottom: 30px;
}

.th-map {
  padding-bottom: 60px;
}

.ts-info {
  background-color: var(--color-bg-light);
  text-align: center;
  padding: 20px 0;
  min-height: 232px;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ts-info:hover {
  transform: scale(1.05);
}

.ts-a {
  background-color: var(--color-secondary);
  color: var(--color-text-light);

}

.ts-b {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.ts-info.ts-b li a {
  color: var(--color-text-light);
}

.ts-c {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
}

.ts-info li a {
  font-family: var(--font-secondary);
  color: var(--color-bg-light);
  font-size: 18px;
}

.ts-info img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
}

.ts-info h4 {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

/* .ts-info h4::after{
  content:"";
  position: absolute;
  width: 204px;
  height: 4px;
  bottom: -8px;
  transform: translateX(-102%);
  background-color: var(--color-secondary);
}
 .ts-info.ts-b h4::after{
  width: 240px;
}
 .ts-info.ts-c h4::after{
  width: 94px;
  transform: translateX(-100%);
} */

.ts-info-img img {
  filter: brightness(0) invert(1);
}

/* ====== Selected Projects Table Section ====== */
.projects-table-section {
  padding: 80px 0 60px;
  background: var(--color-bg-light);
}

.projects-table-section .section-label {
  font-family: var(--font-primary);
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.projects-table-section h2 {
  font-family: var(--font-primary);
  color: var(--color-heading-primary);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.table-responsive-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

.projects-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-primary);
  font-size: 14px;
  background: var(--color-bg);
}

.projects-table thead tr {
  background-color: var(--color-primary);
}

.projects-table thead th {
  font-family: var(--font-primary);
  color: var(--color-text-light);
  padding: 16px 20px;
  font-weight: 600;
  white-space: nowrap;
  text-align: left;
}

.projects-table thead th:first-child {
  text-align: center;
  width: 60px;
}

.projects-table tbody tr:nth-child(odd) {
  background: var(--color-bg);
}

.projects-table tbody tr:nth-child(even) {
  background: var(--color-bg-light);
}

.projects-table tbody tr:hover {
  background: #e6f5f2;
  transition: background 0.2s ease;
}

.projects-table tbody td {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  padding: 14px 20px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
  line-height: 1.6;
}

.projects-table tbody td:first-child {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.badge-completed {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: var(--color-secondary);
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.projects-table tfoot tr {
  background-color: var(--color-primary);
}

.projects-table tfoot td {
  font-family: var(--font-primary);
  color: var(--color-text-light);
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}

/* ====== Project Photo Display Fixes ====== */

/* Service detail pages — constrain oversized main + secondary images */
.img-box1 img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 4px;
}

/* Service card grid (service.php) — uniform card heights */
.svc-card .img-box>img {
  height: 280px;
  object-fit: cover;
  object-position: center;
}

/* About page service carousel — uniform carousel item heights */
.single-service-style-four .img-box img {
  height: 280px;
  object-fit: cover;
  object-position: center;
}

/* .project-card__image (masonry gallery) intentionally NOT included —
   variable heights are required for Isotope masonry layout. */