@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi-webfont/Satoshi-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi-webfont/Satoshi-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
html,
body {
  margin: 0;
  padding: 0;
}

nav {
  font-family: "Satoshi", sans-serif;
  background-color: #D9D9D9;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 15px;
  border-radius: 40px;
  margin-top: 25px;
}
nav .nav .rightBtn {
  display: none;
}

nav.active {
  border-radius: 3px;
}

header {
  background-color: transparent;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 99;
  width: 100%;
}

.logo img {
  max-width: 100%;
  height: auto;
}

.hamburger {
  display: none;
}

.nav {
  justify-content: space-between;
}

.nav li a {
  padding: 3px 5px;
  color: #000;
  text-decoration: none;
}

.rightBtn {
  text-align: right;
}

.rightBtn a {
  background-color: #FF6600;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

.rightBtn a i {
  display: flex;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  background-color: #000;
  border-radius: 50%;
  font-size: 10px;
}

.heroSection {
  background-image: url(../images/heroBg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  padding: 150px 0px 100px 0px;
  /* Blinking cursor */
}
.heroSection h1 {
  font-weight: 600;
  font-size: 70px;
  color: #fff;
}
.heroSection h1 span {
  color: #FF6600;
}
.heroSection .rotating-container {
  display: inline-block;
  vertical-align: bottom;
}
.heroSection .typing-text {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.heroSection .typing-text::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translate(0, -50%);
  bottom: 0;
  width: 2px;
  height: 80%;
  background-color: #FF6600;
  animation: blink 0.7s steps(1) infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.heroSection p {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}
.heroSection a {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  max-width: 180px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.heroSection a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #FF6600;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
  z-index: 0;
  border-radius: 30px;
}
.heroSection a button {
  position: relative;
  background-color: #FF6600;
  padding: 10px 30px;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border: none;
  z-index: 1;
}
.heroSection a i {
  position: relative;
  display: flex;
  margin-left: 3px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 10px;
  z-index: 1;
  transition: all 0.3s ease;
}
.heroSection a:hover::before {
  transform: scaleX(1);
  transition: all 0.3s ease;
}
.heroSection a:hover {
  transition: all 0.3s ease;
}
.heroSection a:hover i {
  margin-left: -10px;
  transition: all 0.3s ease;
}

.aboutUsSection {
  background: linear-gradient(180deg, #0C0806 0%, #3B1B06 21.15%, #482005 48.08%, #381A06 70.67%, #000000 100%);
  padding: 50px 0px;
}
.aboutUsSection .ourPartners {
  background-color: #fff;
  border-radius: 30px;
  padding: 10px 0px;
}
.aboutUsSection .ourPartners .owl-dots,
.aboutUsSection .ourPartners .owl-nav {
  display: none;
}
.aboutUsSection .ourPartners .item {
  min-height: 60px;
  align-content: center;
}
.aboutUsSection .ourPartners img {
  max-width: 100%;
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
.aboutUsSection .ourQuotelines {
  margin: 50px 0px;
  font-family: "Satoshi", sans-serif;
}
.aboutUsSection .ourQuotelines h2 {
  font-weight: 500;
  font-size: 25px;
  color: #fff;
}
.aboutUsSection .ourQuotelines h3 {
  font-weight: 700;
  font-size: 30px;
  color: #fff;
}
.aboutUsSection .ourQuotelines .chartWrapper {
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  /* हल्का white transparent */
  backdrop-filter: blur(12px);
  /* background blur */
  -webkit-backdrop-filter: blur(12px);
  /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* हल्की border */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  /* हल्का shadow */
  color: #fff;
}
.aboutUsSection .ourQuotelines .chartWrapper .chart-value {
  font-size: 25px;
  font-weight: bold;
}
.aboutUsSection .ourQuotelines .chart-container {
  width: 100%;
  border-radius: 20px;
  background: transparent;
}
.aboutUsSection .ourMissionAndVision h2 {
  font-family: "Satoshi", sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #fff;
}
.aboutUsSection .ourMissionAndVision .images {
  display: flex;
  position: relative;
}
.aboutUsSection .ourMissionAndVision .images img:not(.metaAddIcon) {
  max-width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  width: 28%;
}
.aboutUsSection .ourMissionAndVision .images img:not(.metaAddIcon):nth-child(2) {
  margin-top: 80px;
  margin-left: -3%;
}
.aboutUsSection .ourMissionAndVision .images img:not(.metaAddIcon):nth-child(3) {
  margin-top: 160px;
  margin-left: -3%;
}
.aboutUsSection .ourMissionAndVision .images img:not(.metaAddIcon):nth-child(4) {
  margin-left: -3%;
}
.aboutUsSection .ourMissionAndVision .images .metaAddIcon {
  position: absolute;
  left: -75px;
  bottom: 200px;
  max-width: 100%;
  z-index: 99;
  width: 150px;
}
.aboutUsSection .statsWrapper {
  background-color: #40260F;
  padding: 15px 0px;
  font-family: "Satoshi", sans-serif;
}
.aboutUsSection .statsWrapper .statBox {
  text-align: center;
}
.aboutUsSection .statsWrapper .statBox h2 {
  font-weight: 600;
  color: #705c4b;
  font-size: 22px;
}
.aboutUsSection .statsWrapper .statBox h3 {
  color: #FF6600;
  font-weight: bold;
  font-size: 36px;
}
.aboutUsSection .statsWrapper .statBox p {
  font-weight: 500;
  font-size: 12px;
  color: #9b9b9b;
  margin: 0;
  padding: 0;
}
.aboutUsSection .ourStory h2 {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
.aboutUsSection .ourStory p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
.aboutUsSection .rightImg,
.aboutUsSection .rightImg2 {
  position: absolute;
  top: 70px;
  right: 0px;
  z-index: 99;
  width: 90px;
}
.aboutUsSection .rightImg2 {
  top: 40%;
}
.aboutUsSection .leftImg {
  position: absolute;
  top: 150px;
  left: 0px;
  z-index: 99;
  width: 100px;
}

.whyUsSec .rightImg {
  position: absolute;
  bottom: -100px;
  right: 0px;
  z-index: 99;
  width: 90px;
}
.whyUsSec .leftImg {
  position: absolute;
  top: -100px;
  left: 0px;
  z-index: 99;
  width: 100px;
}

.whyUs {
  font-family: "Satoshi", sans-serif;
}
.whyUs h2 {
  font-weight: 600;
  font-size: 50px;
  color: #000;
}
.whyUs h2 strong {
  color: #FF6600;
  font-weight: bolder;
}
.whyUs p {
  font-weight: 400;
  font-size: 20px;
  color: #000;
}
.whyUs a {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  max-width: 180px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.whyUs a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #FF6600;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
  z-index: 0;
  border-radius: 30px;
}
.whyUs a button {
  position: relative;
  background-color: #FF6600;
  padding: 10px 30px;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border: none;
  z-index: 1;
}
.whyUs a i {
  position: relative;
  display: flex;
  margin-left: 3px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  z-index: 1;
  transition: all 0.3s ease;
}
.whyUs a:hover::before {
  transform: scaleX(1);
  transition: all 0.3s ease;
}
.whyUs a:hover {
  transition: all 0.3s ease;
}
.whyUs a:hover i {
  margin-left: -10px;
  transition: all 0.3s ease;
  background-color: #fff;
  color: #000;
}

.whyUsImg img {
  max-width: 100%;
}

.whyUsCards {
  perspective: 1000px;
  height: 100%;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.whyUsCards:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: auto;
  min-height: 220px;
  border-radius: 10px;
  padding: 20px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}

.card-front {
  background-color: #1E2124;
}

.card-back {
  background: linear-gradient(180deg, #FF6600 0%, #003399 100%);
  transform: rotateY(180deg);
}

/* Common styles */
.card-front img,
.card-back img {
  max-width: 50px;
}

.card-front h3,
.card-back h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
}

.card-back p {
  font-size: 14px;
  color: #fff;
  margin-bottom: auto;
}

/* Anchor styles */
.card-front a {
  margin-left: auto;
}

.card-front a,
.card-back a {
  background-color: #FF6600;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.card-back a {
  margin-top: 5px;
}

.card-front a:hover,
.card-back a:hover {
  background: linear-gradient(180deg, #0C0806 0%, #3B1B06 21.15%, #482005 48.08%, #381A06 70.67%, #000000 100%);
  border: 1px solid #fff;
}

/* Positioning front arrow right, back arrow left */
.card-front .text-end {
  margin-top: auto;
}

.card-back .text-start {
  margin-top: auto;
}

.ourServicesSec {
  background: linear-gradient(180deg, #0C0806 0%, #3B1B06 21.15%, #482005 48.08%, #381A06 70.67%, #000000 100%);
  color: #fff;
}
.ourServicesSec .clientLogosWrapper h2 {
  font-weight: 700;
  font-size: 25px;
}
.ourServicesSec .clientLogosWrapper .cilentLogos {
  margin-bottom: 20px;
  padding: 2px;
}
.ourServicesSec .clientLogosWrapper .cilentLogos img {
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #fff;
  border-radius: 5px;
}
.ourServicesSec .clientLogosWrapper .showMoreBtn,
.ourServicesSec .clientLogosWrapper .showLessBtn {
  max-width: 180px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
  background-color: #FF6600;
  cursor: pointer;
  margin: auto;
}
.ourServicesSec .clientLogosWrapper .showMoreBtn button,
.ourServicesSec .clientLogosWrapper .showLessBtn button {
  background-color: transparent;
  position: relative;
  padding: 10px 20px 10px 10px;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border: none;
  z-index: 1;
}
.ourServicesSec .clientLogosWrapper .showMoreBtn i,
.ourServicesSec .clientLogosWrapper .showLessBtn i {
  position: relative;
  display: flex;
  margin-left: 20px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 10px;
  z-index: 1;
  transition: all 0.3s ease;
}
.ourServicesSec .top {
  padding: 50px 0px;
}
.ourServicesSec .top h2 {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 25px;
}
.ourServicesSec .service {
  text-align: center;
  background-color: #333333;
  padding: 20px 20px 65px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8509803922);
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}
.ourServicesSec .service:hover {
  border: 1px solid red;
  transition: all 0.3s ease;
}
.ourServicesSec .service:hover a {
  background-color: #FF6600;
  color: #fff;
  transition: all 0.3s ease;
}
.ourServicesSec .service img:not(.arrowBlack) {
  max-width: 150px;
  margin-top: -100px;
}
.ourServicesSec .service h3 {
  font-size: 22px;
}
.ourServicesSec .service p {
  font-size: 14px;
  font-weight: 400;
  color: #d1cbcb;
}
.ourServicesSec .service a {
  background-color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #000;
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 5px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  min-width: 150px;
  transform: translate(-50%);
  transition: all 0.3s ease;
}
.ourServicesSec .service a:hover {
  background-color: #FF6600;
  color: #fff;
  transition: all 0.3s ease;
}
.ourServicesSec .service a .arrowBlack {
  width: 10px;
  margin-left: 5px;
  margin-top: -2px;
}
.ourServicesSec .service a i {
  transform: rotate(-45deg);
  margin-left: 5px;
}

/* Approach 3: Timeline Vertical */
.ourProcess {
  background: white;
  padding: 80px 0;
}

.timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #007bff, #28a745);
}

.timeline-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #1E2124;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  border: 4px solid white;
  box-shadow: 0 0 0 3px #1E2124;
  z-index: 2;
}

.timeline-content {
  background: #f8f9fa;
  padding: 25px 30px;
  border-radius: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.ourProcess h2 {
  font-size: 30px;
  font-weight: bold;
}
.ourProcess p {
  font-size: 14px;
  font-weight: 400;
  color: #d1cbcb;
}

.timeline-step.active .timeline-content {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}

.timeline-step.active .timeline-number {
  background: #FF6600;
  box-shadow: 0 0 0 3px #FF6600;
}

.getStarted {
  font-family: "Satoshi", sans-serif;
}
.getStarted h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 50px;
}
.getStarted .top p {
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
}
.getStarted .stepsWrapper {
  padding: 20px;
}
.getStarted .stepsWrapper i {
  font-size: 30px;
  color: #FF3B30;
  border: 3px solid #FF3B30;
  border-radius: 10px;
  padding: 15px;
}
.getStarted .stepsWrapper .topImgIcon {
  max-width: 60px;
}
.getStarted .stepsWrapper h3 {
  font-weight: 500;
  font-size: 24px;
  color: #000;
  margin: 15px 0px;
}
.getStarted .stepsWrapper p {
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
}
.getStarted .stepsWrapper button {
  font-weight: 500;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 20px;
  background-color: #FF6600;
  color: #fff;
  border: none;
  outline: none;
}
.getStarted .stepsWrapper .stepNumber {
  font-weight: 600;
  font-size: 64px;
  color: #DCDCDC;
  position: absolute;
  top: 0px;
  right: 0px;
}
.getStarted .stepsWrapper .arrow1 {
  position: absolute;
  left: 110%;
  top: 30px;
}
.getStarted .stepsWrapper .arrow2 {
  position: absolute;
  left: 110%;
  bottom: 50px;
}

.secondSlide {
  display: none;
}

.testimonialSec {
  background: linear-gradient(180deg, #000000 0%, #572605 34.13%, #000000 100%);
  padding: 80px;
  color: #fff;
}
.testimonialSec .owl-dots {
  display: none;
}
.testimonialSec h2 {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 50px;
}
.testimonialSec .owl-nav {
  position: absolute;
  text-align: end;
  top: -90px;
  right: 0px;
}
.testimonialSec .owl-nav .owl-prev {
  margin-right: 40px;
}
.testimonialSec .testimonials {
  background-color: #4b2c17;
  border-radius: 24px;
  padding: 20px;
  min-height: 200px;
}
.testimonialSec .testimonials h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-align: end;
}
.testimonialSec .testimonials p {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}
.testimonialSec .testimonials .user {
  display: flex;
  align-items: center;
}
.testimonialSec .testimonials .user img {
  width: 50px;
  width: 50px;
  border-radius: 50%;
  margin-right: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonialSec .testimonials .user h4 {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.testimonialSec .testimonials .user h4 span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 5px;
}

.faqSec {
  font-family: "Satoshi", sans-serif;
}
.faqSec span {
  border: 1px solid #000000;
  display: inline-block;
  padding: 5px 20px;
  font-weight: 400;
  font-size: 16px;
  border-radius: 20px;
}
.faqSec h2 {
  font-weight: 700;
  font-size: 40px;
}
.faqSec h2 strong {
  color: #FF6600;
}
.faqSec p {
  font-weight: 500;
  font-size: 16px;
}
.faqSec a {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  max-width: 180px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.faqSec a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #FF6600;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
  z-index: 0;
  border-radius: 30px;
}
.faqSec a button {
  position: relative;
  background-color: #FF6600;
  padding: 10px 30px;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border: none;
  z-index: 1;
}
.faqSec a i {
  position: relative;
  display: flex;
  margin-left: 3px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  z-index: 1;
  transition: all 0.3s ease;
}
.faqSec a:hover::before {
  transform: scaleX(1);
  transition: all 0.3s ease;
}
.faqSec a:hover {
  transition: all 0.3s ease;
}
.faqSec a:hover i {
  margin-left: -10px;
  transition: all 0.3s ease;
  background-color: #fff;
  color: #000;
}

.accordiansWrapper {
  background-color: #D9D9D9;
  border-radius: 24px;
  padding: 20px;
  /* Remove Bootstrap's default arrow */
  /* When expanded, show up arrow */
}
.accordiansWrapper .accordion-button,
.accordiansWrapper .accordion-item,
.accordiansWrapper .accordion {
  background-color: transparent;
}
.accordiansWrapper .accordion-button:focus {
  box-shadow: none;
}
.accordiansWrapper .accordion-button::after {
  background-image: none !important;
  font-family: "Font Awesome 6 Free";
  /* Or 5 if you're using FA5 */
  font-weight: 900;
  /* Required for solid icons */
  content: "\f0d7";
  /* fa-caret-down */
  width: auto;
  transition: transform 0.2s;
}
.accordiansWrapper .accordion-button:not(.collapsed)::after {
  content: "\f0d8";
  /* fa-caret-up */
}

footer {
  background: linear-gradient(180deg, #000000 0%, #572605 34.13%, #000000 100%);
  padding-top: 50px;
  color: #fff;
  font-family: "Satoshi", sans-serif;
}
footer .footerLogo img {
  border-radius: 5px;
}
footer .footerLogo p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
footer .footerLinks h2,
footer .socialLinks h2 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
footer .footerLinks ul,
footer .socialLinks ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footerLinks ul li a,
footer .socialLinks ul li a {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}
footer .address h2 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
footer .address p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
footer .address .newsLatter {
  border-bottom: 1px solid #9e938b;
  padding-bottom: 10px;
}
footer .address .newsLatter label {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
footer .address .newsLatter i {
  font-size: 20px;
}
footer .address .newsLatter input {
  border: none;
  background-color: transparent;
  padding-left: 20px;
  width: 100%;
  color: #fff;
}
footer .address .newsLatter input:hover, footer .address .newsLatter input:focus {
  outline: none;
  border: none;
  color: #fff;
}
footer .address .newsLatter button {
  background-color: #FF6600;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  height: 30px;
  width: 30px;
  outline: none;
  border: none;
}
footer .address .newsLatter button i {
  font-size: 16px;
}
footer .address .errorBox {
  font-size: 14px;
  font-weight: 500;
  display: none;
  color: red;
}
footer .contacts span,
footer .contacts a {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
footer .copyRight {
  background-color: #000;
  text-align: center;
  padding: 25px 0px;
  font-size: 16px;
}

@media screen and (max-width: 1199.98px) {
  .rightBtn a {
    padding: 10px 18px;
  }
}
@media screen and (max-width: 991.98px) {
  .rightBtn a {
    padding: 10px 11px;
    font-size: 12px;
  }
  .rightBtn a i {
    display: none;
  }
  .heroSection {
    min-height: auto;
  }
  .heroSection h1 {
    font-size: 60px;
  }
  .whyUsImg {
    display: none;
  }
  .whyUs p {
    font-size: 18px;
  }
  .whyUsCards {
    padding: 12px;
  }
  .whyUsCards h3 {
    font-size: 16px;
    word-break: break-all;
  }
  .whyUsCards img {
    max-width: 30px;
  }
  .footerLogo p br {
    display: none;
  }
  footer .contacts span,
  footer .contacts a {
    font-size: 14px;
  }
  .getStarted .stepsWrapper .arrow1,
  .getStarted .stepsWrapper .arrow2 {
    display: none;
  }
  .getStarted .stepsWrapper {
    padding: 10px;
  }
  .getStarted .stepsWrapper .stepNumber {
    right: 20px;
    top: -10px;
  }
}
@media screen and (max-width: 767.98px) {
  .nav,
  .rightBtn {
    display: none;
  }
  nav .nav {
    margin: 20px 0px;
  }
  nav .nav li {
    margin: 10px 0px;
  }
  nav .nav .rightBtn {
    display: inline-block;
  }
  nav .nav .rightBtn a {
    background-color: #FF6600;
    padding: 5px 20px;
    border-radius: 30px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    max-width: -moz-fit-content;
    max-width: fit-content;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
  }
  nav .nav .rightBtn a i {
    display: flex;
    margin-left: auto;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    background-color: #000;
    border-radius: 50%;
    font-size: 10px;
  }
  .getStarted h2 {
    font-size: 24px;
  }
  .getStarted .stepsWrapper button {
    width: 100%;
  }
  .getStarted .top p {
    font-size: 16px;
  }
  .hamburger {
    display: inline-block;
    cursor: pointer;
    margin-right: 10px;
  }
  .hamburger i {
    font-size: 22px;
  }
  .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .heroSection h1 {
    font-size: 44px;
  }
  .aboutUsSection .ourQuotelines h3 {
    font-size: 26px;
  }
  .aboutUsSection .statsWrapper .statBox {
    margin-bottom: 20px;
  }
  .aboutUsSection .ourPartners img {
    max-width: 150px;
  }
  .chartWrapper {
    margin-bottom: 20px;
  }
  .whyUs h2 {
    font-size: 40px;
  }
  .whyUs p {
    font-size: 16px;
  }
  .testimonialSec h2 {
    font-size: 26px;
  }
  .testimonialSec .owl-nav {
    top: -72px;
  }
  footer .contacts span,
  footer .contacts a {
    font-size: 12px;
  }
}
@media screen and (max-width: 576.98px) {
  .heroSection {
    padding: 115px 0px 30px 0px;
  }
  .heroSection h1 {
    font-size: 35px;
  }
  .heroSection a button {
    padding: 7px 30px;
  }
  .aboutUsSection .ourMissionAndVision .images img:not(.metaAddIcon):nth-child(2) {
    margin-top: 50px;
  }
  .aboutUsSection .ourMissionAndVision .images img:not(.metaAddIcon):nth-child(3) {
    margin-top: 100px;
  }
  .aboutUsSection .ourMissionAndVision .images .metaAddIcon {
    display: none;
  }
  .whyUs h2 {
    font-size: 36px;
  }
  .whyUsCards h3 {
    font-size: 15px;
    word-break: normal;
  }
  .ourServicesSec .service img:not(.arrowBlack) {
    max-width: 100px;
    margin-top: -65px;
  }
  .ourServicesSec .service h3 {
    font-size: 18px;
  }
  .ourServicesSec .service a {
    font-weight: 600;
    font-size: 12px;
  }
  .testimonialSec {
    padding: 50px 20px;
  }
  .testimonialSec .owl-nav {
    display: none;
  }
  .accordiansWrapper {
    padding: 15px;
  }
  .timeline-number {
    width: 40px;
    height: 40px;
  }
  .timeline-line {
    left: 20px;
  }
  .timeline-step {
    padding-left: 55px;
  }
  .timeline-content {
    padding: 15px;
  }
  .leftImg,
  .rightImg,
  .rightImg2 {
    display: none;
  }
}
@media screen and (max-width: 425.98px) {
  .heroSection h1 {
    font-size: 25px;
  }
  .heroSection p {
    font-size: 14px;
  }
  .aboutUsSection .ourQuotelines h2 {
    font-size: 20px;
  }
  .aboutUsSection .ourQuotelines h3 {
    font-size: 24px;
  }
  .aboutUsSection .ourMissionAndVision h2 {
    font-size: 24px;
  }
  .whyUs h2 {
    font-size: 30px;
  }
  .ourServicesSec .top h2 {
    font-size: 22px;
  }
  .ourServicesSec .top p {
    font-size: 14px;
  }
  .ourServicesSec .service {
    padding: 10px 10px 65px 10px;
  }
  .ourServicesSec .service a {
    min-width: 90%;
  }
  .ourServicesSec .service a .arrowBlack {
    display: none;
  }
  .ourServices h2 {
    font-size: 22px;
  }
  .ourServices p {
    font-size: 14px;
  }
  .testimonialSec h2 {
    font-size: 24px;
  }
  .faqSec h2 {
    font-size: 36px;
  }
  .accordiansWrapper {
    padding: 15px 5px;
  }
}
.chart-container {
  width: 300px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, #f0f0ff, #ffffff);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

@keyframes flipLeftToRight {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  51% {
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}
.flip-animation {
  animation: flipLeftToRight 1.5s forwards;
  backface-visibility: hidden;
}/*# sourceMappingURL=index.css.map */