* {
  margin: 0%;
  padding: 0%;
}

@font-face {
  font-family: "Poppins";
  src: url("asset/Poppins/Poppins-Regular.ttf") format("truetype");
}
body {
  font-family: "Poppins", sans-serif !important;
}

.Black_f {
  color: #2F2F2F !important;
}

.Orange_f {
  color: #F85639 !important;
}

a {
  text-decoration: none !important;
}

.custome_comman_Button {
  position: relative;
  display: inline-block;
  color: #F85639;
  font-size: 20px;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #F85639;
  padding: 5px 20px;
  border-radius: 36px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.custome_comman_Button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #F85639;
  z-index: -1;
  transition: width 0.4s ease-in-out;
  border-radius: 36px;
}
.custome_comman_Button:hover {
  color: #fff;
}
.custome_comman_Button:hover::before {
  width: 100%;
}

.custome_comman_Button_White {
  position: relative;
  display: inline-block;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  background-color: transparent;
  border: 1px solid #FFF;
  padding: 5px 20px;
  border-radius: 36px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.custome_comman_Button_White::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #F85639;
  z-index: -1;
  transition: width 0.4s ease-in-out;
  border-radius: 36px;
}
.custome_comman_Button_White:hover {
  color: #fff;
}
.custome_comman_Button_White:hover::before {
  width: 100%;
}

.Active_Menu {
  background-color: #2F2F2F;
  box-shadow: inset 0px 0px 11px rgba(255, 255, 255, 0.25);
  color: #F85639 !important;
}

.sect_title h2 {
  font-size: 48px;
  font-weight: 700;
}
.sect_title p {
  font-size: 24px;
}

.banner_title h1 {
  font-size: 60px;
  font-weight: 700;
}
.banner_title h2 {
  font-size: 60px;
  font-weight: 700;
}
.banner_title p {
  font-size: 24px;
}

.Custome_Navbar .HeaderLogo {
  width: 170px;
}
.Custome_Navbar .menu_list {
  background-color: #2F2F2F;
  border-radius: 50px;
}
.Custome_Navbar .menu_list li a span {
  color: #FFF;
  font-size: 18px;
  padding: 8px 10px;
  border-radius: 40px;
}
.Custome_Navbar .menu_contact_Butoon {
  background-color: #2F2F2F;
  height: 66px;
  width: 66px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.MainBanner_Sec {
  position: relative;
  overflow: hidden;
}
.MainBanner_Sec .box {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(80deg);
  z-index: 0;
}
.MainBanner_Sec .box .wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px; /* Smaller width */
  height: 700px; /* Smaller height */
  margin-left: -100px;
  margin-top: -200px;
  opacity: 0.2; /* Lighter opacity */
  border-radius: 43%;
  transform-origin: 50% 50%;
  animation: drift 7000ms infinite linear, blurWave 7000ms infinite linear;
}
.MainBanner_Sec .box .wave.-one {
  background: #FFEFED; /* Light blue */
  opacity: 0.2;
}
.MainBanner_Sec .box .wave.-two {
  background: #FFC3B8; /* Very light black */
  opacity: 0.1;
  animation: drift 4000ms infinite linear, blurWave 4000ms infinite linear;
}
.MainBanner_Sec .box .wave.-three {
  background: #E8E8E8; /* Light cyan */
  opacity: 0.2;
  animation: drift 6000ms infinite linear, blurWave 6000ms infinite linear;
}
.MainBanner_Sec h1 {
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  font-size: 65px;
  animation: typing 3s steps(30, end) forwards, blink 0.7s step-end infinite;
  color: #333;
}
.MainBanner_Sec p {
  font-size: 22px;
  color: #3a1c1c;
  margin-top: 20px;
}

@keyframes drift {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blurWave {
  0% {
    filter: blur(3px);
  }
  50% {
    filter: blur(5px);
  }
  100% {
    filter: blur(3px);
  }
}
.Promaxcard_Features .Custome_Card {
  position: relative;
  background-color: #2F2F2F;
  border-radius: 30px;
  padding: 30px;
  overflow: hidden;
  min-height: 500px;
}
.Promaxcard_Features .Custome_Card .icon_box {
  height: 66px;
  width: 66px;
  border-radius: 50%;
  background: radial-gradient(circle, #2F2F2F 30%, #F85639 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.Promaxcard_Features .Custome_Card h3 {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
}
.Promaxcard_Features .Custome_Card .card_img {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0%;
  left: 0%;
}
.Promaxcard_Features .Custome_Card .card_img_2 {
  position: absolute;
  width: 80%;
  height: auto;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
}
.Promaxcard_Features .Custome_Card .card_img_3 {
  position: absolute;
  width: 80%;
  height: auto;
  bottom: 0%;
  right: 0%;
}
.Promaxcard_Features .Custome_Card .card_img_4 {
  position: absolute;
  width: 80%;
  height: auto;
  bottom: 0%;
  left: 0%;
}
.Promaxcard_Features .Custome_Card .card_img_5 {
  position: absolute;
  width: 95%;
  height: auto;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%);
}
.Promaxcard_Features .Custome_Card .card_img_6 {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%);
}

.About_Promaxcard {
  position: relative;
  background-color: #2F2F2F;
}
.About_Promaxcard h5 {
  font-size: 22px;
}
.About_Promaxcard .right_part {
  position: relative;
  height: 100%;
}
.About_Promaxcard .right_part .outlined-text {
  font-size: 78px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px #F85639; /* Black border */
  text-stroke: 1.5px #F85639; /* Fallback for some browsers */
}

.HeandPromax {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 300px;
  animation: moveLeftRight 2s ease-in-out infinite;
}
.HeandPromax img {
  width: 100%;
  display: block;
}

@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
.Our_Products .Custome_Card {
  border-radius: 10px;
  box-shadow: 4px 4px 13px rgba(0, 0, 0, 0.15);
  padding: 30px;
}
.Our_Products .Custome_Card h3 {
  color: #F85639;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.Our_Products .Custome_Card .btnbottom {
  margin-bottom: -55px;
}
.Our_Products .Custome_Card .btnbottom .custome_card_Button {
  position: relative;
  display: inline-block;
  color: #F85639;
  font-size: 20px;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #F85639;
  padding: 5px 20px;
  border-radius: 36px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.Our_Products .Custome_Card .btnbottom .custome_card_Button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #F85639;
  z-index: -1;
  transition: width 0.4s ease-in-out;
  border-radius: 36px;
}
.Our_Products .Custome_Card .btnbottom .custome_card_Button:hover {
  color: #fff;
}
.Our_Products .Custome_Card .btnbottom .custome_card_Button:hover::before {
  width: 100%;
}
.Our_Products .Custome_Card h4 {
  font-size: 24px;
  color: #2F2F2F;
  font-weight: 700;
  text-align: center;
}
.Our_Products .Custome_Card h4 span {
  color: #9A9A9A;
  font-size: 20px;
  text-decoration: line-through;
}

.FrequentlyAskedQuestions .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #F85639;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.FrequentlyAskedQuestions .accordion-item .accordion-header .accordion-button {
  background: #F85639;
  color: #FFF;
  font-size: 20px;
  border-radius: 5px !important;
}
.FrequentlyAskedQuestions .accordion-item {
  border-radius: 5px !important;
  border: 1px solid #F85639 !important;
}
.FrequentlyAskedQuestions .accordion-button::after {
  height: 30px !important;
  width: 30px !important;
  background-size: 100%;
  margin-left: auto;
  content: "";
  background-image: url("../img/faq_arrow.svg");
}
.FrequentlyAskedQuestions .accordion-button:not(.collapsed)::after {
  background-image: url("../img/faq_arrow.svg");
  transform: var(--bs-accordion-btn-icon-transform);
}
.FrequentlyAskedQuestions .accordion-button:focus {
  box-shadow: none;
}

.Why_Promaxcard {
  position: relative;
  background-color: #2F2F2F;
}
.Why_Promaxcard .right_part p {
  color: #FFF;
  font-size: 22px;
}
.Why_Promaxcard .left_image {
  position: absolute;
  left: 0%;
  bottom: 0%;
  width: 42%;
}

footer {
  border-top: 5px solid #F85639;
}
footer .FooterLogo {
  width: 300px;
}
footer .app_downlod img {
  transition: transform 0.3s ease-in-out;
}
footer .app_downlod img:hover {
  transform: scale(1.1);
}
footer h3 {
  color: #F85639;
  font-size: 24px;
  font-weight: 700;
  position: relative;
}
footer h3::after {
  position: absolute;
  content: " ";
  background-image: linear-gradient(to right, rgb(248, 86, 57), rgba(248, 86, 57, 0));
  width: 100%;
  height: 3px;
  bottom: -20%;
  left: 0%;
}
footer ul li a {
  color: #2F2F2F;
  font-size: 20px;
  text-decoration: none;
}
footer ul li a:hover {
  color: #F85639;
}
footer a {
  color: #2F2F2F;
  font-size: 20px;
  text-decoration: none;
}
footer a:hover {
  color: #F85639;
}
footer .footer_bottom {
  border-top: 1px solid #2F2F2F;
}
footer .footer_bottom p {
  font-size: 16px;
  color: #2F2F2F;
}
footer .footer_bottom p a {
  font-size: 16px !important;
  color: #2F2F2F;
}
footer .footer_bottom p a:hover {
  color: #F85639;
}

.Ovner_promaxcard .name_details {
  text-align: center;
  box-shadow: 4px 4px 13px rgba(0, 0, 0, 0.15);
  border-radius: 71px;
}
.Ovner_promaxcard .name_details h4 {
  color: #F85639;
  font-size: 18px;
  font-weight: 700;
}
.Ovner_promaxcard .name_details p {
  color: #2F2F2F;
  font-size: 18px;
  font-weight: 700;
}
.Ovner_promaxcard .right_part h2 {
  color: #F85639;
  font-size: 48px;
  font-weight: 700;
}
.Ovner_promaxcard .right_part p {
  color: #2F2F2F;
  font-size: 20px;
}

.Mission_Vision .Mission_Part {
  position: relative;
  width: 70%;
  padding: 50px 0px;
  background-color: #2F2F2F;
  border-radius: 0px 100px 100px 0px;
}
.Mission_Vision .Mission_Part .detail_sec {
  width: 70%;
  margin: 0 auto;
}
.Mission_Vision .Mission_Part .detail_sec h2 {
  font-size: 48px;
}
.Mission_Vision .Mission_Part .detail_sec p {
  font-size: 20px;
}
.Mission_Vision .Mission_Part .Mission_img {
  position: absolute;
  right: -17%;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  z-index: 5;
}
.Mission_Vision .Vision_Part {
  position: relative;
  width: 70%;
  margin-left: auto;
  padding: 50px 0px;
  background-color: #2F2F2F;
  border-radius: 100px 0px 0px 100px;
}
.Mission_Vision .Vision_Part .detail_sec {
  width: 70%;
  margin: 0 auto;
}
.Mission_Vision .Vision_Part .detail_sec h2 {
  font-size: 48px;
}
.Mission_Vision .Vision_Part .detail_sec p {
  font-size: 20px;
}
.Mission_Vision .Vision_Part .Mission_img {
  position: absolute;
  left: -17%;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  z-index: 5;
}

.WhyChoosePromaxCard {
  background-color: #2F2F2F;
}
.WhyChoosePromaxCard .custome_part p {
  color: #FFF;
  font-size: 24px;
}

.Promax_Team .Custome_team_card {
  overflow: hidden;
}
.Promax_Team .Custome_team_card .img_box {
  overflow: hidden;
  border-radius: 10px;
}
.Promax_Team .Custome_team_card .img_box img {
  transition: transform 0.4s ease-in-out;
}
.Promax_Team .Custome_team_card h3 {
  font-size: 20px;
  transition: transform 0.4s ease-in-out;
}
.Promax_Team .Custome_team_card:hover img {
  transform: scale(1.1);
}
.Promax_Team .Custome_team_card:hover h3 {
  transform: scale(1.1);
}

.Clients_List .Client_Custome_card {
  box-shadow: 4px 4px 13px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 260px;
  height: 100%;
}
.Clients_List .Client_Custome_card img {
  max-height: 80%;
  max-width: 80%;
  height: auto;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.Contact_Page .left_Part {
  box-shadow: 4px 4px 13px rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 20px;
}
.Contact_Page .left_Part form label {
  font-size: 18px;
  color: #2F2F2F;
  font-weight: 700;
  margin-bottom: 5px;
}
.Contact_Page .left_Part form .input_fild {
  border: 1px solid #E4E4E4;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  outline: #F85639;
}
.Contact_Page .left_Part form .iti {
  width: 100%;
}
.Contact_Page .right_part {
  box-shadow: 4px 4px 13px rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 20px;
}
.Contact_Page .right_part .icon_svg {
  height: 76px;
  width: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 13px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.Contact_Page .right_part h4 {
  color: #989898;
  font-size: 20px;
  font-weight: 700;
}
.Contact_Page .right_part p {
  color: #2F2F2F;
  font-size: 22px;
  font-weight: 500;
}

.ProductDetailBanner {
  position: relative;
}
.ProductDetailBanner .cysrome_card_card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-right-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  overflow: hidden;
}
.ProductDetailBanner .CardCDetail {
  position: relative;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  height: 100%;
}
.ProductDetailBanner .CardCDetail h3 {
  color: #F85639;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.ProductDetailBanner .CardCDetail ul li {
  color: #2F2F2F;
  font-size: 18px;
  font-weight: 500;
}
.ProductDetailBanner .banner_title {
  position: relative;
  z-index: 2;
}
.ProductDetailBanner .banner_title h1 {
  color: #F85639;
  font-size: 60px;
  font-weight: 700;
}
.ProductDetailBanner .banner_title p {
  color: #2F2F2F;
  font-size: 24px;
}
.ProductDetailBanner .banner_title h4 {
  color: #2F2F2F;
  font-size: 24px;
  font-weight: 700;
}

.UseCasesPromaxcard .custome_card h3 {
  color: #2F2F2F;
  font-size: 24px;
  font-weight: 700;
}
.UseCasesPromaxcard .custome_card p {
  color: #2F2F2F;
  font-size: 20px;
}

.PromaxcardOtherProducts .Custome_Card {
  border-radius: 10px;
  box-shadow: 4px 4px 13px rgba(0, 0, 0, 0.15);
  padding: 30px;
}
.PromaxcardOtherProducts .Custome_Card h3 {
  color: #F85639;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.PromaxcardOtherProducts .Custome_Card .btnbottom {
  margin-bottom: -50px;
}
.PromaxcardOtherProducts .Custome_Card .btnbottom .custome_card_Button {
  position: relative;
  display: inline-block;
  color: #F85639;
  font-size: 20px;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #F85639;
  padding: 5px 20px;
  border-radius: 36px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.PromaxcardOtherProducts .Custome_Card .btnbottom .custome_card_Button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #F85639;
  z-index: -1;
  transition: width 0.4s ease-in-out;
  border-radius: 36px;
}
.PromaxcardOtherProducts .Custome_Card .btnbottom .custome_card_Button:hover {
  color: #fff;
}
.PromaxcardOtherProducts .Custome_Card .btnbottom .custome_card_Button:hover::before {
  width: 100%;
}
.PromaxcardOtherProducts .Custome_Card h4 {
  font-size: 24px;
  color: #2F2F2F;
  font-weight: 700;
  text-align: center;
}
.PromaxcardOtherProducts .Custome_Card h4 span {
  color: #9A9A9A;
  font-size: 20px;
  text-decoration: line-through;
}

.Custome_Model_Popup .modal-content {
  background-color: #FFF8F3;
  background-image: url("../img/light_design_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.Custome_Model_Popup .modal-content .design_form form label {
  font-family: "Manrope", serif;
  font-size: 18px;
  font-weight: 700;
  width: 100px;
}

.Custome_Model_Popup .modal-content .design_form form .input_field {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #F85639;
  background-color: transparent;
  outline: none;
  width: 65%;
  font-size: 18px;
  color: #F85639;
}

.Custome_Model_Popup .modal-content .design_form form .input_field::-moz-placeholder {
  color: rgba(0, 0, 0, 0.1882352941);
  font-size: 18px;
  font-weight: 400;
}

.Custome_Model_Popup .modal-content .design_form form .input_field::placeholder {
  color: rgba(0, 0, 0, 0.1882352941);
  font-size: 18px;
  font-weight: 400;
}

/* otp code start */
.verification-code {
  max-width: 350px;
  position: relative;
  margin: 50px 0px;
  text-align: center;
}

/* .control-label{
display:block;
margin:40px 0px;
font-weight:900;
} */
.verification-code--inputs input[type=text] {
  /* border: 2px solid #e1e1e1; */
  width: 80px;
  height: 46px;
  padding: 10px;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
}

/* otp code end */

.Custome_button {
  padding: 7px 25px !important;
  border-radius: 5px;
  background: #F75639;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s all;
  display: block;
}/*# sourceMappingURL=style.css.map */