/* general css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Mier A";
}

.container {
  max-width: 1260px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.container-fluid{
  max-width: 100%;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

a {
  text-decoration: none;
}

/* end general css */
/* fonts */
@font-face {
  font-family: "Mier A";
  src: url(../fonts/MierA-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mier A Demi";
  src: url(../fonts/MierA-DemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mier A";
  src: url(../fonts/MierA-Bold.woff2) format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mier A";
  src: url(../fonts/MierA-ExtraBold.woff2) format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* end fonts */

/* start header */
.main-header {
  position: fixed;
  padding: 12px 0px;
  background: #fff;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  z-index: 999;
  top: 0;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn {
  display: flex;
  width: 158px;
  align-items: center;
  padding: 8px 10px 8px 28px;
  justify-content: space-between;
  border-radius: 55px;
  background: linear-gradient(180deg, #0750d2 0%, #2469e8 100%);
  color: #fff;
  font-family: "Mier A";
  font-size: 16px;
  font-weight: 600;
  line-height: 22.75px;
  transition: 0.5s ease;
  border: 1px solid transparent;
}

.vetor2 {
  display: none;
}

.btn:hover .vetor1 {
  display: none;
}

.btn:hover .vetor2 {
  display: block;
}

.btn:hover {
  background: #fff;
  color: #0750d2;
  border: 1px solid #0750d2;
}

.arrow-icon {
  display: contents;
}

.logo img {
  max-width: 80%;
  width: 100%;
  display: block;
}

/* end header */

/* start section_1 css */
.section_1 {
  background-image: url(../images/banner/top-banner.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 50px;
  margin-top: 72px;
  overflow: hidden;
  background-color: #1d62d8;
}

.banner-content {
  text-align: center;
  margin-bottom: 40px;
}

.banner-title {
  color: #fff;
  text-align: center;
  font-family: "Mier A";
  font-size: 50px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.banner-ct {
  color: #fff;
  text-align: center;
  font-family: "Mier A";
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
}

.section_1 .cta-btn .btn {
  margin: 0px auto;
  width: 170px;
  font-size: 20px;
  padding: 10px 10px 10px 28px;

}

.del-price {
  color: #f6f6f6;
  font-family: "Mier A";
  font-size: 25px;
  font-weight: normal;
  line-height: 20px;
  margin-right: 10px;
}

.main-price {
  color: #fff;
  font-family: "Mier A Demi";
  font-size: 60px;
  font-weight: 600;
  line-height: 60px;
}

.price-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  margin-bottom: 30px;
  margin-top: 20px;
}
.plan-area{
  display: flex;
  align-items: center;
}
.gst_list .per_month {
  display: block;
  text-align: left;
}

.main-price svg {
  position: relative;
  top: -7px;
  right: -8px;
}

.gst_list .per_month,
.gst_text {
  color: #fff;
  font-family: "Mier A";
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.section_1 .cta-btn .btn {
  background: #fff;
  color: #0851d3;
}

.banner-img {
  text-align: center;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 12px;
}

.banner-img img {
  max-width: 30%;
  width: 100%;
}
.banner-img img {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

/* delay for each image */
.banner-img img:nth-child(1) {
  animation-delay: 0.3s;
}

.banner-img img:nth-child(2) {
  animation-delay: 0.8s;
}

.banner-img img:nth-child(3) {
  animation-delay: 1.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* end section_1 */

/* start section_2 */
.section_2 {
  padding: 30px 0px;
}
.section_2 .page-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-title {
  margin-bottom: 30px;
}

.section_2 .page-title h2 {
  position: relative;
  text-align: center;
  color: #b8b8b8;
  font-family: "Mier A Demi";
  font-size: 25px;
  font-weight: 600;
  line-height: normal;
}

.brand-slider {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.brand-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 28s linear infinite;
}

.brand-track img {
  height: 50px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* end section_2 */

/* section_3 */
.section_3 {
  padding: 50px 0px;
}
.h-pin {
  position: sticky;
  top: 80px;
  height: 100vh;
  overflow: hidden;
}

.h-track {
  display: flex;
  gap: 24px;
  padding: 0 60px;
}
.h-track::after {
  content: "";
  flex: 0 0 60px;
}
.page-title h2 {
  color: #202020;
  text-align: center;
  font-family: "Mier A";
  font-size: 35px;
  font-weight: 700;
  line-height: 60px;
}
/* Cards */
.cards {
  display: flex;
  gap: 30px;
}

/* Card base */
.feature-card {
  border-radius: 28px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  width: 100%;
  transition: 0.5s ease;
}

/* Icon */
.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* Text */
.feature-card h3 {
  color: #202020;
  font-family: "Mier A";
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}

.feature-card p {
  color: #202020;
  font-family: "Mier A";
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
  height: 120px;
}

/* Bottom image */
.card-img {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 14px;
}

.card-img img {
  width: 100%;
  display: block;
}

/* Color variants */
.red {
  border: 1px solid #ffdbda !important;
  background: #fff2f2;
}
.red:hover{
  border-color: #d31c16 !important;
}

.blue {
  border: 1px solid #afe4ff !important; 
  background: #e3f6ff;
}
.blue:hover{
  border-color: #2aa9e8 !important;
}

.yellow {
  border: 1px solid #ffeeb1 !important;
  background: #fffbef;
}
.yellow:hover{
  border-color: #fee792 !important;
}
.purple-card {
  border: 1px solid #e6d4ff !important;
  background: #f7f1ff;
}
.purple-card:hover{
  border-color: #8b58d1 !important;
}
.green {
  border: 1px solid #9affe4 !important;
  background: #f3fffd;
}
.green:hover{
  border-color: #3bd4ab !important;
}
.mweb-accordion{
  display: none;
}
.slick-slider {
    margin:0 -13px;
}
.slick-slide {
    margin-right:13px;
    margin-left:13px;
}
.slick-dots {
    bottom: 0px;
    width: 100%;
    list-style: none;
    text-align: center;
    position: relative;
    margin-left: 0px;
    padding: 0px;
    margin-top: 4px;
  }
  .slick-active button {
    background: #1159D9 !important;
  }
  .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
  }
  .slick-dots li button::before {
    font-size: -2px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '';
    text-align: center;
    opacity: 0.5;
    color: #1159D9;
  }
  .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    cursor: pointer;
    color: #000;
    border: 0;
    border-radius: 100px;
    outline: 0;
    background: #D7D7D7;
  }

.section_3 .slick-dots{
  margin-top: 20px;
}
.h-track-slider .slick-list {
  padding-right: 120px;
}
/* end section_3 */

/* section_4 */

.pricing-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid #caddff;
  background: linear-gradient(
    180deg,
    rgba(3, 76, 210, 0.05) 0%,
    rgba(108, 160, 233, 0.05) 100%
  );
  overflow: hidden;
}

.pricing-banner {
  background: linear-gradient(135deg, #e7edf5, #cfdff2);
  border-radius: 20px;
}
/* Tabs */
.tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.tabs-bt {
  border-radius: 79.91px;
  border: 1.229px solid #000000;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
}

.tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #000000;
  font-family: "Mier A";
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  transition: 0.3s;
}

.tab.active {
  background: #000000;
  color: #fff;
}

.save-tag {
  border-radius: 71.025px;
  background: linear-gradient(
    90deg,
    rgba(69, 174, 69, 0.2) 0%,
    rgba(56, 171, 62, 0) 100%
  );
  color: #00af03;
  font-family: "Mier A";
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
  margin-left: 10px;
  padding: 12px;
}

.save-tag { display: none; }
.save-tag.show { display: inline-block; }

/* Price */
.price {
  color: #0951d3;
  font-family: "Mier A";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}

.billing-text {
  color: #202020;
  font-family: "Mier A";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 25px;
}

/* Button */
.buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a5ed9;
  color: #fff;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.buy-btn:hover {
  background: #144bb3;
}

.arrow {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.save-tag.show {
  display: inline-block;
}

.price-box {
  display: none;
}

.price-box.active {
  display: block;
}
.pricing-right img {
  width: 87%;
}
.pricing-right {
  text-align: end;
}
.gradiant-bd img {
  position: absolute;
  right: 0px;
  z-index: -1;
  top: 0px;
}
.mweb-pricing{
  display: none;
}
.section_4 .mweb{
  display: none;
}
.rupees svg{
    position: relative;
    left: 8px;
    top: 0px;
    width: 26px;
}
/* section_4 */

/* section_5 */
.section_5 {
  padding: 50px 0px;
}
.ms-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.ms-card {
  padding: 25px;
  border-radius: 28px;
  border: 1px solid #caddff;
  background: linear-gradient(
    180deg,
    rgba(3, 76, 210, 0.02) 0%,
    rgba(108, 160, 233, 0.02) 100%
  );
}
.ms-card--gradient {
  display: flex;
  align-items: center;
  gap: 33px;
  border: 1px solid #caddff;
  background: linear-gradient(270deg, #6ca0e9 0%, #034cd2 100%);
  border-radius: 28px;
  padding: 25px;
  transition: 0.5s ease;
}
.ms-card--gradient:hover{
  transform: translateY(-5px);
}
.ms-content {
  color: #fff;
  font-family: "Mier A Demi";
  font-size: 25px;
  font-weight: 600;
  line-height: normal;
}
.ms-card__icon {
  margin-bottom: 25px;
}
.card2 .ms-content {
  color: #000;
}
.card2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
}
.ms-card.card2:hover {
  border-color: #1158d9;
  transform: translateY(-5px);
}
.highlight-text {
  color: #1158d9;
  font-family: "Mier A";
  font-weight: 800;
}
.ms-grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.ms-card-area {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.ms-card-area .ms-card {
  width: 48%;
}
.ms-grid-2 .ms-card--gradient {
  flex-direction: column;
  height: 600px;
  align-items: start;
  justify-content: center;
}
.ms-grid-2 .ms-card-img {
  max-width: 90%;
  width: 100%;
}
.mweb-section_5{
  display: none;
}
/* section_5 */

/* section_6 */
.section_6 {
  padding: 50px 0px;
  background: #f6f9fd;
}

.tj-why__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.5fr;
  align-items: center;
}

/* Left content */
.tj-why__title {
  color: #202020;
  font-family: "Mier A";
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.tj-why__text {
  color: #202020;
  font-family: "Mier A";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 100px;
}

/* Image */
.tj-why__image {
  margin-right: 18px;
}
.tj-why__image img {
  border-radius: 18px;
  display: block;
}

/* Feature cards */
.tj-why__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tj-feature {
  border-radius: 15px;
  border: 1px solid #b5cfff;
  background: #f0f5ff;
  padding: 22px;
  text-align: center;
  transition: 0.5s ease;
}
.tj-feature:hover{
  border-color: #1b61e1;
  transform: translateY(-5px);
}

.tj-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.tj-feature h4 {
  color: #222;
  text-align: center;
  font-family: "Mier A";
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 10px;
}

.tj-feature p {
  color: #222222;
  text-align: center;
  font-family: "Mier A";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* end section_6 */

/* start section_7 */
.section_7 {
  padding: 50px 0px;
}
.stack-wrapper {
  position: relative;
  width: 420px;
  height: 320px;
  margin: 80px auto;
  margin-bottom: 0px;
}

.info-card {
  position: absolute;
  width: 290px;
  padding: 10px;
  left: 50%;
  top: 50%;
  transform-origin: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  border-radius: 12px;
  border: 1px solid #9abeff;
  background: #eef4ff;
  box-shadow: 0px 0px 8px #3b6bc357;
}

/* card positions */
.card-front {
  z-index: 4;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.card-second {
  z-index: 3;
  transform: translate(calc(-50% + 20px), calc(-50% - 10px)) rotate(-2deg);
}

.card-third {
  z-index: 2;
  transform: translate(calc(-50% + 45px), calc(-50% - 20px)) rotate(5deg);
}

.card-fourth {
  z-index: 1;
  transform: translate(calc(-50% + 70px), calc(-50% - 30px)) rotate(10deg);
}

.info-text {
  font-family: "Mier A";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  color: #000;
  height: 190px;
}

.author-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.author-info h4 {
  color: #1158d9;
  font-family: "Mier A";
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.author-info span {
  color: #1158d9;
  font-family: "Mier A";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.info-card {
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}
.stack-wrapper:hover .card-front {
  transform: translate(calc(-50% - 510px), -50%) rotate(0deg);
}

.stack-wrapper:hover .card-second {
  transform: translate(calc(-50% - 170px), -50%) rotate(0deg);
}

.stack-wrapper:hover .card-third {
  transform: translate(calc(-50% + 170px), -50%) rotate(0deg);
}

.stack-wrapper:hover .card-fourth {
  transform: translate(calc(-50% + 510px), -50%) rotate(0deg);
}
.mweb-testimonial-slider{
  display: none !important;
}

/* end section_7 */

/* section_8 */
.section_8 {
  padding-top: 40px;
  padding-bottom: 60px;
}
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

.faq-question {
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question h3{
  color: #222;
  font-family: "Mier A";
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4; 
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-answer p{
  color: #222;
  font-family: "Mier A";
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 12px;
}
/* Arrow */
.arrow {
  display: flex;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.moretext {
  display: none;
}


/* See more */
.see-more {
  text-align: center;
  margin-top: 20px;
}

#seeMoreBtn {
  background: none;
  border: none;
  font-family: "Mier A Demi";
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  color: #1869d3;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.moreless-button .arrow {
  transition: transform 0.3s ease;
}

.moreless-button.active .arrow {
  transform: rotate(180deg);
}


/* end section_8 */

/* start footer css */
.footer_email a img {
  margin-right: 7px;
  vertical-align: middle;
}
.footer-wrap {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #00205a;
}

.footer_email {
  text-align: right;
}

.footer_upper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_email a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.social_link {
  display: flex;
  gap: 6px;
  justify-content: end;
  padding-top: 15px;
}

.social_link li {
  list-style: none;
  display: inline-block;
  margin-right: 6px;
}

.follow-links {
  display: flex;
  justify-content: end;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.social_link img {
  vertical-align: middle;
}
.follow_us {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  position: relative;
  top: 3px;
}
/* end footer css */

/* start animations  */
.text {
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 1s,
    transform 1s;
  transform: translateY(50px);
}

.fade-up {
  transform: translateY(50px);
}

.fade-down {
  transform: translateY(-50px);
}

.fade-right {
  transform: translateX(50px);
}

.fade-left {
  transform: translateX(-50px);
}

.fade-up-left {
  transform: translate(-50px, 50px);
}

.fade-up-right {
  transform: translate(50px, 50px);
}

.fade-down-left {
  transform: translate(-50px, -50px);
}

.fade-down-right {
  transform: translate(50px, -50px);
}

.zoom-in {
  transform: scale(0.8);
}

.zoom-out {
  transform: scale(1.2);
}

.in-view {
  visibility: visible;
  opacity: 1;
  transform: none;
}

/* end animation */


