@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.cdnfonts.com/css/satoshi");

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
:root {
  --themeColor: #ebecef;
  --secondaryColor: #212339;
  --blackColor: #000000;
  --whiteColor: #ffffff;
  --hoverColor: #2aba8f;
  --themeGradient: linear-gradient(90deg, #09d37f, #0add85);
}
body {
  font-family: "Manrope", sans-serif;
}
a {
  text-decoration: none;
}
a:hover {
  color: #fff;
}
.lgHeading {
  font-weight: 700;
  font-size: 3.6rem;
  color: var(--whiteColor);
  font-family: "Satoshi", sans-serif;
}
.mdHeading {
  color: var(--whiteColor);
  font-weight: 500;
  font-size: 1.7rem;
  font-family: "Satoshi", sans-serif;
}
.mainBtn {
  border: 1px solid #fff;
  border-radius: 8px;
  border-radius: 10px;
  /* font-size: 1.05rem; */
  color: var(--whiteColor);
  background: linear-gradient(to left, #2aba8f, #00d67d);
  cursor: pointer;
  padding: 0.8rem 2.2rem;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}
.subHeading {
  color: var(--blackColor);
  font-size: 0.8rem;
  font-weight: 500;
}
.mainBtn:hover {
  background: transparent;
  border-color: var(--hoverColor);
  color: var(--hoverColor);
}
/* navBar */
.customNav {
  /* padding: 0.3rem 0rem; */
  border-radius: 12px;
  width: 90%;
  margin: auto;
  background: var(--whiteColor);
  position: fixed;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  transition: all 0.3s ease-out;
}
.customNav .nav-link {
  color: var(--blackColor);
  /* font-size: 1rem!important; */
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  padding-right: 2.5rem !important;
}
.customNav .nav-link:hover {
    color: #03f69d;
}
.navBarndsLogos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.4rem;
  cursor: pointer;
}

/* heroSection */
.heroSection {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: end;
  padding-bottom: 18rem;
  justify-content: center;
  /* background-image: url("../img/heroBg.png"); */
  background-position: center;
  background-size: cover;
  position: relative;
}

/* Style the background image as an img tag */
.heroBgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;          /* Ensure the image takes full width */
  height: 100%;         /* Ensure the image takes full height */
  object-fit: cover;     /* Ensure it covers the container without distortion */
  z-index: -1;          /* Push it behind the content */
  margin: 0;            /* Ensure no margin */
  padding: 0;           /* Ensure no padding */
  display: block;       /* Make sure it behaves like a block element */
}

.heroCardImageContainer {
  position: relative;
  z-index: 1; /* Keeps the card content above the background image */
}



.heroBtnContainer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  margin-top: 2rem;
}
.heroBtn {
  color: var(--whiteColor);
  border: 2px solid var(--whiteColor);
  border-radius: 24px;
  padding: 0.8rem 3.5rem;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.heroBtn.btnFill {
  background: linear-gradient(to left, #09d37f, #0add85);
  border-color: var(--hoverColor);
}
.heroBtn.btnFill:hover {
  background: transparent;
  border-color: var(--whiteColor);
  color: white;
}
.heroBtn:hover {
  background: linear-gradient(to left, #09d37f, #0add85);
  border-color: transparent;
  color: white;
}

.heroCardImageContainer {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  right: 8%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  background: #e5fff4;
  border-radius: 6px;
  overflow: hidden;
  padding-right: 2rem;
  cursor: pointer;
  box-shadow: 2px 6px 3px #00000010;
  transition: all 0.3s ease-in;
}
.heroCardImageContainer:hover {
  transform: translateX(-7px) translateY(50%);
}
.cardLeftCol .mdHeading {
  background: linear-gradient(to right, #067748, #0add85);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}
.cardLeftCol .subHeading {
  color: #006f41;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
}

/* servicesSectionContainer */
.servicesSectionContainer {
  padding: 4rem 0;
}
.servicesSectionContainer .mdHeading {
  text-align: center;
  font-size: 2rem;
  color: var(--blackColor);
  width: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.servicesTabContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}
.SevicesTab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  background: var(--themeColor);
  border-radius: 12px;
  cursor: pointer;
  padding: 0.4rem;
  padding-right: 1rem;
  transition: all 0.2s ease-in;
}
.SevicesTab.active {
  background: var(--secondaryColor);
}
.SevicesTab:hover {
  background: var(--secondaryColor);
}
.SevicesTab:hover .subHeading,
.SevicesTab.active .subHeading {
  color: var(--whiteColor);
}
.SevicesTab.active .tagImgContainer {
  background: var(--whiteColor);
}
.SevicesTab.active .tagImgContainer img {
  filter: brightness(0) saturate(100%) invert(74%) sepia(14%) saturate(6253%)
    hue-rotate(77deg) brightness(118%) contrast(77%);
}
.tagImgContainer {
  width: 2.9rem;
  height: 2.9rem;
  background: var(--themeGradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visaMobileImg {
  display: none;
}

/* familyVisaContainer */
.familyVisaContainer {
  background: #f3f3f3;
  padding: 1.2rem;
  border-radius: 16px;
  margin-top: 4rem;
}
.familVisaCol {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.visaBgImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 1;
}
.familVisaCol .mdHeading {
  text-align: left;
  margin: 0;
  z-index: 1.3;
  margin-bottom: 1rem;
}

.text {
  font-weight: 500;
  font-size: 1rem;
  color: var(--blackColor);
  font-family: "Satoshi", sans-serif;
  position: relative;
  z-index: 3;
}
.familVisaCol .mainBtn {
  display: inline-block;
  margin-top: 5rem;
  background: linear-gradient(to right, #067748, #0add85);
  border-radius: 17px;
  padding: 0.8rem 3rem;
  position: relative;
  z-index: 2;
  border-color: transparent;
}
.familVisaCol .mainBtn:hover {
  background: transparent;
  border-color: var(--hoverColor);
}
.familyVisaImageContainer {
  width: 100%;
  position: relative;
}
.familyVisaImageContainer img {
  width: 100%;
  height: auto;
}
.ServicesSection .familyVisaImage {
  border-radius: 16px;
}

/* QuickPlusSection */
.QuickPlusSection {
  padding: 3rem 0;
}
.quickPlusSectionTextContiner {
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
  padding-right: 4rem;
}
.quickPlusSectionTextContiner .lgHeading {
  color: var(--blackColor);
  font-weight: 500;
  width: 100%;
}
.quickPlusSectionTextContiner .lgHeading span {
  color: #faa416;
}
.quickPlusSectionTextContiner .text {
  margin-top: 2rem;
  font-weight: 400;
  font-size: 1rem;
  color: #3b3b3b;
}
.moreLInks {
  color: #067748;
  text-decoration:none!important;
  font-size: 1rem;
}
.moreLInks:hover {
  color: #067748;
  text-decoration: none;
}
.quickplusOrder {
  margin-top: 2rem;
  padding-left: 2rem;
  row-gap: 1rem;
}
.quickList {
  list-style-type: disc;
  color: #3b3b3b;
  font-weight: 500;
  font-size: 1rem!important;
}
.plusCounter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  background: #e7fff5;
  border-radius: 12px;
  padding: 1rem;
}

.plusCounterCard {
  padding: 1.1rem;
  text-align: center;
}
.plusCounterCard .lgHeading {
  color: #00d67d;
  font-weight: 800;
  font-size: 2.6rem;
  margin-bottom: 0.4rem;
}
.plusCounterCard .mdHeading {
  color: #444444;
  font-size: 1.1rem;
  /* padding: 0 2rem; */
}
.borderRight {
  border-right: 1.2px solid #d4d4d4;
}

/* AboutUsSection */
.AboutUsSection .familyVisaImage {
  width: 80%;
  height: auto;
}
.AboutUsSectionTextCol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.AboutUsSectionTextCol .lgHeading span {
  color: #0add85;
}
.AboutUsSection .text {
  margin: 0;
  margin-top: 2rem;
}
.AboutUsSection .text.aboutHiddenText {
  margin-top: 1rem;
}
.AboutUsSection .text.aboutHiddenText.show {
  display: none !important;
}

/* govtSection */
.govtSection {
  padding: 4rem 0;
  text-align: center;
}
.govtSection .mdHeading {
  color: #252525;
  font-size: 3.6rem;
}
.govtSection .mdHeading span {
  color: #0add85;
}
.govtImgaesContaienr {
  margin-top: 3rem;
}
.govtImgesWrper {
  width: 100%;
  /* height: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}
.gvetServisTab {
  display: none;
}

/* clientSection */
.clientSection {
  padding: 5rem 0;
}
.clientCard {
  width: 100%;
  height: 290px;
  padding: 3rem 2rem;
  border-radius: 13px;
  background: #00d67d;
  transition: all 0.3s ease;
}

.clientCard:hover {
  transform: translateY(8px);
}
.clientCard .text {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--whiteColor);
}
.clientCard.greenGry {
  background: #2aba8f;
}
.clientCard.gry {
  background: #f7f7f7;
}
.clientCard.gry .text {
  color: #696969;
}
.clientCard.gry .text.textSapcing {
  color: var(--blackColor);
}
.clientCard.greenDark {
  background: #067748;
}
.textSapcing {
  margin-top: 1.6rem;
}
.clentSliderCardContainer {
  margin-top: 3rem;
}
.clentSliderCardContainer .row {
  flex-wrap: nowrap;
  cursor: pointer;
}
.clientSection .lgHeading {
  color: #252525;
  font-weight: 500;
  text-align: center;
}
.clientSection .lgHeading span {
  color: #0add85;
}

.about-mainbtn {
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
}

@media(max-width: 468px){

    .clientCard {
        width: 100%;
        height: 200px;
        padding: 3rem 2rem;
        border-radius: 13px;
        background: #00d67d;
        transition: all 0.3s ease;
      }

      .about-mainbtn {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    .carsoulScroller {
        width: 100%;
        margin-bottom: 10px;
    }

    .mainBtn {
        margin-top: -60px;
    }
}

/* uniqueCard */
.uniqueSection {
  padding: 5rem 0;
}
.uniqueSection .lgHeading {
  color: var(--blackColor);
  font-weight: 500;
  margin-bottom: 4rem;
  text-align: center;
}
.uniqueSection .lgHeading span {
  color: #0add85;
}
.uniqueSection .text {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Satoshi", sans-serif;
  color: #3b3b3b;
}
.uniqueCardContiaienr {
  margin-top: 4rem;
}
.uniqueCard {
  width: 100%;
  height: max-content;
  position: relative;
  padding: 2rem;
  background: #f7f7f7;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.uniqueCard:hover {
  transform: translateY(-8px);
}
.uniqueCardImg {
  position: absolute;
  top: 4%;
  right: 4%;
  width: 4rem;
  height: auto;
}
.uniqueCard .subHeading {
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  color: #d0d0d0;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.uniqueCard .mdHeading {
  color: var(--blackColor);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
}
.uniqueCard .text {
  font-family: "Satoshi", sans-serif;
  font-size: 0.96rem;
  color: #696969;
  font-weight: 500;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* formSection */
.formSection {
  padding: 5rem 0;
}
.formSectionContainer {
  width: 100%;
  padding: 1.5rem;
  background: #212339;
  overflow: hidden;
  border-radius: 12px;
}
.ringGreenImg {
  position: absolute;
  top: -2rem;
  right: 5rem;
}
.ringYellowImg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -5rem;
}
.formTextCol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2rem 2.3rem;
  padding-right: 3rem;
  position: relative;
}
.formTextCol .mdHeading {
  text-align: left;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.formTextCol .text {
  margin-bottom: 1rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--whiteColor);
  width: 90%;
}
/* sectionFromCol */
.sectionFromCol {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #e9fff6;
  padding: 2rem;
}
.sectionFromCol .mdHeading {
  color: #067748;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 1.3rem;
}
.inputHolder {
  margin-bottom: 1.4rem;
}
.inputLabel {
  font-weight: 500;
  font-size: 1rem;
  color: #067748;
}
.inputArea {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #c8c8c8;
  padding: 0.6rem;
  color: #b8b8b8;
  background: transparent;
  font-size: 0.8rem;
}
.submitBtn {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  background: #2aba8f;
  color: var(--whiteColor);
  cursor: pointer;
  margin-top: 1rem;
  border: 1px solid #2aba8f;
  transition: all 0.3s ease;
}
.submitBtn:hover {
  background: transparent;
  color: var(--hoverColor);
}

/* blogSection */
.blogSection {
  padding: 5rem 0;
}
.blogHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blogHeader .lgHeading {
  font-size: 2.3rem;
  color: #252525;
  font-weight: 500;
}
.blogHeader .lgHeading span {
  color: #f6a000;
}
.line {
  width: 70%;
  height: 1.2px;
  border-radius: 10px;
  background: #2aba8f;
}
.blogHeader .mainBtn {
  background: linear-gradient(to right, #067748, #0add85);
  padding: 0.8rem 3rem;
  border-radius: 22px;
}
.blogHeader .mainBtn:hover {
  background: transparent;
  color: var(--hoverColor);
}
.lineBar2 {
  width: 85%;
}
.blogCardContainer {
  margin: 4rem 0;
}
.blogCardContainer .card {
  background: #f7f7f7;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blogCardContainer .card:hover {
  transform: translateY(8px);
}
.blogCardContainer .card .mdHeading {
  color: var(--blackColor);
  font-weight: 500;
  font-size: 0.8rem;
  width: 50%;
  text-align: left;
  margin-bottom: 0.7rem;
}
.blogCardContainer .card .text {
  font-size: 0.7rem;
  color: #6c6c6c;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.cardLine {
  width: 100%;
  height: 2px;
  background: #00d67d;
  border-radius: 8px;
}

/* faqSection */
.faqSection {
  padding: 5rem 0;
}
.faqSection .lgHeading {
  color: var(--blackColor);
  font-weight: 400;
  font-size: 4.9rem;
  text-align: left;
  margin-bottom: 1rem;
}
.faqHeader .text {
  font-weight: 300;
  color: var(--blackColor);
  font-size: 0.9rem;
  text-align: left;
}

.faqAccordianContainer {
  margin-top: 3rem;
}

.faqAccordianCol {
  width: 100%;
}
.faqAccordianCol .accordion-item {
  background: #d9f3eb;
  border-radius: 9px;
  border: none;
  box-shadow: none;
  outline: none;
  overflow: hidden;
  margin-bottom: 0.2rem;
}
.faqAccordianCol .accordion-button {
  background: #2aba8f;
  width: 100%;
  border-radius: 9px;
  font-size: 1.1rem;
  color: var(--whiteColor);
  font-family: "Inter", sans-serif;
  padding: 0.6rem 2rem;
  cursor: pointer;
  position: relative;
}
.faqAccordianCol .accordion-button::after {
  flex-shrink: 0;
  margin-left: 0;
  content: "+";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
  transition: transform 0.2s ease-in-out;
}
.faqAccordianCol .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "-";
  transform: rotate(0);
}
.faqAccordianCol .text {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: #6c6c6c;
  padding: 1rem;
}

/* mobileBlogSection */
.mobleBlogCard {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  padding: 0.5rem;
  background: var(--whiteColor);
  border-radius: 9px;
  margin-bottom: 0.6rem;
}
.mobileblogCardBody {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}
.mobileblogCardBody .mdHeading {
  text-align: left;
  color: var(--blackColor);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
}
.cardBtn {
  margin-top: 1.3rem;
  display: inline-block;
  color: #939393;
  font-family: "Inter", sans-serif;
  border-bottom: 0.6px solid #939393;
}
.mobileBlogSection .blogHeader .lgHeading {
  font-size: 1.1rem;
}
.mobileBlogSection .blogHeader .line {
  width: 50%;
}
.mobileBlogCardWrper {
  margin: 1rem 0;
  height: 300px;
  padding-right: 0.7rem;
  overflow-y: scroll;
}
.mobileBlogCardWrper::-webkit-scrollbar-track {
  border-radius: 14px;
  background-color: #f5f5f5;
  width: 10px;
}
.mobileBlogCardWrper::-webkit-scrollbar {
  background-color: #f5f5f5;
  width: 10px;
}
.mobileBlogCardWrper::-webkit-scrollbar-thumb {
  border-radius: 14px;
  background-color: #dadada;
  width: 10px;
  cursor: pointer;
}

.mobileBlogSection {
  display: none;
}

/* footer */
footer {
  padding: 5rem 0;
  background: #212339;
  font-family: "Roboto", sans-serif;
}
.footerStartCol {
  width: 100%;
}
.footerlogo {
  margin-bottom: 3rem;
}
.footerLink {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--whiteColor);
  gap: 24px;
  margin-bottom: 2.4rem;
  font-family: "Roboto", sans-serif;
  font-size: 16px!important;
  font-weight: 400;
}
.footerLink:hover {
  color: #2aba8f;
}
footer .mdHeading {
  color: #2aba8f;
  font-size: 16px;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  margin-bottom: 1.4rem;
}
.footerlinkCol .footerLink {
  margin-bottom: 1rem;
}
.footerInputLabel {
  color: var(--whiteColor);
  gap: 1.5rem;
  margin-bottom: 1.4rem;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  display: block;
}
.footerInput {
  font-family: "Roboto", sans-serif;
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #76aeff;
  color: #a2a9b0;
  font-size: 1rem;
  outline: none;
  font-weight: 400;
}
.footerBtn {
  padding: 0.8rem 2.5rem;
  background: #2aba8f;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid #2aba8f;
  color: var(--whiteColor);
  transition: all 0.2s ease-in;
}
.footerBtn:hover {
  background: transparent;
}
.footerMobile {
  display: none;
  text-align: center;
}
.footerSmLogoImg {
  margin-bottom: 2rem;
}
.socialIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.quickLinkContainer {
  margin-top: 1rem;
  padding: 0 2.4rem;
  text-align: left;
}
.quickLinkContainer .footerLink {
  padding: 0.7rem 0;
  border-bottom: 0.8px solid #2aba8f12;
  margin-bottom: 0;
}
.quickLinkContainer .footerLink:hover {
  text-decoration: none;
}

.moreUniqueBtn {
  text-align: center;
  display: inline-block;
  width: 100%;
}
/* js classes for toggle */
.UniqeMoreShow {
  display: none;
}
.quickPlusText {
  margin-top: 1rem;
}
.quickPlusText.show {
  display: none;
}
.btnRound {
  border-radius: 33px;
  padding: 0.5rem 2.3rem;
  margin-top: 1rem;
  display: inline-block;
}
.uniqueSectionContainer {
  text-align: center;
}
.uniqueSection .btnRound {
  margin-top: 1rem;
  width: auto;
}

/* slider */
.uniqueCardContiaienr .owl-carousel .owl-item img,
.govtImgaesContaienr .owl-carousel .owl-item img {
  width: auto;
}
.uniqueCardContiaienr .owl-item {
  height: 385px;
}

.servicesTabContainer .owl-item img {
  width: auto;
}

/* google ReivewPage */
.googleImgeLink {
  /* border: 0.5px solid #00000010; */
  display: inline-block;
  overflow: hidden;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 0 5px #00000020;
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  transition: all 0.3s ease-in;
  width: 33% !important;
  height: 16% !important;
}
.googleImgeLink:hover {
  transform: translateY(-7px);
}
/* navbar scoller */
.scroller {
  top: 0;
  width: 100%!important;
  border-radius: 0;
}

/* about us changes */
.aboutImageContainer {
  position: relative;
  width: 100%;
  height: 100%;
}
.aboutImageContainer .familyVisaImage {
  width: 100%;
  height: auto;
}
.aboutPlayBtn {
  position: absolute;
  right: 15%;
  top: 10%;
  cursor: pointer;
  width: 20%;
  transition: all 0.3s ease-out;
}
.aboutPlayBtn:hover {
  transform: translateY(-5px);
}
.aboutUsTelImageContianer {
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease-out;
}
.aboutUsTelImageContianer:hover {
  transform: translateY(5px);
}
.aboutUsTelInfo {
  position: absolute;
  top: 50%;
  left: 63%;
  transform: translate(-50%, -50%);
}
.aboutUsTelInfo .mdHeading {
  color: #252525;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.aboutUsTelInfo .smText {
  color: var(--blackColor);
  font-size: 1rem;
  font-weight: 600;
}

/* scrollbar */
.carsoulScroller {
  position: relative;
  width: 50%;
  height: 2px;
  margin: auto;
  cursor: pointer;
  background-color: #dadada;
  margin-top: 2rem;
  border-radius: 5px;
  border: none;
}
.ui-widget.ui-widget-content {
  border: 1px solid transparent;
}

.carsoulScroller .ui-slider-handle {
  background-color: #dadada;
  border-radius: 99px;
  width: 100px;
  height: 15px;
  top: 10%;
  transform: translateY(-50%);
  border: none;
  box-shadow: none;
  outline: none;
}

.carsoulScroller .ui-slider {
  background-color: transparent; /* Hide the default slider background */
}

/* blogMobleImg */
.blogMobleImg{
  border-radius: 10px;
  width: 110px;
  height: auto;
}

@media(max-width:468px){
    /* heroSection */
.heroSection {
    width: 103%;
    min-height: 100vh;
    display: flex;
    align-items: end;
    padding-bottom: 18rem;
    justify-content: center;
    background-position: center;
    background-size: cover;
    position: relative;
  }

  .carsoulScroller .ui-slider {
    background-color: transparent; /* Hide the default slider background */
  }
}

::selection {
  background-color: #90ee90 !important; /* Light green background */
  color: white !important; /* White text */
}

/* For Firefox */
::-moz-selection {
  background-color: #90ee90 !important; /* Light green background */
  color: white !important; /* White text */
}

.animated{
   transition: all 0.2s ease-in;
}
.animated:hover {
	transform: translateY(-8px);
}
