/* Auto-suggest Dropdown */
.auto-suggest-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(5, 173, 163, 0.3);
  border-radius: 8px;
  margin-top: 4px;
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(15, 43, 38, 0.12);
}
.auto-suggest-item {
  padding: 12px 16px;
  color: #1F3833;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(15, 43, 38, 0.06);
  transition: background 0.2s;
}
.auto-suggest-item:last-child {
  border-bottom: none;
}
.auto-suggest-item:hover {
  background: rgba(5, 173, 163, 0.10);
  color: #048E86;
}
.auto-suggest-loading {
  padding: 14px 16px;
  color: #7A8F8B;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.auto-suggest-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(5, 173, 163, 0.3);
  border-top-color: #05ADA3;
  border-radius: 50%;
  animation: auto-suggest-spin 0.6s linear infinite;
}
@keyframes auto-suggest-spin {
  to { transform: rotate(360deg); }
}

/* Banner */
.bannerSec {
  padding: 142px 0 80px;
  background:
    radial-gradient(ellipse 1100px 700px at 50% 0%, rgba(5, 173, 163, 0.18) 0%, rgba(5, 173, 163, 0.06) 45%, transparent 75%),
    linear-gradient(180deg, #E9FBFA 0%, #F5FFFE 55%, #FFFFFF 100%);
  border-bottom: 1px solid rgba(5, 173, 163, 0.12);
  overflow: hidden;
  position: relative;
}
.bannerSec::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 173, 163, 0.22) 0%, rgba(5, 173, 163, 0.06) 50%, transparent 75%);
  filter: blur(60px);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.bannerSec > * {
  position: relative;
  z-index: 1;
}
.bannerSec.gradiantVector::before{
  position: absolute;
  content: '';
  width: 620px;
  height: 620px;
  border-radius: 620px;
background: conic-gradient(from 90deg at 50% 50%, rgba(0, 189, 178, 0.20) 170.6250035762787deg, rgba(0, 189, 178, 0.10) 359.9285888671875deg);
filter: blur(95px);
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}

.bannerContainer {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.bannerSec h1,.bannerSec h1 span {
  color: #0F2B26;
  text-align: center;
  font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120.187%;
    max-width: 997px;
    width: 100%;
    margin: 0 auto;
}
.bannerSec h1 span{
  color: #05ADA3;
}

.bannerDesc {
  color: #486560;
  font-size: 15px;
  line-height: 100%;
  text-align: center;
  margin-top: 15px;
}

.bannerInputWrapper{
  max-width: 782px;
  width: 100%;
  margin: 65px auto 0;
}

.bannerBtns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 42px;
}

.bannerBtns a {
  max-width: 215px;
  width: 100%;
  height: 56px;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #05ada3;
  align-items: center;
}

.bannerBlueBtn {
  background: linear-gradient(180deg, #24C7BD 0%, #046761 100%);
  color: #fff;
  position: relative;
}

.bannerBlueBtn::before,
.blueCTA::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  animation-name: pulse-animation6;
  -webkit-animation-duration: 2s;
  animation-duration: 1s;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.bannerWhiteBtn {
  color: #05ada3;
  background: #fff;
}

.bannerBtns a:hover {
  background: #019990;
}

/* Notifications */
.notifications {
  padding: 21px 0;
  overflow: hidden;
  background: #eefffe;
  margin-top: 20px;
}

.allNotifications {
  display: flex;
  list-style: none;
  gap: 133px;
  white-space: nowrap;
  animation: animateText 100s linear infinite;
}

.allNotifications li {
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #121212;
  position: relative;
}


.allNotifications li::before {
  position: absolute;
  content: '';
  background: url(../images/user.svg);
  width: 14px;
  height: 14px;
  left: -26px;
  top: 3px;
}
.allNotifications li span {
  text-transform: capitalize;
}

@keyframes animateText {
  from {
    transform: translateX(80%);
  }

  to {
    transform: translateX(-480%);
  }
}

/* Automated Section */
.automatedSec {
  padding: 100px 0 130px;
}

.automatedWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 89px;
}

.automatedContent {
  max-width: 555px;
  width: 100%;
}

.automatedContent h2 {
  font-size: 33px;
  line-height: 150%;
  color: #121212;
}

.secDesc {
  font-size: 15px;
  line-height: 180%;
  color: #3F3F3F;
  margin: 24px 0 0;
  width: 100%;
}

/* Features Sectiom */
.featureSec {
  padding: 27px 0 25px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background: #F5FFFE;
}

.featureSec::before {
  position: absolute;
  content: '';
  width: 95%;
  background: transparent;
  border: 2px solid #05ADA3;
  height: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%);
  top: -12px;
  border-radius: 10px;
  z-index: -1;
}

.featureText {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #121212;
}

.featuresWrapper {
  display: flex;
  padding: 0 214px;
  justify-content: center;
  margin-top: 24px;
  align-items: center;
  gap: 60px;
}

/* Discover Section */
.discoverSec {
  padding: 33px 0;
  background: #F5FFFE;
}

.dottedEnd {
  position: absolute;
  content: '';
  width: 65%;
  border-top: 1px dashed rgba(162, 161, 154, 0.82);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.discoverContent {
  max-width: 542px;
  width: 100%;
}

.discoverContent h2 {
  font-size: 30px;
  line-height: 150%;
  font-weight: 600 !important;
}

/* Exceptional Essay Section */
.writeEssaySec {
  padding: 112px 0;
}

.stepsHead {
  max-width: 684px;
  width: 100%;
  margin: 0 auto;
  font-weight: 900;
  font-size: 66px;
  line-height: 150%;
  text-align: center;
  text-transform: capitalize;
  color: #121212;
}

.pointsWrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 54px;
}

.pointsWrapper img {
  margin: 20px auto auto;
}

.singlePoint {
  max-width: 309px;
}

.pointHead {
  font-weight: 900;
  font-size: 32px;
  line-height: 150%;
  color: #121212;
}

.pointDesc {
  font-size: 16px;
  line-height: 150%;
  color: #121212;
  margin-top: 10px;
}

.fullPoint {
  font-size: 25px;
  line-height: 150%;
  color: #121212;
  max-width: 235px;
  width: 100%;
}

/* CTA Sec */
.getStartedSec {
  max-width: 927px;
  width: 100%;
  background: #05ada3;
  border-radius: 15px;
  padding: 67px 0;
  justify-content: center;
  gap: 110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 112px;
}

.CTAText {
  font-size: 44px;
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
}

.appBtn {
  padding: 17px 65px;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #121212;
  background: #FFFFFF;
  border: 1px solid #121212;
  border-radius: 100px;
}

/* Features Sec */
.featuresList {
  list-style: none;
}

.featuresList li {
  position: relative;
  padding-left: 29px;
  font-size: 15px;
  line-height: 150%;
  color: #3F3F3F;
  margin-bottom: 18px;
}

.featuresList li:last-child {
  margin-bottom: 0;
}

.featuresList li::before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('../images/listCheck.svg');
  width: 17px;
  height: 17px;
}
.featuresList2 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 15px 0;
}
.featuresList2 li{
  max-width: 50%;
  width: 100%;
  margin-bottom: 0;
}

.blueCTA {
  display: flex;
  align-items: center;
  padding: 16px 25px;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #FFFFFF;
  background: linear-gradient(180deg, #24C7BD 0%, #046761 100%);
  border-radius: 100px;
  max-width: max-content;
  justify-content: center;
  position: relative;
  min-width: 228px;
  margin-top: 35px;
}

.blueCTA:hover {
  background: #019990;
}

/* How It Works */
.stepsWrapper {
  max-width: 1104px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 40px;
}

.allStepTabs {
  display: flex;
  flex-direction: column;
  gap: 17px;
  justify-content: center;
}

.singleTab {
  display: flex;
  padding: 12px 20px;
  border: 1px solid #D4DDE5;
  border-radius: 9px;
  gap: 14px;
  min-width: 329px;
  color: #000;
  transition: all ease .1s;
  max-width: 484px;
}

.singleTab:hover {
  box-shadow: 1px 1px 11px rgba(224, 224, 224, 0.5);
}

.stepNum {
  font-weight: 900;
  font-size: 22px;
  line-height: 150%;
}

.stepType {
  font-size: 15px;
  line-height: 150%;
}

.singleTab.active {
  color: #fff;
  background: linear-gradient(180deg, #24C7BD 0%, #046761 100%);
  border-radius: 9px;
}

.singleTab.active svg path {
  stroke: #fff;
}

.singleTab.active img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(9%) saturate(0%) hue-rotate(164deg) brightness(113%) contrast(100%);
}

.singleTab svg {
  width: 40px;
}
.singleTab img {
  max-width: 51px;
  width: 100%;
  max-height: 52px;
  height: 100%;
}

/* testimonials */
.testimonialsSec {
  display: none;
  padding: 80px 0;
}

.testimonialsSec.show{
  display: block;
}

.testimonialsHeading {
  font-size: 30px;
  line-height: 44px;
  font-weight: 600;
  text-align: center;
  color: #121212;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.singleReview {
  padding: 71px 25px 32px;
  background: #F5FFFE;
  box-shadow: 1px 1px 11px rgba(224, 224, 224, 0.25);
  border-radius: 8px;
  position: relative;
  z-index: 2;
}

.singleReview::before {
  position: absolute;
  content: '';
  background-image: url(../images/quote.svg);
  width: 54px;
  height: 54px;
  top: 11px;
  left: 25px;
}

.reviewText {
  font-size: 15px;
  line-height: 180%;
  color: #3F3F3F;
  text-align: left;
  border-bottom: 1px dashed #E0EAF4;
  padding-bottom: 18px;
  margin-bottom: 18px;
  min-height: 152px;
}

.user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user img {
  max-width: 30px;
  width: 100%;
  max-height: 30px;
  height: 30px;
}

.userName {
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  color: #05ada3;
  text-align: left;
}

.testimonalSwiper .swiper-slide {
  padding: 25px 0;
  position: relative;
}

.testimonalSwiper .swiper-slide::after {
  position: absolute;
  content: '';
  width: 302px;
  height: 99%;
  background: transparent;
  border: 1px solid #D4DDE5;
  border-radius: 8px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.testimonialsWrapper {
  position: relative;
  padding: 0 0 32px;
}

.testimonialsPagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  text-align: center;

}

.testimonialsWrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background: #05ada3;
}

.testimonialsSec .blueCTA {
  margin: 50px auto 0;
}

.centerHead {
  font-size: 33px;
  line-height: 150%;
  text-align: center;
  text-transform: capitalize;
  color: #121212;
  max-width: 816px;
  width: 100%;
  margin: 0 auto;
}

.centerHead.small {
  font-size: 30px;
  line-height: 150%;
  max-width: 709px;
  font-weight: 600;
  max-width: 720px;
  margin-bottom: 40px;
}
.seoHeading{
  margin-top: 18px;
  font-size: 28px;
  line-height: 150%;
  font-weight: 600;
  color: #121212;
  
}

.contentSec {
  padding: 0 0 80px;
}

.mainConWrapper {
  padding: 50px 36px 54px;
  background: #FFFFFF;
  border: 1px solid #D4DDE5;
  box-shadow: 1px 1px 11px rgba(224, 224, 224, 0.25);
  border-radius: 25px;
}
.mainConWrapper h2{
  margin-top: 50px;
}

.mainConWrapper h2:first-child{
  margin-top: 0;
  text-align: center;
}

.mainConWrapper ul {
  margin-left: 40px;
}

.mainConWrapper p,
.mainConWrapper li {
  font-size: 15px;
  line-height: 170%;
  color: #3F3F3F;
  margin-top: 18px;
}

.mainConWrapper .firstSeoP {
  margin-top: 56px;
}

.mainConWrapper p:first-child {
  margin-top: 34px;
}

.mainConWrapper a {
  color: #05ADA3;
  text-decoration: underline;
  font-weight: 600;
}

.mainConWrapper a:hover {
  text-decoration: none;
  color: #019990;
}

.featuresImg {
  max-width: 540px;
  width: 100%;
  max-height: 360px;
  height: 100%;
}

.featuresWrapper img {
  max-width: 114px;
  width: 100%;
  max-height: 114px;
  height: 100%;
}
.featuresWrapper img.lat{
  max-width: 180px;
}

.automatedImg {
  max-width: 461px;
  width: 100%;
  max-height: 300px;
  height: 100%;
}

.discoverImg {
  max-width: 407px;
  width: 100%;
  max-height: 407px;
  height: 100%;
}

.tabImage {
  max-width: 738px;
  width: 100%;
  max-height: 518px;
  height: 100%;
}
section.reviews__head__Section {
  position: relative;
  display: flex;
  align-items: center;
}
.reviews__head__Wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.reviews__head__Wrapper h2.secHead {
  max-width: 826px;
  width: 100%;
  font-size: 33px;
  line-height: 130%;
  text-align: center;
  color: #000;
  margin-bottom: 10px;
  z-index: 1;
}

.reviews__head__Wrapper h2.secHead span {
  /* background: linear-gradient(to right, #FF51D7 0%, #C300FF 25%, #C300FF 50%, #30B6FF 75%, #00F0FF 90%, #1E43FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
   font-weight: 600;  
 
}

.reviews__head__Wrapper p.secDesc {
  max-width: 594px;
  width: 100%;
  font-weight: 400;
  font-size: 17px;
  line-height: 160%;
  text-align: center;
  color: #000;
  margin-bottom: 37px;
  z-index: 1;
}
.reviews__head__Wrapper p.secDesc a{

  text-decoration: underline;
  font-weight: 600;
  color:#05ADA3;
}
.reviews__head__Wrapper p.secDesc a:hover{
  text-decoration: none;
  color: #05ADA3;
}

.reviews__head__Wrapper .reviews_ratings {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 81px;
  z-index: 1;
}
.ratingsVal{
  max-width: 191px;
  width: 100%;
  max-height: 42px;
  height: 100%;
}
/* .reviews__head__Wrapper .reviews_ratings img.desk {
  max-width: 580px;
  width: 100%;
  max-height: 38px;
  height: 100%;
}
.reviews__head__Wrapper .reviews_ratings img.mob {
  display: none;
} */
.stepsImagesWrapper{
  position: relative;
}
.spinner {
	margin-top: -21px;
	position: absolute;
	text-align: center;
	top: 50%;
	width: 100%;
  display: none;
  z-index: 2;
}

.spinner svg {
	-webkit-animation: loading-rotate 2s linear infinite;
	-moz-animation: loading-rotate 2s linear infinite;
	-o-animation: loading-rotate 2s linear infinite;
	animation: loading-rotate 2s linear infinite;
	height: 42px;
	width: 42px;
}

.spinner .path {
	stroke-dasharray: 90, 150;
	stroke-dashoffset: 0;
	stroke-width: 2;
	stroke: #05ada3;
	stroke-linecap: round;
	-webkit-animation: loading-dash 1.5s ease-in-out infinite;
	-moz-animation: loading-dash 1.5s ease-in-out infinite;
	-o-animation: loading-dash 1.5s ease-in-out infinite;
	animation: loading-dash 1.5s ease-in-out infinite;
}

@-webkit-keyframes loading-rotate {
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@-moz-keyframes loading-rotate {
	to {
		-moz-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@-o-keyframes loading-rotate {
	to {
		-o-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@keyframes loading-rotate {
	to {
		-webkit-transform: rotate(1turn);
		-moz-transform: rotate(1turn);
		-o-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@-webkit-keyframes loading-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -40px;
	}
	to {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -120px;
	}
}

@-moz-keyframes loading-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -40px;
	}
	to {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -120px;
	}
}

@-o-keyframes loading-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -40px;
	}
	to {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -120px;
	}
}

@keyframes loading-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -40px;
	}
	to {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -120px;
	}
}
.youtubeVideoSec{
  position: relative;
}
.youtubeVideoSec::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 270px;
  background: #E9FBFA;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.video-add {
  max-width: 705px;
  width: 100%;
  margin: 90px auto 60px;
}
.video-add {
  position: relative;
  border: 3px solid #fff;
  border-radius: 9px;
}
.play-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, -50%);  
  cursor: pointer;
}


.video-img {
  display: block;
  width: 100%;
  height: auto;
}
.video-iframe{
  display: none;
  border-radius: 9px;
  overflow: hidden;
  background: #000;
}
.video-iframe iframe{
  border-radius: 9px;
  background: #000;
}
.video-add-wrapper{
  padding: 5px;
  background: #05ADA3;
  max-width: max-content;

  border-radius: 9px;
}
.mainConWrapper h2.small2 {
  width: 100%;
  font-weight: 500;
  font-size: 26px;
  line-height: 130%;
  color: #000;
  margin-top: 40px;
  z-index: 1;
}
.mainConWrapper h3{
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  color: #000;
  margin-top: 25px;
}
.bannerTextBtn{
  font-size: 18px;
  font-weight: 600;
  line-height: 21.78px;
  color: #fff;
  text-decoration: underline;
  max-width: max-content;
  display: block;
  margin: auto;
}
.bannerTextBtn:hover{
  text-decoration: none;
}
.bannerTextBtn svg{
  transition: all ease .2s;
  animation: arrowMove 1.2s infinite linear;
}
@keyframes arrowMove {
  0%{ transform: translateX(0); }
  25%{ transform: translateX(-2px); }
  50%{ transform: translateX(0); }
  75%{ transform: translateX(2px); }
  100%{ transform: translateX(0); }
}

.play-btn img {
  max-width: 58px;
  max-height: 58px;
  width: 100%;
  height: 100%;
}
.faqSec {
  padding: 70px 0;
  background: rgba(244, 250, 249, 0.88);
  margin: 60px 0;
}
.secHead {
  color: #121212;
  font-size: 30px;
  font-weight: 600;
  line-height: 120.187%;
  text-align: center;
}
.faqSec .secDesc {
  color: #64748B;
  text-align: center;
  font-size: 16px;
  line-height: 150%;
  margin-top: 10px;
}
.faqWraper {
  max-width: 912px;
  width: 100%;
  margin: 40px auto 0;
}
.homepageInputWrapper{
  display: flex;
  align-items: center;
}
.bannerInputWrapper input {
  /* background: #270d2c38; */
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.03px;
  text-align: left;
  color: #fff;
  padding: 15px 45px 15px 15px;
  border: 1px solid #A1A1A1;
  border-radius: 6px;
  outline: 0;
  background: transparent;
  min-width: 722px;
  display: block;
}
.bannerInputWrapper input::placeholder{
  color: #D3D3D3;
  visibility: hidden;
}
.animatedInputWrapper{
  position: relative;
  overflow: hidden;
}
.animatedInputWrapper p{
  position: absolute;
  color: #D3D3D3;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.03px;
  transition: all ease .2s;
  pointer-events: none
}
.animatedInputWrapper p.hidden{
  display: none;
}
.animatedInputWrapper p.current {
  top: 16px;
  left: 45px;
}
.animatedInputWrapper p.next{
  top: 50px;
  left: 45px;
}
.homepageInputWrapper a {
  background: #213c33;
  border: 1px solid #fff;
  max-width: 158px;
  border-left: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 22.61px;
  min-width: max-content;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 0 6px 6px 0;
}
.bannerSelectWrappper{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.bannerTextBtn{
  padding: 12px 14px;
  background: linear-gradient(180deg, #24C7BD 0%, #046761 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 170%;
  color: #fff;
  text-decoration: none;
  margin: 0 0 0 auto;
  font-weight: 400;
}
.bannerTextBtn:hover{
  background: linear-gradient(180deg, #046761 0%, #24C7BD 100%);
}
.ratingsWrapper{
  display: flex;
  align-items: center;
  gap: 39px;
  padding: 12px 25px;
  border: 1px solid rgba(15, 43, 38, 0.08);
  margin: 70px 0 35px;
  border-radius: 6px;
  min-height: 60px;
}
.singleRating{
  display: flex;
  align-items: center;
  gap: 9px;
}
.ratingVal{
  display: flex;
  align-items: center;
  gap: 4px;
}
.ratingVal span{
  font-weight: 600;
  font-size: 18.64px;
  line-height: 109.00000000000001%;
  color: #0F2B26;
}
.ratingInfo p{
  font-weight: 500;
  font-size: 12px;
  line-height: 109.00000000000001%;
  color: #486560;
  margin-top: 3px;
}
.trustWrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
}
.trustText{
  padding: 11px 17px 11px 15px;
  border-radius: 100px;
  background: linear-gradient(90.21deg, rgba(5, 173, 163, 0.10) 0.18%, rgba(5, 173, 163, 0.05) 109.68%);
  border: 1px solid rgba(5, 173, 163, 0.20);
}
.trustText.even{
  padding: 11px 15px;
  background: linear-gradient(90deg, rgba(5, 173, 163, 0.08) -4.77%, rgba(5, 173, 163, 0.12) 100%);
  border: 1px solid rgba(5, 173, 163, 0.20);
}
.trustText p{
  font-weight: 500;
  font-size: 13px;
  line-height: 109.00000000000001%;
  color: #048E86;
}
.trustImages img:nth-child(2){
  margin: 0 -10px;
}
.leftContent {
  min-width: 198px;
}
.howItWorksSec{
  padding: 80px 0;
}
.sectionBanner {
  padding: 80px 0;
}

/* Banner Press Logos Section */
.bannerPressHeadings {
  text-align: center;
  margin-bottom: 50px;
}

.bannerPressEyebrow {
  font-weight: 600;
  font-size: 16px;
  line-height: 30.6px;
  color: #05ADA3;
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bannerPressTitle {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-align: center;
  color: #0F2B26;
  max-width: 800px;
  margin: 0 auto;
}

.bannerLogosMarquee {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
}

.bannerPressLogos {
  padding: 12px 0;
  margin-top: 60px;
}

.bannerLogosMarquee:hover .bannerLogosSlide {
  animation-play-state: paused;
}

.bannerLogosSlide {
  display: inline-block;
  animation: slide 35s linear infinite;
}

.bannerLogosSlide img {
  margin: 0 32.5px;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  vertical-align: middle;
}

.bannerLogosSlide img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Dark gradient overlays for banner section */
.bannerLogosMarquee::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(to left, rgba(6, 6, 6, 0), #fff);
  height: 100%;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.bannerLogosMarquee::after {
  content: "";
  top: 0;
  right: 0;
  position: absolute;
  background: linear-gradient(to right, rgba(6, 6, 6, 0), #fff);
  height: 100%;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.aiSuggest.home{
  top: 10px;
}
.home .aiSuggestBtn.default:hover::before,
.home .aiSuggestBtn.default:hover::after{
  display: none;
}
.home.aiSuggest button{
  background: transparent;
}
.home.aiSuggest .aiSuggestBtn.refresh{
  right: 10px;
}
.refreshIcon{
  position: absolute;
  left: 15px;
  top: 15px;  
  color: #D3D3D3;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.03px;
}
.refreshIcon.hidden{
  display: none;
}
@media (max-width:1199px) {
  .tabImage {
    width: 100%;
  }
  .featuresWrapper{
    gap: 40px;
  }
  .userName {
    font-size: 14px;
  }
  .singleReview{
    padding: 71px 17px 32px;
  }
  .singleTab img{
    max-width: 37px;
    max-height: 37px;
  }
  .stepNum{
    font-size: 20px;
    font-size: 15px;
  }
  .stepsWrapper{
    gap: 20px;
  }
}

@media (max-width:991px) {
  .bannerSec h1 {
    font-size: 50px;
  }
  .notifications {
    display: none;
}
.featuresImg{
  max-width: 330px;
  width: 100%;
  max-height: 219px;
  height: 100%;
}

.automatedSec {
  padding: 35px 0;
}
  .bannerDesc {
    font-size: 18px;
  }

  .automatedWrapper {
    flex-direction: column-reverse;
    max-width: fit-content;
    margin: 0 auto;
    gap: 30px;
  }

  .automatedContent {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .automatedSec.second{
    flex-direction: column;
  }
  .automatedContent.textCenter {
    text-align: center;
  }

  img.automatedImg {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .featuresWrapper {
    transition: allease .1s;
    animation: headlinemob 17s infinite linear;
    position: relative;
    left: 1150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 0;
  }

  .main_moving {
    overflow: hidden;
  }

  @keyframes headlinemob {
    0% {
      left: 170%;
    }

    100% {
      left: -200%;
    }
  }

  .featuresWrapper img {
    margin-left: 30px;
    max-width: 100px;
    max-height: 100px;
    width: 100%;
    height: 100%;
    display: block;
  }

  .discoverSec .automatedWrapper {
      flex-direction: column;
  }
  .discoverSec .automatedWrapper img {
    max-width: 330px;
  }

  .discoverContent {
    max-width: 100%;
  }

  .pointsWrapper {
    flex-direction: column;
  }

  .singlePoint {
    max-width: 309px;
    width: 100%;
    margin: 0 auto;
  }

  .pointsWrapper img {
    transform: rotate(90deg);
  }

  .fullPoint {
    margin: 0 auto;
  }

  .featureSec {
    position: relative;
  }

  .discoverContent h2 {
    font-size: 40px;
  }

  .discoverSec {
    padding: 80px 0 30px;
  }

  .stepsHead {
    font-size: 46px;
  }

  .getStartedSec {
    max-width: 540px;
    padding: 67px 10px;
  }

  .CTAText {
    font-size: 31px;
  }

  .appBtn {
    padding: 17px 15px;
  }

  .featuresList {
    margin-top: 50px;
  }

  .stepsWrapper {
    flex-wrap: wrap;
  }

  .allStepTabs {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
  }
  .bannerSec::before{
    width: 320px;
    height: 320px;
  }
  .bannerContainer {
    padding: 0 0px;
  }
  .singleTab{
    max-width: 440px;
  }
}
@media (max-width:767px) {
  .reviews_ratings {
    flex-direction: column;
    align-items: center;
  }
  .bannerInputWrapper input{
    min-width: unset;
  }
  .bannerSelectWrappper{
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ratingsWrapper{
    flex-wrap: wrap;
    justify-content: center;
  }
  .trustWrapper{
    gap: 8px;
  }
  .reviewText{
    min-height: 82px;
  }

  /* Banner Press Logos Responsive */
  .bannerPressLogos {
    margin-top: 40px;
    padding-top: 40px;
  }

  .bannerPressHeadings {
    margin-bottom: 35px;
  }

  .bannerPressTitle {
    font-size: 22px;
    line-height: 32px;
    padding: 0 20px;
  }

}
@media (max-width:575px) {
  .bannerSec {
    padding: 90px 0 40px;
  }
  .seoHeading{
    font-size: 24px;
  }

  .bannerSec h1, .bannerSec h1 span {
    font-weight: 600;
    font-size: 27px;
    line-height: 150%;
    text-align: center;
  }

  .bannerBtns a{
    height: 50px;
  }

  .bannerDesc {
    font-size: 12px;
    line-height: 200%;
    margin-top: 10px;    
  }

  .bannerBtns {
    flex-direction: column;
    gap: 14px;
  }

  .allNotifications li {
    font-size: 14px;
  }

  .automatedSec {
    padding: 35px 0;
  }

  .automatedContent h2 {
    font-size: 22px;
  }

  .secDesc {
    font-size: 15px;
    margin: 24px auto 44px;
  }
  img.automatedImg {
    margin: 18px auto 0;
  }

  .featuresWrapper img {
    max-width: unset;
    max-height: unset;
    margin-left: 50px;
    width: 138px;
    transform: scale(.75);
  }

  .discoverSec {
    padding: 30px 0;
  }

  .discoverContent h2 {
    font-size: 24px;
  }

  .automatedWrapper img {
    width: 70%;
    max-width: 330px;
  }

  .discoverImg{
    margin-top: 30px;
  }

  .dottedEnd {
    width: 80%;
  }

  .stepsHead {
    font-size: 36px;
  }

  .pointsWrapper {
    margin-top: 36px;
  }

  .pointHead {
    font-size: 22px;
    text-align: center;
  }

  .pointDesc {
    text-align: center;
    font-size: 14px;
  }

  .pointsWrapper img {
    max-width: 26px;
    margin: 34px auto 34px;
  }

  .writeEssaySec {
    padding: 95px 0;
  }

  .fullPoint {
    font-size: 20px;
    text-align: center;
    max-width: 330px;
  }

  .writeEssaySec .pointsWrapper img {
    margin: 28px auto 28px;
  }

  .getStartedSec {
    flex-direction: column;
    max-width: 330px;
    gap: 18px;
    padding: 40px 10px;
  }

  .appBtn {
    padding: 14px 44px;
    font-size: 16px;
  }

  .CTAText {
    font-size: 24px;
  }

  .featureText {
    font-size: 19px;
  }

  .mainConWrapper {
    padding: 34px 12px;
  }

  .mainConWrapper .firstSeoP {
    margin-top: 36px;
  }
  .allNotifications{
    animation: animateText 50s linear infinite;
  }
  .play-btn img{
    width: 48px;
    height: 48px;
}
.video-add-wrapper {
  margin: 50px auto 30px;
}
.video-add {
    max-width: 384px;
    width: 100%;
    margin: 50px auto 30px;
}
.video-add iframe{
    width: 100%;
    height: 208px;
}
.youtubeVideoSec::after{
  height: 120px;
}
.homepageInputWrapper a {
  max-width: 138px;
  border-left: 0;
  font-size: 14px;
  height: 42px;
  padding: 0 5px;
}
  .bannerInputWrapper{
    margin: 30px auto 0;
  }
  .bannerInputWrapper input{
    max-width: 329px;
    margin: auto;
    font-size: 13px;
    line-height: 170%;
    padding: 14px 15px 12px;
  }
  .bannerSelectWrappper{
    margin-top: 10px;
    gap: 10px;
    justify-content: center;
    flex-direction: column;
  }
  .bannerTextBtn{
    margin: 20px auto 0;
    font-size: 14px;
  }

  /* Banner Press Logos Mobile */
  .bannerPressLogos {
    margin-top: 30px;
    padding-top: 30px;
  }

  .bannerPressHeadings {
    margin-bottom: 30px;
  }

  .bannerPressEyebrow {
    font-size: 14px;
    line-height: 24px;
  }

  .bannerPressTitle {
    font-size: 18px;
    line-height: 28px;
    padding: 0 15px;
  }

  .bannerLogosMarquee::before,
  .bannerLogosMarquee::after {
    width: 80px;
  }
  .ratingsWrapper{
    margin: 30px 0 20px;
    padding: 15px 20px;
        gap: 25px 10px;
    justify-content: space-between;
  }
  .trustWrapper{
    flex-direction: column;
    gap: 7px;
  }
  .stepType{
    font-size: 14px;
  }
  .tabImage{
    display: none;
  }
  .whoSec{
    padding: 70px 0 60px;
  }
  .functionData .functionName{
    font-size: 16px;
  }
  .singleUser .functionData {
    padding: 11px 16px;
  }
  .blueCTA{
    margin: 35px auto 0;
    min-width: 180px;
    padding: 13px 25px;
    font-size: 15px;
  }
  .sectionBanner {
    padding: 70px 0;
  }
  .faqSec{
    margin-top: 0;
    padding: 50px 0;
  }
  .secHead{
    font-size: 24px;
    line-height: 150%;
  }
  .animatedInputWrapper{
    max-width: 329px;
    margin: auto;
  }
  .animatedInputWrapper p.current,
  .refreshIcon{
    top: 16px;
  }
  .animatedInputWrapper p.current{
    left: 40px;
  }
  .animatedInputWrapper p.next{
    top: 70px;
    left: 40px;
  }
  .animatedInputWrapper p,
  .refreshIcon{
    font-size: 13px;
  }
  .aiSuggest.home{
    display: none;
  }
  .centerHead.small {
    font-size: 24px;
}
}

@media(max-width: 499px) {
  .mainConWrapper h3{
    font-size: 18px;
  }
  .centerHead {
    font-size: 22px;
    line-height: 150%;
  }

  .featuresList {
    margin-top: -10px;
  }

  .featuresList li {
    font-size: 15px;
    line-height: 150%;
  }
  .featuresList li::before{
    width: 15px;
    height: 15px;
    background-size: contain;
  }

  .howItWorksSec {
    padding: 70px 0 20px;
  }

  .featureSec::before{
    display: none;
  }

  .singleTab {
    width: 100%;
    padding: 18px 22px;
    gap: 20px;
  }

  .allStepTabs {
    /* overflow-x: scroll; */
    justify-content: center;
    gap: 16px;
    align-items: center;
  }

  .mainConWrapper ul {
    margin-left: 20px;
  }

  .mainConWrapper p,
  .mainConWrapper li {
    font-size: 14px;
    line-height: 160%;
  }

  .mainConWrapper h2.small2{
    font-size: 19px;
  }
  .contentSec {
    padding: 10px 0 40px;
  }

  .testimonialsSec {
    padding: 40px 0;
  }

  .testimonialsHeading {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 35px;
    padding: 0 20px;
  }

  .stepsWrapper {
    margin-top: 40px;
    gap: 50px;
    flex-direction: column-reverse;
  }
  .reviewText{
    font-size: 15px;
  }
  .reviews__head__Wrapper h2.secHead {
    font-size: 28px;
    line-height: 130%;
  }
  .reviews__head__Wrapper h2.secHead span {
    font-weight: 500;

    
  }
  .reviews__head__Wrapper p.secDesc {
    font-size: 12px;
    line-height: 160%;
    margin-top: 0;
  }
  .reviews__head__Wrapper .reviews_ratings img.mob {
    max-width: 330px;
    width: 100%;
    max-height: 22px;
    height: 100%;
    display: block;
  }
  .reviews__head__Wrapper .reviews_ratings img.desk{
    display: none;
  }

}
@media(max-width: 390px){
  .singleTab {
    min-width: unset;
}
}

/* =====================================================
   HOMEPAGE NAVBAR — LIGHT THEME OVERRIDES
   ===================================================== */

/* Transparent state (top of page) */
.navbar.fixed {
  background: transparent !important;
  box-shadow: none !important;
}

/* Scrolled state */
.navbar.fixed-color {
  background: #FFFFFF !important;
  box-shadow: 0 2px 12px rgba(15, 43, 38, 0.08) !important;
}

/* Nav links — dark ink on light bg */
.navbar.fixed .navigations a,
.navbar.fixed .navigations .pricingBtn,
.navbar.fixed-color .navigations a,
.navbar.fixed-color .navigations .pricingBtn {
  color: #0F2B26 !important;
}

/* Underline hover/active states */
.navbar.fixed .navigations a:hover,
.navbar.fixed-color .navigations a:hover {
  border-bottom-color: #0F2B26 !important;
}
.navbar.fixed .navigations a.active,
.navbar.fixed-color .navigations a.active {
  border-bottom-color: #0F2B26 !important;
}

/* "Tools Library" free button — dark border on light bg */
.navbar.fixed .navigations a.homeFreeBtn,
.navbar.fixed-color .navigations a.homeFreeBtn {
  border-color: rgba(15, 43, 38, 0.30) !important;
  color: #0F2B26 !important;
}
.navbar.fixed .navigations a.homeFreeBtn .btnText,
.navbar.fixed-color .navigations a.homeFreeBtn .btnText {
  color: #0F2B26 !important;
}

/* Login/user icon — keep visible on light bg */
.navbar.fixed .navigations .sessionBtn img,
.navbar.fixed-color .navigations .sessionBtn img {
  filter: invert(1) brightness(0) !important;
}

/* Divider line between nav sections */
.navbar.fixed line,
.navbar.fixed-color line {
  stroke: rgba(15, 43, 38, 0.20) !important;
}