* {
  padding: 0px;
  margin: 0px;
}

body {
  color: #000;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  background: #f1f1fc;
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
}

.container {
  max-width: 1300px;
  margin: auto;
  overflow: hidden;
}

.w150 {
  width: 150px;
}

.blink {
  animation: blinker 0.2s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.default_css {
  font-size: clamp(32px, 15vw, 150px);
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.sig_container {
  padding: 20px;
  margin: 1em 0px;
  background: #fafbff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.custom-div {
  width: 100%;
  padding: 20px 5px;
  text-align: center;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  align-items: flex-start;
  width: 100%;
}

.control-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  width: 100%;
  max-width: 120px;
}

.tools label {
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}

.tools input[type="color"],
.tools input[type="range"] {
  width: 100%;
  height: 30px;
}

.text_area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
  border: 1px solid #caccd1;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #fff;
}

.isFlex {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional: Add custom styles here if needed */
.navbar-brand img {
  max-height: 50px; /* Adjust as needed */
  width: auto;
}
a {
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

.information {
  margin-block: 2em;
  padding: 10px;
  background-color: #fff;
  padding: 1em;
  border-radius: 5px;
}
.information table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.information table,
.information th,
.information td {
  border: 1px solid #ddd;
  padding: 8px;
}
.information th {
  background-color: #f2f2f2;
}
.information ul,
.information ol {
  margin-left: 20px;
}
.information h1,
.information h2,
.information h3,
.information h4,
.information h5,
.information h6 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.information .faq {
  margin-top: 30px;
}
.information .faq h3 {
  color: #673de5;
}

#goToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background: 0;
  cursor: pointer;
  border: 0;
}
#goToTopBtn div {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  background-color: #673de5;
  color: #fff;
  fill: #fff;
  cursor: pointer;
  border-radius: 5px;
}
#goToTopBtn div:hover {
  background-color: #555;
}

.pagination_controls {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 5px;
  align-items: center;
  justify-content: center;
}

.pagination_controls button:disabled {
  pointer-events: none;
}

.isbutton {
  padding: 10px 20px;
  border: 1px solid #5b03c1;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}

.filled {
  background-color: #5b03c1;
  color: white;
}

.outlined {
  background-color: white;
  color: #5b03c1;
}

.isbutton.filled:hover {
  background-color: white;
  color: #5b03c1;
  border-color: #5b03c1;
}

.isbutton.outlined:hover {
  background-color: #5b03c1;
  color: white;
  border-color: #5b03c1;
}

.flex_list2 {
  display: flex;
  gap: 1em;
  align-items: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
.button {
  margin: 2px;
}

.pads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  height: 500px;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
}

.signature-pad {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 10px;
  width: 100%;
  height: 100%;

  max-height: 460px;
  border: 1px solid #f3f4f7;
  background-color: #fff;

  border-radius: 4px;
  padding: 16px;
}

.signature-pad::before,
.signature-pad::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 40%;
  height: 10px;
  bottom: 10px;
  background: 0 0;
}

.signature-pad::before {
  left: 20px;
  -webkit-transform: skew(-3deg) rotate(-3deg);
  transform: skew(-3deg) rotate(-3deg);
}

.signature-pad::after {
  right: 20px;
  -webkit-transform: skew(3deg) rotate(3deg);
  transform: skew(3deg) rotate(3deg);
}

.signature-pad--body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #4b4a4a;
  border-radius: 4px;
}

.signature-pad--body canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.02) inset;
}

.signature-pad--footer {
  color: #fcfafa;
  text-align: center;
  font-size: 1.2em;
  margin-top: 8px;
}

.signature-pad--footer .description {
  color: #a0a0a0;
}

.signature-pad--actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  margin: 8px;
}

.signature-pad--actions2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 8px;
}

.signature-pad--actions2 i {
  font: optional;
}

#github img {
  border: 0;
}

@media (max-width: 940px) {
  #github img {
    width: 90px;
    height: 90px;
  }
}
.sp_container {
  max-width: 1140px;
  margin: auto;
}

.pagelinks {
  display: flex;
  align-items: center;
  gap: 5px 1em;
  flex-wrap: wrap;
  margin-block: 1em;
}
.pagelinks a {
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #2a195f;
  border: 1px solid #202020;
}

.pagelink {
  background-color: #673de5 !important;
}
.pagelinks a:hover {
  background-color: #e1306c;
}

.social {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 1em;
}

.social_link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
}

.twitter {
  background-color: #505050;
}

.facebook {
  background-color: #1877f2;
}

.telegram {
  background-color: #31a8e0;
}

.instagram {
  background-color: #e1306c;
}

.social_link:hover {
  transform: scale(1.1);
}

.iamflex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.copyrights {
  border-top: 1px solid #222;
  margin-top: 10px;
  padding-top: 10px;
}

.canvas-container {
  position: relative;
}

.placeholder-text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.color-btn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.color-btn.border {
  border: 3px solid #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .isFlex {
    flex-wrap: wrap;
  }

  .tools label {
    font-size: 12px;
  }

  .tools {
    gap: 10px;
    justify-content: center;
  }

  .control-group {
    max-width: 90px; /* Slightly smaller on mobile */
  }
}

.navbar {
  background: #5b03c1;
}

.menuBtn {
  background-color: none;
  background: none;
  padding: 0px;
  margin: 0px;
  border: none;
}

.navbar {
  background: #5b03c1;
}

nav {
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 70px;
}

.hb {
  padding: 0;
  width: 50px;
  margin: 2px auto 0;
  display: block;
}

.logolink {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: none;
}

nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav ul li {
  list-style-type: none;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
}

.menu-icon {
  display: none;
}

.menu-icon i {
  color: #fff;
  font-size: 30px;
}

@media (max-width: 600px) {
  nav {
    padding: 10px;
  }

  nav ul {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    flex-direction: column;
    text-align: center;
    background: #000;
    gap: 0;
    overflow: hidden;
  }

  nav ul li {
    padding: 20px;
    padding-top: 0;
  }

  .menu-icon {
    display: block;
  }

  #menuList {
    transition: all 0.5s;
    z-index: 999;
  }
}

.footer {
  background-color: #000;
  color: #caccd1;
  padding: 1em;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer_icon {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.footer_links {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 1em;
  flex-wrap: wrap;
}

.footer_links a {
  color: #fff;
  text-decoration: none;
}

.footer_links a:hover {
  color: #673de5;
}

.copyrights {
  color: #fff;
  border-top: 1px solid #333333;
  margin-top: 1em;
  padding-top: 1em;
  text-align: center;
}

.color_button_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: 1em;
  gap: 1em;
}

.btn_black {
  background-color: #000;
}

.btn_green {
  background-color: #00c16e;
}
.btn_blue {
  background-color: #0000ff;
}

.btn_red {
  background-color: #ff0000;
}

.isbutton_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em;
  gap: 1em;
}

.canvasBox {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 1em;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.placeholder-text {
  color: #b7b7b7;
}

/* Main Container */
.signature-container {
  text-align: center;
  padding: 1.5rem 0;
}

/* Signature Box */
.signature-box {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  max-width: 700px;
  margin: 1.5rem auto;
}

/* Description */
.signature-description {
  padding-bottom: 1rem;
  font-size: 1rem;
  color: #555;
}

/* Input Field */
.signature-input {
  width: calc(100% - 20px);
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 1rem;
}

/* Button Group */
.button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Home Section */
.home-section {
  margin: 3rem 0; /* Equivalent to Bootstrap's my-5 */
  text-align: center;
}

/* Home Title */
.home-title {
  font-weight: bold;
  font-size: 2rem;
  color: #333;
}

/* Home Description */
.home-description {
  margin-top: 1.5rem; /* Equivalent to mt-4 */
  font-size: 0.875rem; /* Equivalent to Bootstrap's small */
  color: #666;
}

.sig_flex {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.page_flex {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  margin-block: 1.5rem;
}

.disabled {
  pointer-events: none;
  cursor: default;
}

/* Style the track (background bar) */
.form-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;

  outline: none;
}

/* Customizing the track (for WebKit browsers like Chrome, Safari) */
.form-range::-webkit-slider-runnable-track {
  background: #b3b3b3; /* Change to your desired color */
  height: 6px;
  border-radius: 3px;
}

/* Customizing the thumb (draggable circle) */
.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #673de5; /* Thumb color */
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
  margin-top: -6px; /* Adjust based on track height */
}

/* Thumb hover effect */
.form-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: #0056b3; /* Darker color on hover */
}

/* Firefox specific styles */
.form-range::-moz-range-track {
  background: #673de5;
  height: 6px;
  border-radius: 3px;
}

.form-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #673de5;
  border-radius: 50%;
  cursor: pointer;
}

/* For Edge */
.form-range::-ms-track {
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.form-range::-ms-fill-lower {
  background: #673de5;
}

.form-range::-ms-fill-upper {
  background: #ddd;
}

.form-range::-ms-thumb {
  width: 18px;
  height: 18px;
  background: #673de5;
  border-radius: 50%;
  cursor: pointer;
}

/* Page Heading */
.page-heading {
  text-transform: uppercase; /* Equivalent to text-uppercase */
  font-size: 1.75rem; /* Equivalent to Bootstrap's h3 */
  text-align: center; /* Equivalent to text-center */
  font-weight: bold;
  color: #333;
}

.article {
  padding: 1em;
}

ul,
ol {
  list-style-position: inside;
}

/* Section Title */
.why-us-title {
  text-align: center;
  font-size: 2.5rem; /* Equivalent to display-4 */
  margin-top: 3rem;
  font-weight: bold;
  color: #333;
}

/* Container */
.why-us-container {
  padding: 3rem 0;
}

/* Grid Layout */
.why-us-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Individual Item */
.why-us-item {
  width: 23%;
  min-width: 250px;
}

/* Box Styling */
.why-us-box {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  text-align: center;
  transition: all 0.3s ease;
}

/* Image Styling */
.why-us-img img {
  width: 50%;
  margin-bottom: 15px;
}

/* Heading */
.why-us-heading {
  font-size: 1.25rem; /* Equivalent to h5 */
  font-weight: normal;
  color: #222;
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-us-grid {
    flex-direction: column;
    align-items: center;
  }

  .why-us-item {
    width: 90%;
  }
}

/* FAQ Card */
.faq-card {
  margin-top: 3rem;
  background-color: #fff;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  padding: 5px;
}

/* Card Body */
.faq-card-body {
  padding: 20px;
}

/* FAQ Title */
.faq-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

/* FAQ Container */
.faq-container {
  width: 100%;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #ececec;
}

/* FAQ Button (Question) */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 10px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #f8f9fa;
  border: none;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  display: block;
}

.faq-question:hover {
  background-color: #e9ecef;
}

/* FAQ Answer */
.faq-answer {
  display: none;
  padding: 15px;
  background-color: #ffffff;
  color: #555;
  font-size: 0.95rem;
  animation: fadeIn 0.3s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Toggle Functionality */
.faq-question.active {
  background-color: #ddd;
}

.faq-answer.active {
  display: block;
}

/* Blog List Container */
.blog-list {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.blog-list:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

/* Blog Row (Flexbox Layout) */
.blog-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Blog Image */
.blog-img {
  flex: 0 0 40%;
  max-width: 40%;
  padding-right: 15px;
}

.blog-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Blog Content */
.blog-post {
  flex: 0 0 55%;
  max-width: 55%;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-content {
  font-size: 0.95rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-row {
    flex-direction: column;
  }

  .blog-img {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
  }

  .blog-post {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.sticky {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.customHeading {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 20px 2px;
}

/* Heading */
.custom-h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 20px;
}

/* Blog Container */
.blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Blog Main Content */
.blog-main {
  flex: 0 0 65%;
  max-width: 65%;
}

/* Blog Sidebar */
.blog-sidebar {
  flex: 0 0 30%;
  max-width: 30%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
  }

  .blog-main,
  .blog-sidebar {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
