/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Inter", Arial, Helvetica, sans-serif !important;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 40px;
  height: 40px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-xl-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
  border: none;
}

.btn.btn-primary:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}

.btn.btn-light {
  color: var(--bs-primary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
}

/*** Navbar Start ***/
.header-top .topbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
  color: var(--bs-primary);
}

.header-top .topbar .dropdown .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  padding-top: 12px;
  border: 0;
  transition: 0.5s;
  opacity: 1;
}

.header-top {
  position: relative;
}
@media (min-width: 992px) {
  .header-top::before {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 45px;
    top: 0;
    right: 0;
    background: var(--bs-dark);
    z-index: -1;
  }

  .navbar-brand-2 {
    display: none;
  }
}

@media (max-width: 991px) {
  .header-top {
    max-height: 80px;
  }

  .navbar {
    justify-content: space-between;
  }

  .header-top .container {
    max-height: 80px;
  }

  .navbar-brand {
    display: none;
  }

  .navbar-brand-2 {
    position: relative;
    overflow: hidden;
    width: 200px;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: 99;
  }

  .navbar-brand-2::before {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 600px;
    top: -200px;
    right: 18px;
    /* background: var(--bs-dark); */
    transform: rotate(-18deg);
    z-index: -1;
  }

  .navbar-brand-2::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 5px;
    height: 600px;
    top: -200px;
    right: 18px;
    /* background: var(--bs-primary); */
    transform: rotate(-18deg);
    z-index: -1;
  }

  .navbar.navbar-light {
    height: 100%;
    padding: 0;
  }

  .navbar .navbar-collapse {
    margin-top: -20px;
  }
}

.nav-bar .navbar {
  z-index: 9;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.nav-bar .navbar-light .navbar-brand img {
  max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
  padding: 0;
  color: var(--bs-dark);
  font-size: 18px;
}
.navbar .navbar-nav .nav-item.nav-link {
  color: var(--bs-dark);
  font-size: 18px;
}

.navbar .navbar-nav .nav-item {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 40px;
  font-size: medium;
  font-weight: 500;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
  color: var(--bs-primary);
}

@media (max-width: 991px) {
  .navbar {
    padding: 20px 0;
  }

  .navbar .navbar-nav .nav-link {
    padding: 0;
  }

  .navbar .navbar-nav .nav-item {
    display: flex;
    padding: 12px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .navbar .navbar-nav .nav-btn {
    display: flex;
    justify-content: start;
  }

  .navbar .navbar-nav {
    width: 100%;
    display: flex;
    margin-top: 20px;
    padding-bottom: 20px;
    margin-left: 50px;
    background: var(--bs-light);
  }

  .navbar .navbar-nav .nav-btn {
    display: flex;
    flex-direction: column;
  }

  .navbar .navbar-nav .nav-btn a.btn {
    margin-right: 15px;
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

@media (min-width: 992px) {
  .navbar {
    padding: 0px 0;
  }

  .navbar .nav-btn {
    display: flex;
    align-items: center;
    justify-content: end;
  }

  .navbar .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bs-light);
    border-radius: 10px;
  }

  .navbar .navbar-nav .nav-btn {
    width: 100%;
    display: flex;
    margin-left: auto;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 19px;
    background: var(--bs-white);
    transition: 0.5s;
    opacity: 1;
  }

  .header-top .navbar-brand {
    position: relative;
    overflow: hidden;
    padding: 15px 0px;
    z-index: 99;
  }
  .header-top .navbar-brand img {
    max-height: 100px;
    max-width: auto;
    width: auto;
  }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.hero-section {
  background-image: url(../img/base-slide.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 700px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-bg-half-1 {
  background-image: url(../img/slide-01-image.png);
  /* clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%); */
  filter: grayscale(10%);
  /* transform: scale(100% - 50%); */
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 30%;
  height: 100%;
  right: 150px;
  z-index: 999;
  top: 0;
}

.hero-bg-half-2 {
  background-image: url(../img/header-1.jpg);
  clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
  filter: grayscale(10%);
  transform: scale(100% - 50%);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 58%;
  height: 100%;
  right: 0;
  top: 0;
}

.hero-shape-1 {
  background-color: var(--bs-primary);
  width: 150px;
  height: 50%;
  position: absolute;
  left: 54%;
  top: 0;
  transform: translateY(-50%) skew(-26deg, 0deg);
  position: relative;
}

.hero-shape-1:before {
  background-color: var(--bs-dark);
  content: "";
  width: 50%;
  height: 80%;
  position: absolute;
  right: 0;
  top: 0;
}

.hero-shape-2 {
  background-color: var(--bs-dark);
  width: 150px;
  height: 50%;
  position: absolute;
  right: -43%;
  bottom: 0;
  transform: translateY(50%) skew(-25deg, 0deg);
  position: relative;
  z-index: 1;
}

.hero-shape-2::after {
  background-color: var(--bs-primary);
  content: "";
  width: 75px;
  height: 80%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.heading-2 {
  font-size: 48px;
  font-weight: 800;
}
.heading-2 span {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.heading-2 span::after {
  content: "";
  height: 8px;
  width: 100%;
  left: 0;
  background-color: #ff7d23;
  position: absolute;
  bottom: -3px;
  z-index: -1;
}
.logo-carousel {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
}
.logo-carousel .logo-item {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    /* height: 100px; */
    background-size: cover;
    padding: 28px;
    /* width: 130%; */
}
/* .logo-carousel .owl-item {
    width: auto !important;
} */
.logo-carousel .logo-item img {
  height: 80px !important;
  width: fit-content !important;
  margin: 0px;
  filter: grayscale(100%);
}
.logo-carousel .logo-item img:hover {
  filter: grayscale(0%);
}
.logo-carousel .owl-dots {
  display: flex;
  position: absolute;
  bottom: -30px;
  justify-content: center;
  align-items: center;
}
.logo-carousel .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  margin: 0 8px;
  background: #ccc;
  border-radius: 50%;
}
.logo-carousel .owl-dots .owl-dot.active {
  background-color: #f68a0a !important;
  width: 10px;
  height: 10px;
}
ul.bullet_style {
  margin: 4px 0px;
  padding: 0;
  list-style-position: inside;
  list-style-type: none;
  display: block;
}
ul.bullet_style li {
  border: solid 1px #ccc;
  padding: 15px 50px !important;
  margin: 8px 0px;
  font-weight: 600;
  border-radius: 8px;
  background: url(../img/bullet.svg) no-repeat 15px 15px;
  display: inline-block;
  width: 100%;
}
ul.bullet_style_2 {
  margin: 0px;
  padding: 0;
  list-style-position: inside;
  list-style-type: none;
  display: block;
}
ul.bullet_style_2 li {
  border-left: solid 4px #ff7d23;
  padding: 8px 20px !important;
  margin: 15px 0px;
  /* font-size: 18px; */
  font-weight: 600;
  display: inline-block;
  width: 100%;
}
ul.bullet_style_3 {
  margin: 0px 0px 20px 0px;
  padding: 0;
  list-style-position: inside;
  list-style-type: none;
  display: block;
}
ul.bullet_style_3 li {
  padding: 0px 0px 0px 20px !important;
  margin: 0px 0px 5px 0px;
  background: url("../img/check_orange.svg") no-repeat 0px 10px;
  /* font-size: 18px; */
  font-weight: 600;
  display: inline-block;
  width: 100%;
}
.verticals-carousel .owl-stage {
  padding-bottom: 10px;
}
.verticals-carousel .vertical-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: solid 1px #ccc;
  box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, 0.1);
}
.verticals-carousel .vertical-item img {
  object-fit: cover;
  height: 180px;
}
.verticals-carousel .vertical-item h4 {
  font-size: 22px;
  margin-top: 5px;
  line-height: 40px;
  text-align: center;
  text-transform: capitalize;
}
.verticals-carousel .owl-nav {
  top: 45%;
  position: absolute;
  width: 100%;
}
.verticals-carousel .owl-nav .owl-prev {
  position: absolute;
  left: -60px;
}
.verticals-carousel .owl-nav .owl-next {
  position: absolute;
  right: -60px;
}
.verticals-carousel .owl-nav .owl-prev,
.verticals-carousel .owl-nav .owl-next {
  font-size: 30px;
  color: #ff7d23;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: solid 2px #ff7d23;
  display: flex;
  justify-content: center;
}
.info-box {
  border-radius: 10px;
}
.info-box h3 {
  color: #ff7d23;
}
.info-box p {
  margin: 0px;
  padding: 0;
}
/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
  height: 650px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--bs-white);
  color: var(--bs-primary);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
  top: 45%;
  left: 0;
}
.header-carousel .owl-nav .owl-next {
  top: 45%;
  right: 0;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 65px 0 var(--bs-primary);
  color: var(--bs-dark);
}

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  z-index: 9;
}
.header-carousel .header-carousel-item .carousel-caption h1 {
  font-size: 52px;
  line-height: 56px;
  font-weight: 800;
  font-family: "Inter", sans-serif;
}
@media (max-width: 991px) {
  .header-carousel .header-carousel-item .carousel-caption {
    padding-top: 45px;
  }

  .header-carousel.owl-carousel,
  .header-carousel .header-carousel-item {
    height: 700px;
  }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/banner-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Banner Start ***/
.banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(../img/banner-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 9;
}

.banner .container {
  position: relative;
  z-index: 99;
}

.banner::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 500px;
  top: -200px;
  left: 0;
  background: var(--bs-primary);
  transform: rotate(45deg);
  z-index: 1;
}

.banner::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 500px;
  bottom: -200px;
  right: 0;
  background: var(--bs-primary);
  transform: rotate(45deg);
  z-index: 1;
}

.banner .banner-design-1 {
  position: absolute;
  width: 30px;
  height: 500px;
  top: -165px;
  left: 0;
  background: var(--bs-dark);
  transform: rotate(45deg);
  z-index: 2;
}

.banner .banner-design-2 {
  position: absolute;
  width: 30px;
  height: 500px;
  bottom: -165px;
  right: 0;
  background: var(--bs-dark);
  transform: rotate(45deg);
  z-index: 2;
}
/*** Banner End ***/
.btn-primary {
  background: var(--bs-primary);
}
/*** Service Start ***/
.service .nav .nav-item {
  background: var(--bs-light);
  margin-right: 10px;
}

.service .nav .nav-item a {
  display: flex;
  justify-content: center;
  border: 1px solid var(--bs-primary);
  padding: 15px 30px;
  font-weight: 600;
}
.service .tab-content {
  padding-top: 40px;
}

.service .nav-tabs {
  border-color: var(--bs-primary);
}
.service .nav-item a.active {
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

.service .nav-item a span {
  color: var(--bs-primary);
}

.service .nav-item a.active span {
  color: var(--bs-white);
}
.service-carousel.owl-carousel {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.service-carousel.owl-carousel .service-item {
  width: 40%;
  font-size: 16px;
  color: #444;
  border: solid 2px #ccc;
}
.service-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: auto;
  top: 45%;
}
.service-carousel .service-item img {
  height: 250px;
  object-fit: cover;
  border-bottom: solid 2px #ccc;
}
.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
  position: absolute;
  padding: 10px 35px;
  border: 1px solid var(--bs-primary);
  color: var(--bs-dark);
  background: var(--bs-light);
  transition: 0.5s;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.service-carousel .owl-nav .owl-prev {
  top: 0;
  left: -115px;
}

.service-carousel .owl-nav .owl-next {
  top: 0;
  right: -115px;
}

@media (max-width: 991px) {
  .owl-stage-outer {
    /* margin-bottom: 70px; */
  }
  .service-carousel .owl-nav .owl-prev {
    bottom: -70px;
    left: 0;
  }

  .service-carousel .owl-nav .owl-next {
    bottom: -70px;
    right: 0;
  }

  .service .nav {
    display: flex;
    justify-content: center;
    width: -webkit-fill-available;
  }
}
/*** Service End ***/

/*** Projects Start ***/
.projects .nav-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
}

.projects-item .projects-content {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.projects .nav-item a.active {
  background: var(--bs-primary);
}

.projects .nav-item a span {
  color: var(--bs-dark);
}

.projects .nav-item a.active span {
  color: var(--bs-white);
}

.projects .nav-item a.active .projects-icon {
  background: var(--bs-dark) !important;
}

.projects .nav-item a.active .projects-icon span {
  color: var(--bs-primary);
}
/*** Projects End ***/

/*** Blog Start ***/
.blog .blog-item {
  height: 100%;
  background: var(--bs-light);
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  background: rgba(246, 138, 10, 0.3);
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
  width: 100%;
  height: 100%;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-heading {
  position: relative;
  background: var(--bs-white);
}

.blog .blog-item .blog-heading a.h4 {
  position: relative;
  width: 100%;
  display: inline-flex;
  transition: 0.5s;
  z-index: 2;
}

.blog .blog-item .blog-heading::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  right: 0;
  bottom: 0;
  transition: 0.5s;
  z-index: 1;
}

.blog .blog-item:hover .blog-heading::after {
  width: 100%;
  background: var(--bs-primary);
}

.blog .blog-item:hover .blog-heading a.h4 {
  color: var(--bs-white);
}

.blog .blog-item:hover .blog-heading a.h4:hover {
  color: var(--bs-dark);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item .team-img {
  position: relative;
  overflow: hidden;
}

.team .team-item .team-img img {
  transition: 0.5s;
}

.team .team-item:hover .team-img img {
  transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
  position: absolute;
  bottom: 20px;
  right: -100%;
  z-index: 9;
  transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
  right: 25px;
}

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: rgba(246, 138, 10, 0.2);
  transition: 0.5s;
  z-index: 1;
}

.team .team-item:hover .team-img::after {
  height: 100%;
}

.team .team-item .team-content {
  transition: 0.5s;
}

.team .team-item:hover .team-content {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
/*** Team End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item {
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  border: none;
  color: var(--bs-dark);
  font-size: large;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
  color: var(--bs-white);
  background: rgba(246, 138, 10, 0.9);
  font-size: 18px;
  font-weight: 600;
}

.faq-section
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button.collapsed {
  color: var(--bs-dark);
  background: var(--bs-light);
}
/*** FAQs End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
  margin-right: -1px;
}

.testimonial .testimonial-item {
  position: relative;
  margin-top: 35px;
}

.testimonial .testimonial-item .customer-text {
  border: 1px solid var(--bs-primary);
  border-top: none;
}

.testimonial .testimonial-item .testimonial-quote {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  right: 25px;
  transform: translateY(-50%);
  color: var(--bs-dark);
  background: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
  display: flex;
  align-items: center;
  background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-inner img {
  width: 100px;
  height: 100px;
  border: 2px solid var(--bs-primary);
}

.testimonial-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  margin: 30px 10px 0 10px;
  background: var(--bs-white);
  transition: 0.5s;
}

@media (max-width: 991px) {
  .testimonial-carousel .owl-dots .owl-dot {
    margin: 0 10px 0 10px;
  }
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 30px;
  height: 30px;
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  margin-right: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
  background: var(--bs-white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-primary);
  transition: 0.5s;
}
/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-dark);
}

.footer .footer-item a {
  /* line-height: 35px; */
  color: var(--bs-white);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  letter-spacing: 1px;
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
  color: var(--bs-primary);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark);
}
/*** copyright end ***/

.text-orange {
  color: #ff6600;
}
.underline-orange {
  text-decoration: underline;
  text-decoration-color: #ff6600;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
.product-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: inset 0px 0px 14.51px 0.73px rgba(0, 0, 0, 0.15);
}

.solution-section {
  background: url("../img/solution.jpg") center center / cover no-repeat;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0px 100px 0px;
}

.solution-overlay {
  background: rgba(2, 2, 2, 0.45); /* dark overlay for text contrast */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.solution-content {
  position: relative;
  z-index: 2;
}

.btn-orange {
  background-color: #ff6600;
  color: white;
}

.btn-orange:hover {
  background-color: #e65c00;
  color: white;
}

/* Gauri CSS file About section */
.about-box {
  background: #fff;
  margin-top: -50px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.about-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Social icons */
.social-icons {
  position: absolute;
  top: 20px;
  right: 20px;
}

.social-icons a {
  background: #fff;
  color: #f26522;
  padding: 8px 10px;
  margin-left: 5px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.journey-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.journey-content h2 {
    color: #111;
    font-size: 40px;
}

.journey-content p {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
  line-height: 28px;
}

.journey-btn {
  background-color: #f26522;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 20px;
}

.journey-btn:hover {
  background-color: #d35400;
}

.image-box {
  border: 5px solid white;
  box-shadow: 10px 10px 0 #f26522;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.why-choose-us {
  background-color: #f9f9f9;
}

.custom-list {
  padding-left: 1rem;
  list-style-type: none;
}

.custom-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.custom-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #007bff;
}

.founder-section {
  background-color: #f8f9fa;
}

.material-hero {
    background: url('../img/material-new-bg.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    background-color: #000;
}

.material-img{
    width: 100%;
    height: auto;
    padding: 0px;
    background-color: #f9f9f9;
}

.highlight-box {
    background-color: #fff3e0;
    border-left: 5px solid orange;
    padding: 20px;
    margin-top: -40px;
    margin-bottom: 40px;
}
.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.icon-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.process-hero {
    background: rgba(0, 0, 0, 0.7) url('../img/process-bg.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.text-orange {
    color: #ff6600;
  }
  .underline-orange {
    text-decoration: underline;
    text-decoration-color: #ff6600;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
  }
  .product-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: inset 0px 0px 14.51px 0.73px rgba(0, 0, 0, 0.15);
  }

  .solution-section {
    background: url('../img/solution.jpg') center center / cover no-repeat;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0px 100px 0px;
  }

  .solution-overlay {
    background: rgba(2, 2, 2, 0.45); /* dark overlay for text contrast */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .solution-content {
    position: relative;
    z-index: 2;
  }

  .btn-orange {
    background-color: #ff6600;
    color: white;
  }

  .btn-orange:hover {
    background-color: #e65c00;
    color: white;
  }

   /* Hero Section contact us */
   .contact-hero {
    background: url('../img/contact-us-new-bg.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
  }

  .contact-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
  }

  .contact-hero .container {
    position: relative;
    z-index: 1;
  }

  /* Contact Info Section */
  .contact-info-section {
    background-color: #f5f5f5;
    padding: 40px 0;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-direction: column;
  }

  .icon-box {
    background-color: #fff;
    border-radius: 50px;
    padding: 10px;
    display: flex;
    justify-content: center;
    height: 50px;
    width: 50px;
    align-items: center;
  }

  .icon-box i {
    color: #fd5c1c;
    font-size: 22px;
  }

  .divider {
    border-left: 2px solid #ccc;
    height: 120px;
    margin: auto;
    width: 10px;
  }

  .contact-text {
    font-size: 20px;
    color: #5B5858;
  }

  @media (max-width: 768px) {
    .divider {
      display: none;
    }

    .contact-item {
      flex-direction: column;
      text-align: center;
    }

    .contact-text {
      text-align: center;
    }
  }

  .btn-warning {
    color: #000;
    background-color: #FF7D23;
    border-color: #FF7D23;
}

.form-label {
    margin-bottom: .5rem;
    color: #323131;
    font-weight: 600;
}

/* product Info Section */
.product-hero {
    background: url('../img/product-bg.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.product-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.product-hero .container {
    position: relative;
    z-index: 1;
}

.certificate-img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    padding: 0px;
    background-color: #f9f9f9;
    height: 500px; 
}

.certificate-caption {
    text-align: center;
    margin-top: 30px;
    font-weight: 500;
    font-size: 24px;
    color: #0E121D;
}

.certificate-hero {
    background: url('../img/certificate-new-bg.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overlay: #000000;
}

.valve-button {
    background-color: #ffffff;
    padding: 10px 20px;
    border: 1px solid rgba(93, 87, 181, 0.2);
    border-radius: 8px;
    color: #000000;
    font-size: 18px;
}

.valve-button:hover {
    background-color: #FF7D23;
    color: #fff !important;
}

.valve-button.active {
    background-color: #FF7D23;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 18px;
}

/* quality Info Section */
.quality-hero {
    background: url('../img/quality-bg.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.quality-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.quality-hero .container {
    position: relative;
    z-index: 1;
}

.sidebar-title {
      font-weight: bold;
      margin-bottom: 0.5rem;
}
.highlight {
      color: white;
      background-color: orange;
      padding: 0.2rem 0.5rem;
      border-radius: 0.25rem;
}

.light-grey-bg {
      background-color: #000000;
      padding: 2rem;
      border-radius: 8px;
    }

    .section-wrapper {
      background-color: #f3f3f3;
      padding: 40px 20px;
    }

    .content-box {
      background-color: #fff;
      padding: 20px;
      border-radius: 15px;
      margin-bottom: 30px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      /* margin-left: 80px; */
    }

   .content-box img {
    max-width: 220px;
    border-radius: 10px;
}
    .info-tags span {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 6px 15px;
      font-size: 0.9rem;
      margin-right: 10px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .info-tags span::before {
      content: "✔️";
      font-size: 0.8rem;
    }

    .sidebar .title {
      font-weight: bold;
      margin-bottom: 10px;
    }

    .sidebar ul {
      list-style: none;
      padding-left: 0;
    }

    .sidebar ul li {
      padding: 6px 0;
      font-size: 0.95rem;
    }

    .highlighted {
      background-color: #ff5e00;
      color: white;
      padding: 5px 10px;
      border-radius: 3px;
      display: inline-block;
      width: 250px;
    }
.about-box1 {
    background: #fff;
    margin-top: -100px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

 .main-container {
      background-color: #ffffff;
      padding: 40px;
      border-radius: 12px;
      max-width: 1400px;
      margin: auto;
    }

    .about-section {
      background-color: #fff5f0;
      padding: 20px 30px;
      border-left: 5px solid orange;
      margin-bottom: 40px;
    }

    .about-section h5 {
      font-weight: bold;
    }

    .about-section p {
      margin: 0;
      color: #e55300;
      font-size: 0.95rem;
    }

    .facility-block {
      display: flex;
      gap: 30px;
      margin-bottom: 40px;
      align-items: flex-start;
    }

.facility-block img {
    width: 300px;
    /* border-radius: 8px; */
    object-fit: cover;
    height: 350px;
}

    .facility-info h6 {
      font-weight: 600;
    }

    .info-tags span {
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 5px 12px;
      font-size: 0.85rem;
      margin: 5px 8px 5px 0;
      display: inline-block;
    }

    .info-tags {
      margin-top: 10px;
    }
.process-text{
  font-size: 20px;
  color: #1E212B;
}

 .why-choose-section {
      background-color: #ffffff;
      padding: 60px 30px;
      max-width: 1400px;
      margin: auto;
    }
/* 
    .why-choose-section {
      border-left: 5px solid orange;
      padding-left: 10px;
    } */

    .why-choose-section h3 {
      font-weight: bold;
    }

    .why-choose-section .benefit-list {
      padding-left: 40px;
      list-style: none;
      font-size: 20px;
      color: #5B5858;
      line-height: 28px;
    }

    .why-choose-section .benefit-list li {
      margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #E8EBEE;
    padding-bottom: 20px;
    }

    .why-choose-section .benefit-list li .icon {
      color: #ff5722;
      font-size: 24px;
      margin-right: 15px;
      margin-top: 4px;
    }

    .why-choose-section img {
      max-width: 100%;
      border-radius: 4px;
    }

    .text-muted {
    color: #5B5858 !important;
    font-size: 20px !important;
    line-height: 32px !important;
}

.founder-text{
  font-size: 20px;
}

.managing-text{
  font-family: 'outfit';
  font-size: 32px;
}

.suresh-text{
  font-family: 'outfit';
  font-size: 40px;
  padding-bottom: 20px;
}

.mission-vision-section {
      padding: 60px 20px;
      text-align: center;
    }

    .mission-vision-section h4 {
      font-weight: 700;
      margin-top: 15px;
      margin-bottom: 10px;
    }

    .mission-vision-section p {
      color: #555;
    }

    .mission-vision-section .icon {
      font-size: 48px;
      color: #ff5a1f;
    }

    .mission-vision-section .get-in-touch-btn {
      background-color: #ff6a00;
      color: white;
      border: none;
      padding: 10px 25px;
      margin-top: 30px;
      transition: background-color 0.3s ease;
    }

    .mission-vision-section .get-in-touch-btn:hover {
      background-color: #e85c00;
    }

    .mission-container{
      padding-left: 20px;
    }

.text-warning {
    color: #FD5D14 !important;
}

  .lightbox-img {
      cursor: pointer;
      transition: transform 0.3s;
      height: 400px;
      border: 1px solid;
    }

    .lightbox-img:hover {
      transform: scale(1.05);
    }

    .modal-img {
      width: 100%;
      height: auto;
    }

.custom-bullet-list {
      list-style-type: none;
      padding-left: 0;
    }
    .custom-bullet-list li::before {
      content: "•";
      color: orange;
      display: inline-block;
      width: 1em;
      margin-left: -1em;
    }
    .custom-bullet-list li {
      color: black;
      margin-bottom: 0.5rem;
      font-size: 20px;
      padding-top: 20px;
      line-height: 12px;
    }
.customer{
  width: 45%; left: 30px; top: 30px;
}

.heading-3 {
    font-size: 48px;
    font-weight: 800;
}

@media only screen and (max-width: 600px) {

  .body{
    overflow-x: hidden;
  }
   .hero-bg-half-1 {
    background-image: none;
    /* clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%); */
    filter: grayscale(10%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    height: 100%;
    z-index: 999;
    top: 0;
}
.header-carousel .header-carousel-item .carousel-caption h1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 800;
    font-family: "Inter", sans-serif;
}
.fs-5 {
    font-size: 18px !important;
}

    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 0px;
    }

    .btn.btn-light {
    color: var(--bs-primary);
    border: none;
    /* padding: 10px !important; */
    font-size: 15px;
}

.heading-2 {
    font-size: 30px;
    font-weight: 800;
}

.customer{
  width: auto; left: 0px; top: auto;
}

    .heading-2 {
        font-size: 30px;
        font-weight: 800;
        color: #fff;
    }

        .service .nav {
            display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
            width: -webkit-fill-available;
    }

        .navbar-brand-2 {
        position: relative;
        overflow: hidden;
        width: 140px;
        height: 100%;
        padding: 10px;
        display: flex;
        align-items: center;
        z-index: 99;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
        display: flex;
        align-content: flex-end;
        flex-direction: column;
    }

    .heading-3 {
    font-size: 30px;
    font-weight: 800;
}

.service-carousel.owl-carousel {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.service .tab-content {
    padding-top: 40px;
    width: 100% !important
}
.service-carousel.owl-carousel .service-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.owl-carousel {
    padding: 10px;
  }

  .owl-carousel {
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .owl-carousel {
    min-width: 80%;
    flex-shrink: 0;
    scroll-snap-align: start;
    font-size: 14px;
    padding: 8px;
  }
  .owl-carousel {
    display: none; /* Hide nav buttons on mobile, if desired */
  }

  .journey-content h2 {
    color: #111;
    font-size: 40px;
    text-align: center;
}

.journey-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    line-height: 30px;
    text-align: center;
}

  .yearscontainer{
  position: unset;
    top: 0px;
    left: 0px;
    width: 100%;
}

.h-100 {
    height: auto !important;
}

.why-choose-section .benefit-list {
    padding-left: 0px;
    list-style: none;
    font-size: 20px;
    color: #5B5858;
    line-height: 28px;
}

.logo-carousel .logo-item {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* height: 100px; */
    background-size: cover;
    padding: 28px;
    /* width: 130%; */
}

.imagescontainer{
      display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.facility-block {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}

.custom-bullet-list li {
    color: black;
    margin-bottom: 0.5rem;
    font-size: 14px;
    padding-top: 12px;
    line-height: 20px;
}

.content-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    /* margin-left: 80px; */
    flex-direction: column;
    /* width: 100%; */
    align-items: center;
}

.content-box img {
    max-width: 100%;
    border-radius: 10px;
}
}


@media (max-width: 991px) {
    .navbar .navbar-collapse {
        margin-top: 0px;
        position: fixed;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        top: 75px;
        padding: 40px;
        border-top: solid 1px #666;
    }
    .yearscontainer{
  position: unset !important;
    top: 0px !important;
    left: 0px !important;
    width: 100% !important;
}

.h-100 {
    height: auto !important;
}
.why-choose-section .benefit-list {
    padding-left: 0px;
    list-style: none;
    font-size: 20px;
    color: #5B5858;
    line-height: 28px;
}


.imagescontainer{
      display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.facility-block {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}

.custom-bullet-list li {
    color: black;
    margin-bottom: 0.5rem;
    font-size: 14px;
    padding-top: 12px;
    line-height: 20px;
}

.content-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    /* margin-left: 80px; */
    flex-direction: column;
    /* width: 100%; */
    align-items: center;
}

.content-box img {
    max-width: 100%;
    border-radius: 10px;
}


        .service .nav {
            display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
            width: -webkit-fill-available;
    }

}
  .pdf-thumbnail {
      width: 100%;
      cursor: pointer;
      border: 1px solid #ccc;
      padding: 5px;
    }
    .modal-dialog {
      max-width: 90%;
    }
    .modal-body iframe {
      width: 100%;
      height: 80vh;
      border: none;
    }

    .thumbnail {
      width: 90%;
      height: 80%;
      cursor: pointer;
      border: 1px solid #ddd;
      border-radius: 8px;
      transition: transform 0.2s;
    }

    .thumbnail:hover {
      transform: scale(1.02);
    }

    /* .modal-dialog {
      max-width: 90vw;
    }

    .modal-body iframe {
      width: 100%;
      height: 80vh;
      border: none;
    } */

.sureshimage{
    width: 300px !important;
    border-right: 5px solid #FD5D14 !important;
}

.yearscontainer{
  position:absolute;
  top: 50px; 
  left: 50px; 
  width: 49%;
}

.service-carousel.owl-carousel .service-itemnew{
  width: 40%;
    font-size: 16px;
    color: #444;
    border: none;
}