@charset "UTF-8";
/*========COLOR PRESETS=========*/
/*============NAVBAR============*/
html {
  scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

.text-white {
  color: #fff;
}
.bannerText {
  margin-top: 57px;
}
p{
  font-size: 18px;
  line-height: 1.6;
}
/**************************Nav bar scss*******************/
.toggle,
[id^=drop] {
  display: none;
}
.navBar {
  background: #0a0a0a;
  border-bottom: 3px solid #e27b14;
}
nav {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 99999;
}
nav:after {
  content: "";
  display: table;
  clear: both;
}
nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  nav ul {
    float: right;
  }
  .navBar{
    background-color: white;
  }
}
nav ul li {
  margin: 0px;
  display: inline-block;
  float: left;
  background-color: #0a0a0a;
}
nav ul li ul li:hover {
  background: #000000;
}
nav ul li:hover > ul {
  display: inherit;
}
nav ul ul {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 48px;
}
nav ul ul li {
  width: 246px;
  float: none;
  display: list-item;
  position: relative;
  border-bottom: 1px solid #e27b14;
}
nav ul ul li:last-child {
  border-bottom: 4px solid #e27b14; /* your desired color */
}
nav ul ul ul li {
  position: relative;
  top: -60px;
  left: 170px;
}
nav a {
  display: block;
  padding: 14px 15px;
  color: #FFF;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}
nav a ul li a {
  font-weight: 400 !important;
}
nav a:hover {
  background-color: #2f2f2f;
}
#logo {
  display: block;
  padding: 0 30px;
  float: left;
  font-size: 20px;
  line-height: 60px;
}
@media (min-width: 768px) {
  #logo {
    display: none;
  }
}
li > a:after {
  content: " +";
}
li > a:only-child:after {
  content: "";
}
.sticky{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

@media all and (max-width: 768px) {
  #logo {
    display: block;
    padding: 0;
    width: 100%;
    line-height: 0;
    float: none;
  }
  nav {
    display: flex;
    margin: 0;
    justify-content: space-around;
    align-items: center;
  }
  nav ul li {
    border-bottom: 1px solid ;
    display: block;
    width: 100%;
  }
  nav ul li ul li .toggle {
    padding: 14px 20px;
    color: #FFF;
    font-size: 17px;
    background-color: #2f2f2f;
  }
  nav ul li:hover > ul {
    display: none;
  }
  nav ul ul {
    float: none;
    position: static;
    color: #ffffff;
  }
  nav ul ul .toggle {
    padding: 0 40px;
  }
  nav ul ul a {
    padding: 0 40px;
    padding: 14px 20px;
    color: #FFF;
    font-size: 17px;
    background-color: #2f2f2f;
  }
  nav ul ul ul a {
    padding: 0 80px;
    background-color: #2f2f2f;
    padding: 14px 20px;
    color: #FFF;
    font-size: 17px;
  }
  nav ul ul ul li {
    position: static;
  }
  nav ul ul li {
    display: block;
    width: 100%;
  }
  nav ul ul li:hover > ul {
    display: none;
  }
  nav a:hover {
    background-color: #2f2f2f;
  }
  .toggle {
    display: block;
    padding: 14px 5px;
    color: rgb(255, 255, 255);
    font-size: 17px;
    text-decoration: none;
    border: none;
  }
  .toggle + a {
    display: none;
  }
  #nav-icon4 {
    width: 35px;
    height: 45px;
    position: relative;
    margin: 0px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  }
 #nav-icon4 span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #000000;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  #nav-icon4 span:nth-child(1) {
    top: 6px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  #nav-icon4 span:nth-child(2) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  #nav-icon4 span:nth-child(3) {
    top: 30px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  #nav-icon4.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 6px;
    left: 8px;
  }
  #nav-icon4.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }
  #nav-icon4.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 30px;
    left: 8px;
  }
  .menu :hover {
    background-color: #2e2e2e;
  }
  .menu {
    display: none;
  }
  [id^=drop]:checked + ul {
    display: block;
  }
}
@media all and (max-width: 330px) {
  nav ul li {
    display: block;
    width: 94%;
  }
}
@media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
}

.testimonials {
  /* margin-top: 50px; */
}
.testim {
  background-color: #f5f5f5;
  padding: 0px 0px 0px 0px;
}
.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  padding: 40px 0px;
  margin: auto;
}
.testim .arrow {
  display: block;
  position: absolute;
  color: #333;
  cursor: pointer;
  font-size: 2em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  padding: 5px;
  z-index: 10;
}
.testim .arrow:before {
  cursor: pointer;
}
.testim .arrow:hover {
  color: #e27b14;
}
.test2 .arrow.left {
  left: 15px !important;
}
.test2 .arrow.right {
  right: 15px !important;
}
.testim .arrow.left {
  left: 70px;
}
.testim .arrow.right {
  right: 70px;
}
.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
  display: block;
  z-index: 3333;
  height: 12px;
}
.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #e27b14;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: #e27b14;
  border-color: #e27b14;
}
.testim .dots .dot.active {
  animation: testim-scale 0.5s ease-in-out forwards;
}
.testim .cont {
  position: relative;
  overflow: hidden;
}
.testim .cont > div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}
.testim .cont > div.inactive {
  opacity: 1;
}
.testim .cont > div.active {
  position: relative;
  opacity: 1;
}
.testim .cont div .img img {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}
.testim .cont div .heading2 {
  color: #e27b14;
  font-size: 1em;
  margin: 15px 0;
}
.test2 div p {
  width: 70% !important;
}
.testim .cont div p {
  font-size: 1.15em;
  color: #333;
  width: 70%;
  margin: auto;
}
.testim .cont div.active .img img {
  animation: testim-show 0.5s ease-in-out forwards;
}
.testim .cont div.active .heading2 {
  animation: testim-content-in 0.4s ease-in-out forwards;
}
.testim .cont div.active p {
  animation: testim-content-in 0.5s ease-in-out forwards;
}
.testim .cont div.inactive .img img {
  animation: testim-hide 0.5s ease-in-out forwards;
}
.testim .cont div.inactive .heading2 {
  animation: testim-content-out 0.4s ease-in-out forwards;
}
.testim .cont div.inactive p {
  animation: testim-content-out 0.5s ease-in-out forwards;
}
@keyframes testim-scale {
  0% {
    box-shadow: 0px 0px 0px 0px #eee;
  }
  35% {
    box-shadow: 0px 0px 10px 5px #eee;
  }
  70% {
    box-shadow: 0px 0px 10px 5px #ea830e;
  }
  100% {
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}
@keyframes testim-content-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes testim-content-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@keyframes testim-show {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes testim-hide {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}
@media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
}
@media all and (max-width: 500px) {
  .testim .arrow {
    font-size: 1.5em;
  }
  .testim .cont div p {
    line-height: 25px;
  }
}

.whitebg {
  background-color: #fff !important;
}
.theme-color {
  background-color: #e27b14;
}
.white-color {
  color: #fff;
}
.w-100 {
  width: 100%;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
a {
  text-decoration: none;
}
* {
  margin: 0;
  padding: 0;
}
h6 {
  font-weight: 700;
}
img {
  max-width: 100%;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
a {
  color: #0d6efd;
}
body {
  font-family: "Mulish", sans-serif;
  max-width: 100%;
  overflow-x: 100%;
  color: #212529;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.h2, h2 {
  font-size: 2rem;
  font-weight: 600;
}
.h5, h5 {
  font-size: 1.25rem;
}
.h6, h6 {
  font-size: 1rem;
  font-weight: 700;
}
.h4, h4 {
  font-size: 1.5rem;
}
.mt10{
  margin-top: 10px;
}
.mt5, .mt20 {
  margin-top: 20px;
}
.mt6 {
  margin-top: 24px;
}
.mt7 {
  margin-top: 28px;
}
.mt30{
  margin-top: 30px !important;
}
.mt50{
  margin-top: 50px;
}
.mb10{
  margin-bottom: 10px !important;
}
.mb20{
  margin-bottom: 20px !important;
}
.mb30{
  margin-bottom: 30px !important;
}
.mb50{
  margin-bottom: 50px !important;
}
.dFlex {
  display: flex;
}
.flexWrap {
  flex-wrap: wrap;
}
.alignStart{
  align-items: flex-start;
}
.alignCenter {
  align-items: center;
}
.justifyCenter {
  justify-content: center;
}
.columnReverse{
  display: flex;
  flex-direction: column-reverse;
}
.justifySpaceBetween {
  justify-content: space-between;
}
.justifySpaceAround{
  justify-content: space-around;
}
.justifyFlexEnd {
  justify-content: flex-end;
}
.tcenter {
  text-align: center;
}
.rowGap-40 {
  row-gap: 40px;
}
.contentSection{
  padding-top: 20px;
}
@media (max-width: 768px) {
  .toggleMenu {
    padding: 6px 0 0 0 !important;
  }
  .toggleMenu img {
    float: left;
    position: relative;
    z-index: 9;
  }
  .testim .arrow{
    display: none;
  }
}
@media (max-width: 768px) {
  .navBar nav > ul {
    margin-top: 46px;
    top: 30px;
    border-bottom: 3px solid #f26522;
    position: absolute;
    z-index: 99;
  }
}
header {
  display: flex;
  min-height: 85px;
  align-items: center;
}
@media (max-width: 768px) {
  header  {
    display: none;
  }
}
header .logoCont {
  display: flex;
  align-items: center;
}
header .topUlSection {
  display: flex;
  flex-direction: column;
  align-items: end;
}
header .topUl {
  list-style-type: none;
  margin: 0px;
  height: 30px;
}
header .topUl li {
  margin-left: 30px;
  position: relative;
}
header .topUl li::after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #ccc;
  position: absolute;
  margin-left: 15px;
  margin-right: 10px;
  top: 5px;
}
header .topUl li:last-child::after {
  content: none !important;
}
header .topUl li a {
  color: #000;
  font-size: 14px;
}
header .contactUl {
  list-style-type: none;
  margin: 0 !important;
  min-height: 30px;
  align-items: center;
  display: flex;
}
header .contactUl li {
  margin-left: 20px;
  font-size: 16px;
  position: relative;
  font-weight: 700;
}
header .contactUl li:first-child {
  position: relative;
  top: 0px;
}
header .contactUl li:first-child a {
  display: flex;
  align-items: center;
}
header .contactUl li img {
  max-width: 24px;
}
header .contactUl li a {
  color: #000;
}
header .contactUl li a i {
  color: #e27b14;
}
header .contactUl li .btnStylw {
  background-color: #e27b14;
  color: #fff;
  width: 100px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
.section-carousel {
  position: relative;
}
.section-carousel .carousel-item {
  height: 610px;
}
.section-carousel {
  position: relative;
  overflow: hidden;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
  height: auto;
  display: flex;
  align-items: center;
}
.bannerImage img {
  width: 100%;
  height: auto;
  display: block;
}
/* === SWIPER NAVIGATION BUTTONS === */
.swiper-button-next,
.swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 25px !important;
  color: #000;
  font-weight: bold;
}
/* Hover Effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #808080;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
/* Positioning Adjustments */
.swiper-button-prev {
  left: 30px !important;
}
.swiper-button-next {
  right: 30px !important;
}
.bannerText .bannerHeading {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
}
.bannerText .bannerHeading span, .indexheading h1 {
  display: block;
  position: relative;
}
.bannerText .bannerHeading span::before, .indexheading h1::before{
  position: absolute;
  content: "";
  height: 6px;
  width: 80px;
  background-color: #e27b14;
  bottom: -5px;
}
.bannerText p {
  font-size: 22px;
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 30px;
  text-transform: uppercase;
  width: 650px;
}
@media (max-width: 768px) {
  .bannerText p {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .bannerText .btnWrap {
    display: none;
  }
  .bannerImage{
    display: none !important;
  }
  .swiper-button-next, .swiper-button-prev{
    display: none !important;
  }
}
.bannerText .btnWrap .btn-one {
  background-color: #e27b14;
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  margin-right: 10px;
  font-size: 22px;
}
.bannerText .btnWrap .btn-two {
  border: #fff 2px solid;
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
}
.mainSerives {
  position: relative;
  width: 100%;
  margin-top: -160px;
  z-index: 9;
}
.mainSerives .serviceBoxWrap {
  display: flex;
}
@media (max-width: 768px) {
  .mainSerives .serviceBoxWrap {
    flex-wrap: wrap;
  }
  .mainSerives .serviceBoxWrap .box {
    width: 100% !important;
  }
}
.mainSerives .serviceBoxWrap .box {
  width: 25%;
  display: flex;
  flex-direction: column;
  background-color: #f26522;
  padding: 22px;
}
.mainSerives .serviceBoxWrap .box:nth-child(2), .mainSerives .serviceBoxWrap .box:nth-child(4) {
  background-color: #f47c2b;
}
.mainSerives .serviceBoxWrap .box .icon {
  width: 60px;
  height: 35px;
}
.mainSerives .serviceBoxWrap .box .headingService {
  margin-top: 40px;
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}
.mainSerives .serviceBoxWrap .box .discription {
  margin-top: 10px;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
}
.mainSerives .serviceBoxWrap .box .mainHeading {
  margin-top: 10px;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.4;
}
.services {
  padding: 80px 0 50px 0;
}
.services .centerHeading {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 1.75rem;
}
.services .colBox3 {
  position: relative;
  border: #f2f2f2 1px solid;
  border-radius: 15px;
  padding: 20px;
  flex-basis: 32%;
  margin-bottom: 25px;
  box-shadow: -2px -1px 24px -7px rgba(0, 0, 0, 0.2);
  margin-right: 1.5%;
  transition: all 0.5s ease-in-out;
}
.services .colBox3:hover {
  margin-top: -5px;
  transition: all 0.5s ease-in-out;
}
.services .colBox3 a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .services .colBox3 {
    flex-basis: 49%;
    margin-right: 1%;
  }
  .services .colBox3:nth-child(3n+0) {
    margin-right: 1% !important;
  }
}
@media (max-width: 768px) {
  .services .colBox3 {
    flex-basis: 100%;
    margin-right: 0%;
  }
}
.services .colBox3:nth-child(3n+0) {
  margin-right: 0px;
}
.services .colBox3 h2 {
  margin-top: 10px;
  margin-bottom: 5px;
}
.services .colBox3 .logo {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 70px;
  border-radius: 0 0 0 15px;
  display: flex;
  align-items: center;
}
.services .colBox3 .logo img {
  max-width: 100%;
  margin-left: -15px;
}
.services .colBox3 .bgCol1 {
  background-color: #fff9f2;
}
.services .colBox3 .bgCol2 {
  background-color: #fcf6fa;
}
.services .colBox3 .bgCol3 {
  background-color: #f1fbfa;
}
.services .colBox3 h2 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
}
.services .colBox3 h2::after {
  position: absolute;
  content: "";
  background-image: url(../images/services/icons/arrow.svg);
  background-size: 100%;
  width: 30px;
  height: 25px;
  top: 0px;
}
.services .colBox3 p {
  margin-bottom: 0px;
}
.helpSection {
  background-color: #0a0a0a;
  min-height: 200px;
  padding: 50px 0;
}
.helpSection .heading {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}
.helpSection .heading h2 {
  font-weight: 600;
  color: #ff8e1d;
}
/* .helpSection .bg1 {
  background-color: #e5ebfb;
  background-image: url(../images/services/bg1.jpg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 100%;
}
.helpSection .bg2 {
  background-color: #fbe8ee;
  background-image: url(../images/services/bg2.jpg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 100%;
}
.helpSection .bg3 {
  background-color: #fbe8ee;
  background-image: url(../images/services/bg3.jpg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 100%;
}
.helpSection .bg4 {
  background-color: #e5ebfb;
  background-image: url(../images/services/bg4.jpg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 100%;
} */
.helpBoxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.helpBox {
  display: flex;
  justify-content: space-between;
  flex: 1 1 calc(50% - 20px);
  padding: 25px;
  border-radius: 20px;
  background: rgb(255 255 255 / 10%); /* transparent white */
  backdrop-filter: blur(12px); /* BLUR EFFECT */
  border: 1px solid rgba(255, 255, 255, 0.3); /* soft border */
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Hover animation */
.helpBox:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}
/* Inner content */
.headingBox h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff8e1d;
}
.headingBox p {
  font-size: 14px;
  color: #f0f0f0;
}

/* Optional backgrounds (can remove bg1, bg2 classes if not needed) */
/* .helpSection .bg1 { background: rgba(255, 255, 255, 0.15); }
.helpSection .bg2 { background: rgba(255, 255, 255, 0.15); }
.helpSection .bg3 { background: rgba(255, 255, 255, 0.15); }
.helpSection .bg4 { background: rgba(255, 255, 255, 0.15); } */

/* Responsive */
@media (max-width: 768px) {
  .helpBox {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .helpSection .helpBox {
    flex-basis: 100% !important;
    margin-right: 0%;
    margin-bottom: 20px;
    background-image: none;
  }
}
.helpSection .helpBox:last-child {
  margin-right: 0%;
}
/* .helpSection .helpBox .headingBox {
  width: 58%;
} */
@media (max-width: 768px) {
  .helpSection .helpBox .headingBox {
    width: 100%;
  }
}
.helpSection .helpBox .headingBox h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.helpSection .helpBox .headingBox p {
  margin-bottom: 0px;
  font-size: 18px;
}
.steps_content {
  padding: 50px 0 0px 0;
  background-color: #f5f8f7;
  /* background-color: #f3f3f3; */
}
.steps_content .pointSec ul li::marker,
.pointSec ul li::marker{
  color: #e27b14;
}
.steps_content .heading h2 {
  margin: 0px 0 5px 0;
  /* text-align: center; */
  font-weight: 600;
}
.steps_content .listItems {
  margin-bottom: 60px;
  padding-left: 15px;
}
.steps_content .listItems h3 {
  color: #e27b14;
  margin-bottom: 20px;
  font-size: 1.75rem;
}
.steps_content .listItems ul {
  margin: 0px 0px 0px 38px;
  padding-right: 15px;
  padding: 0px;
  list-style-type: none;
}
.steps_content .listItems ul li {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
}
.steps_content .listItems ul li::before {
  position: absolute;
  content: "";
  background-image: url(../images/check-mark.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  top: 5px;
  left: -35px;
}
.steps_content .listItems ul li a {
  margin-left: 9px;
  display: flex;
  color: #7b7b7b;
}
.steps_content .headingContact {
  text-align: center;
  margin-bottom: 25px !important;
  font-weight: 700;
}
.steps_content .headingContact span {
  color: #d1723a;
}
.steps_content .qualityBox {
  margin-top: 40px;
  width: 100%;
  margin-bottom: 20px;
  background-color: #d8d8d8;
  padding: 20px;
  border-radius: 8px;
}
.steps_content .qualityBox .indiaIcon {
  width: 100%;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
.steps_content .qualityBox .indiaIcon img {
  width: 30px;
  height: auto;
  margin-right: 0px;
}
@media (max-width: 768px) {
  .steps_content .qualityBox {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.steps_content .qualityBox img {
  width: 120px;
  height: 120px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .steps_content .qualityBox img {
    margin-bottom: 15px;
  }
}
.steps_content .qualityBox h3 {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .steps_content .qualityBox h3 {
    text-align: left;
  }
}
.steps_content .qualityBox p {
  color: #88807c;
}
@media (max-width: 768px) {
  .steps_content .qualityBox p {
    text-align: center;
  }
}
.steps_content .whitebg {
  padding: 40px 0 30px 0;
}
.steps_content .formBottom {
  padding: 25px;
  background-color: #dad9d7;
  border-radius: 10px;
  margin-top: 40px;
  min-height: 480px;
}
.steps_content .formBottom h3 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.steps_content .formBottom h4 {
  margin-bottom: 20px;
  margin-top: 10px;
}
.steps_content .formBottom h5 {
  text-align: center;
}
.steps_content .formBottom .with50 {
  width: 50%;
}
.steps_content .formBottom .with50:first-child {
  margin-right: 10px;
  width: calc(50% - 10px);
}
.steps_content .captchaBtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.steps_content .captchaBtn input {
  width: 220px;
  max-width: 220px;
  margin-bottom: 0;
  margin-right: 10px;
}
.steps_content .captchaBtn img {
  width: 150px;
  margin-right: 10px;
}
footer {
  background-color: #0a0a0a;
  min-height: 20px;
  border-top: #e27b14 6px solid;
  /* margin-top: 40px; */
  padding: 30px 0 0px 0;
}
footer .container .row {
  justify-content: space-between;
}
footer .heading {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 2px solid #e27b14;
  display: table;
  line-height: 40px;
  margin-bottom: 25px;
}
footer .flexPro {
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .flexPro {
    flex-direction: column;
  }
  footer {
    margin-bottom: 30px;
  }
  .steps_content .captchaBtn{
    flex-direction: column;
  }
}
footer .flexPro ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
footer .flexPro ul li {
  position: relative;
  padding-left: 15px;
  line-height: 16px;
  font-size: 17px;
  line-height: 32px;
}
footer .flexPro ul li::before {
  content: "•";
  position: absolute;
  color: #e27b14;
  left: 0;
  width: 30px;
  height: 15px;
  top: -4px;
  font-size: 22px;
}
footer .flexPro ul li a {
  color: #fff;
}
footer .info p, footer .info p a {
  font-size: 17px;
  color: #fff;
}
footer .info p i {
  margin-right: 10px;
  color: #e27b14;
}
footer .copyright {
  background-color: #1b1b1b;
  min-height: 50px;
  margin-top: 25px;
}
footer .copyright p {
  font-size: 16px;
  color: #fff;
  padding: 15px 0;
  margin-bottom: 0px;
  text-align: center;
}
@media (max-width: 768px) {
  footer .copyright p {
    text-align: center;
  }
}
.innerBanner {
  min-height: 220px;
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  padding-bottom: 25px;
  padding-top: 25px;
  position: relative;
}
@media (max-width: 768px) {
  .innerBanner {
    min-height: 140px;
  }
}
.innerBanner ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
.innerBanner ul li {
  line-height: 30px;
  color: #c1c1c1;
  /* text-align: center; */
  position: relative;
  font-weight: 500;
  font-size: 18px;
  margin-left: 30px;
}
.innerBanner ul li::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #e27b14;
  position: absolute;
  top: 16px;
  margin-left: -28px;
}
/* .innerBanner ul li::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 16px;
  margin-left: 9px;
} */
.innerBanner ul li a {
  color: #fff;
  position: relative;
  font-weight: 600;
}
.innerBanner .bgoverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}
@media (max-width: 758px) {
  .innerBanner .bgoverlay {
    background-color: #000 !important;
  }
}
.innerBanner.bg1 {
  background-image: url(../images/bg1.jpg);
}
.innerBanner .innerHeading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  width: 100%;
  min-height: 220px;
  position: relative;
  z-index: 99;
}
@media (max-width: 768px) {
  .innerBanner .innerHeading {
    min-height: 140px;
  }
}
.innerBanner .innerHeading h1 {
  text-align: center;
  font-weight: 700;
  color: #e27b14;
  position: relative;
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  font-size: 2.5rem;
}
.innerBanner .innerHeading h1::after {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #e27b14;
  position: absolute;
  top: 60px;
}
.innerHeading .bnrptxt{
  position: relative;
  font-size: 22px;
  /* text-align: center; */
  line-height: 1.4;
  color: white;
}
.btnDefault {
  position: fixed;
  right: 1.5%;
  bottom: 130px;
  background-color: #e27b14;
  padding: 8px 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 17px;
  z-index: 99999;
  visibility: hidden;
  display: none !important;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
}
.btnDefault:hover{
  bottom: 140px; 
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.btnshow{
  visibility: visible;
  display: block !important;
}
.mainContentInner {
  padding: 50px 0;
}
.mainContentInner .row {
  display: flex;
  justify-content: space-between;
}
.mainContentInner h3 {
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.mainContentInner h4 {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.mainContentInner h4 img {
  margin-right: 5px;
}
.mainContentInner h5 {
  font-size: 20px;
  font-weight: 600;
}
.mainContentInner h6 {
  font-size: 18px;
  font-weight: 600;
}
.mainContentInner .mainheading h2 {
  font-size: 32px;
  font-weight: 700;
}
.mainContentInner h4 {
  font-weight: 600;
}
.mainContentInner .ImgCont {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 150px;
}
.mainContentInner .ImgCont img {
  max-width: 320px;
}
.mainContentInner .boxedUl {
  list-style-type: none;
  margin-left: 30px !important;
  margin-bottom: 10px;
}
.mainContentInner .boxedUl li {
  position: relative;
}
.mainContentInner .boxedUl li ol li::before, .mainContentInner .boxedUl li ul li::before {
  background-image: none !important;
}
.mainContentInner .boxedUl li::before{
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: #e27b14;
  top: 6px;
  left: -22px;
}
.mainContentInner .boxedUl li::marker {
  font-weight: 700;
}
.mainContentInner .circleUl {
  list-style-type: none;
  margin-left: 30px !important;
  margin-bottom: 10px;
}
.mainContentInner .circleUl li {
  position: relative;
}
.mainContentInner .circleUl li ol li::before, .mainContentInner .circleUl li ul li::before {
  background-image: none !important;
}
.mainContentInner .circleUl li::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e27b14;
  top: 7px;
  left: -24px;
  z-index: 9;
}
.mainContentInner .circleUl li::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #fff;
  top: 2px;
  left: -29px;
  border: 1px solid #e27b14;
}
.mainContentInner .circleUl li::marker {
  font-weight: 700;
}
.mainContentInner .noDefaultUl {
  list-style-type: none;
}
.mainContentInner .noDefaultUl li {
  display: flex;
  align-items: center;
}
.mainContentInner .noDefaultUl li img {
  width: 190px;
}
.mainContentInner .noDefaultUl li h5 {
  margin-right: 10px;
}
ol li b {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.mainContentInner .ads {
  margin-bottom: 20px;
  max-width: 100%;
  width: 100%;
}
.faq-heading {
  margin-top: 45px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 400;
  font-size: 30px;
}
.faq-card {
  border: 1px solid #dce0e8;
  border-radius: 6px;
  padding: 0 20px;
  margin-bottom: 12px;
  list-style: none;
  position: relative;
  cursor: pointer;
}
.faq-open-icon {
  font-size: 22px;
  position: absolute;
  top: 18px;
  right: 24px;
  font-weight: 700;
}
details[open] .faq-open-icon {
  top: 18px;
  right: 24px;
}
details > summary {
  list-style: none;
  padding: 15px 0;
  font-size: 18px;
}
details > summary::-webkit-details-marker {
  display: none;
}
details[open] summary {
  color: #e27b14;
  font-weight: 500;
  border-bottom: solid 1px ;
}
details[open] .faq-card-spoiler {
  display: inline-block;
  padding-top: 8px;
  color: #202020;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.6;
}
details[open] .faq-card-spoiler ul{
  margin-top: 10px;
}
details[open] .faq-card-spoiler ul li p{
  line-height: 1.3;
  margin-bottom: 2px;
}
.faq-aftertext {
  text-align: center;
  color: #8b8b9a;
}
.martop20 {
  margin-top: 20px;
}
.boxdesign {
  padding: 20px;
  border: 15px;
  margin-bottom: 25px;
}
.boxdesign .tracking-wide {
  border-radius: 15px;
  background-color: #91a9b5;
  padding: 5px 10px;
  display: table;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.boxdesign a {
  font-size: 18px;
  font-weight: 700;
}
.boxdesign p {
  margin-bottom: 0px;
}
.new-resrs-sect {
  margin-top: 45px;
  padding: 25px 16px 18px;
  background-color: #eee;
  position: relative;
}
.new-resrs-sect .nwidth .nhead {
  margin-top: -40px;
  padding: 10px 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  font-size: 14px;
  width: 100%;
  line-height: 20px;
}
.new-resrs-sect ul {
  margin: 0;
  padding: 0;
  text-align: center;
  list-style: none;
}
.new-resrs-sect li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
  background-color: #fff;
  text-align: center;
  transition: all 0.2s ease 0s;
  border: 1px solid #c2c2c2;
  margin-bottom: 0;
  margin-top: 30px;
  padding: 0;
}
.new-resrs-sect li:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.new-resrs-sect a {
  color: #333;
  line-height: 20px;
  width: auto;
  text-align: left;
  display: block;
  position: relative;
  height: 100%;
  text-decoration: none;
}
.new-resrs-sect .imgbx {
  width: 100%;
  height: 122px;
  overflow: hidden;
}
.new-resrs-sect img {
  width: 100%;
  transition: all 0.4s ease 0s;
  transform: scale(1);
  display: inline-block;
}
.new-resrs-sect a:hover img {
  transform: scale(1.1);
}
.new-resrs-sect span {
  width: 33%;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: normal;
  display: block;
  background-color: #e27b14;
  color: #fff;
  padding: 2px 2px 2px;
  text-align: center;
  position: relative;
  top: -26px;
  left: 12px;
}
.new-resrs-sect li h3 {
  margin: 0;
  border-top: none;
  padding: 0 20px 20px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: #333;
  letter-spacing: normal;
}
.rgt-tstm {
  background: #eeeeee;
  position: relative;
  padding: 20px 20px 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.rgt-tstm img {
  position: absolute;
  height: auto;
  width: auto;
  top: 20px;
  z-index: 1;
}
.rgt-tstm h3 {
  font-weight: 600;
  line-height: 28px;
  color: #333;
  font-size: 23px;
  letter-spacing: normal;
  margin-bottom: 10px;
  margin-left: 81px;
}
.hgl-ts {
  background: #fff;
  padding: 20px 17px;
  font-size: 15px;
  border: 2px solid #e27b14;
  line-height: 23px;
  color: #fff;
}
.rgt-tstm a {
  font-size: 13px;
  text-align: right;
  border: none;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 0 0;
  display: block;
  line-height: 22px;
  margin: 3px 0 3px 10px;
  color: #000;
}
.rgt-tstm .hgl-ts p {
  font-size: 15px;
  line-height: 26px;
  margin: 0 0 10px;
  color: #333;
  font-weight: 400;
}
.new-resrs-sect .nwidth .nhead {
  background-color: #e27b14;
}
.whatsappDesign {
  position: fixed;
  right: 1.5%;
  bottom: 50px;
  z-index: 999;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
}
.whatsappDesign a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  background-color: #e4e4e4;
  padding: 0 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}
.watxt{
  font-weight: 700;
  font-size: 15px;
}
.whatsappDesign a:hover, .whatsappDesign:hover{
  bottom: 60px;
  font-weight: 700;
  background-color: darkgrey;
  border-radius: 25px;
  color: #000;
}
.waWhite {
  fill: #fff;
  transition: all 0.2s ease 0s;
}
.waFill {
  fill: #00E676;
}
.whatsappDesign a:hover .waWhite{
  fill: #000; 
}
.list {
  float: left;
  width: 100%;
  margin-top: 50px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.list h2, .list h3, .list h4 {
  font-size: 22px;
}
.h3BotSpace h3 {
  margin-top: 20px;
}
.social {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
@media (max-width: 768px) {
  .social {
    margin-bottom: 20px;
    float: left;
    margin-top: 10px;
  }
  .innerBanner .innerHeading h1::after{
  display: none;
  }
}
.social li {
  float: left;
  margin-right: 15px;
  font-size: 28px;
}
.social li:last-child {
  margin-right: 0px;
}
.social li .fa-facebook {
  color: #e27b14;
}
.social li .fa-twitter {
  color: #e27b14;
}
.social li .fa-linkedin {
  color: #e27b14;
}
.social li .fa-instagram {
  color: #e27b14;
}
.social li .fa-youtube {
  color: #e27b14;
}
.row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
}
.section-12 {
  width: 100%;
  padding: 0 15px;
}
.section-11 {
  width: 91.66666667%;
  padding: 0 15px;
}
@media only screen and (max-width: 990px) {
  .section-11 {
    width: 100% !important;
  }
}
.section-10 {
  width: 83.33333333%;
  padding: 0 15px;
}
@media only screen and (max-width: 990px) {
  .section-10 {
    width: 100% !important;
  }
}
.section-9 {
  width: 75%;
  padding: 0 15px;
}
@media only screen and (max-width: 990px) {
  .section-9 {
    width: 100% !important;
  }
}
.section-8 {
  width: 66.66666667%;
  padding: 0 15px;
}
@media only screen and (max-width: 990px) {
  .section-8 {
    width: 100% !important;
  }
}
.section-7 {
  width: 58.33333333%;
  padding: 0 15px;
}
@media only screen and (max-width: 990px) {
  .section-7 {
    width: 100% !important;
  }
}
.section-6 {
  width: 50%;
  padding: 0 15px;
}
@media only screen and (max-width: 990px) {
  .section-6 {
    width: 100% !important;
  }
}
.section-5 {
  width: 41.66666667%;
  padding: 0 15px;
}
@media only screen and (max-width: 990px) {
  .section-5 {
    width: 100% !important;
  }
}
.section-4 {
  width: 33.33333333%;
  padding: 0 15px;
}
@media only screen and (max-width: 990px) {
  .section-4 {
    width: 100% !important;
  }
}
.section-3 {
  width: 25%;
  padding: 0 15px;
}
@media only screen and (max-width: 990px) {
  .section-3 {
    width: 100% !important;
  }
}
.section-2 {
  width: 16.66666667%;
  padding: 0 15px;
}
@media only screen and (max-width: 990px) {
  .section-2 {
    width: 100% !important;
  }
}
.section-1 {
  width: 8.33333333%;
  padding: 0 15px;
}
@media only screen and (max-width: 990px) {
  .section-1 {
    width: 100% !important;
  }
}
.container {
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
  width: 100%;
}
@media (min-width: 576px) {
  .container {
    max-width: 570px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 990px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}
.d-flex {
  display: flex;
  flex-wrap: wrap;
}
*, ::after, ::before {
  box-sizing: border-box;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  margin-bottom: 15px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.theme-color {
  background-color: #e27b14;
}
.white-color {
  color: #fff;
}
@media (max-width: 768px) {
  .navBar nav li a {
    color: #000 !important;
    background-color: #fff;
  }
  .openSub {
    color: #000 !important;
  }
}
.owl-item {
  margin-left: -1px;
}
.innerUl {
  margin-left: 30px;
}
.contactInfo {
  width: 100%;
  height: 220px;
  border: 1px solid #f0f2f1;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
}
.contactInfo img {
  width: 60px;
}
.contactInfo span {
  margin-right: 10px;
  position: relative;
}
.contactInfo .phone {
  font-size: 20px;
  font-weight: 700;
}
.contactInfo p {
  margin-bottom: 5px;
}
.contactInfo .text {
  color: #919392;
  font-size: 12px;
}
.contactInfo .btnEmail {
  border: 1px solid #de9335;
  border-radius: 5px;
  min-width: 138px;
  height: 40px;
  padding: 10px 18px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  float: left;
  color: #de9335;
  font-weight: 600;
  position: absolute;
  bottom: 0;
}
.contactInfo .btnEmail img {
  width: 12px !important;
  margin-left: 8px;
}
.boxContent h5 {
  display: flex;
  align-items: center;
  width: 100%;
}
.status-msg.error {
  border: 2px solid #f00;
  color: #f00;
  padding: 10px 16px;
  width: 100%;
  margin-bottom: 15px;
}
.qualityBoxHome {
  width: 32%;
  display: flex;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  align-items: center;
  min-height: 150px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media (max-width: 768px) {
  .qualityBoxHome {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.qualityBoxHome img {
  width: 80px;
  height: 80px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .qualityBoxHome img {
    margin-bottom: 15px;
  }
}
.qualityBoxHome h3 {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .qualityBoxHome h3 {
    text-align: center;
  }
}
.qualityBoxHome p {
  color: #515151;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .qualityBoxHome p {
    text-align: center;
  }
  .bottomfixed{
    position: fixed;
    border-top: 2px solid black;
    background-color: #f26522;
    bottom: 0;
    text-align: center;
    width: 100%;
    height: 35px;
    z-index: 999;
  }
  .bottomfixed a{
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: white;
  } 
  .bottomfixed a img{
    width: 28px;
    height: 28px;
    margin-bottom: -8px;
  }
}
@media (min-width: 768px) {
  .bottomfixed {
    display: none;
  }
}
.bannerImage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
}
.bannerImage img {
  width: 80% !important;
}
.ulDesign1 {
  list-style-type: none;
}
.ulDesign1 li {
  position: relative;
  padding-left: 20px;
}
.ulDesign1 li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #e27b14;
  top: 6px;
  left: 0;
  border-radius: 2px;
  box-shadow: 2px 3px 5px -3px rgba(0, 0, 0, 0.75);
}
.ulDesign2 {
  list-style-type: none;
  margin-bottom: 15px;
}
.ulDesign2 li {
  position: relative;
  padding-left: 20px;
}
.ulDesign2 li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-image: url(../images/icons/arrowIcon.png);
  top: 6px;
  left: 0;
  border-radius: 2px;
}
.servTitle {
  font-size: 25px;
  font-weight: 700;
  color: #e27b14;
  /* color: #e27b14; */
}
.serviceBox{
  width:22% !important;
}
.serviceBox1, .serviceBox {
  position: relative;
  background-color: white;
  width:32%;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: solid 1px rgb(230, 230, 230);
  border-radius: 20px;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}
.serviceBox2, .serviceBox3, .serviceBox4, .serviceBox{
  position: relative;
  background-color: white;
  width: 20%;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: solid 1px rgb(230, 230, 230);
  border-radius: 20px;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}
.serviceBox3{
  width: 18%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.serviceBox4{
  width: 43%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}
.serviceBox4 p {
  margin: 0;
}
.serviceBox4 ul li{
  display: flex;
  align-items: center;
}
.serviceBox4 ul li p{
  line-height: 1.1;
  margin: 0 0 10px 0;
}
.serviceBox4 ul li i{
  margin-right: 8px;
  font-size: 9px;
  margin-top: -10px;
}
.serviceBox1 p{
  font-size: 18px;
  line-height: 1.6;
  margin: -3px 0 10px 0;
}
.serviceBox1 p b{
  font-size: 17px;
  font-weight: 700;
}
.serviceBox1 ul li{
  display: flex;
  align-items: flex-start;
  font-size: 16px;
}
.serviceBox1 ul li p{
  line-height: 1.1;
  font-size: 17px;
}
.serviceBox1 ul li i{
  margin-right: 8px;
  color: darkgray;
  font-size: 9px;
}
.serviceBox:hover,
.serviceBox1:hover,
.serviceBox2:hover,
.serviceBox3:hover,
.serviceBox4:hover,
.serviceBox:hover{
  box-shadow: rgb(0 0 0 / 0%) 0px 5px 15px;
}
.serviceBox .servHeading,
.serviceBox1 .servHeading,
.serviceBox2 .servHeading,
.serviceBox3 .servHeading,
.serviceBox4 .servHeading {
  position: relative;
  font-size: 20px;
  /* color: #e27b14; */
  line-height: 120%;
  font-weight: 600;
  padding-bottom: 6px;
}
.serviceBox2 .servHeading,
.serviceBox3 .servHeading{
  color: #111111;
  font-weight: 700;
}
.serviceBox i{
  font-size: 35px;
  color: var(--maincolor);
}
.serviceBox .servIcon,
.serviceBox1 .servIcon {
  width: 40px;
}
.serviceBox2 .servIcon,
.serviceBox3 .servIcon{
  width: 60px;
}
.serviceBoxdisnon {
  padding: 20px;
  width: 32%;
}
.imgpoint{
  padding: 30px 0;
}
.pointimg {
  float: right;
}
.bgBox h3{
  font-weight: 700;
  line-height: 1.1;
  font-size: 25px;
  color: #1c1b1b;
}
.list-point {
  list-style: none;
}
ul.list-point li{
  position: relative;
  color: black;
  margin-bottom: 5px;
  font-size: 18px;
}
ul.list-point li i {
  margin-right: 10px;
  color: #e27b14;
}
.pointSec {
  margin-top: 15px;
  margin-left: 25px;
}
.pointSec h3{
  font-size: 1.5rem;
  position: relative;
  font-weight: 600;
}
.pointSec h4{
  position: relative;
  font-weight: 600;
}
.pointSec h4:before{
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: #e27b14;
  top: 8px;
  left: -22px;
}
.pointSec ul{
  margin-bottom: 5px;
}
.pointSec p{
  margin-bottom: 5px;
}
.pl20 {
  padding-left: 40px !important;
}
.pointSec ul li p{
  margin-bottom: 0;
}
.pointSec ul li p b{
  font-size: 18px;
  font-weight: 700;
}
.listPsec{
  margin-left: 15px !important;
  margin-bottom: 15px !important;
}
.listPsec li{
  list-style: inside;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.89);
}

main {
  padding: 2vw;
  background-color: #f5f8f7;
}
.infoGraphTl{
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-bottom: 7px;
}
.infoGraphTl::after{
  content: "";
  width: 150px;
  height: 3px;
  background-color: #e27b14;
  position: absolute;
  bottom: 0;
}
ul.infoGraphic {
  font-size: 0.8em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
ul.infoGraphic li {
  position: relative;
  width: 100%;
  max-width: 50em;
  list-style: none;
  background: #f5f8f7;
  border-radius: 0.5em;
  padding: 0.5em;
  z-index: 1;
  transition: all 0.2s;
  cursor: pointer;
}
ul.infoGraphic li .numberWrap {
  position: absolute;
}
ul.infoGraphic li .number {
  font-family: "maven pro", sans-serif;
  font-size: 13em;
  font-weight: 900;
  width: 0.9em;
  text-align: center;
}
ul.infoGraphic li .number.fontColor1 {
  color: #3498db;
}
ul.infoGraphic li .number.fontColor2 {
  color: #2ecc71;
}
ul.infoGraphic li .number.fontColor3 {
  color: #9b59b6;
}
ul.infoGraphic li .number.fontColor4 {
  color: #f1c40f;
}
ul.infoGraphic li .number.fontColor5 {
  color: #e74c3c;
}
ul.infoGraphic li .number.fontColor6 {
  color: #e67e22;
}
ul.infoGraphic li .coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 18em;
  height: 15em;
  left: -1em;
  top: -1em;
}
ul.infoGraphic li .coverWrap .numberCover {
  position: absolute;
  background: #f5f8f7;
  width: 18em;
  height: 6em;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #f5f8f7;
  transition: all 0.4s;
}
ul.infoGraphic li .coverWrap .numberCover::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 4em;
  right: 4em;
  top: 5em;
  box-shadow: 0 0 30px 17px #48668577;
  border-radius: 100px/10px;
  z-index: -1;
}
ul.infoGraphic li .coverWrap .numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(at bottom, #48668533, transparent, transparent);
  z-index: 1;
}
ul.infoGraphic li .content {
  margin: 8em 3em 1em 7em;
  position: relative;
  text-align: center;
}
ul.infoGraphic li .content h2 {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 1.7em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}
ul.infoGraphic li .content p {
  /* line-height: 1.5em; */
  font-size: 17px;
}
ul.infoGraphic li:hover .coverWrap .numberCover {
  border-radius: 100%;
}
ul.infoGraphic li .content .icon {
  position: absolute;
  font-size: 2rem;
  text-align: center;
  top: -1.5em;
  left: 50%;
  transform: translatex(-50%);
}
ul.infoGraphic li .content .icon:before {
  color: #666;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  font-display: swap;
}
.iconCodepen:before {
  content: "";
}
.iconSocial:before {
  content: "";
}
.iconAirplane:before {
  content: "";
}
.iconMap:before {
  content: "";
}
.iconBulb:before {
  content: "";
}
.iconPeace:before {
  content: "";
}
.controls {
  position: fixed;
  z-index: 2;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #d7d7d7a1;
  padding: 0.5rem 2em;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border: 1px solid #0000004d;
}
.sliderBox {
  text-align: center;
}
.sliderBox .range-value {
  font-weight: 500;
  font-size: 22px;
}
input[type=range] {
  width: 100%;
  margin: 1em 0;
  -webkit-appearance: none;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  background: #00000066;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 2px;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background: #eee;
  box-shadow: inset 0px 1px 1px #ffffff66, 0px 1px 3px black;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
  -webkit-appearance: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #eee;
}
input[type=range]::-moz-range-track {
  background: #000;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 1px;
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #151728;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
}
input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 13px 0;
  color: transparent;
  width: 100%;
  height: 1px;
  cursor: pointer;
}
input[type=range]::-ms-fill-lower {
  background: #151728;
  border: 0;
  border-radius: 2.6px;
}
input[type=range]::-ms-fill-upper {
  background: #151728;
  border: 0;
  border-radius: 2.6px;
}
input[type=range]::-ms-thumb {
  width: 25px;
  height: 25px;
  background: #151728;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}
input[type=range]:focus::-ms-fill-lower {
  background: #ffffff;
}
input[type=range]:focus::-ms-fill-upper {
  background: #ffffff;
}
.clientLogos{
  background-color: #3498db;
  padding: 30px 0;
}
.clientLogos .logoH{
  color: white;
  font-size: 35px;
  line-height: 1.1;
  font-weight: 700;
}
.logos{
  overflow: hidden;
  /* padding: 30px 0px; */
  white-space: nowrap;
  position: relative;
}
.logos:before, .logos:after{
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}
.logo_items{
  display: inline-block;
  animation: 30s slides infinite linear;
}
.logo_items img{
  /* height: 100px;  */
  margin-right: 20px;
  width: 140px !important;
  border: 1px solid #e6e6e6;
  padding: 5px;
}
.clientLogos .clientLogoWrap {
  position: relative;
}
.clientLogos .clientLogoWrap .owl-stage-outer {
  max-height: 130px;
}
.clientLogos .clientLogoWrap .owl-stage-outer .owl-stage .owl-item {
  width: 140px !important;
  border: 1px solid #e6e6e6;
  padding: 5px;
}
.logos:hover .logo_items {
  animation-play-state: paused;
}
.logo_items img{
  /* height: 100px; */
  margin-right: 20px;
  width: 140px !important;
  border: 1px solid #e6e6e6;
  padding: 5px;
}
@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.sectiondvd{
  padding: 20px 0;
}
/* Basic page styling */
.process_Section {
  background-color: #f8e7cf;
  margin: 0;
  padding: 30px 20px;
}
/* Step container */
.process-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  margin: auto;
}
/* Dotted connector line */
.process-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 2px dashed #c8a86a;
  transform: translateY(-50%);
  z-index: 0;
}
/* Step box */
.process-step {
  background-color: #f3b26a;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  width: 130px;
  z-index: 1;
  position: relative;
}
.process-step .icon {
  background-color: #fff2e0;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
}
.process-step img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.process-step h3 {
  font-size: 15px;
  margin: 0;
  font-weight: 700;
  color: #3d2f1e;
}
.mobdisshow{
  display: none;
}
/* Responsive */
@media (max-width: 900px) {
  .mobdisnone{
    display: none;
  }
  .mobdisshow{
    display: block;
  }
  .process-container {
    /* flex-direction: column; */
    align-items: center;
  }
  .serviceBoxdisnon{
    display: none;
  }
  .process-container::before {
    display: none;
  }
  .bgBox {
    background: linear-gradient(90deg, rgb(250 250 250) 50%, rgb(250 250 250) 50%) !important;
  }
  .pointimg {
    display: none !important;
  }
  .pointSec{
    margin-left: 0;
  }
  .serviceBox,
  .serviceBox1,
  .serviceBox2,
  .serviceBox3,
  .serviceBox4{
    width: 100% !important;
  }
  footer{
    margin-top: 0;
  }
}
.timeline{
  position:absolute;
  position: relative;
  left:50%;
  transform:translate(-50%,0);
  z-index:2;
  /* box-shadow:0 4px 10px rgba(0,0,0,0.1); */
}
.timeline::before{
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width: 4px;
  background: #e27b14;
}
.step{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  position:relative;
}
.step-node{
  width: 64px;
  height: 64px;
  border-radius:50%;
  background: #e27b14;
  color:#fff;
  font-weight:700;
  font-size:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  left:50%;
  transform:translate(-50%,0);
  z-index:2;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
}
.tlcontent{
  background:#fff;
  padding:20px 28px;
  border-radius:12px;
  width:45%;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
}
/* Alternate layout */
.step:nth-child(odd) .tlcontent{margin-left:55%;text-align:left;}
.step:nth-child(even) .tlcontent{margin-right:55%;text-align:left;}
.tlcontent h3{
  font-size:22px;
  color: #212529;
  margin-bottom:12px;
  font-weight:700;
}
ul.bullets{list-style:none;padding-left:0;margin:0;}
ul.bullets li{
  position:relative;
  font-size: 17px;
  margin-bottom:10px;
  padding-left:25px;
  color: #666;
  line-height:1.6;
}
ul.bullets li::before{
  content:'';
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  border-radius:50%;
  border:2px solid #e27b14;
}
@media(max-width:768px){
.timeline::before{left:20px;}
.step{flex-direction:column; margin-bottom: 15px;}
.step:nth-child(odd) .tlcontent{
  margin-left: 60px;
}
.step-node{
  left:20px;
  /* transform:none; */
}
#blog{
  display: block !important;
}
.post{
  width: 100% !important;
}
.tlcontent{width:75%;margin:0 0 0 60px;}
.whatsappDesign{
  bottom: 70px;
}
.whatsappDesign a{
  justify-content: center;
  background-color: #fff0;
  box-shadow: none;
  padding: 0;
}
.whatsappDesign a:hover, 
.whatsappDesign:hover{
  background-color: #fff0;
  bottom: 70px !important;
}
.whatsappDesign a svg{
  width: 50px;
}
.watxt{
  display: none;
}
}
#blog{
  display: flex;
  justify-content: space-between;
}
.BlogFetchLinks{
  padding: 20px 0;
}
.BlogFetchLinks .blogH{
  display: inline-block;
  margin-bottom: 15px;
  color: #333;
  font-weight: 700;
  font-size: 25px;
  line-height: 28px;
  border-bottom: 2px solid #e27b14;
  padding-bottom: 5px;
}
.post{
  display: flex;
  border: solid 1px darkgrey;
  padding: 10px 10px;
  border-radius: 8px;
  width: 48%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.post img{
  height: 100px;
  width: 150px;
  border-radius: 8px;
}
.post .date{
  font-size: 18px;
  display: block;
  font-weight: 700;
  color: #e27b14;
}
.postTitle{
  color: #333;
  font-size: 18px;
  margin-bottom: 0px;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}
.post:hover {
  opacity: 0.95;
  transform: translateY(-5px);
  transition: 0.2s ease;
}
/* .post .postTitle a:hover{
  color: white;
} */
.columngap{
  column-gap: 10px;
}
.rowGap{
  row-gap: 20px;
}
.tabs-section {
  /* padding: 2rem 0rem; */
  /* background: linear-gradient(to right, #f6f9fc, #eef2f5); */
}
.tabs-container {
  margin: 0 auto;
  background: #ffffffdd;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  overflow: hidden;
}
/* Tab nav */
.tabs-nav {
  display: flex;
  background: #00b4db;
  background: linear-gradient(90deg, #e27b14, #e27b14);
  list-style: none;
  margin: 0;
  padding: 0;
}
.tab {
  flex: 1;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.tab:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.tab svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.tab.active svg {
  fill: #242424;
}
.tab.active {
  background-color: #ffecda;
  font-weight: 600;
  color: #242424;
}
/* Content panes */
.tabs-content {
  padding: 2rem;
  background-color: #ffecda;
}
.tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
/* Typography */
.tab-pane h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}
.tab-pane ul li p {
 font-size: 17px;
 margin-bottom: 0;
}
/* SECTION */
.swiperCardSec {
  padding: 50px 0;
}

/* MAIN CONTAINER */
.swiperCardContainer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* LEFT CONTENT */
.swiperCardContainer .section-8 {
  flex: 1;
}

/* RIGHT SLIDER */
.swiperCardContainer .section-6 {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* SWIPER CARD */
.swiperCard {
  width: 100%;
  max-width: 450px;
}

/* CARD SLIDE */
.swiperCard .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  padding: 18px 20px;
  border-radius: 18px;
  font-size: 16px;
  color: #515151 !important;
  background-color: #fff !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.swiperCard .swiper-slide h3{
font-size: 25px;
}
/* ============================= */
/* 📱 MOBILE */
@media (max-width: 767px) {
  .swiperCardContainer {
    flex-direction: column;
    text-align: center;
  }
  .swiper-3d{
    perspective:265px !important;
  }
  .section-8 img {
    max-width: 100%;
    height: auto;
  }

  .swiperCard {
    max-width: 90%;
  }
  .photoGallery{
    margin-bottom: 20px;
  }
  .photomain{
    height: 270px !important;
  }
  .pgthumb{
    width: 35px !important;
    height: 35px !important;
  }
  .tab{
    font-size: 15px;
    padding: 5px 5px;
  }
}

/* 📱 TABLET */
@media (min-width: 768px) and (max-width: 1023px) {
  .swiperCardContainer {
    gap: 30px;
  }

  .swiperCard {
    max-width: 300px;
  }
}

.swipnum{
  background-color: rgb(255 223 191);
  padding: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 50%;
  font-size: 50px;
  font-weight: 800;
  color: #e27b14;
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 50%;
}
.swiperCard .swiper-slide ul li{
  font-size: 17px;
}
/* .swiperCard .swiper-slide:nth-child(1n) {
  background-color: white;
  color: #515151 !important;
}
.swiperCard .swiper-slide:nth-child(2n) {
  background-color: white;
  color: #515151 !important;
}
.swiperCard .swiper-slide:nth-child(3n) {
  color: #515151 !important;
  background-color: rgb(215, 255, 239);
}
.swiperCard .swiper-slide:nth-child(4n) {
  color: #515151 !important;
  background-color: rgb(255, 234, 206);
}
.swiperCard .swiper-slide:nth-child(5n) {
  color: #515151 !important;
  background-color: rgb(239, 255, 200);
}
.swiperCard .swiper-slide:nth-child(6n) {
  color: #515151 !important;
  background-color: rgb(255, 209, 219);
}
.swiperCard .swiper-slide:nth-child(7n) {
  color: #515151 !important;
  background-color: rgb(218, 255, 209);
}
.swiperCard .swiper-slide:nth-child(8n) {
  color: #515151 !important;
  background-color: rgb(210, 222, 255);
}
.swiperCard .swiper-slide:nth-child(9n) {
  color: #515151 !important;
  background-color: rgb(255, 200, 255);
}
.swiperCard .swiper-slide:nth-child(10n) {
  color: #515151 !important;
  background-color: rgb(199, 255, 231);
} */
/* .swiperCardnext, .swiperCardprev{
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
    transition: 0.3s ease;
} */
/* .swiperCardnext{
  right: -100px !important;
top: 350px !important;
}
.swiperCardprev{
  left: -100px !important;
top: 350px !important;
} */
.swiperCard .swiper-button-next{
right: -100px !important;
top: 350px !important;
}
.swiperCard .swiper-button-prev{
  left: -100px !important;
top: 350px !important;
}
.swiperCard.swiper-button-next::after, 
.swiperCard.swiper-button-prev::after {
  color: rgb(226, 123, 20) !important;
}
.swiper-pagination{
    bottom: 0 !important;
}
.swiper-pagination-bullet-active{
  background: #e27b14 !important;
}

.SwiperBoxSec{
  background: radial-gradient( circle at 20% 30%, #FFD2B5 0%, #FFF6F0 50%, #E8EAF6 100% );
}
.swiperBox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px 8px;
  overflow: hidden;
}
.SwiperBoxWrap{
  position: relative;
  width: 100%;
  height: 100%;
}
.SwiperBoxWrap .swiper-button-next{
  right: -75px !important;
}
.SwiperBoxWrap .swiper-button-prev{
  left: -75px !important;
}
.swiperBox .swiper-slide {             
  width: clamp(260px, 28vw, 390px);  
  /* padding:30px; */
  border-radius: 20px;
  border:1px solid #fff;
  /* background: var(--card-bg); */
  /* backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur)); */
  /* box-shadow: var(--shadow); */
  /* text-align: center; */
  background-color: #fff;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  font-size: 18px;
  height: auto;
  /* color: #000; */
  padding: 20px;
  /* border: solid 1px rgb(230, 230, 230); */
  /* border-radius: 10px; */
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
  justify-content: center;
  align-items: center;
}
.swiperBox .swiper-slide .servHeading{
  position: relative;
  font-size: 20px;
  /* color: #e27b14; */
  line-height: 120%;
  font-weight: 600;
  padding-bottom: 6px;
  }
.swiperBox .swiper-slide .servHeading::after,
.serviceBox1 .servHeading::after{
  content: "";
  width: 80px;
  height: 2px;
  left: 0;
  background-color: rgb(226, 123, 20);
  position: absolute;
  bottom: 0px;
}
.swiperBox .swiper-slide p{
  font-size: 17px;
  line-height: 1.6;
  margin: -3px 0 10px 0;
  color: #212529;
}
.swiperBox .swiper-slide p b{
  font-weight: 600;
}
.swiperBox .swiper-slide ul{
  padding-left: 10px;
}
.swiperBox .swiper-slide ul li {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
}
.swiperBox .swiper-slide ul li p {
  line-height: 1.4;
  font-size: 17px;
}
.swiperBox .swiper-slide ul li i {
  margin-top: 5px;
  margin-right: 8px;
  color: #e27b14;
  font-size: 9px;
}
.swiperBox .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgboxMainSec{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f2f5, #ffffff);
}
.bgboxsection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0;
  /* padding: 70px 90px; */
  /* background: #ffffff; */
  /* border-radius: 28px; */
  /* max-width: 1250px; */
  /* margin: 60px auto; */
  /* box-shadow: 0 20px 45px rgba(0,0,0,0.12); */
  position: relative;
  /* overflow: hidden; */
}
.bgboxMainSec::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: #ff7a00;
  opacity: 0.15;
  filter: blur(60px);
  border-radius: 50%;
}
.bgleft h2 {
  /* font-size: 40px; */
  font-weight: 800;
  margin-bottom: 15px;
}
.bgleft p {
  /* font-size: 19px; */
  color: #444;
  margin-bottom: 20px;
}
.bgchecklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bgcheck-item {
  font-size: 17px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 15px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: 0.3s ease;
}
.bgcheck-item:hover {
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.bgcheck-item span {
  width: 26px;
  height: 26px;
  background: #ff7a00;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(255,122,0,0.4);
}
.bgright img {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 12px 30px rgba(0,0,0,0.20); */
  transform: scale(1);
  transition: 0.35s ease;
}
.bgright img:hover {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .bgboxsection {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}

.testimonials-section {
  min-height: 100vh;
  background-color: #0a0a0a;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testiwrapper {
  width: 100%;
}
.top-heading {
  text-align: center;
  margin-bottom: 50px;
}
.top-heading h2 {
  font-size: 50px;
  background: linear-gradient(to right, #e27b14, #f15a14);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
}
.top-heading p {
  font-size: 20px;
  color: #999;
}
.testicolumns {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
@media (min-width: 768px) {
  .testicolumns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testicolumns {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* column wrappers */
.testicol {
  height: 600px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom,transparent,white 20%,white 80%,transparent);
  mask-image: linear-gradient(to bottom, transparent 0%, white 20%, white 80%, transparent);
}
.col-2 {
  mask-image: linear-gradient(to top, transparent 0%, white 20%, white 80%, transparent);
}
.scroll-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.scroll-t2b {
  animation-name: scrollTopToBottom;
}
.scroll-b2t {
  animation-name: scrollBottomToTop;
}
@keyframes scrollTopToBottom {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes scrollBottomToTop {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}
.testicard-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Card Styling */
.testicard {
  background: #121217;
  border: 1px solid #2d2d2f;
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.testicard:hover {
  backdrop-filter: blur(20px);
}
.user {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.emoji {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 48px;
  font-size: 30px;
  color: #ff8e1d;
  font-weight: 800;
  border: 1px solid #2d2d2f;
  margin-right: 35px;
}
.name {
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
}
.role {
  font-size: 14px;
  margin-bottom: 0;
  color: #777;
}
.rating {
  color: #facc15;
  margin-bottom: 8px;
}
.text {
  color: #ccc;
  font-style: italic;
}
/* Pause animation on hover */
.testicol:hover .scroll-box {
  animation-play-state: paused;
}
.boxShadow{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.photoGallery {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 20px;
  /* position: absolute; */
  /* top: 50%;
  left: 50%; */
  padding: 20px;
  /* max-width: 50%; */
  /* -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); */
  border: 1px solid #f1f1f1;
  overflow: hidden;
}
.photoGallery .inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* display: block; */
  width: auto;
  /* max-width: 800px; */
}
.photoGallery img {
  display: none;
}
.photomain {
  position: relative;
  width: 100%;
  height: 575px;
  overflow: hidden;
  background: #ccc;
  border: 1px solid #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  /* margin-bottom: 20px; */
}
.photomain:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -70px;
  width: 100%;
  height: 100px;
  background: -moz-linear-gradient( top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100% );
  background: -webkit-linear-gradient( top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100% );
  background: linear-gradient( to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100% );
}
.pgmain-selected {
  animation: crossfade 0.5s ease;
  -webkit-animation: crossfade 0.5s ease;
  -moz-animation: crossfade 0.5s ease;
}
@keyframes crossfade {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes crossfade {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes crossfade {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
.photomain span {
  position: absolute;
  display: block;
  text-align: center;
  font-size: 16px;
  font-family: sans-serif;
  color: #fff;
  bottom: 10px;
  left: 0;
  right: 0;
}
.pgthumb-roll {
  display: flex;
  flex-direction:column ;
  gap: 10px;
  position: relative;
  /* width: auto; */
  /* overflow-x: auto;
  overflow-y: hidden; */
  white-space: nowrap;
}
.pgthumb {
  display: inline-block;
  position: relative;
  width: 75px;
  height: 75px;
  margin-right: 20px;
  background: #ccc;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  cursor: pointer;
}
.pgthumb:last-of-type {
  margin-right: 0px;
}
.pgthumb:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: inset 5px 5px 0px rgba(51, 204, 255, 0),
    inset -5px -5px 0px rgba(51, 204, 255, 0);
}
.pgthumb.current:after {
  box-shadow: inset 2px 2px 0px #ff8e1d, inset -2px -2px 0px #ff8e1d;
  background: rgba(255, 255, 255, 0.4);
  cursor: default;
}
.pgthumb:hover:after {
  box-shadow: inset 2px 2px 0px #ff8e1d, inset -2px -2px 0px #ff8e1d;
}
.qcommerce {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
}

/* LOGO GRID */
.qlogo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 25px;
}
.qlogo {
  height: 135px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}
/* Brand Colors */
.blinkit { background: #fdd64a; color: #000; }
.zepto { background: #3c0b6f; }
.instamart { background: #fe4f03; }
.bigbasket { background: #a5cd39; }
/* HIGHLIGHT */
.qhighlight {
  background: #e27b14;
  color: #fff;
  font-size: 25px;
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 25px;
}
/* PROMO GRID */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
/* PROMO CARDS */
.promo {
  border-radius: 18px;
  padding: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.promo h2 {
  font-size: 36px;
  margin: 10px 0;
}
.promo p {
  font-size: 18px;
  line-height: 1.4;
}
/* LEFT PROMO */
.promo-left {
  background: linear-gradient(135deg, #a10048, #ff4d88);
}
.flipKab{
  position: absolute;
  width: 135px;
  right: 15px;
  bottom: 70px;
  rotate: 335deg;
}
.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffcc00;
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}
/* RIGHT PROMO */
.promo-right {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
}
.promo-right img{
  width: 100px;
}
.rocket {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 40px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .swiperCardContainer{
    flex-direction: column;
  }
  .helpSection .helpBox{
    display: block;
    text-align: center;
  }
  .bgright img{
    height: auto !important;
  }
  .qlogo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .flow-StepNm{
    flex-direction: column;
  }
  .stepNm{
    width: 100% !important;
    margin-top: 30px;
  }
  .flow-StepNm::before{
    display: none;
  }
}

.VAhero{
  /* background:linear-gradient(135deg,#111,#222); */
  color:#fff;}
.VAhero .VAHeading{font-size:30px;font-weight:600;margin-bottom:10px;color: #ff9900;line-height: 1.1;}
.hero p{max-width:700px;font-size:18px;opacity:.9}
.btnVA{display:inline-block;width:100%;text-align:center;background:#ff9900;color:#000;padding:10px 0px;font-weight:bold;text-decoration:none;border-radius:30px; transition: cubic-bezier(0.075, 0.82, 0.165, 1)1s;}
.btnVA:hover{
transform: scale(1.05);
}
/* .section{padding:60px 20px} */
/* .container{max-width:1200px;margin:auto} */
.section .VAsubheading{text-align:center;margin-bottom:20px;font-size:25px;font-weight: 600;line-height: 1.2;color: #fff;}
.stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(100px,1fr));gap:10px}
.stat-box{
  background: linear-gradient(135deg,#fff7ec,#ffffff);
  padding: 20px 10px;
  text-align: center;
  display: flex;
  border-radius: 5px;
  box-shadow: 0 15px 35px rgb(0 0 0 / 8%);
  position: relative;
  overflow: hidden;
  transition: .4s ease;
  gap: 8px;
  flex-direction: column;
  justify-content: center;
  /* padding:20px 25px; */
  /* border-radius:18px; */
}
.stat-box::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,transparent,rgba(255,153,0,.15));
  opacity:0;
  transition:.4s;
}
.stat-box p{
  line-height: 1.1;
  margin-bottom: 0;
  font-size: 15px;
  color: #333;
  font-weight: 600;
}
.stat-box:hover::before{opacity:1}
.stat-box:hover{
  transform:translateY(-5px) scale(1.02);
  box-shadow:0 25px 45px rgba(0,0,0,0.15);
}
.stat-box .VAboxheading {
  font-size: 35px;
  color: #e27b14;
  margin-bottom: 0px;
  font-weight: 600;
  line-height: 1.2;
}

.process{display:grid;grid-template-columns:repeat(auto-fit,minmax(135px,1fr));gap:15px}
.info-services{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:25px}
.VAcard{
  background:#fff;
  padding:35px 20px;
  border-radius:22px;
  border:none;
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
  transition:.4s ease;
  position:relative;
  overflow:hidden;
}
.VAcard::after{
  content:"";
  position:absolute;
  top:0;left:0;
  width:100%;height:5px;
  background:linear-gradient(90deg,#ff9900,#ffcc80);
}
.VAcard p{
  margin-bottom: 0px;
}
.VAcard:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
}
.VAcard .VACardHeading{margin-bottom:10px;font-weight: 600;color: #e27b14;font-size: 21px; line-height: 1.2;}
.VAcard strong{
  font-size: 14px;
}
.info-services ul{padding-left:18px}
.info-services ul li{
  margin-bottom: 5px;
}
.benefit-box{
  background:linear-gradient(135deg,#fff,#fff5e6);
  padding:60px 20px 20px;
  border-radius:24px;
  text-align:center;
  line-height: 1.6;
  max-width:900px;
  margin:auto;
  box-shadow:0 25px 60px rgba(0,0,0,0.1);
  font-size:18px;
  position:relative;
}
.benefit-box::before{
  content:"★";
  position:absolute;
  top:0px;left:50%;
  transform:translateX(-50%);
  font-size:40px;
  color:#ff9900;
}
.founded-box {
  object-fit: cover;
  border: 3px #d6d6d6 solid;
  background-image: url(../images/vaimg2.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: right;
  background-blend-mode: overlay;
  background-color: #00000075;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 40px;
}
.VActa{
  /* background:var(--primary); */
  color:#fff;padding:20px 20px;text-align:center}
.VActa .VActaHeading {
  font-weight: 600;
  font-size: 2rem;
  color: #ff9900;
  line-height: 1.2;
}

.StepNmprocess{
  padding:20px 20px;
}
.flow-StepNm{
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
}
.flow-StepNm::before{
  content:"";
  position:absolute;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  top:22px;
  left:0;
  right:0;
  height:4px;
  background:#e27b14;
  z-index:0;
}
.stepNm{
  position:relative;
  z-index:1;
  text-align:center;
  width:11%;
}
.circle-stepNm{
  font-size: 20px;
  width:44px;
  height:44px;
  border-radius:50%;
  background:#e27b14;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  margin:0 auto 14px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.icon-stepNm{
  width:48px;
  height:48px;
  margin:0 auto 10px;
  border:2px solid #7a8a97;
  border-radius:8px;
}
.stepNm a{
  text-decoration:none;
  color:#212529;
  font-size:17px;
  font-weight:600;
  display:block;
}
.stepNm a:hover{}
.footerlogo{
display: block;
  margin-bottom: 15px;
}

.footerlogo img{
  width: 200px;
}
/*# sourceMappingURL=style.css.map */