@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
  --primary-color: #176ec8;
  --secondary-color: #f7b230;
  --head-dark: #171717;
  --text-dark: #111111;
  --black-dark: #111111;
  --white: #ffffff;
  --transition: all 0.4s ease-in-out;
  --stage-h: 950px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  outline: none
}

*,
*:focus {
  outline: none;
  -webkit-tap-highlight-color: #fff0
}

html {
  scroll-behavior: smooth;
}

body {
  display: block;
  position: relative;
  font: 400 14px/1.1 "Lato", sans-serif;
  background: var(--white);
  margin: 0;
  padding: 0 0;
  -webkit-font-smoothing: antialiased;
  display: block;
  position: relative;
  letter-spacing: 0.3px;
}



::-webkit-input-placeholder {
  color: var(--black-dark);
  opacity: 1
}

:-moz-placeholder,
::-moz-placeholder {
  color: var(--black-dark);
  opacity: 1
}

:-ms-input-placeholder {
  color: var(--black-dark);
  opacity: 1
}

a {
  color: #464646;
  text-decoration: none
}

a:hover {
  color: #464646;
  outline: none;
  text-decoration: none
}

img {
  max-width: 100%;
  vertical-align: middle
}

svg {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor
}

h1,
.h1 {
  font-size: 30px
}

h2,
.h2 {
  font-size: 28px;
  line-height: 1
}

h3,
.h3 {
  font-size: 24px
}

h4,
.h4 {
  font-size: 18px
}

h5,
.h5 {
  font-size: 16px
}

h6,
.h6 {
  font-size: 15px
}

.h-100-v {
  min-height: 100vh;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 15px;
  font-style: normal;
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--head-dark);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.5;
  position: relative;
}

p {
  margin: 0 0 10px;
  overflow: hidden;
  text-align: left;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.58;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid rgb(70 70 70 / .3);
  width: 100%;
  display: block;
  color: var(--text-dark);
  padding: 11px 16px;
  border-radius: 5px;
  letter-spacing: 0;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

input::-webkit-input-placeholder {
  color: rgb(40 40 40 / 50%)
}

input::-moz-placeholder {
  color: rgb(40 40 40 / 50%)
}

input:-ms-input-placeholder {
  color: rgb(40 40 40 / 50%)
}

input:-moz-placeholder {
  color: rgb(40 40 40 / 50%)
}

textarea {
  min-height: 120px;
  padding: 14px
}

ul {
  list-style: none;
  padding: 0;
  margin: 0
}

strong,
b {
  font-weight: 700
}

table {
  border-spacing: 0;
  border-collapse: collapse
}


section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  height: 100%;
}

section::after {
  content: attr(data-content);
  font-size: 200px;
  font-weight: 700;
  color: transparent;
  line-height: 1;
  -webkit-text-stroke: 2px #727272;
  text-transform: capitalize;
  position: absolute;
  z-index: -1;
  opacity: .1;
  right: 0;
  top: -2%;
}

.inner-sections {
  padding: 60px 0;
}

.culture-sections {
  margin-bottom: 60px;
}

.btn {
  height: auto;
  background-color: var(--primary-color) !important;
  cursor: pointer !important;
  margin: 0;
  position: relative !important;
  display: inline-block !important;
  font-size: 19px !important;
  font-weight: 500;
  text-transform: capitalize;
  top: 0;
  left: 0;
  width: auto;
  padding: 8px 16px 8px 16px !important;
  transition: 0.3s;
  color: var(--white);
  border: 1px solid var(--primary-color) !important;
  margin-right: 23px;
  border-radius: 12px;
}


.btn:hover {
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;

}

.btn svg {
  margin-top: -6px;
}

.btn svg path {
  fill: var(--white) !important;
}

.btn:hover svg path {
  fill: var(--secondary-color) !important;
}

.red-text {
  color: #ef171b;
  font-weight: 700;
  font-size: 60px;
}

.cursor1 {
  position: fixed;
  width: 40px;
  height: 40px;
  margin-left: 0px;
  margin-top: 0px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  transition: 0.3s;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1000;
}

.cursor2 {
  position: fixed;
  width: 10px;
  height: 10px;
  margin-left: 0px;
  margin-top: 0px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  transform: translate(-50%, -50%);
  transition: 0.1s;
  pointer-events: none;
  z-index: 1000;
}

.grow,
.grow-small {
  transform: scale(4);
  background: var(--white);
  mix-blend-mode: difference;
  border: none;
  margin-left: -20px;
  margin-top: -20px;
}

.grow-small {
  transform: scale(2);
}





.navbar {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 10px 0px;
  z-index: 9;
  background-color: #ffffff;
  transition: var(--transition);
}

.scrolled {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  background-color: var(--white);
  padding: 5px 20px;
  transition: var(--transition);
  z-index: 99;
  border-radius: 00px;
}

.white-logo {
  display: block !important
}

.normal-logo {
  display: none !important
}

.scrolled .white-logo {
  display: none !important
}

.scrolled .normal-logo {
  display: block !important;
  /* width: 100%;
  max-width: 80%; */
}

.arrow-icon.active path {
  fill: var(--text-dark) !important;
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--text-dark)
}

.navbar .navbar-nav.sm-icons .nav-link svg {
  fill: var(--text-dark)
}

.navbar.scrolled .navbar-nav.sm-icons .nav-link svg {
  fill: var(--text-dark)
}

.navbar .container-fluid {
  padding: 0px 40px;
}

.navbar.scrolled .container-fluid {
  padding: 6px 40px;
  transition: 0.4s;
}

.navbar .navbar-nav .nav-link {
  font-size: 22px;
  font-weight: 600 !important;
  color: var(--black-dark);
  opacity: 1;
  margin: 0 16px;
  cursor: pointer;
  text-transform: capitalize;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--black-dark) !important;
  font-weight: 800;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--black-dark) !important;
  font-weight: 800;
}

.navbar-brand {
  width: 100%;
  max-width: 16%
}

/* .navbar-brand img {
  width: 100%;
  max-width: 27%
} */

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.nav-link.active {
  color: var(--black-dark) !important;
  font-weight: 900 !important;
}





.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
} */

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.home-slider {
  height: 100vh;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 6px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.537);
  padding: 0;
  width: 60px;
  border-radius: 20px;
}

.swiper-pagination-bullet-active {
  color: var(--white);
  background: var(--primary-color);
}

.thumbs-slides {
  right: 0px;
  position: absolute;
  bottom: 50px;
  width: 280px;
  height: 300px;
  margin-right: 15px;
  padding-left: 15px;
  display: none;
}

.thumbs-slides .swiper-slide {
  width: 250px;
  height: 100%;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: 0.25s;
}

.thumbs-slides .swiper-slide-thumb-active {
  filter: grayscale(0%);
  opacity: 1;
}

.thumbs-slides .swiper-slide img {
  transition: 1.6s;
}

.thumbs-slides .swiper-slide:hover img {
  transform: scale(1.1);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.bg-slide {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  background-size: cover;
  height: 100vh;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}

.content-card {
  color: var(--white);
  padding: 34px;
  text-align: center;
  backdrop-filter: blur(18px);
  border-radius: 20px;
  background: #ffffff81;
  overflow: hidden;
}

.content-wrapper {
  padding-top: 22rem;
  z-index: 1;
  position: relative;
  padding-bottom: 2rem;
  height: 100%;
}

.content-card h1 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
  text-transform: capitalize;
  color: var(--black-dark);
}

.autoplay-progress {
  position: absolute;
  left: 66px;
  bottom: 20px;
  z-index: 10;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--white);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--white);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}




@media screen and (min-width:1240px) {
  .container-fluid {
    padding: 0 7%;
  }
}















/* Main container styling */
.main-container {
  padding: 50px;
  color: #333;

  /* Dark gray text color */
}

/* Heading styling */
.main-heading {
  font-size: 8vw;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 30px;
  margin-right: -100%;
}

.about-bg-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
}

/* Description text */
.description-text {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 25px;
}

/* Buttons */
.project-btn {
  background-color: #333;
  color: white;
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: 0;
  /* Square button */
  border: none;
  transition: background-color 0.3s;
}

.project-btn:hover {
  background-color: #555;
}

.image-gallery-col {
  display: flex;
  justify-content: flex-end;
}

.image-container {
  max-width: 450px;
  margin: auto 0;
}

.image-top {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: -18%;
}

.image-container-bottom {
  position: relative;
  margin-top: -17%;
}

.about-form {
  padding: 20px;
  opacity: 0;
}

#about-form-div.shown {
  opacity: 1;
}

.about-form {
  background: #236fc405;
  border-radius: 20px;
  backdrop-filter: blur(11px);
  transition: var(--transition);
}

/* .image-container-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  top: -12%;
  border: 3px solid var(--secondary-color);
  width: 27%;
  height: 47%;
  right: 19%;
  left: auto;
} */

.image-bottom {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

/* Stats section styling */
.stats-row {
  margin-top: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 4rem;
  font-weight: bold;
  color: #000;
  margin: 0;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}




.main-container {
  position: relative;
  width: 100%;
  padding: 110px 0 70px;
}

.heading-container {
  margin-right: -100%;
  position: relative;
  text-align: start;
}

.main-heading.second {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 8vw;
  font-weight: 900;
  line-height: 1;
  text-align: start;
}

.main-heading {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 8vw;
  font-weight: 900;
  line-height: 1;
  text-align: start;
}

.stroke {
  -webkit-text-stroke: 2px black;
  color: transparent;
}

.fill {
  -webkit-text-stroke: 0px black;
  color: black;
  clip-path: inset(0 100% 0 0);
}

/* @keyframes sway  {
    0% { transform: rotate(1deg); }
    50% { transform: rotate(-1deg); }
    100% { transform: rotate(1deg); }
} */


.services-sections {
  margin-top: -5%;
}

.heading {
  position: relative;
  text-align: center;
}

.heading h2 {
  position: relative;
  font-size: 52px;
  color: var(--black-dark) !important;
}

.heading span {
  position: relative;
  background-color: var(--secondary-color);
  padding: 8px 12px;
  display: inline-block;
  color: var(--black-dark);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 20px;
}

.mettale-trump img {
  animation: sway 2.4s infinite;
  animation-timing-function: ease-in-out;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  transform-origin: top;
  width: 100%;
  max-width: 70%;
  margin: auto;
  margin-top: 2%;
}


.pbmit-ihbox-style-15 {
  position: relative;
}

.pbmit-ihbox-style-15 .pbmit-ihbox-box {
  padding: 35px;
  border-radius: 30px;
  position: relative;
  background: var(--primary-color);
  clip-path: polygon(4.606% 0.587%, 4.606% 0.587%, 3.957% 0.956%, 3.345% 1.416%, 2.774% 1.96%, 2.247% 2.582%, 1.768% 3.277%, 1.342% 4.038%, 0.971% 4.86%, 0.659% 5.737%, 0.409% 6.662%, 0.227% 7.631%, 0.227% 7.631%, 0.176% 8.335%, 0.134% 9.763%, 0.099% 11.946%, 0.072% 14.917%, 0.051% 18.706%, 0.037% 23.346%, 0.03% 28.867%, 0.029% 35.301%, 0.035% 42.68%, 0.045% 51.035%, 0.113% 92.777%, 0.749% 94.636%, 0.749% 94.636%, 0.972% 95.238%, 1.222% 95.814%, 1.498% 96.362%, 1.799% 96.88%, 2.124% 97.366%, 2.471% 97.819%, 2.84% 98.238%, 3.229% 98.619%, 3.636% 98.963%, 4.061% 99.266%, 5.105% 99.951%, 40.273% 100.049%, 40.273% 100.049%, 47.134% 100.064%, 53.253% 100.069%, 58.643% 100.064%, 63.317% 100.051%, 67.287% 100.029%, 70.567% 99.997%, 73.168% 99.957%, 75.104% 99.909%, 76.387% 99.853%, 77.03% 99.788%, 77.03% 99.788%, 77.672% 99.619%, 78.291% 99.406%, 78.885% 99.149%, 79.453% 98.849%, 79.993% 98.508%, 80.504% 98.126%, 80.984% 97.703%, 81.432% 97.241%, 81.846% 96.74%, 82.225% 96.201%, 82.225% 96.201%, 82.57% 95.659%, 82.865% 95.163%, 83.121% 94.679%, 83.351% 94.17%, 83.567% 93.6%, 83.781% 92.935%, 84.004% 92.138%, 84.25% 91.174%, 84.531% 90.008%, 84.857% 88.603%, 84.857% 88.603%, 85.333% 86.669%, 85.798% 85.032%, 86.279% 83.655%, 86.799% 82.501%, 87.387% 81.534%, 88.067% 80.718%, 88.866% 80.016%, 89.809% 79.392%, 90.922% 78.81%, 92.231% 78.233%, 92.231% 78.233%, 93.686% 77.583%, 94.945% 76.913%, 96.023% 76.202%, 96.936% 75.429%, 97.699% 74.572%, 98.33% 73.612%, 98.842% 72.527%, 99.253% 71.297%, 99.578% 69.901%, 99.832% 68.319%, 99.832% 68.319%, 99.883% 67.664%, 99.925% 66.524%, 99.96% 64.872%, 99.987% 62.684%, 100.008% 59.934%, 100.022% 56.596%, 100.029% 52.644%, 100.03% 48.052%, 100.024% 42.796%, 100.014% 36.85%, 99.946% 7.337%, 99.31% 5.479%, 99.31% 5.479%, 99.087% 4.876%, 98.837% 4.3%, 98.561% 3.752%, 98.26% 3.234%, 97.935% 2.748%, 97.588% 2.295%, 97.219% 1.877%, 96.83% 1.495%, 96.423% 1.151%, 95.998% 0.848%, 94.954% 0.163%, 50.37% 0.098%, 50.37% 0.098%, 38.83% 0.081%, 29.459% 0.07%, 22.024% 0.07%, 16.291% 0.082%, 12.028% 0.11%, 9.002% 0.157%, 6.979% 0.225%, 5.728% 0.317%, 5.014% 0.437%, 4.606% 0.587%);
}

.pbmit-ihbox-style-15 .pbmit-icon-wrap {
  justify-content: space-between;
}

/* .pbmit-ihbox-style-15 .pbmit-icon-type-icon {
    font-size: 30px;
    line-height: 30px;
    color: var(--pbmit-global-color);
    border: 1px solid grey;
} */
.pbmit-ihbox-style-15 .pbmit-element-title {
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 0;
  padding-top: 15px;
  margin-top: 15px;
  margin-right: 12px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 1);
  color: var(--white);
}

.pbmit-ihbox-style-15 .pbmit-element-title::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color)
}

.pbmit-ihbox-style-15 .pbmit-element-title::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -12px;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 1);

}

.pbmit-ihbox-style-15:hover .pbmit-element-title::before {
  width: 100%;
}

.pbmit-ihbox-style-15 .pbmit-content-wrapper {
  padding-top: 20px;
}

.pbmit-heading-desc {
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.8px;
}

.pbmit-ihbox-style-15 .pbmit-ihbox-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(-40deg);
}

.pbmit-ihbox-style-15:hover .pbmit-ihbox-btn {
  transform: rotate(0deg);
}

.pbmit-ihbox-style-15:hover {
  transform: translate(0, -10px);
}

.pbmit-ihbox-style-15,
.pbmit-ihbox-style-15 .pbmit-ihbox-box,
.pbmit-ihbox-style-15 .pbmit-element-title::before,
.pbmit-ihbox-style-15 .pbmit-ihbox-btn {
  -webkit-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}


.product-box {
  padding: 20px;
  overflow: hidden;
  background: var(--white);
  position: relative;
}

.product-img img {
  transition: var(--transition);
}

.product-img img.second-img {
  opacity: 1;
}

@media screen and (min-width:1240px) {
  .product-wrapper .row .col-lg-4 {
    padding: 0;
    border-left: 1px solid rgb(231, 231, 231);
    border-bottom: 1px solid rgb(228, 228, 228);
    border-right: 1px solid rgb(228, 228, 228);
  }

}

.product-img img.first-img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.products-info {
  margin: 20px 0;
  z-index: 1;
  position: relative;

}

.products-info h3 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 26px;
  text-transform: capitalize;
  transition: var(--transition);
}

.products-info p {
  margin: 0;
  opacity: 1 !important;
  text-align: left !important;
  transition: var(--transition);
  font-size: 17px;
  color: var(--black-dark) !important;
}

.product-box:hover .product-img img.first-img {
  opacity: 1;
  z-index: 0;
  width: 100%;
}

.product-box:hover .products-info h3,
.product-box:hover .products-info p {
  color: var(--white) !important;
}

.product-box:hover .product-img img.second-img {
  opacity: 0;
}

/* .product-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #176EC8;
  background: linear-gradient(0deg, rgba(23, 110, 200, 1) 0%, rgba(247, 178, 48, 0.23) 100%);
  opacity: 0;
  transition: var(--transition);
} */

.product-box:hover::after {
  opacity: 1;
}

.product-box:hover .products-info h3,
.product-box:hover .products-info p {
  color: var(--black-dark);
}

.product-box:hover .products-info a.btn {
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
  border: 1px solid var(--white) !important;
}






.application-section .hero {
  --border-radius: 12px;
  --transition-duration: 1000ms;
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  /* border-radius: 20px; */
  /* background-image: url(../images/about-us/about-us-second.webp); */
  background-size: cover;
  background-repeat: no-repeat;
}

.application-section .hero__fullsize {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.application-section .hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: drop-shadow(0 5px 5px #0007);
  transition:
    top var(--transition-duration),
    left var(--transition-duration),
    width var(--transition-duration),
    height var(--transition-duration),
    border-radius var(--transition-duration),
    transform var(--transition-duration),
    opacity var(--transition-duration);
}

.application-section .hero__content--hidden {
  visibility: hidden;
  transition: none;
  transform: none;
  opacity: 1;
  z-index: 0;
}

.application-section .hero__content--bottom {
  opacity: 0;
  transform: scale(1.5);
  z-index: 1;
}

.application-section .hero__content--top {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  z-index: 2;
}

/* curtain */

.application-section .hero__content--show-text::before {
  transform: translateX(0);
  transition: transform 300ms;
}

.application-section .hero__content--grow::before {
  transform: translateX(-100%);
  transition: none;
}

/* title */
.application-section .hero__content--show-text .content__title {
  transform: translateY(0);
  transition: transform 300ms;
}

.application-section .hero__content--show-text .content__title .word {
  clip-path: inset(0);
  transition: clip-path 300ms;
}

.application-section .hero__content--grow .content__title {
  visibility: hidden;
  transform: translateY(48px);
  transition: none;
}

.application-section .hero__content--grow .content__title .word {
  clip-path: inset(0 0 48px);
  transition: none;
}

/* desc */

.application-section .hero__content--show-text .content__desc {
  transform: translateY(0px);
  transition: transform 300ms;
  color: var(--white);
}

.application-section .hero__content--show-text .content__desc .word {
  clip-path: inset(0);
  transition: clip-path 300ms;
  color: var(--white);
}

.application-section .hero__content--grow .content__desc {
  visibility: hidden;
  transform: translateY(18px);
  transition: none;
}

.application-section .hero__content--grow .content__desc .word {
  clip-path: inset(0 0 18px);
  transition: none;
}

.application-section .hero__swiper {
  position: absolute;
  width: 70%;
  aspect-ratio: 2.5 / 1;
  right: 0px;
  bottom: 0;
  padding: 15px 0;
  z-index: 1;
  user-select: none;
  top: auto;
  height: 300px;
}

.application-section .swiper {
  --swiper-navigation-size: 20px;
  visibility: hidden;
}

.application-section .swiper.swiper-initialized {
  visibility: visible;
}

.application-section .swiper-slide-prev,
.application-section .swiper-slide-active {
  opacity: 0;
}

.application-section .swiper-slide {
  display: flex;
}

.application-section .content {
  display: flex;
  position: relative;
  width: 100%;
  filter: drop-shadow(0 5px 5px #0007);
  overflow: hidden;
  z-index: 0;
}

.application-section .content--slide {
  position: relative;
  border-radius: var(--border-radius, 0);
}

.application-section .content__text {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #fff;
}

.application-section .content__desc {
  margin: 0;
  color: var(--white);
}

.application-section .content__desc span {
  color: var(--white);
}

.application-section .content--slide .content__title {
  font-size: 18px;
  margin: auto 0 0;
  padding: 0.35em 0.75em;
  background-color: #0007;
  color: var(--white);
  text-align: center;
}

.application-section .content--slide .content__desc {
  position: absolute;
  left: 0;
  visibility: hidden;
}

.application-section .content--hero {
  padding: 100px 50px 0;
  position: absolute;
  border-radius: 0;
}

.application-section .content--hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #161204dd, transparent);
  pointer-events: none;
  z-index: 0;
}

.application-section .content--hero .content__title {
  font-size: 42px;
  margin: 0 0 0.2em;
  color: var(--white);
}

.application-section .content--hero .content__text {
  width: 45%;
  z-index: 1;
  color: var(--white);
}

.application-section .content__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.application-section .swiper-button-next {
  right: auto !important;
  left: calc((100% - 25px * 2) / 3.5);
  top: calc(50% - 20px) !important;
  width: 40px;
  height: 40px;
  background-color: #fffb;
  border-radius: 50%;
  color: forestgreen;
}

/* Hero (video section) */
/* .hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
} */

/* .hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */




/* Ensure hero takes full screen and hides next section */
#hero-section {
  height: 100vh;
  overflow: hidden;
  position: relative;
  /* background: #000; */
}


#skip-intro-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}











/* Hero content (text/logo/buttons over video) */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  opacity: 0;
}



#video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sipping-container {
  height: 100vh;
  background: lightblue;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* 
.client-box {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.client-box span {
  position: absolute;
  top: 15px;
  right: 15px;
  font-weight: 400;
  font-size: 15px;
  color: #b2b2b2;
}

.client-box .client-info {
  width: 100%;
  text-align: start;
}

.client-box .client-info p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 16px;
  color: #cacaca;
} */
.client-certificate {
  border-right: 2px solid rgb(237, 237, 237);
}




.sub-get-in-touch-pt-pb {
  position: relative;
}

.sub-get-in-touch-pt-pb::after {
  background-image: url(../images/bottom-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}



.pointer-event-all {
  pointer-events: all;
  position: relative;
  z-index: 1;
}

.pointer-event-all .content {
  pointer-events: all;
  position: relative;
  z-index: 1;
  background: #0000004d;
  padding: 10px;
  border-radius: 10px;
  backdrop-filter: blur(16px);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  color: var(--head-dark);
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.sub-main-get-bg {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  flex-direction: column;
}

#index-form .form-control {
  border-radius: 8px;
  border: 1px solid #e9e9e9;
  padding: 14px;
  box-shadow: unset;
  background-color: #fafafa;
  margin-top: 3px;
}

.bootom-video {
  border-radius: 20px;
  overflow: hidden;
}

.crane-hook {
  position: absolute;
  top: 0;
  right: 21.5%;
  height: 17%;
  z-index: 0;
}


.swing {
  animation: swing ease-in-out 1s infinite alternate;
  transform-origin: center -20px;
  float: left;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
  margin-top: 85px;
}

.swing:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  border: 4px solid #999;
  top: -26px;
  left: 50%;
  z-index: 1;
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
  border-radius: 2px;
}

/* nail */
.swing:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: -14px;
  left: 54%;
  z-index: 5;
  border-radius: 50% 50%;
  background: #000;
  display: none;
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}






.client-slider-show .swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.client-slider-show .swiper-slide {
  text-align: center;
  font-size: 18px;
  height: calc((100% - 30px) / 2) !important;

  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-slider-show .swiper-grid-column>.swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: row;
}




















.form-group.has-feedback {
  margin-bottom: 18px;
  position: relative;
}

.modal-logo img {
  width: 100%;
  max-width: 50%;
  margin: auto;
  margin-bottom: 0px
}

.modal-call {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}


.modal-content {
  border-radius: 50px;
  overflow: hidden
}

.modal-call a,
.modal-call .prev-digit {
  color: #1d242b;
  font-size: 20px;
  font-weight: 500;
  width: 100%;
  align-items: start;
  margin-bottom: 12px;
}

.modal-body .has-feedback {
  margin-bottom: 12px;
  position: relative;
}

.modal-body .form-control {
  border: 0;
  background-color: #fff0;
  border-radius: 0;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 17px;
  color: var(--black-dark) !important;
  box-shadow: none;
  font-weight: 400;
}

.modal-header {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.modal-header h5 {
  color: var(--white);
  font-size: 24px;
  width: 100%;
  letter-spacing: .4px;
  font-weight: 500;
}

.modal-header .btn-close {
  margin: 0;
  filter: invert(1);
}

.modal-logo {
  padding: 10px 0px 10px;
}

.modal-body {
  padding: 0
}

.modal-footer input {
  font-size: 17px !important;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  padding: 7px 1px 7px 1px !important;
  transition: 0.3s;
}

.modal-footer .btn:hover input {
  color: var(--secondary-color);
}

label.error {
  position: absolute;
  bottom: -14px;
  color: red !important;
  font-weight: 400;
  font-size: 12px !important;
  text-transform: capitalize;
}

.footer-whatsapp-left {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 0 20px 100px 0;
  z-index: 999999;
}

.footer-whatsapp-left a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-call-right {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 0 20px 180px 0;
  z-index: 999999;
}

.footer-call-right a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vibrate-3 {
  -webkit-animation: vibrate-3 1s linear infinite both;
  animation: vibrate-3 1s linear infinite both;
}

@-webkit-keyframes vibrate-3 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  10% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  20% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }

  30% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  40% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }

  50% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  60% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }

  70% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  80% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  90% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes vibrate-3 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  10% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  20% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }

  30% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  40% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }

  50% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  60% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }

  70% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  80% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  90% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

.mobile-footer-social-icon-main {
  display: none;
}

.feature-product-content {
  padding: 5px 16px;
}

@media screen and (max-width: 991px) {
  .footer-whatsapp-call {
    display: none;
  }

  .mobile-footer-social-icon-main {
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 999;
  }

  .mobile-footer-social-icon {
    text-align: center;
  }

  .book-app {
    width: 100%;
    padding: 1%;
    float: left;
    line-height: 40px;
    text-align: center;
    max-height: 100px;
  }

  .book-app a {
    font-size: 15px;
  }

  .footer-box-two {
    display: flex !important;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #0f4da2;
    color: var(--white);
    text-align: center;
    z-index: 9;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .mobile-footer-social-icon {
    width: 100%;
    display:block;
    text-align: center;
  }

  .mobile-footer-social-icon a {
    font-size: 15px;
    font-weight: 400;
  }

}









figure {
  margin: 0;
  overflow: hidden;
}

/* Container for the entire slider section */
.slider-container {
  height: 400vh;
  /* Height for scroll-triggered pinning duration */
  position: relative;
}

.slider-wrapper {
  height: 100vh;
  overflow: hidden;
}



.slide {
  height: 100%;
  width: 100%;
  top: 0;
  position: absolute;
  visibility: hidden;
}

.slide__outer,
.slide__inner {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}

.slide__content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}

.slide__container {
  position: relative;
  max-width: 1400px;
  width: 100vw;
  margin: 0 auto;
  height: 90vh;
  margin-bottom: 10vh;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 0 1rem;
}

.slide__heading {
  --width: 200;
  display: block;
  text-align: left;
  font-family: "Bandeins Sans & Strange Variable";
  font-size: clamp(5rem, 15vw, 15rem);
  font-weight: 900;
  font-variation-settings: "wdth" var(--width);
  margin: 0;
  padding: 0;
  color: #f2f1fc;
  z-index: 999;
  mix-blend-mode: difference;
  grid-area: 2 / 2 / 3 / 10;
  align-self: end;
}

.slide__img-cont {
  margin-top: 4rem;
  grid-area: 2 / 1 / 7 / 8;
}

.slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide:nth-of-type(1) {
  visibility: visible;
}

.slide:nth-of-type(1) .slide__content {
  background-color: #6d597a;
}

.slide:nth-of-type(2) .slide__content {
  background-color: #355070;
}

.slide:nth-of-type(3) .slide__content {
  background-color: #b56576;
}

.slide:nth-of-type(4) .slide__content {
  background-color: #9a8c98;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.overlay__content {
  max-width: 1400px;
  width: 100vw;
  margin: 0 auto;
  padding: 0 1rem;
  height: 90vh;
  margin-bottom: 10vh;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.overlay__img-cont {
  position: relative;
  overflow: hidden;
  margin: 0;
  grid-area: 4 / 3 / 9 / 11;
}

.overlay__img-cont img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.overlay__count {
  grid-area: 3 / 10 / 4 / 10;
  font-size: clamp(3rem, 4vw, 15rem);
  margin: 0;
  padding: 0;
  text-align: right;
  border-bottom: 7px white solid;
}

@media screen and (min-width: 900px) {

  .overlay__content,
  .slide__container {
    padding: 0 3rem;
    margin-top: 10vh;
    height: 80vh;
  }

  .overlay__img-cont {
    grid-area: 5 / 4 / 10 / 11;
  }

  .overlay__count {
    grid-area: 3 / 10 / 4 / 11;
  }

  .slide__img-cont {
    margin-top: 0;
    grid-area: 3 / 2 / 8 / 7;
  }

  .slide__heading {
    grid-area: 1 / 1 / 4 / 10;
  }
}

/* Content sections before and after slider */
.content-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.content-section.after {
  background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
}

.top-section {
  border-radius: 30px 30px 0 0;
}






footer {
  background-color: #f2f4f7;
  padding: 70px 0;
}

.tc-partners-style3 .text p {
  font-size: 18px;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.marquee span {
  text-transform: uppercase;
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  -webkit-animation: marquee 24s linear infinite;
  animation: marquee 24s linear infinite;
  font-size: 120px;
  font-family: "Gravitas One", Helvetica, Arial, sans-serif;
  font-weight: 900;
  color: var(--primary-color);
  float: left;
  width: 100%;
}


.footer-list ul li {
  text-align: left;
}

.footer-list ul li a,
.footer-list a {
  margin: 0 0 10px;
  overflow: hidden;
  text-align: left;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.68;
  margin-bottom: 15px;
  letter-spacing: 0.8px;
  text-align: right;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.footer-list ul li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 17px;
  width: 30px;
  height: 3px;
  background-color: var(--secondary-color);
  transform: translate(10px);
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.footer-list ul li a:hover {
  padding-right: 40px;
  color: var(--secondary-color);
}

.footer-list ul li a:hover::after {
  transform: translate(0px);
  opacity: 1;
}

.social-content {
  border-top: 1px solid #e1e1e1;
}

.footer-text h4,
.mails h5 {
  font-size: 24px;
  margin-bottom: 3px;
  font-weight: 700;
  text-align: left;
  color: #000;
}

.footer-text,
.mails {
  text-align: left;
  margin-bottom: 20px;
}

.footer-text p {
  text-align: left;
}

.footer-text p a,
.mails a {
  font-size: 20px;
  margin-bottom: 0;
  text-align: left;
}

.footer-text {
  overflow: hidden;
}

.footer-text h5 {
  font-size: 20vw;
  text-transform: uppercase;
  color: var(--black-dark);
  text-align: center;
  margin: 0;
  line-height: 0.7;
  font-weight: 500;
  font-family: "Host Grotesk", sans-serif;
  letter-spacing: 8.7px;
  color: var(--secondary-color);
}










.inner-banner-div {
  border-radius: 0;
}

ul.breadcrumb {
  margin-left: 50px;
  /* display: inline-block; */
  list-style: none;
}

ul.breadcrumb li {
  float: right;
  padding: 5px;
  background-color: #fff;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  position: relative;
  margin-left: -50px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-top: 3px;
}

ul.breadcrumb li a {
  overflow: hidden;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  height: 50px;
  color: var(--four-color);
  background-color: var(--four-color);
  text-align: center;
  min-width: 50px;
  display: block;
  line-height: 50px;
  padding-left: 52px;
  padding-right: 33.33333px;
  width: 50px;
  position: relative;
}

ul.breadcrumb li a .icon {
  display: inline-block;

}

ul.breadcrumb li a .icon svg {
  position: absolute;
  top: 11px;
  left: 9px;
  width: 25px;
  height: 25px;
}

ul.breadcrumb li a .text {
  display: none;
  opacity: 0;
  font-weight: 600;
  letter-spacing: 0.7px;
  font-size: 22px;
  color: #fff;
  text-transform: capitalize;
}

ul.breadcrumb li a:hover {
  width: 100%;
  background-color: var(--primary-color);
  min-width: 320px;
}

ul.breadcrumb li a:hover .text {
  display: inline-block;
  opacity: 1;
}

ul.breadcrumb li:last-child a {
  padding: 0;
}

ul.breadcrumb li:last-child a .icon svg {
  top: 12px;
  left: 13px;
}

ul.breadcrumb li:last-child:hover {
  padding: 3px;
  margin-top: 0;
}

ul.breadcrumb li:last-child:hover a {
  width: 60px;
  height: 60px;
  line-height: 60px;
}

ul.breadcrumb li:last-child:hover a .icon svg {
  top: 18px;
  left: 13px;
}

.inner-content {
  position: absolute;
  top: auto;
  bottom: 18%;
  color: #fff;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  left: 0;
  right: 0;
}

.inner-title h3 {
  text-align: left;
  font-size: calc(4.5vw + 15px);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 4px 4px rgb(0 0 0 / .25);
  text-transform: capitalize;
  color: #fff;
  text-align: left;
}

.second-products-details .inner-title h3 {
  font-size: calc(2.4vw + 15px);
}

.inner-items {
  position: relative;
}

@media screen and (min-width:1440px) {
  .inner-about-us-section .container-fluid {
    padding: 0 6%;
  }
}

.about-main-title {
  margin-top: 17px;
}

.about-main-title h2 {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary-color);
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.about-main-title h2::after {
  content: "";
  position: absolute;
  right: -55%;
  top: 13px;
  width: 50%;
  height: 2px;
  background-color: var(--secondary-color);
}

.about-main-title h2::before {
  content: "";
  position: absolute;
  right: -55%;
  top: 8px;
  width: 11px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}

.about-info-title h3 {
  margin-bottom: 20px;
  font-size: 38px;
  text-transform: capitalize;
}

.inner-ablut-us {
  margin-bottom: 20px;
}

.inner-ablut-us img {
  border-radius: 20px;
}

.about-info-title p,
.about-details-info p {
  margin-bottom: 20px;
  font-size: 20px;
  text-align: justify;
}

.training-item {
  margin-bottom: 25px;
  padding: 27px 14px;
  border-radius: 30px;
  overflow: hidden;
  background: #176ec814;
  margin-bottom: 40px;
}

.training-item .row {
  align-items: center;
}

.training-img img {
  border-radius: 20px;
  width: 100%;
}

.training-content h5 {
  color: var(--primary-color);
  font-size: 23px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.training-content P {
  font-size: 18px;
  margin-bottom: 10px;
  /* line-height: 1.34; */
  margin: 0;
}

.about-inner-all-details {
  background: #e8e8e8;
  border-radius: 30px;
  padding: 80px 40px 40px;
}

.inner-counter {
  padding: 40px 20px 20px;
  border-bottom: 20px;
  background: #fff;
  position: relative;
  height: 100%;
  border-radius: 20px;
}

.about-details-info {
  margin-bottom: 60px;
}

.about-details-info h3 {
  line-height: 1.5;
  margin-bottom: 15px;
}

.inner-counter img {
  position: absolute;
  top: -16px;
  left: 16px;
  right: 0;
  width: 39px;
  width: 49px;
  border-radius: 50%;
}

.inner-counter .stat-number {
  font-size: 34px;
  text-align: left;
  margin-bottom: 2px;
}

.inner-counter p {
  margin: 0;
  line-height: 1.2;
  text-transform: capitalize;
  font-size: 15px;
  text-align: left;
}

.mission-img {
  position: relative;
}

/* .mission-img::after {
  content: "";
  position: absolute;
  left: -30px;
  bottom: -30px;
  width: 350px;
  height: 350px;
  background-color: #f7b23045;
  border-radius: 22px;
} */
.mission-item {
  margin-bottom: 20px;
  display: flex;
  border: 1px solid #236fc440;
  padding: 20px;
  border-radius: 23px;
  background-color: var(--white);
}

.mission-img .mission-boxs {
  border-radius: 20px;
  width: 300px;
  background: #236fc4;
  height: 100%;
  overflow: hidden;
}

.mission-img .mission-boxs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-info h2 {
  margin-bottom: 0;
  font-size: 32px;
  text-transform: capitalize;
  color: var(--secondary-color);
}

.mission-info p {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.56;
  text-align: justify;
}



.sub-products-details {
  position: absolute;
  top: 85%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2a2ac4;
  display: flex;
  flex-direction: column;
  opacity: 1;
  visibility: visible;
  transition: all .8s ease;
  padding: 5px;
  text-align: center;
}

/* end product page css */
.inner-product-details {
  padding-top: 30px;
}

.inner-details-img {
  border-radius: 20px;
  overflow: hidden;
}

.inner-details-info h3 {
  margin-bottom: 5px;
  font-size: 34px;
  text-transform: capitalize;
  color: var(--secondary-color);
  font-weight: 700;
}

.more-details h4 {
  margin-bottom: 5px;
  font-size: 26px;
  text-transform: capitalize;
  color: var(--secondary-color);
}

.inner-details-info p,
.more-details p , .details-describe p{
  margin-bottom: 5px;
}
.details-describe{margin-bottom: 22px;}
.inner-details-info p b {
  color: #000;
  font-weight: 900;
}.inner-details-info table {margin-bottom: 30px;}
.inner-details-info table tr th, .inner-details-info table tr td{
    overflow: hidden;
    text-align: left;
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.58;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}
.more-details {
  margin-bottom: 28px;
  margin-top: 20px;
}

.more-details .accordion-item {
  margin-bottom: 25px;
}

.more-details .accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}

.more-details .accordion-item:not(:first-of-type) {
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.more-details .accordion-header button {
  background-color: #176ec817;
}

.mission-logo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 450px;
  height: 450px;
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: -1;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.contact-item {
  height: 100%;
}

.contact-address {
  height: 100%;
  background: #1e5dbd17;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 1px 1px 20px 0px #d7d7d7;
}

.contact-map {
  border-radius: 20px;
  overflow: hidden;
}

.other-contact-section {
  background-color: var(--primary-color);
}

.other-contact-section {
  background-image: url(../images/contact-us.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.other-contact {
  backdrop-filter: blur(15px);
  background-color: #236fc445;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}

.other-contact h4 {
  margin-bottom: 8px;
  text-transform: capitalize;
  font-size: 28px;
}

.other-contact p {
  margin-bottom: 8px;
  text-transform: capitalize;
  font-size: 22px;
  text-align: center;
}

.other-contact p a {
  margin-bottom: 8px;
  text-transform: capitalize;
  font-size: 22px;
  color: var(--mentoring-text-color);
}

.contact_field {
  box-shadow: 3px 3px 0 #c9c9c9;
  border: 2px solid #d3d3d3;
  border-radius: 13px;
  padding: 30px;
}

.quality-content {
  margin-bottom: 30px;
}

.quality-content h4 {
  font-size: 28px;
  color: var(--primary-color);
  text-transform: capitalize;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.quality-content ul li {
  display: flex;
}

.quality-content ul li p {
  padding-left: 10px;
}

.quality-content p {
  margin-bottom: 8px;
  font-size: 17px;
  text-align: justify;
}

.services-points-show ul li {
  display: flex;
}

.services-points-show ul li p {
  padding-left: 10px;
}

.services-points-show p {
  margin-bottom: 5px;
  text-align: justify;
}

.services-varieties {
  margin-top: 40px;
}

.services-varieties .stats-row {
  margin-top: 10px;
}

.services-varieties h3 {
  font-size: 28px;
  color: var(--secondary-color);
  text-align: left;
}

.services-varieties p {
  text-align: left;
}

.services-varieties .stat-item .varienties-item {
  height: 100%;
  background-color: #176ec814;
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 1px 0px 11px #d9d9d9;
  position: relative;
}

.services-varieties .stat-item .varienties-item .varienties-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90px;
  z-index: -1;
}

.services-varieties .stat-item .varienties-item .varienties-icon img {
  padding: 25px 10px 10px 25px;
  background: var(--secondary-color);
  border-radius: 50px 0 0 0;
  width: 100%;
}

.services-varieties .stat-item h5 {
  text-align: left;
  font-size: 24px;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.services-varieties .stat-item p {
  text-align: left;
  width: 100%;
  max-width: 95%;
}




.project-three__item {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
  background-color: var(--primary-color);
  margin-bottom: 30px;
}

.project-three__item .project-three__content {
  width: 50%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
}

.project-three__item .project-three__content .shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.project-three__item .project-three__content .icon svg {
  transition: 0.7s;
}

.project-three__item .project-three__content .content {
  transition: all 0.4s ease-in-out;
  transform: translateY(70%);

}

.project-three__item .project-three__content h4 {
  color: #fff;
  font-size: 26px;

}

.project-three__item .project-three__content h4 a {
  color: #fff;

}

.project-three__item .project-three__content p {
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.project-three__item .project-three__content .content p {
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.project-three__item .project-three__content .arry-btn {
  font-size: 40px;
  color: #fff;
}

.project-three__item:hover .project-three__content .shape {
  opacity: 1;
  visibility: visible;
}

.project-three__item:hover .project-three__content .icon svg {
  transform: rotateY(360deg);
}

.project-three__item:hover .project-three__content .content {
  transform: translateY(0);
}

.project-three__item:hover .project-three__content .content p {
  opacity: 1;
  visibility: visible;
}

.project-three__item .project-three__content .arry-btn:hover {
  transform: rotate(45deg);
}

.project-three__item .image {
  overflow: hidden;
  width: 50%;
  height: 100%;
  /* transform: scale(1.3); */
}

.project-three__item .image img {
  transition: all 0.4s ease-in-out;
  filter: grayscale(100%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-three__item:hover .image img {
  transform: scale(1.1);
  filter: unset;
}



/* सिर्फ body[data-page="index.php"] पर apply होगा */
body[data-page="index.php"] nav {
position: fixed;
    top: 30px;
    left: 30px;
    right: 30px;
    padding: 10px 0px;
    z-index: 9;
    background-color: #00000040;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border-radius: 50px;
}
body[data-page="index.php"] nav.scrolled {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    background-color: var(--white);
    padding: 5px 20px;
    transition: var(--transition);
    z-index: 99;
    border-radius: 00px;
}
body[data-page="index.php"] .navbar .navbar-nav .nav-link {
color: var(--white) !important;
}
body[data-page="index.php"] .navbar .navbar-nav .nav-link:hover,
body[data-page="index.php"] .navbar .navbar-nav .nav-link.active {
color: var(--black-dark);
}
body[data-page="index.php"] .navbar.scrolled .navbar-nav .nav-link:hover,
body[data-page="index.php"] .navbar.scrolled .navbar-nav .nav-link.active {
color: var(--black-dark);
}
body[data-page="index.php"] .navbar.scrolled .navbar-nav .nav-link{
  color: var(--black-dark) !important;
}



body[data-page="index.php"] .navbar .navbar-nav .nav-link {
color: var(--white);
}
body[data-page="index.php"] .navbar .navbar-nav .nav-link:hover,
body[data-page="index.php"] .navbar .navbar-nav .nav-link.active {
color: var(--white);
}






.sub-send-inquiry-form {
  position: fixed;
  left: -100px;
  top: 55%;
  height: 37%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 0
}

.sub-send-inquiry-form a {
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 10px
}

.sub-send-btn-2 {
  background-color: #f90f37;
  border-radius: 0 0 30px 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 35px;
  padding-right: 35px;
  transform: rotate(90deg);
  animation: blink 3s linear infinite
}

.sub-send-btn-2 a {
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 10px
}

.sub-send-btn {
  background-color: var(--primary-color);
  border-radius: 0 0 30px 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 35px;
  padding-right: 35px;
  transform: rotate(-90deg);
  animation: blink 3s linear infinite
}

@keyframes blink {

  0%,
  100% {
    background-color: var(--primary-color)
  }

  50% {
    background-color: var(--secondary-color)
  }
}

.icon {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.product-arrows .swiper-button-prev,
.product-arrows .swiper-button-next {
  background-image: unset;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 6px;
  padding: 10px;
  backdrop-filter: blur(9px)
}

.product-arrows .swiper-button-prev::after,
.product-arrows .swiper-button-next::after {
  display: none
}

.sub-send-inquiry-form,
.sub-send-inquiry-form-2 {
  display: flex
}

@media screen and (max-width:991px) {

  .sub-send-inquiry-form,
  .sub-send-inquiry-form-2 {
    display: none
  }

  .sub-send-inquiry-form,
  .footer-whatup-icons {
    display: none
  }

  .footer-box {
    display: flex !important;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    z-index: 999999;
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .book-app {
    width: 100%;
    padding: 1%;
    float: left;
    line-height: 40px;
    text-align: center;
    max-height: 100px
  }

  .book-app a {
    font-size: 15px
  }

  .sticklist {
    display: none !important
  }
}

@media screen and (max-width: 991px) {
	/* Mobile Footer social icon */
	.mobile-footer-social-icon-main{width: 100%; display: flex; position: fixed; bottom: 0; z-index: 999;width: 100%;}
	.mobile-footer-social-icon{ display: inline-block; text-align: center;}
	.mobile-footer-social-icon a{width: 100%; display: inline-block; font-size: 16px; font-weight: 400; color: #000; background: var(--secondary-color); text-transform: capitalize; padding: 12px 0;}
	.mobile-footer-social-icon a:hover{background: var(--secondary-color);}
	.footer-whatsapp-call{display: none;}
	.sub-send-inquiry-form{display: none;}
	.sub-brochure-pdf{display: none;}}