/******************************
INDEX:
    00 - General
    01 - Typography
    02 - Text Color & Background Color
    03 - Background Position & Size
    04 - Helper class
    05 - Social icons
    06 - Header
    07 - Bootstrap Overwrite 
    08 - Swiper 
    09 - Scroll To Top 
    10 - Search Box
******************************/
:root {
  --pbmit-global-color: #760613;
  --pbmit-global-dark-color: #5f0611;
  --pbmit-secondary-color: #001e4c;
  --pbmit-light-color: #f1f1f1;
  --pbmit-white-color: #ffffff;
  --pbmit-blackish-color: #071323;
  --pbmit-link-color-normal: #001e4c;
  --pbmit-link-color-hover: #f9ad00;
  --pbmit-global-color-rgb: rgb(249, 173, 0);
  --pbmit-secondary-color-rgb: rgb(0, 30, 76);
  --pbmit-responsive-breakpoint: 1200px;
  --pbmit-body-typography-font-family: "Rubik", sans-serif;
  --pbmit-body-typography-variant: regular;
  --pbmit-body-typography-font-size: 18px;
  --pbmit-body-typography-line-height: 28px;
  --pbmit-body-typography-color: #666666;
  --pbmit-heading-typography-font-family: "Space Grotesk", sans-serif;
  --pbmit-heading-color: #071323;
  --pbmit-heading-font-variant: 700;
  --pbmit-btn-typography-font-family: "Space Grotesk", sans-serif;
  --pbmit-btn-typography-variant: 700;
  --pbmit-btn-typography-font-size: 14px;
  --pbmit-btn-typography-line-height: 24px;
}

/* WebKit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--pbmit-global-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(118, 6, 19, 0.7);
}

::-webkit-scrollbar-track {
  background: transparent;
}

/* * {
  scrollbar-width: thin;
  scrollbar-color: var(--pbmit-global-color) transparent;
} */

/*----------------------------------------*/
/* 00 - General 
/*----------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  margin: 0;
  overflow-x: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: 1px dotted;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
code,
kbd,
pre,
samp {
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
select {
  text-transform: none;
}
button {
  overflow: visible;
}
button,
input,
select,
textarea {
  max-width: 100%;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
  opacity: 0.5;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0.4375em;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #d1d1d1;
  margin: 0 0 1.75em;
  padding: 0.875em;
}
fieldset > :last-child {
  margin-bottom: 0;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
optgroup {
  font-weight: bold;
}
textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
.form-control:focus {
  outline: 0px !important;
  -webkit-appearance: none;
  box-shadow: none !important;
}
.form-select {
  padding: 15px 15px;
  font-size: 15px;
  color: #848484;
  border: 1px solid #eeeeee;
  border-radius: 0;
  font-family: var(--pbmit-heading-typography-font-family);
  font-weight: 500;
}
.form-select:focus {
  border-color: #1bbde4;
  outline: 0;
  box-shadow: none;
}
/*----------------------------------------*/
/* 00-Preloader
/*----------------------------------------*/
/* Preloader Container */
.preloader {
  position: fixed;
  background-color:  #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Animated Preloader Image */
.preloader__image {
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 150px auto;
  width: 150px;
  height: 150px;

  /* Apply Animation */
  animation: flip-y 2s infinite;
}

/* Flip-Y Animation */
@keyframes flip-y {
  0% {
      transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
      animation-timing-function: ease-in;
      opacity: 0;
  }
  40% {
      transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
      animation-timing-function: ease-in;
  }
  60% {
      transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
      opacity: 1;
  }
  80% {
      transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
      transform: perspective(400px);
  }
}


/*----------------------------------------*/
/* 01 - Typography 
/*----------------------------------------*/
body {
  font-family: var(--pbmit-body-typography-font-family);
  font-weight: var(--pbmit-body-typography-variant);
  color: var(--pbmit-body-typography-color);
  font-size: var(--pbmit-body-typography-font-size);
  line-height: var(--pbmit-body-typography-line-height);
  color: var(--pbmit-body-typography-color);
  text-transform: none;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--pbmit-heading-typography-font-family);
  font-weight: var(--pbmit-heading-font-variant);
  color: var(--pbmit-heading-color);
}
h1 {
  font-size: 55px;
  line-height: 65px;
  letter-spacing: 0px;
}
h2 {
  font-size: 52px;
  line-height: 62px;
  letter-spacing: 0px;
}
h3 {
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 0px;
}
h4 {
  font-size: 38px;
  line-height: 48px;
  letter-spacing: 0px;
}
h5 {
  font-size: 32px;
  line-height: 42px;
  letter-spacing: 0px;
}
h6 {
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0px;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: var(--pbmit-global-color);
  text-decoration: none;
}
a:focus {
  text-decoration: none !important;
}
a:focus,
a:hover {
  color: #000;
  text-decoration: none ;
}
a.link-btn,
.link-btn a {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
a.link-btn i,
.link-btn a i {
  padding-left: 10px;
}
.pbmit-btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-family: var(--pbmit-btn-typography-font-family);
  font-size: var(--pbmit-btn-typography-font-size);
  font-weight: var(--pbmit-btn-typography-variant);
  line-height: var(--pbmit-btn-typography-line-height);
  letter-spacing: 0px;
  text-transform: uppercase;
  font-style: normal;
  padding: 0;
  text-transform: none;
  background-color: transparent;
  border: none;
  transition: all 0.3s;
  z-index: 1;
  color: #fff;
}
.pbmit-btn:hover .pbmit-align-icon-right svg {
  filter: invert(0) !important;
}
.pbmit-btn .pbmit-button-content-wrapper {
  display: flex;
  justify-content: center;
  text-decoration: inherit;
}
.pbmit-btn .pbmit-align-icon-right {
  margin-left: 5px;
  order: 15;
}

.pbmit-btn .pbmit-button-text {
  color: #fff;
  position: relative;
  padding-right: 5px;
  overflow: hidden;
}
.pbmit-btn_right .pbmit-btn .pbmit-button-text{
  color: #000;
}
.pbmit-btn .pbmit-align-icon-right svg {
  width: 100%;
  height: 100%;
}
.pbmit-btn svg line {
  fill: none;
  stroke: var(--pbmit-white-color);
  stroke-width: 2;
  stroke-miterlimit: 10;
}
.pbmit-btn svg line:nth-child(1) {
  stroke-dasharray: 25px;
  stroke-dashoffset: 50px;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.61, 1, 0.88, 1);
}
.pbmit-btn svg line:nth-child(2),
.pbmit-btn svg line:nth-child(3) {
  stroke-dasharray: 20px;
  stroke-dashoffset: 40px;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.61, 1, 0.88, 1) 0.3s;
}
.pbmit-btn:hover svg line {
  stroke-dashoffset: 0 !important;
  stroke: var(--pbmit-global-color);
}
.pbmit-btn-blackish {
  color: var(--pbmit-blackish-color);
}
.pbmit-btn-blackish.pbmit-btn svg line {
  stroke: var(--pbmit-blackish-color);
}
.pbmit-btn-blackish.pbmit-btn:hover svg line {
  stroke: var(--pbmit-global-color);
}
.pbmit-btn-white,
.pbmit-btn-global {
  text-transform: uppercase;
  padding: 18px 35px;
  background-color: var(--pbmit-blackish-color);
}
.pbmit-btn-global .pbmit-button-content-wrapper,
.pbmit-btn-white .pbmit-button-content-wrapper,
.pbmit-btn-secondary .pbmit-button-content-wrapper {
  overflow: hidden;
}
.pbmit-btn-global:before,
.pbmit-btn-white:before,
.pbmit-btn-secondary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform-origin: 100% 50%;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  background-color: var(--pbmit-blackish-color);
}
.pbmit-btn-global:before {
  background-color: var(--pbmit-global-color);
}
.pbmit-btn-global:hover:before,
.pbmit-btn-white:hover:before,
.pbmit-btn-secondary:hover:before {
  transform: scale3d(0, 1, 1);
}
.pbmit-btn-global:hover .pbmit-button-text,
.pbmit-btn-white:hover .pbmit-button-text,
.pbmit-btn-secondary:hover span span {
  animation: MoveUpInitial 0.3s forwards, MoveUpEnd 0.3s forwards 0.3s;
}
.pbmit-btn-white:hover {
  color: var(--pbmit-blackish-color);
  background-color: var(--pbmit-white-color);
}
@keyframes MoveUpInitial {
  to {
    transform: translate3d(0, -105%, 0);
  }
}
@keyframes MoveUpEnd {
  from {
    transform: translate3d(0, 100%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.pbmit-btn-white:hover svg line {
  stroke: var(--pbmit-blackish-color);
}
.pbmit-btn-global {
  color: var(--pbmit-blackish-color);
  background-color: var(--pbmit-global-color);
  position: relative;
}
.pbmit-btn-global svg line {
  stroke: var(--pbmit-blackish-color);
}
.pbmit-btn-global:hover {
  color: var(--pbmit-white-color) !important;
  background-color: var(--pbmit-secondary-color);
}
.pbmit-btn-global:hover svg line {
  stroke: var(--pbmit-white-color);
}
.pbmit-btn-global:focus {
  color: var(--pbmit-blackish-color);
}
.pbmit-btn.pbmit-btn-secondary {
  padding: 18px 30px !important;
  text-transform: uppercase;
  background-color: #ffffff00;
}
.pbmit-btn-secondary:before {
  background-color: var(--pbmit-global-color);
}
.pbmit-btn-secondary:hover {
  background-color: var(--pbmit-global-color);
}
.pbmit-btn-secondary:hover svg line {
  stroke: var(--pbmit-white-color);
}
/** Divider **/
.sep-line {
  height: 1px;
  border-top: 1px solid #ebebeb;
  display: block;
  position: relative;
  top: 1px;
  width: 100%;
}

/*----------------------------------------*/
/* 02 - Background Color 
/*----------------------------------------*/
body .pbmit-bg-color-global {
  background-color: var(--pbmit-global-color);
}
body .pbmit-bg-color-secondary {
  background-color: var(--pbmit-secondary-color);
}
body .pbmit-bg-color-light {
  background-color: var(--pbmit-light-color);
}
body .pbmit-bg-color-blackish {
  background-color: var(--pbmit-blackish-color);
}
body .pbmit-color-global {
  color: var(--pbmit-global-color);
}

/*----------------------------------------*/
/* 03 - Background Position & Size 
/*----------------------------------------*/
.bg-cover {
  background-size: cover;
}
.bg-contain {
  background-size: contain;
}
.bg-pos-l {
  background-position: left;
}
.bg-pos-r {
  background-position: right;
}
.bg-pos-rt {
  background-position: right top;
}
.bg-pos-lt {
  background-position: left top;
}
.bg-pos-rb {
  background-position: right bottom;
}
.bg-pos-lb {
  background-position: left bottom;
}

/*----------------------------------------*/
/* 04 - Helper Class 
/*----------------------------------------*/
.section-mdxl {
  padding-top: 120px;
  padding-bottom: 110px;
}
.section-lg {
  padding-top: 90px;
  padding-bottom: 100px;
}
.section-lgx {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-xl {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-md {
  padding-top: 100px;
  padding-bottom: 70px;
}
.section-lgt {
  padding-top: 120px;
}
.section-lgb {
  padding-bottom: 50px;
}

/*----------------------------------------*/
/* 05 - Social icons 
/*----------------------------------------*/
.social-icons {
  list-style: none;
  margin: 0px;
  padding: 0px;
  font-size: 15px;
  padding-top: 2px;
  padding-bottom: 3px;
}
.pbmit-social-li {
  display: inline-block;
  padding-left: 0px;
  padding-right: 0px;
}
.social-icons li > a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
  background-color: transparent;
  font-size: 16px;
}

/*----------------------------------------*/
/* 06 - Header 
/*----------------------------------------*/
.navbar-brand .navbar-brand-item {
  height: 60px;
  display: block;
  width: auto;
}
.site-header {
  z-index: 999;
  position: relative;
}
.site-header .site-header-menu {
  position: absolute;
  z-index: 2;
  width: 100%;
  background: #00000050;
}
.site-header .pbmit-slider-area {
  position: relative;
}
.site-header .site-branding img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  max-height: 75px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.site-navigation ul.navigation > li > a {
  font-size: 14px;
  font-weight: 700;
  display: block;
  padding: 0px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: var(--pbmit-white-color);
}
.site-header .site-navigation ul.navigation > li.active > a:after {
  color: var(--pbmit-global-color);
}
.site-navigation ul.navigation > li > a:hover:after {
  color: var(--pbmit-global-color);
}
.main-menu .navigation > li > ul a {
  position: relative;
  display: table-cell;
  font-weight: 700;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-style: normal;
  color: var(--pbmit-blackish-color);
  font-family: var(--pbmit-heading-typography-font-family);
}
.main-menu .navigation > li > ul a:after {
  display: none;
}
.site-navigation ul.navigation a {
  font-family: var(--pbmit-heading-typography-font-family);
  font-weight: normal;
  font-size: 16px;
  font-style: normal;
}
.main-menu .navigation > li {
  position: relative;
  float: left;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu ul > li.dropdown > a:after {
  font-family: "pbminfotech-base-icons";
  content: "\e811";
  margin-left: 5px;
  font-size: 10px;
  font-weight: 900;
  vertical-align: top;
  color: var(--pbmit-white-color);
}
.main-menu .navigation > li > ul > li > ul {
  left: 100%;
  top: 0;
}
.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  z-index: 999;
}
.header-button .pbmit-btn {
  padding: 15px 24px;
}
.header-button .pbmit-btn i {
  font-size: 20px;
}
.site-header .search-btn {
  margin-right: 15px;
  font-size: 17px;
}
.site-header .social-icons li > a {
  height: 50px;
  line-height: 50px;
}
.ipad-view-search {
  display: none;
}
.pbmit-link li {
  margin: 0 10px;
}
.closepanel,
.pbmit-mobile-menu-bg,
.site-header .righticon {
  display: none;
}
/** sticky-header **/
.site-header .pbmit-header-content.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #00000060; /* Change as needed */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.site-header-menu .logo-img.stickylogo,
.site-header-menu.sticky-header .logo-img {
  max-height: 55px;
}
.site-header-menu.sticky-header .logo-img.stickylogo {
  display: inline-block;
}
.sticky-header .site-navigation ul.navigation > li > a {
  height: 90px;
  line-height: 90px;
}
/* Pre Header */
.pre-header {
  height: 60px;
  line-height: 60px;
  background-color: var(--pbmit-light-color);
}
.list-unstyled i {
  font-size: 14px;
  color: #666;
}

/*----------------------------------------*/
/* 07 - Bootstrap Overwrite 
/*----------------------------------------*/
.g-lg-4,
.gy-lg-4,
.g-4,
.gy-4 {
  --bs-gutter-y: 2rem;
}
.g-lg-4,
.gx-lg-4,
.g-4,
.gx-4 {
  --bs-gutter-x: 2rem;
}
.row > * {
  padding-right: calc(var(--bs-gutter-x) * 0.6);
  padding-left: calc(var(--bs-gutter-x) * 0.6);
}

/*----------------------------------------*/
/* 08 - Swiper 
/*----------------------------------------*/
.swiper-slider {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.swiper-pagination-bullet {
  border: 0;
  background-color: rgba(7, 19, 35, 0.5);
  outline: none;
  height: 5px;
  width: 30px;
  border-radius: 0;
  vertical-align: middle;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0px;
  text-align: right;
}
.swiper-slider[data-dots="true"] {
  padding-bottom: 50px;
}
.swiper-pagination-bullet-active {
  border-radius: 0;
  background: var(--pbmit-blackish-color);
  height: 2px;
}
.swiper-pagination-bullet-active:after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  background-color: var(--pbmit-blackish-color);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "pbminfotech-base-icons";
  font-size: 20px;
  color: var(--pbmit-blackish-color);
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "\e83a";
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "\e83a";
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  transform: rotate(180deg);
  position: absolute;
  left: 14px;
}
.swiper-slider.home-case-studies {
  overflow: visible;
}
.home-case-studies .swiper-buttons {
  position: absolute;
  top: -100px;
  right: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  left: 0;
  padding: 0 15px;
  text-align: right;
}
.swiper-button-next,
.swiper-button-prev {
  text-align: center;
  position: static;
  z-index: 15;
  cursor: pointer;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 0;
  transition: all 500ms ease;
  background-color: #fff;
  color: var(--pbmit-white-color);
}
.swiper-button-next {
  margin-left: 10px;
}
.home-case-studies .swiper-button-prev {
  left: initial;
  right: 75px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--pbmit-global-color);
}

.swiper-button-next:hover .swiper-button-next:after {
  color: var(--pbmit-white-color);
}

.swiper-button-prev:hover .swiper-button-prev:after {
  color: var(--pbmit-white-color);
}

.swiper-slider.marquee .swiper-slide {
  display: flex;
  width: auto !important;
}
.swiper-slider.marquee .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
/*----------------------------------------*/
/* 09 - Scroll To Top 
/*----------------------------------------*/
.pbmit-progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  background-color: #ffffff80;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.pbmit-progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pbmit-progress-wrap::before {
  position: absolute;
  content: "\e812";
  font-family: pbminfotech-base-icons;
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.pbmit-progress-wrap svg.pbmit-progress-circle path {
  stroke: var(--pbmit-global-color);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  fill: rgba(7, 19, 35, 0.1);
}
.pbmit-progress-wrap::after {
  position: absolute;
  content: "\e812";
  font-family: "pbminfotech-base-icons";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--pbmit-global-color);
  left: 2px;
  top: 2px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/*----------------------------------------*/
/*  10 - Search Box
/*----------------------------------------*/
.pbmit-search-overlay {
  position: fixed;
  top: -500px;
  left: 0;
  width: 100%;
  height: 500px;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
}
.pbmit-search-overlay.st-show {
  opacity: 1;
  top: 0;
}
.pbmit-icon-close {
  position: absolute;
  top: 40px;
  right: 40px;
  opacity: 0.8;
  font-size: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
  text-align: center;
  cursor: pointer;
  border-color: var(--pbmit-white-color);
  color: var(--pbmit-white-color);
}
.pbmit-icon-close svg {
  fill: var(--pbmit-white-color);
}
.pbmit-icon-close svg rect {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pbmit-icon-close:hover svg rect {
  animation: pbmit-closer-line-draw 0.6s;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: pbmit-closer-line-draw;
}
.pbmit-icon-close:hover svg rect:nth-of-type(2) {
  animation-delay: 0.17s;
}
.pbmit-search-outer {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pbmit-search-overlay .pbmit-site-searchform {
  position: relative;
}
.pbmit-search-overlay .pbmit-site-searchform:before {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scale3d(0, 1, 1);
  -ms-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.pbmit-search-overlay .pbmit-site-searchform:after {
  font-family: "pbminfotech-base-icons";
  content: "\e80d";
  position: absolute;
  right: 10px;
  top: 15px;
  color: var(--pbmit-white-color);
  font-size: 25px;
  line-height: normal;
}
.pbmit-search-overlay.st-show .pbmit-site-searchform:before {
  -webkit-animation-name: fadeInMove;
  animation-name: fadeInMove;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  visibility: visible;
}
@keyframes fadeInMove {
  0% {
    opacity: 0;
    transform: scale3d(0, 1, 1);
  }
  10% {
    opacity: 1;
    transform: scale3d(0.1, 1, 1);
  }
  100% {
    opacity: 0.14;
    transform: scale3d(1, 1, 1);
  }
}
.owl-carousel.review-carousel{
  margin-left: -15px;
}
.pbmit-search-overlay input[type="search"] {
  height: 65px;
  line-height: 65px;
  font-size: 28px;
  background-color: transparent;
  text-align: left;
  border: none;
  border-bottom: 1px solid #ffffff54;
  padding-left: 0;
  border-radius: 0;
  color: var(--pbmit-white-color);
}
.pbmit-search-overlay input[type="search"]::placeholder {
  color: var(--pbmit-white-color);
  opacity: 0.6;
}
.pbmit-search-overlay .pbmit-site-searchform button {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 0;
  right: 0;
  background-color: transparent;
  text-indent: -9999px;
  line-height: 58px;
  font-size: 16px;
  outline: none;
  padding: 0;
  border: none;
  z-index: 1;
  color: var(--pbmit-white-color);
}

/* about section */
.about-section-info .info-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-section-info .icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--pbmit-global-color);
    font-size: 24px;
    margin-right: 15px;
}

.about-section-info .icon-circle i {
    color: var(--pbmit-global-color);
}

.about-section-info .about-main-text {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

/* index contact form */
.contact-area {
    padding: 50px 0;
    background: #f4f4f4;
    position: relative;
    overflow: hidden;
}

/* Background image for top half */
.contact-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: url('../images/homepage-1/bg/form-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    z-index: 1;
    opacity: 0.8;
}

/* Form Box */
.contact-area .form-box {
    z-index: 1;
    background: white;
    padding: 25px 30px;
    border: 1px solid var(--pbmit-global-color);
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.pbmit-ihbox-title .contact-item .contact-text {
  font-size: 15px;
}

.contact-area .form-box h2 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--pbmit-global-color);
    display: inline-block;
    padding-bottom: 5px;
}

.contact-area .form-input {
    margin-bottom: 6px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-area textarea {
    resize: none;
}

/* Submit Button */
.contact-area .btn-submit {
    width: 100%;
    background: var(--pbmit-global-color);
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

.contact-area .btn-submit:hover {
    background: var(--pbmit-secondary-color);
}

/* Contact Box */
.contact-area .contact-box {
    z-index: 1;
    background: #bfbfbf;
    color: white;
    padding: 15px 30px;
    border: 1px solid var(--pbmit-global-color);
    border-radius: 8px;
}

/* Contact Heading */
.contact-area .contact-box h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--pbmit-global-color);
    display: inline-block;
    padding-bottom: 5px;
}

/* Contact Cards */
.contact-card {
    background: white;
    color: black;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    word-break: break-word;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    font-size: 15px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.contact-card i {
    font-size: 20px;
    color: var(--pbmit-global-color);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .contact-area {
        padding: 40px 0;
    }

    .contact-area .form-box {
        padding: 17px 20px 25px;
    }
}

/* Services Section */
.services-section {
  padding: 50px 0;
}
.services-section .row{
  row-gap: 30px;
}

.service-image {
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--pbmit-global-color);
}

.service-image img {
  width: 100%;
}

.service-content h6 {
  color: var(--pbmit-global-color);
}

.service-box {
  background: #fff;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.service-box:hover {
  background: var(--pbmit-global-color);
}

.service-box h6 {
  font-size: 24px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.service-box p {
  color: #666;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-box .read-more {
  color: var(--pbmit-global-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-box:hover h6,
.service-box:hover p {
  color: #fff;
}

.service-box:hover .read-more {
  display: inline-block;
  padding: 5px;
  background: #fff;
  border-radius: 5px;
}

.read-more:hover {
  transform: scale(1.05);
}

.service-box:hover .service-image {
  border-bottom: 1px solid #fff;
}