/* font-family ***************************** */

@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins/Poppins-Bold.ttf");
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/Poppins/Poppins-Medium.ttf");
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins/Poppins-Regular.ttf");
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
}

@font-face {
  font-family: "Inter_18pt-Bold";
  src: url("../fonts/inter/Inter_18pt-Bold.ttf");
}
@font-face {
  font-family: "Inter_18pt-Medium";
  src: url("../fonts/inter/Inter_18pt-Medium.ttf");
}
@font-face {
  font-family: "Inter_18pt-SemiBold";
  src: url("../fonts/inter/Inter_18pt-SemiBold.ttf");
}
@font-face {
  font-family: "Inter_18pt-Regular";
  src: url("../fonts/inter/Inter_18pt-Regular.ttf");
}

@font-face {
  font-family: "Futura-Bk-BT-Book";
  src: url("../fonts/Futura/Futura-Bk-BT-Book.ttf");
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/gilroy/Gilroy-Medium.ttf");
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/gilroy/Gilroy-Regular.ttf");
}

/* common css ******************************************************************************/
:root {
  --white: #fff;
  --black: #000;
  --yellow: #f5c865;
  --yellow-EFD177: #efd177;
  --light-yellow: #fff6d9;
  --pink: #ff4cfa;
  --purple: #030244;
  --blue: #013563;
  --black-343434: #343434;
  --gray: #9d9d9d;
  --light-gray: #f7f7f7;
  --orange: #ea8220;
  --light-blue: #19dae6;
}
.white {
  color: var(--white);
}
.black {
  color: var(--black);
}
.yellow {
  color: var(--yellow);
}
.pink {
  color: var(--pink);
}
.light-blue-bg {
  background-color: var(--light-blue);
}
.yellow-bg {
  background-color: var(--yellow);
}
.pink-bg {
  background-color: var(--pink);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
.common::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--black);
}
body {
  background: var(--white);
  font-family: "Poppins", sans-serif;
}
body.show {
  position: fixed;
  top: 0;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1;
  color: var(--black);
  font-family: "Poppins-SemiBold";
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 52px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}
p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: var(--black-343434);
  font-family: "Poppins-Regular";
}
p:last-child {
  margin-bottom: 0;
}
.small {
  font-size: 16px;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}
span {
  display: inline-block;
}
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading h2 {
  color: var(--blue);
  text-transform: uppercase;
}
p.section-subtitle {
  text-align: center;
  position: relative;
  color: var(--black);
}
p.section-subtitle::after {
  position: absolute;
  content: "";
  bottom: -5px;
  transform: translateX(-50%);
  left: 50%;
  width: 40px;
  background-color: #bd5b18;
  height: 2px;
}
.btn-common {
  font-size: 18px;
  padding: 15px 30px;
  background: var(--white);
  color: var(--black-343434);
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  font-family: "Poppins-SemiBold";
  transition: 0.5s;
}
.btn-common:hover {
  transform: translateY(-3px);
}
.btn-common img {
  max-width: 30px;
  margin-right: 10px;
}
section {
  padding-bottom: 60px;
  overflow: hidden;
}
.bg {
  padding: 60px 0;
}
.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}
img,
video {
  max-width: 100%;
}
.button-box {
  padding-top: 20px;
}
.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.owl-theme .owl-dots .owl-dot span {
  background: var(--black);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--white);
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
.owl-nav {
  margin-top: 0;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}
.form-control-common {
  background: var(--light-gray);
  border: none;
  font-size: 20px;
  padding: 15px 50px 15px 20px;
  width: 100%;
  appearance: textfield;
  color: var(--black-343434);
  border-radius: 10px;
  box-shadow: none;
  resize: none;
  outline: none;
}

.input-group {
  padding-bottom: 20px;
}
::placeholder {
  color: var(--gray);
  text-transform: capitalize;
}
form .btn-common {
  background: var(--yellow-EFD177);
  padding: 10px 30px;
}
/* select {
  background-image: url("../images/down-arrow.svg") !important;
  background-repeat: no-repeat !important;
  background-size: 15px !important;

  background-position: 98% !important;
} */

select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background: url("../images/down-arrow.svg") no-repeat !important;
  background-repeat: no-repeat !important;
  background-position: right 0.75rem center !important;
  background-size: 14px !important;
  padding-right: 2.5rem !important;
  background-color: var(--light-gray) !important;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
#header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  box-shadow: 0 0 10px 2px #000;
}
#header {
  background: var(--purple);
  padding: 15px 0;
  transition: 0.5s all;
  position: relative;
}
#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo-box img {
  max-width: 170px;
  width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: 0.5s all ease-in-out;
  position: relative;
  border-radius: 5px;
}
#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}
#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}
#header .button-box {
  margin-left: 20px;
  padding-top: 0;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 40px;
}
#header .main-nav nav ul li a {
  color: var(--white);
  padding: 5px;
  font-size: 16px;
  position: relative;
}
#header .main-nav nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  transition: 0.3s;
  height: 2px;
  border-radius: 10px;
  background-color: var(--white);
}
#header .main-nav nav ul li a:hover::after {
  width: 100%;
}
#header .main-nav nav ul li a.active {
  color: var(--yellow);
  font-family: "Poppins-Bold";
}

/* homeBanner css ******************************************************************************/
#homeBanner .homeBanner-part {
  background: url("../images/bannerBg.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: calc(100vh - 103px);
  position: relative;
}
#homeBanner .homeBanner-part::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.63) 100%
  );
}
#homeBanner .title h1 {
  font-family: "Poppins-Bold";
  text-transform: uppercase;
  font-size: clamp(24px, 8vw, 82px);
}
#homeBanner .text {
  padding: 30px 0;
  max-width: 80%;
}
#homeBanner .box p {
  color: var(--white);
  font-family: "Futura-Bk-BT-Book";
  line-height: 1.6;
}

#homeBanner .button-box {
  padding-top: 20px;
  display: flex;
  gap: 40px;
}
#homeBanner .container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
}
/* About Section  css ******************************************************************************/

.about-section .text-box {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}
.about-section .text-box p {
  line-height: 1.6;
  margin-bottom: 25px;
}
.about-section .text-box p span {
  font-family: "Poppins-SemiBold";
  display: inline;
}
.about-section .feature-card h6 {
  color: var(--black-343434);
  font-family: "Poppins-Bold";
  text-align: center;
  line-height: 1.6;
}

.about-section .feature-card p {
  text-align: center;
  font-size: 18px;
}
.about-section .feature-card {
  border-radius: 20px;
  padding: 50px 20px;
  height: 100%;
}
.about-section .row {
  margin-bottom: 30px;
}

/* Core Strengths Section  css ******************************************************************************/
.core-strengths {
  background: url("../images/core-strength-bg.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 80px 0;
}
.core-strengths .section-heading h2 {
  color: var(--white);
}
.core-strengths .strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.core-strengths .strength-card {
  background-color: #fcfcfc;
  padding: 32px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 50px;
  justify-content: center;
}
.core-strengths .strengths-grid .strength-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.core-strengths .strengths-grid h5 {
  color: #343434;
  text-align: left;
  line-height: 1.5;
}

/* product css ******************************************************************************/

#product .item {
  background-color: var(--light-gray);
  height: 100%;
  padding: 50px 30px 30px;
  border-radius: 10px;
}

#product .item .img-box {
  display: flex;
  justify-content: end;
  padding-right: 30px;
  margin-bottom: 20px;
}

#product .item .img-box img {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
}
#product .item h6 {
  line-height: 1.3;
  color: var(--black-343434);
}
#product .item p {
  color: var(--black-343434);
  font-size: 16px;
}
#product .owl-stage {
  display: flex;
}
.button-box.Catalogue {
  display: flex;
  justify-content: center;
  padding-top: 80px;
}

.button-box.Catalogue a {
  background-color: var(--yellow-EFD177);
  padding: 10px 15px;
}
.button-box.Catalogue a img {
  height: 20px;
  width: 20px;
  margin-left: 10px;
}
/* testimonial css ----------------------------------  */
.testimonial .testimonial-part {
  background-color: var(--light-yellow);
}
.testimonial .owl-stage {
  display: flex;
  padding: 15px 0;
}
.testimonial .item {
  background-color: var(--white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 30px 30px;
  height: 100%;
}
.testimonial .text p {
  font-family: "Futura-Bk-BT-Book";
  color: var(--black);
  width: 80%;
}
.testimonial .profile {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 30px;
}
.testimonial .profile .img-dp-box {
  max-width: 50px;
  max-height: 50px;
  overflow: hidden;
  border-radius: 50%;
}
.testimonial .profile-info .img-dp-box img {
  height: 100%;
  width: 100%;
}
.testimonial .profile-info h6 {
  font-family: "Gilroy-Medium";
  margin-bottom: 5px;
}
.testimonial .profile-info p {
  font-family: "Gilroy-Regular";
  font-size: 14px;
}

/* precision css -------------------------------------*/
#precision {
  padding-bottom: 280px;
}
#precision .precision-part {
  background: url("../images/presicion-bg.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  position: relative;
}

#precision .section-heading h2 {
  color: var(--white);
}
#precision .section-heading p {
  color: var(--white);
}
#precision .text-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
#precision .text-box p,
#precision .includes-box p.title {
  color: var(--white);
  font-size: 16px;
}

#precision .includes-box .box {
  background-color: var(--white);
  padding: 60px 60px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 2px 20px 20px 11px #0000001c;
}
#precision .includes-box .box p {
  font-size: 22px;
}

#precision .includes-box {
  margin-bottom: -21%;
  padding-top: 80px;
}

/* footer css 
******************************************************************************/

#footer .footer-part {
  padding-top: 50px;
  background-color: var(--black);
}

#footer .top-box .logo-box img {
  max-width: 220px;
  margin-bottom: 30px;
}

#footer .top-box h5 {
  margin-bottom: 30px;
}
#footer .top-box .list-box li:not(:last-child) {
  margin-bottom: 20px;
}
#footer .top-box .list-box li {
  color: var(--gray);
}
#footer .top-box .list-box li a {
  transition: 0.5s;
}
#footer .top-box .list-box li a:hover {
  color: var(--white);
}
#footer .box3 ul span {
  color: var(--orange);
}
#footer .top-box .link-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
  margin-top: -30px;
}
#footer .top-box .link-box ul li a {
  border: 1px solid var(--gray);
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
#footer .top-box .link-box ul li i {
  color: var(--gray);
  transition: 0.5s;
}
#footer .top-box .link-box ul li a:hover i {
  color: var(--white);
}
#footer .top-box .link-box ul img {
  max-width: 40px;
}
#footer .end-box {
  margin-top: 30px;
  padding: 10px 0;
  border-top: 1px solid var(--black-343434);
}
#footer .end-box p {
  text-align: center;
  font-family: "Futura-Bk-BT-Book";
  color: var(--white);
}


.wpcf7-form-control-wrap
{
  width: 100%;
}

#form .btn-common {
  border-radius: 10px !important;
}
#form .wpcf7-spinner {
    display: none;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
    border-color: green !important;
    color: green;
}