body {
  padding: 0;
  margin: 0;
  font-family: "Jost", sans-serif !important;
  background: #fff !important;
  box-sizing: border-box;
}
#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 80px; */
  z-index: 1000;
}

.hero {
  padding-top: 80px;    /* same as header height */
}

/* Make each section full screen height */
section {
  display: flex; /* optional: center content vertically */
  align-items: center; /* optional: center content vertically */
}
#mainHeader{
	padding: 10px 0px;
}

.nav-link {
  position: relative;
  padding-bottom: 8px;
  font-size: 16px !important;
  margin: 0px 8px;
}

/* Fall-down animation */
@keyframes fallDown {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  60% {
    transform: translateY(10px);
    opacity: 1;
  }

  80% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

.fade-down {
  animation: fallDown 1.2s ease-out forwards;
}

/* Styling for demo */
.headline {
  font-size: 2.5rem;
  font-weight: bold;
}

.highlight {
  color: #007bff;
}

.bookDemo {
  /* background: #007bff; */
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.StartDemo {
  /* background: #007bff; */
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.tag {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
}
.features-section {
  margin-top: 34px;
}

.fixed-top {
  position: relative !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* Border for active nav item */
.nav-link.active {
  font-weight: 600;
  border-bottom: 3px solid #007bff;
  /* Change color as needed */
}

/* Optional hover effect */
.nav-link:hover {
  border-bottom: 3px solid #007bff;
}

.bookDemoBtn {
  /* background-color: rgb(0, 117, 117); */
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
}

.header-bg {
  background-color: #f8f9fa;
}

.banner-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  /* border-bottom: 2px solid #f2f4fc; */
  z-index: 1030;
}
#navbarNav {
  /* display:flex; */
  justify-content: end;
}
#navbarNav .nav-link {
  font-weight: 500;
}

.custom-shadow {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 16px !important;
}

/* Buttons */
.btn-primary {
  background-color: #0d3b66;
  border-color: #0d3b66;
  font-weight: 500;
}

.btn-outline-primary {
  border-color: #0d3b66;
  color: #0d3b66;
  font-weight: 500;
}

/* General Styles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.hero {
  position: relative;
  padding: 7rem 0rem 0rem;
  overflow: hidden;
  text-align: center;
  /* height: 100vh; */
    display: flex;
  /* background-color: #f2f4fc; */
  /* background: linear-gradient(310deg, #FCFAF6 63.92%, #EEAB99 98.39%); */
}

.circle-centerLeftHide {
  right: -70px !important;
  top: 224px !important;
}

.circle-centerLeftHide svg {
  width: 120px !important;
}

.circle-img {
  width: 600px;
}

.meeting-section {
  position: relative;
  overflow: hidden;
}

/* Soft background band */
.meeting-section::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 300px;
  background: #eef0ff;
  z-index: 0;
}

/* Custom card styling */
.custom-card {
  background: #fff;
  border-radius: 0px;
  padding: 20px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Images */
.custom-card img {
  width: 100%;
  border-radius: 15px;
}

/* Floating animation */
.floating-img {
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Transparent navbar by default */
.navbar {
  transition: all 0.3s ease-in-out;
  background: transparent;
  padding: 18px 0;
}

/* Scrolled navbar */
.navbar.scrolled {
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

/* Demo button */
.bookDemoBtn {
  /* background: linear-gradient(90deg, #4a00e0, #8e2de2); */

  color: #000;
  /* padding: 8px 18px; */
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
  width: 126px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #bfb194;
}

/* .bookDemoBtn:hover {
	background-color: rgb(0, 97, 97);
	color: #fff;
} */

/* Default navbar (transparent at top) */
.navbar {
  transition: all 0.3s ease;
  background: transparent;
  padding: 15px 20px;
}

/* Scrolled navbar */
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
}

/* Circles container */
.circle {
  position: absolute;
  opacity: 0;
  transform: translateX(100px);
  /* start from right */
  animation: slideIn 1s ease-out forwards;
}

.circle-left {
  bottom: 5%;
  left: 8px;
  max-width: 94px;
  animation-delay: 0.6s;
  top: 91px;
  height: 0;
}

.circle-right {
  bottom: 5%;
  right: 8px;
  max-width: 94px;
  animation-delay: 0.6s;
  top: 91px;
  height: 0;
}


.circle svg {
  width: 30px;
  height: auto;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  border: none;
  padding: 0.7rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  border-radius: 40px;
  font-size: 16px;
  width: 150px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circles {
  position: absolute;
  opacity: 0;
  transform: translateX(100px);
  animation: slideIn 1s ease-out forwards;
  right: 4%;
  top: 20%;
}

.circlesLeft {
  position: absolute;
  opacity: 0;
  transform: translateX(100px);
  animation: slideIn 1s ease-out forwards;
  left: 3%;
  top: 48%;
}

.circlesLeft svg {
  width: 30px;
}

.circlesLeft-Center {
  position: absolute;
  top: 31%;
  right: 32%;
  /* positio/n: absolute; */
  opacity: 0;
  transform: translateX(100px);
  /* start from right */
  animation: slideIn 1s ease-out forwards;
}

.circlesLeft-Center svg {
  width: 100px;
}

.centerRightSvg {
  width: 30px;
}

.btn-outline-custom {
  border: 1px solid #ccc;
  font-weight: 500;
  border-radius: 40px;
  /* padding: 16px 32px; */
  text-decoration: none;
  background: #fff;
  width: 150px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text and buttons animation */
.hero h1,
.hero p,
.hero .btn-primary-custom,
.hero .btn-outline-custom {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards;
}
.mbl-ViewSection h4 {
    font-size: 34px;
    text-align: left;
    line-height: 40px;
    font-weight: 700;
    /* color: #fff; */
    padding-top: 14px;
    padding-bottom: 6px;
}
.final-note{
  font-weight: 600;
}

.hero h1 {
  animation-delay: 0.8s;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: 1.3px;
  text-align: left;
}

.hero p {
  text-align: left;
  /* max-width: 750px; */
  margin: auto;
  font-size: 16px;
  line-height: 28px;
  padding-bottom: 20px;
  padding-top: 8px;
  font-weight: 400;
}

.hero .btn-primary-custom {
  animation-delay: 1.2s;
}

.hero .btn-outline-custom {
  animation-delay: 1.4s;
}

/* Animations keyframes */
@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mainSectionImg {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.circlesLeft-Center1 {
  position: absolute;
  top: 36px;
  right: 62%;
  height: auto;
}

.circlesLeft-Center1 svg {
  width: 80px;
}

/* Section Layout */
.features-section {
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.feature-image {
  width: 100%;
  height: auto;
}

/* Typography */
.section-subtitle {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #28a745;
  /* green accent */
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #222;
}

.section-description {
  font-size: 16px;
  line-height: 1.6;
  width: 90%;
  color: #555;
  margin-bottom: 25px;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.feature-list li {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-list i {
  font-size: 18px;
  color: #4a00e0;
  /* primary accent */
  margin-right: 10px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  /* space for tick */
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

[data-aos^="fade"][data-aos^="fade"] {
  opacity: 1;
}

/* Tick mark before each list item */
.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #6a11cb;
  font-weight: bold;
  animation: bounce 1s infinite alternate; /* added animation */
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px); /* move up */
  }
}

/* Primary Button */
.primary-btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  position: relative;
  text-align: center;
}

.faq-section h2 {
  text-transform: capitalize;
}

.faq-section .row {
  margin-top: 40px;
}

.faq-question {
  text-align: left;
  /* margin-bottom: 30px; */
}

.faq-question h5 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 8px;
}
.faq-section h2 {
  font-weight: 600;
  font-size: 40px;
  /* margin-bottom: 8px; */
}

.faq-question p {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

/* Decorative circle */
.faq-section::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -50px;
  width: 90px;
  height: 90px;
  border: 12px solid #8327f9;
  border-radius: 50%;
  z-index: 100;
}

/* Testimonials Section */
.testimonials-section {
  background: #f8faff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 30px;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.1);
}
.testimonials-section h2 {
  font-size: 40px;
  font-weight: 600;
}
.testimonials-section {
  background: #f9f9f9;
  padding: 80px 0;
}
.section-subtitle {
  text-transform: uppercase;
  color: #6c63ff;
  font-weight: 600;
  letter-spacing: 1px;
}
.testimonial-card {
  background: #fff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-in-out;
}
.testimonial-card.show {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none !important;
}
.testimonial-author h6 {
  margin: 0;
  font-weight: 600;
}
.testimonial-author span {
  font-size: 14px;
  color: #777;
}
.criclesSvg {
  position: absolute;
  right: 68px;
  height: auto;
  bottom: 0px;
  width: 83px;
}
.testimonial-card p {
  font-size: 16px;
  max-width: 600px;
  margin: auto;
  margin-bottom: 15px;
  padding: 16px;
  color: #1b1b1b;
  line-height: 30px;
  margin-bottom: 40px;
}
.testimonial-authorText {
  font-size: 20px;
  max-width: 800px;
  margin: auto;
  list-style: 38px;
}

.testimonial-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h6 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #777;
}

.why-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 80px 20px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      overflow: hidden;
      position: relative;
    }

    .why-section::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: rgba(138, 43, 226, 0.15);
      border-radius: 50%;
      filter: blur(50px);
    }

    .why-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #212529;
      text-transform: uppercase;
      margin-bottom: 20px;
      position: relative;
    }

    .why-subtitle {
      font-size: 1.3rem;
      color: #6c757d;
      margin-bottom: 30px;
      font-weight: 500;
    }

    .why-text {
      font-size: 1.1rem;
      color: #495057;
      line-height: 1.7;
      margin-bottom: 25px;
    }

    .highlight {
      color: #6f42c1;
      font-weight: 600;
    }

    .why-section .btn-primary {
      background: #6f42c1;
      border: none;
      padding: 12px 30px;
      border-radius: 50px;
      transition: 0.3s;
    }

    .why-section .btn-primary:hover {
      background: #5a32a3;
      transform: translateY(-3px);
    }
    .feature-bg{
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;

    }
.why-text{
  width: 90%;
  margin: auto;
}
    @media (max-width: 768px) {
      .why-title {
        font-size: 2rem;
      }
      .why-subtitle {
        font-size: 1.1rem;
      }
    }
/* ===== Footer Styles ===== */
.footer {
  background-color: #f9f9f9;
  padding: 40px 20px 20px;
  border-top: 1px solid #e6e6e6;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #0d1b2a;
  font-size: 16px;
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 14px;
  color: #5a5a5a;
}
.footer-column a {
  display: block;
  font-size: 14px;
  color: #374151 !important;
  margin-bottom: 8px;
  text-decoration: none;
  font-weight: 500;
}
.footer-column a {
  display: block;
  font-size: 15px;
  color: #374151;
  margin-bottom: 8px;
  text-decoration: none;
}
.footer-column a:hover {
  color: #2563eb;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  font-size: 18px;
  color: #374151;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #2563eb;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  border-top: 1px solid #e6e6e6;
  margin-top: 20px;
  padding-top: 15px;
}
/* =============faq css============= */
.faq-container {
  width: 700px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #123456;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 18px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.faq-answer {
  display: none;
  margin-top: 8px;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Arrow */
.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}
/* =============media query ================= */
@media (max-width: 767px) {
  .headline {
    font-size: 32px;
  }

  .tag {
    position: absolute;
    bottom: -25px;
    left: 50%;
  }

  .navbar-nav {
    margin-bottom: 8px !important;
  }

  .fixed-top {
    padding: 16px 0px !important;
  }

  .nav-link.active {
    width: fit-content;
  }

  .section-title {
    font-size: 28px;
  }
  .navbar-collapse{
	background:#fff;
	padding: 20px;
	border-radius:10px;
	margin-top:18px
}
  .hero {
    position: relative;
    padding:80px 0px 0px;
    overflow: hidden;
    text-align: center;
    /* background-color: #f2f4fc; */
    display: flex;
    /* flex-direction: column-reverse; */
  }
  section {
    min-height: auto;
}
.fixed-top {
    padding: 1px 13px !important;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}


  .mbl-reverseViews {
    display: flex;
    flex-direction: row-reverse;
  }
  .mbl-ViewSection {
    text-align: left;
    padding: 0px !important;
  }
  .hero h1 {
    animation-delay: 0.8s;
    font-size: 30px;
  }
  .mainSectionImg {
    width: 100% !important;
  }
  .circle-img {
    width: 100% !important;
  }
  .features-section {
    padding: 16px;
  }
  .alternative-img {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media(max-width:990px){
	.navbar-collapse{
	background:#fff;
	padding: 20px;
	border-radius:10px;
	margin-top:18px
}
  .alternative-img {
    display: flex;
    flex-direction: column-reverse;
  }
  .circlesLeft-Center1{
    display: none;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {
  .nav-link.active {
    width: fit-content;
  }
  #mainHeader {
    padding:0px;
}
  
  .fixed-top {
    padding: 18px 0px !important;
  }
  .mainSectionImg {
    width: 100% !important;
  }
  .circle-img {
    width: 100% !important;
  }
  .features-section {
    padding: 16px;
  }
  /* section {
    min-height: 100vh;
  } */
  .hero {
    position: relative;
    padding: 7rem 0rem 1rem;
  }

  .primary-btn {
    margin-bottom: 22px;
  }
  .fixed-top img {
    width: 100px !important;
  }
}
@media (max-width: 550px) {
  .hero h1 {
    font-size: 16px;
    /* text-align: center; */
  }

  .testimonials-section h2 {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
  }
  .mbl-ViewSection h4 {
    font-size: 22px;
    /* text-align: center; */
    padding-top: 10px;
  }
  .faq-section h2 {
    font-weight: 600;
    font-size: 22px;
    /* margin-bottom: 8px; */
    text-align: left !important;
  }
  .section-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .faq-question h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
  }
  .hero p {
    /* text-align: center; */
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
  }
  .circlesLeft-Center svg {
    width: 30px;
  }
  .feature-list li {
    font-size: 14px;
  }
  .section-description {
    font-size: 14px;
    line-height: 1.8;
  }
  .section-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .testimonial-card p {
    font-size: 14px;
  }
  .testimonial-authorText {
    font-size: 14px;
    /* max-width: 800px; */
    text-align: left;
  }
  #mainHeader {
    height:auto;
    z-index: 1000;
}
  .reviewsSections {
    padding: 0px 30px;
  }
  /* .criclesSvg {
    width: 40px !important;
  } */
  .faq-container {
    padding: 0px 28px;
  }
  .faq-question {
    font-size: 14px;
  }
  .faq-title {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #123456;
  }
  .features-section {
    margin-top: 10px;
  }
  .alternative-img {
    display: flex;
    flex-direction: column-reverse;
  }
  .primary-btn {
    margin-bottom: 22px;
  }
  .mbl-reverseViewDiv {
    padding: 0px 20px;
    margin: 40px;
  }
  .fixed-top img {
    width: 90px !important;
  }
.circlesLeft-Center1 svg {
        right: 0px;
        position: absolute;
        left: 180px;
		width: 60px;
    }
.criclesSvg {
    position: absolute;
    height: auto;
    bottom: 0px;
    left: 0;
    width: 57px;
}	
}
