@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #004AAD; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* body */

body {
  font-family: poppins !important;
}

html {
  scroll-behavior: smooth;
}

/* body */

/* Track */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #004AAD;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #003388;
}

/* track */

/* navbar */
.navbar {
  background-color: #ffff;
  position: sticky !important;
  top: 0;
  z-index: 1000;
  transition: 0.3s ease-in-out;
}

.navbar.scrolled {
  background-color: #e4f3ff !important;
}

/* Navbar links and other styles */


.nav-link {
  font-weight: 400 !important;
  padding: 20px !important;
  color: black !important;
}

.nav-link:hover {
  color: #0066CC !important;
}

.navbar-brand {
  margin-left: 20px;
}

.navbar-brand img {
  width: 180px;
}

.navbar-toggler {
  border: none !important;
}

.nav-link .active{
  background-color: none !important;
}

.nav-link.active {
  color: #007bff !important; /* Change this to your preferred color */
  font-weight: bold; /* Optional: Make the active link bold */
}

.navbar-nav .nav-link:hover {
  color: #004AAD; /* Optional: Change the hover color for links */
}


.dropdown-menu .dropdown-item.active {
  background-color: #fff; /* Bootstrap primary color */
  color: #004AAD; /* Text color for contrast */
}

/* Optional: Add hover effect for dropdown links */
.dropdown-menu .dropdown-item:hover {
  background-color: #004AAD; /* Darker shade for hover */
  color: #fff;
}


/* Adjust the navbar links for mobile */
@media (max-width: 991px) {
  .navbar-brand {
    margin-left: 0;
    padding: 0 !important;
  }

  .nav-right-li {
    margin-right: 0 !important;
  }

  .nav-link {
    text-align: center;
  }
}

.btn-contact {
  background-color: #004AAD !important;
  margin-top: -5px;
  border-radius: 10px !important;
  color: white !important;
}

@media (max-width:991px) {
  .navbar-brand {
    margin-left: -1px;
    padding: none !important;
  }

  .nav-right-li {
    margin-right: none !important;
  }

  .nav-link {
    padding: none !important;
    text-align: center;
  }
}

/* navbar */


/* about */

.about-h3{
  font-size: 25px;
}

/* about */

/* margin */

.margin {
  margin-left: 2%;
  margin-right: 2%;
}

/* margin */

/* top con */



.full-width-bg {
  width: 100%;
  margin: 0 auto;
  position: relative;
}


.section-bg {
  background-image: url('./assets/img/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  position: relative;
}

/* Add an overlay */
.section-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 74, 173, 0.5);
  z-index: 1;
}


.container {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 2;
}


.section-bg .row {
  position: relative;
  z-index: 2;
}

.top-h1 {
  color: white !important;
  margin-top: 30px;
  font-weight: 800;
  font-size: 58px !important;
  line-height: 70px;
}

.top-p {
  margin-top: 5%;
  font-size: 25px;
  color: white;
}




.get-started {
  height: 50px;
  margin-top: 5%;
  background-color: white !important;
  color: white;
  border-radius: 100px !important;
  letter-spacing: 1px;
}

.get-started:hover {
  color: white;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.imgAbt img {
  animation: float 3s ease-in-out infinite;
}

@media(max-width:468px) {
  .top-h1 {
    font-size: 45px !important;
  }

  .top-p {
    font-size: 20px;
  }

}

/* top con */

/* services */

.services {
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 50px;
}

.service-h1 {
  padding-bottom: 30px;
}

.service-card {
  text-align: center;
  background-color: #468ECE !important;
  margin: 20px;
  border: 1px solid rgb(163, 163, 163) !important;
  border-radius: 25px !important;
}

.card-body {
  padding: 20px;
}

.card-img-top {
  border-bottom: 1px solid rgb(163, 163, 163);
  height: auto;
  width: 100%;
  object-fit: cover;
}

.service-title {
  font-size: 30px;
  color: white !important;
}

.service-text {
  margin-top: 10px;
  font-size: 16px;
  color: white;
}

.btn-learn {
  margin-top: 10px;
  background-color: white !important;
  padding: 15px;
  width: 150px;
}

.btn-learn:hover {
  background-color: #eaeaea !important;
}

/* services */


/* why choose us */


.whyus {
  background-color: #EDF7FF;
  padding-top: 80px;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.why-h1 {
  padding-bottom: 30px;
}


.whyus-card {
  transition: transform 0.3s ease !important;
  padding: 20px;
  text-align: center;
  margin: 20px;
  border: 1px solid rgb(225, 225, 225) !important;
  border-radius: 25px !important;
}

.whyus-card:hover {
  transform: translateY(-10px) !important;
}

.whyus-title {
  font-size: 28px;
}

.whyus-text {
  margin-top: 10px;
  font-size: 16px;
}

.icon {
  color: #004AAD;
  padding-bottom: 20px;
}

/* why choose us */


/* stats */


.stats {
  padding-bottom: 50px;
  margin-bottom: 50px;
}


.stats i {
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 64px;
  height: 64px;
  font-size: 30px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}


/* stats */


/* testimonials */

.testimonial-h1 {
  padding-bottom: 10px;
  color: black !important;
}

.testimonial-p {
  text-align: center;
  padding-bottom: 30px;
}

.testimonials {
  background-color: #EDF7FF;
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}


/* testimonials */

/* modal */
.modal-submit {
  background-color: #004AAD !important;
  margin-top: -5px;
  border-radius: 10px !important;
  color: white !important;
}

/* modal */

/* back to top */

.back-to-top {
  text-decoration: none;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #004AAD;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #004baddd;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* back to top */

/* whatsapp */

.whatsapp {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp i {
  font-size: 30px;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/* whatsapp */

/* footer */
.footer {
  margin-top: 0px;
  background-color: rgb(241, 241, 241);
  color: black;
  font-size: 14px;
  text-align: center;
  /* Center align all text */
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  /* Center the logo */
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links {
  display: flex;
  justify-content: center;
  /* Center social icons */
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 5px;
  /* Add horizontal margin to space out icons */
  transition: 0.3s;
}



.footer h4 {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  font-size: 16px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  /* Center the list items */
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  text-align: center !important;
  text-decoration: none;
  color: #003984;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.fa-facebook {
  text-decoration: none;
  color: blue;
}

.fa-instagram {
  text-decoration: none;
  color: #FF69AC;
}

.social-links a {
  text-decoration: none !important;
  color: blue;
}


/* end footer */

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/



.about-h1 {
  margin-top: 60px;
  padding-bottom: 30px;
}

@media(max-width:768px) {
  .about-h1 {
    padding-bottom: 0px !important;
  }


}

.about .content {
  background-color: #EDF7FF;
  padding: 78px;
}

@media (max-width: 468px) {
  .about .content {
    background-color: #EDF7FF;
    padding: 30px;
  }
}

.about h3 {
  font-size: 22px;
  font-weight: 700;
  color: #004AAD;
  text-transform: uppercase;
}

.about h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
}

.about p {
  font-size: 18px;
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #004AAD;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}


.btn-read-more:hover{
  background: #002769 !important;
  color: white !important;
}
.about .btn-read-more span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}


@media (max-width: 768px) {
  .about {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}


/* about end */

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{
  padding-bottom: 50px;
}
.contact-h1 {
  padding-top: 80px;
  margin-bottom: 100px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  /* For Firefox */
  appearance: textfield;
  /* For modern browsers */
}

.contact .info-box {
  text-align: center;
  color: black;
  background: #EDF7FF;
  border-radius: 25px;
  padding: 40px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #004AAD;
}

.info-box a {
  text-decoration: none;
  color: black;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact input[type=text] {
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid #012970;
}


.number {
  border: none !important;
  border-radius: 0px !important;
  border-bottom: 2px solid #012970 !important;
}

.message {
  border: none !important;
  border-radius: 0px !important;
  border-bottom: 2px solid #012970 !important;
}

.contact input[type=email] {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0px;
  border-bottom: 2px solid #012970;
  width: 100% !important;
  text-align: left !important;
}

.contact input[type=submit] {
  margin-left: 25%;
  width: 50%;
  background-color: #012970;
  color: white;
}


@media (max-width: 768px) {
  .contact input[type=submit] {
    width: 100%;
    margin-left: 0;
  }
}

.country-code-contact {
  background: none !important;
  border: none !important;
  border-radius: 0px !important;
  border-bottom: 2px solid #012970 !important;
}


.country-code-contact {
  width: 120px !important;
}

@media (max-width: 468px) {
  .country-code-contact {
    width: 50px !important;
  }

}



/* contact end */


/* Popup Banner */
.popup-banner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.popup-content {
  position: relative;
  width: 80%;
  max-width: 600px;
  transform: scale(0.8);
  transition: transform 0.5s ease-in-out;
}

.popup-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .popup-content {
    width: 90%;
  }

  .popup-image {
    width: 100%;
  }
}

/* popup banner */



/* callback */

.callback{
  background: #EDF7FF;
  padding-top: 60px;
  padding-bottom: 50px;
}

.callback-div{
  max-width: 500px;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

/* callback */


/* web page css */


/* why us */

.web-whyus {
  background-color: #F9F9F9;
  padding-top: 80px;
  padding-bottom: 50px;
}

/* why-us */

/* features */
.features-ul li {
  font-size: 18px;
  padding: 15px;
}

/* features */

/* about */

.about-web-div{
  padding-top: 80px;
  background-color: #EDF7FF;
}

@media (max-width: 768px) {
  .about-web {
      margin-top: 0px !important;
      margin-bottom: 50px;
  }
}

/* about */
/* process */

.process-section {
  background-color: #f9f9f9;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px; 
  width: 4px;
  background-color: #004AAD; 
  z-index: 0; 
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border: 2px solid #004AAD;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
  position: relative;
  z-index: 1; 
}

.timeline-icon:hover{
  background-color: #F5F5F5;
  color: white !important;
}

.timeline-content {
  flex-grow: 1;
  padding: 1.5rem 1.5rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1; /* Ensure content is above the line */
}

.timeline-content:hover{
  background-color: #F5F5F5;
}
.timeline-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #004AAD;
  margin-bottom: 5px;
}

.timeline-content p {
  margin: 0;
}

.timeline-item:last-child {
  margin-bottom: 0;
}
/* process */




/* top con */


.full-width-web-bg {
  width: 100%;
  margin: 0 auto;
  position: relative;
}


.web-bg {
  background-image: url('./assets/img/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  position: relative;
}

/* Add an overlay */
.web-bg .overlay-web {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 74, 173, 0.5);
  z-index: 1;
}


.container {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 2;
}


.section-bg .row {
  position: relative;
  z-index: 2;
}

.web-h1 {
  color: white !important;
  margin-top: 30px;
  font-weight: 800;
  font-size: 50px !important;
  line-height: 70px;
}

.web-p {
  margin-top: 5%;
  font-size: 23px;
  color: white;
}




.web-get-started {
  height: 50px;
  margin-top: 5%;
  background-color: white !important;
  color: white;
  border-radius: 100px !important;
  letter-spacing: 1px;
}

.get-started:hover {
  color: white;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}


.top-btn{
  padding: 10px;
}
.pricing-btn {
  height: 50px;
  margin-top: 5%;
  background-color: #fff !important;
  color: BLACK !important;
  border-radius: 100px !important;
  letter-spacing: 1px;
}

.pricing-btn:hover {
  background-color: #F9F9F9 !important;
}


@media(max-width:468px) {
  .top-h1 {
    font-size: 45px !important;
  }

  .top-p {
    font-size: 20px;
  }

}

/* top con */ 


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

.pricing{
  padding-top: 80px;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.c-amount{
  filter: blur(10px);
}

.fa-circle-xmark{
  color: red !important;
}

.pricing-p{
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
}


.pricing-h2{
  text-align: center;
  padding-bottom: 30px;
}
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* pricing */

/* faq */

.faq{
  padding-top: 80px;
  padding-bottom: 50px;
  background-color: #F9F9F9;
}
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}


/* faq */





/* web page css */


#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: blue; /* Change color if needed */
  z-index: 9999;
  transition: width 0.3s ease, opacity 0.4s ease;
}

#progress-bar.hide {
  opacity: 0;
  transition: opacity 0.4s ease;
}