*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  font-family: "Celias", sans-serif;
  font-feature-settings: "ss11" on;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
a {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

.btn-primary {
  background-color: #2563eb !important;
  border-color: #2563eb !important;
}

.container {
  max-width: 1440px;
}

.section-line {
  color: #282828;
  font-weight: normal;
  margin: 0 12px;
}

.label_container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.label_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 2px solid #42249d;
  border-radius: 50%;
  background-color: #f1edfd;
  box-shadow: 0px 4px 8px 0px #03d8bf40;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.label_container input:checked~.checkmark:after {
  display: block;
}

.label_container .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #42249d;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* header */
.navbar {
  padding: 6px 60px;
  background-color: #fff;
}

.logo {
  width: 150px;
}

.navbar .collapse {
  justify-content: end;
}

.navbar .navbar-nav {
  margin-right: 15px;
}

.navbar .navbar-nav {
  font-size: 14px;
  font-weight: 500;
  color: #2d3c4a;
}

.navbar .navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #2d3c4a;
  padding: 0 15px;
  transition: color 0.3s;
  cursor: pointer;
}

.navbar .navbar-nav .nav-link:hover {
  color: #3a7eff;
}

.navbar .col-right .btn-primary {
  border-radius: 100px;
  /* width: 154px; */
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.navbar .col-right .btn-primary img {
  width: 20px;
  height: 20px;
  /* margin-right: 7px; */
}

/* hero-section */
.hero-section {
  padding: 65px 0;
  /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  top: -20px;
  right: -20%;
  opacity: 1;
  background: #f3fbffcc;
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.col-right {
  display: flex;
}

.hero-badge i {
  margin-right: 6px;
}

.hero-section h1.title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section h1.title .highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section .subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 15px;
  line-height: 1.6;
}

.hero-section p.des {
  font-size: 16px;
  font-weight: 400;
  color: #64748b;
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-get-started {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
}

.btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
  color: white;
}

.btn-get-started i {
  margin-right: 8px;
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid #667eea;
  color: #667eea;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-outline-primary i {
  margin-right: 8px;
}

.hero-trust-badges {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.trust-item i {
  color: #667eea;
  font-size: 16px;
}

.hero-img-wrapper {
  position: relative;
  z-index: 1;
}

.hero-img-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg,
      rgba(102, 126, 234, 0.1) 0%,
      rgba(118, 75, 162, 0.1) 100%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.4;
  }
}

.hero-img {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-left: 40px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.floating-card {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 20px;
  color: #667eea;
}

.floating-card.card-1 {
  top: 15%;
  left: -5%;
  animation-delay: 0.5s;
}

.floating-card.card-2 {
  bottom: 20%;
  right: -5%;
  animation-delay: 1s;
}

.hero-section .subscription {
  max-width: 558px;
  display: flex;
  align-items: center;
  border: 1px solid #dddddd;
  border-radius: 100px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  background-color: #f2f6ff;
  position: relative;
}

.hero-section .subscription .form-control {
  border: none;
  background-color: transparent !important;
  padding: 16px 5px 16px 21px;
  height: auto;
  color: #000000;
  font-size: 15px;
  font-weight: 400;
}

.hero-section .subscription .form-control:focus {
  box-shadow: none !important;
}

.hero-section .subscription .btn-primary {
  border: 1px solid #3a7eff;
  font-size: 14px;
  font-weight: 500;
  padding: 18px 26px;
  color: #fff;
  margin: 3px;
  border-radius: 100px;
}

.hero-section .card-required {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 558px;
  margin-top: 16px;
}

.hero-section .card-required .label_container {
  color: #869aaa;
  font-size: 11px;
  font-weight: 400;
  margin: 0;
  padding-left: 30px;
}

.hero-section .card-required .label_container .checkmark {
  width: 20px;
  height: 20px;
  background-color: #42249d;
}

.hero-section .card-required .label_container .checkmark:after {
  left: 6px;
  top: 2px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
}

/* Custom Styles */
.cta-section {
  background-color: #42249d;
  padding: 81px 0px;
  text-align: center;
  color: #fff;
}

.cta-section h2.title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 32px;
}

.cta-section p.description {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 32px;
}

.cta-section .btn-light {
  box-shadow: 0px 7px 20px 0px #ffffff33;
  background-color: #fff !important;
  color: #282828 !important;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
  transform: scale(1.1);
}

.about-us-section {
  padding: 80px 0;
}

.about-us-section .section-heading .heading {
  color: #282828;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 100px;
}

.about-us-section .content-box {
  margin-left: 117px;
}

.about-us-section .choose-us-section .content-box {
  margin-left: 0px;
  margin-right: 117px;
}

.about-us-section .content-box h3 {
  color: #282828;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
}

.about-us-section .content-box h3 .highlight {
  color: #3a7eff;
}

.about-us-section .content-box p.des-text {
  color: #424242;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}

.about-us-section .content-box .btn-primary {
  font-size: 14px;
  font-weight: 500;
  padding: 12px 27px;
  border-radius: 100px;
  color: #fff;
}

.about-us-section .key-points {
  margin: 30px 0;
}

.about-us-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-us-section .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: #424242;
  border-bottom: 1px solid #f0f0f0;
}

.about-us-section .feature-list li:last-child {
  border-bottom: none;
}

.about-us-section .feature-list li i {
  color: #28a745;
  font-size: 20px;
  flex-shrink: 0;
}

.about-us-section .choose-us-section {
  padding-top: 100px;
}

/* how-it-works */
.how-it-works {
  background-color: #42249d;
  padding: 80px 0;
  color: #fff;
}

.how-it-works .section-heading p.text {
  text-align: center;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
}

.how-it-works .section-heading h2.heading {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
}

.how-it-works .content-box {
  margin-left: 34px;
}

.how-it-works .step-2 .content-box {
  margin-left: 42px;
}

.how-it-works .content-box p.step {
  color: #c4b5e3;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.how-it-works .content-box .font-bold {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 11px;
}

.how-it-works .content-box p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  max-width: 422px;
}

/* video-section */
.video-section {
  padding: 88px 0;
}

.video-section .heading {
  text-align: center;
  color: #1a1e2f;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}

.video-section p.description {
  text-align: center;
  color: #1a1e2f;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 42px;
}

.video-section .card.card-1 {
  border-left: 10px solid #b386f7;
}

.video-section .card.card-2 {
  border-left: 10px solid #6bd9f3;
}

.video-section .card {
  padding: 8px 15px 16px;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0px 21px 40px 0px #88888826;
}

.video-section .card img {
  margin-bottom: 26px;
  border-radius: 12px;
}

.video-section .card .card-title {
  color: #282828;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.video-section .card .card-text {
  color: #282828;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

/* features-section */

.features-section {
  padding: 68px 0 53px;
  background-color: #432ba7;
  color: #fff;
  position: relative;
}

.features-section .corner-radial {
  width: 423px;
  height: 471px;
  position: absolute;
  bottom: 0;
  right: 0;
  /* z-index: -1; */
}

.features-section .section-heading .heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.features-section .section-heading .des-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #d6e3ef;
  text-align: center;
  max-width: 743px;
  margin: 0 auto 29px;
}

.features-section .feature-icon img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: block;
}

.features-section .feature-card h3 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 19px;
  text-align: center;
}

.features-section .feature-card p {
  font-size: 16px;
  font-weight: 400;
  color: #ede6e6;
  text-align: center;
}

.signature-section {
  background-color: #f2f6ff;
  padding: 53px 0;
}

.signature-section .section-heading {
  max-width: 816px;
  margin: 0 auto;
  padding: 0 10px;
}

.signature-section .heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 7px;
}

.signature-section .description {
  color: #43505b;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 35px;
}

.signature-section .list-card {
  padding: 39px 28px 10px 15px;
  background-color: #ffffff;
  border: 1px solid #9dbefc;
  border-radius: 15px;
  box-shadow: 0px 20px 40px 0px #0000001a;
  width: 100%;
  height: 100%;
  transition: background 0.4s;
}

.signature-section .list-card:hover {
  background-color: #42249d;
  color: #ffffff;
}

.signature-section .list-card li {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 9px;
}

.signature-section .list-card .label_container {
  cursor: default;
}

.testimonial-section {
  background-color: #42249d;
  padding: 80px 0;
}

.testimonial-section .section-heading .des-text {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: center;
  color: #ffffff;
}

.testimonial-section .section-heading .heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 36px;
  text-align: center;
  color: #ffffff;
}

.testimonial-section .swiper-container {
  max-width: 844px;
  margin: 0 auto;
}

.testimonial-section .testimonial-card {
  max-width: 715px;
  margin: 0 auto;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0px 4px 20px 0px #a5bde140;
  background-color: #ffffff;
  padding: 44px 57px 27px;
}

.testimonial-section .testimonial-card .testi-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #4f626c;
}

.testimonial-section .testimonial-card .testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin-top: 27px;
  gap: 27px;
}

.testimonial-section .testimonial-card .testimonial-user .name {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.testimonial-section .testimonial-card .testimonial-user p {
  font-size: 13px;
  font-weight: 400;
  color: #4f626c;
}

.testimonial-section .testimonial-card .testimonial-user img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  opacity: 1 !important;
  background-color: #ffffff;
}

.testimonial-swiper .swiper-button-next::after,
.testimonial-swiper .swiper-button-prev::after {
  color: #42249d !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

.testimonial-swiper .swiper-button-next.swiper-button-disabled,
.testimonial-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5 !important;
  pointer-events: auto !important;
  cursor: not-allowed !important;
}

.esign-feature-section {
  background-color: #f2f6ff;
  padding: 80px 0;
}

.esign-feature-section .esign-content .font-bold {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.esign-feature-section .esign-content .text {
  font-size: 15px;
  font-weight: 400;
  color: #43505b;
  margin-bottom: 38px;
}

.feature-list .feature-collapse-card {
  margin-bottom: 30px;
}

.feature-list .feature-collapse-card a.collapse-link {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #000000;
  text-decoration: none;
}

.feature-list .feature-collapse-card a.collapse-link img {
  margin-right: 16px;
}

.feature-list .feature-collapse-card .collapse-text {
  font-size: 14px;
  font-weight: 400;
  color: #6f778a;
  margin-top: 10px;
  margin-left: 48px;
}

.esign-feature-section .get-legally {
  background-color: #0a142f;
  color: #fff;
  border-radius: 15px;
  padding: 50px 20px 54px 68px;
  /* margin-top: 160px; */
}

.esign-feature-section .get-legally .text {
  font-size: 13px;
  font-weight: 500;
  line-height: 30px;
}

.esign-feature-section .get-legally .font-bold {
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
  max-width: 355px;
  margin-bottom: 33px;
}

.esign-feature-section .get-legally .btn-primary {
  border-radius: 100px;
  padding: 17px 35px;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.esign-feature-section .get-legally img {
  width: 400px;
  height: 229px;
  margin-left: auto;
  display: block;
}

.faq-section {
  padding: 66px 0;
  background-color: #42249d;
}

.faq-section .section-heading {
  max-width: 816px;
  margin: 0 auto;
  color: #ffffff;
}

.faq-section .section-heading .heading {
  text-align: center;
  margin-bottom: 7px;
  font-size: 36px;
  font-weight: 700;
}

.faq-section .section-heading .heading .section-line {
  color: #ffffff;
}

.faq-section .section-heading .description {
  text-align: center;
  margin-bottom: 41px;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}

.faq-section .faq-item {
  list-style: none;
  color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px solid #e1dcd4;
}

.faq-section .faq-item .faq-question {
  font-size: 22px;
  font-weight: 400;
  line-height: 31px;
  display: flex;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 15px;
}

.faq-section .faq-item .faq-question .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.faq-section .faq-item .faq-answer {
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 21px;
}

.faq-section .faq-item .faq-question[aria-expanded="true"] .icon img {
  transform: rotate(75deg);
  transition: transform 0.3s;
}

.faq-section .faq-item .faq-question .icon img {
  transition: transform 0.3s;
}

.footer {
  background-color: #0a142f;
  padding: 42px 0 27px;
  color: #fff;
}

.footer .footer-title {
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 13px;
}

.footer .footer-items {
  list-style: none;
  padding: 0;
}

.footer .footer-items li {
  margin-bottom: 10px;
}

.footer .footer-links {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 13px;
  text-decoration: none;
  transition: all 0.3s;
}

.footer .footer-links:hover {
  padding-left: 5px;
}

.footer .input-group {
  margin-bottom: 20px;
  height: 50px;
}

.footer .input-group .form-control {
  padding: 16px;
  height: 50px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.footer .input-group .form-control::placeholder {
  color: #7a7e92;
  font-size: 14px;
  font-weight: 400;
}

.footer .input-group .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  margin: 0;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.footer .input-group .btn-primary img {
  width: 15px;
  height: 15px;
}

.footer .copyright {
  font-size: 14px;
  margin-top: 50px;
  padding: 26px 0px 10px;
  border-top: 1px solid #aaa;
  text-align: center;
}

/* .footer .copyright h2.logo {
    font-family: "Aladin", system-ui;
    font-size: 38px;
    font-weight: 400;
    color: #FFFFFF;
} */

.footer .social-items {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer .social-links {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.footer .social-links:hover {
  transform: scale(1.2);
  text-decoration: none;
}

.footer .sent-email-box {
  padding: 32px 42px;
  background-color: #1e273f;
  margin-bottom: 54px;
}

.footer .sent-email-box .subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 15px;
}

.footer .sent-email-box .sub-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #7a7e92;
}

/*authentication screen css start*/

.signin-section {
  min-height: 100vh;
  background-color: #f7fafc;
}

.signin-section .signin-left .navbar-brand {
  margin: 35px 0 50px 0;
}

.signin-section .container {
  max-width: 100%;
}

.signin-left {
  padding: 0 40px 10px 30px;
}

.signin-left .logo {
  width: 150px;
}

.signin-left .signin-title {
  color: #171923;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.signin-left .signin-sub {
  color: #718096;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 25px;
}

.signin-left .form-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #718096;
  margin-bottom: 11px;
}

.signin-left .form-group {
  margin-bottom: 20px;
}

.signin-left .form-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.signin-left .form-control {
  border-radius: 12px;
  height: 55px;
  border: 1px solid #cbd5e0;
  box-shadow: 0px 2px 0px 0px #e7ebee33 inset;
  padding: 17px 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.signin-left .input-box {
  position: relative;
}

.signin-left .form-control.password {
  padding: 17px 60px 17px 12px;
}

.signin-left .eye-icon {
  cursor: pointer;
  position: absolute;
  padding: 10px;
  top: 5px;
  right: 7px;
  border-left: 1px solid #cfd9e0;
}

.signin-left .forgot-link {
  text-align: end;
  display: block;
  margin: 15px 0 40px 0;
}

.signin-left .btn-primary {
  width: 100%;
  display: block;
  border-radius: 37px;
  color: #f7fafc;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  padding: 16px 0;
  transition:
    box-shadow 0.2s,
    background-color 0.2s;
}

.signin-left .form-check {
  margin: 20px 0;
}

.signin-left .form-check .label_container {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #313131;
}

.signin-left .form-check .label_container .checkmark {
  height: 20px;
  width: 20px;
  border: 1px solid #3a7eff;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: none;
}

.signin-left .form-check .label_container .checkmark:after {
  left: 7px;
  top: 3px;
  border-color: #ffffff;
}

.signin-left .form-check .label_container input:checked~.checkmark {
  background-color: #3a7eff;
}

.signin-left .btn-light {
  width: 100%;
  border: 1px solid #cbd5e0;
  color: #67728a;
  border-radius: 37px;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.signin-left .signin-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 35px 0px 35px;
  color: #718096;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
}

.signin-left .signin-divider::before,
.signin-left .signin-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #a0aec0;
  margin: 0 10px;
}

.signin-section .signin-right {
  background: #42249d;
  color: #ffffff;
  padding: 0 0px;
  min-height: 100%;
}

.signin-section .signin-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.signin-section .signin-right::after {
  content: "";
  background: url("../image/shadow-img.png") no-repeat center / cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  width: 530px;
  height: 500px;
}

.signin-section .signin-right {
  width: 100% !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signin-section .signin-right img {
  width: 392px;
  height: 392px;
  margin: 0 auto;
  display: block;
}

.signin-section .signin-right h5 {
  color: #f7fafc;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 17px;
  text-align: center;
  max-width: 500px;
  margin: 30px auto 17px auto;
}

.signin-section .signin-right p {
  text-align: center;
  color: #cfd9e0;
  font-size: 20px;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
}

.forgot-password .signin-left {
  justify-content: flex-start;
}

.forgot-password .form-content {
  justify-content: flex-start;
  margin-top: 71px;
}

.forgot-password .signin-section .signin-right {
  height: 100vh;
}

.forgot-password .form-content,
.forgot-password .signin-right .swiper-container {
  min-height: auto;
}

.signin-section .signin-left .email-display {
  background-color: #e7f3ff;
  padding: 12px 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #004085;
}

.signin-section .signin-left .instructions {
  background-color: #f8f9fa;
  border-radius: 8px;
  /* padding: 15px 20px; */
  margin-bottom: 20px;
  font-size: 13px;
  color: #495057;
}

.signin-section .signin-left .instructions ul {
  margin: 10px 0 0 0;
  padding-left: 20px;
}

.signin-section .signin-left .otp-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
  flex-wrap: nowrap;
}

.signin-section .signin-left .otp-input {
  width: 50px;
  height: 55px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background-color: #fff;
}

.signin-section .signin-left .status-container {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px 20px;
  margin: 25px 0;
  border-left: 4px solid #6366f1;
}

.signin-section .signin-left .timer-display {
  font-size: 16px;
  font-weight: 600;
  color: #495057;
}

.signin-section .signin-left .timer-display .time {
  color: #6366f1;
  font-size: 18px;
}

.signin-section .signin-left .timer-display.warning .time {
  color: #ffc107;
}

.signin-section .signin-left .timer-display.expired .time {
  color: #dc3545;
}

.signin-section .signin-left .resend-section {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}

.signin-section .signin-left .otp-input:focus {
  border-color: #6366f1;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.signin-section .signin-left .otp-input.filled {
  border-color: #6366f1;
  background-color: #f8f9ff;
}

.signin-section .signin-left .resend-btn:disabled {
  color: #adb5bd;
  cursor: not-allowed;
  text-decoration: none;
}

.signin-section .signin-left .resend-btn {
  color: #6366f1;
  background: none;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
}

.signin-section .signin-left .status-container.warning {
  border-left-color: #ffc107;
  background-color: #fff8e1;
}

.signin-section .signin-left .status-container.error {
  border-left-color: #dc3545;
  background-color: #ffe6e6;
}

/* ── SECTION WRAPPER ── */
.api-section {
  background: #ffffff;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.api-section::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -220px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(99, 82, 199, 0.07) 0%,
      transparent 68%);
  pointer-events: none;
}

.api-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(99, 82, 199, 0.05) 0%,
      transparent 70%);
  pointer-events: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* ── SECTION HEADER ── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow-line {
  width: 36px;
  height: 2px;
  background: #6352c7;
  border-radius: 2px;
}

.eyebrow-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6352c7;
}

.section-headline {
  font-size: 36px;
  font-weight: 600;
  color: #12094d;
  line-height: 1.15;
  max-width: 640px;
  margin-bottom: 18px;
}

.section-headline span {
  color: #6352c7;
}

.section-desc {
  font-size: 16px;
  color: #6a6a8e;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── HERO ROW ── */
.hero-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

@media (max-width: 768px) {
  .hero-row {
    grid-template-columns: 1fr;
  }
}

/* ── CTA BUTTONS ── */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.btn-primary {
  background: #6352c7;
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition:
    background 0.18s,
    transform 0.15s;
}

.btn-primary:hover {
  background: #5041b2;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #6352c7;
  border: 1.5px solid #6352c7;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.18s;
}

.btn-outline:hover {
  background: #f0edfc;
}

/* ── STAT PILLS ── */
.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-pill {
  background: #f3f1fd;
  border: 1px solid #dcd8f7;
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-pill strong {
  font-size: 15px;
  font-weight: 600;
  color: #6352c7;
}

.stat-pill span {
  font-size: 13px;
  color: #6a6a8e;
}

/* ── CODE BLOCK ── */
.code-window {
  background: #100d2e;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(18, 9, 77, 0.18);
}

.code-titlebar {
  background: #1c1749;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-r {
  background: #ff5f57;
}

.dot-y {
  background: #febc2e;
}

.dot-g {
  background: #28c840;
}

.code-file {
  margin-left: auto;
  font-size: 11.5px;
  font-family: "JetBrains Mono", monospace;
  color: #7b78b8;
  letter-spacing: 0.04em;
}

.code-tabs {
  display: flex;
  background: #150f3a;
  border-bottom: 1px solid #2a2560;
}

.code-tab {
  padding: 8px 18px;
  font-size: 12px;
  font-family: "JetBrains Mono", monospace;
  color: #7b78b8;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.15s;
}

.code-tab.active {
  color: #a99bff;
  border-bottom-color: #6352c7;
}

pre.code-body {
  padding: 24px 26px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  line-height: 1.9;
  color: #c8c5e8;
  overflow-x: auto;
  white-space: pre;
}

.kw {
  color: #c792ea;
}

.fn {
  color: #82aaff;
}

.str {
  color: #c3e88d;
}

.num {
  color: #f78c6c;
}

.key {
  color: #89ddff;
}

.cm {
  color: #4e5b6e;
  font-style: italic;
}

.op {
  color: #89ddff;
}

.method-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}

.method-post {
  background: #e3f6ee;
  color: #1a7a45;
}

.method-get {
  background: #e3f0fd;
  color: #1a5fa8;
}

.method-del {
  background: #fde8e8;
  color: #a32d2d;
}

.endpoint-path {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #9e9abf;
}

/* ── INTEGRATION STRIP ── */
.integrations-strip {
  background: linear-gradient(135deg, #6352c7 0%, #4b3baf 100%);
  border-radius: 20px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.strip-left h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.strip-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 440px;
  line-height: 1.65;
}

.strip-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.strip-btn-white {
  background: white;
  color: #6352c7;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 11px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.18s,
    background 0.18s;
}

.strip-btn-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.strip-btn-ghost {
  background: white;
  color: #6352c7;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 11px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.18s,
    background 0.18s;
}

.strip-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

@media (max-width: 1400px) {
  .hero-section::before {
    right: -37%;
  }
}

@media (max-width: 1200px) {
  .hero-section::before {
    right: -37%;
  }

  .signin-section .signin-right {
    padding: 0 50px;
  }

  .signin-section .signin-right h5 {
    font-size: 26px;
  }

  .signin-section .signin-right p {
    font-size: 18px;
  }

  .signin-left .signin-title {
    font-size: 32px;
  }

  .signin-section .signin-right::after {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 991px) {
  .hero-section::before {
    display: none;
  }

  .signin-section .row {
    flex-direction: column-reverse;
  }

  .signin-section .row .col-md-6 {
    max-width: 100%;
  }

  .signin-section .signin-right {
    height: auto;
  }

  .signin-right {
    margin-top: 0 !important;
    min-height: auto !important;
    padding: 60px 0 !important;
  }

  .signin-left .form-content {
    padding: 0;
  }

  .signin-section .signin-right {
    padding: 30px;
  }

  .signin-left .signin-title {
    margin-bottom: 15px;
  }

  .forgot-password .form-content {
    margin-top: 0 !important;
    padding: 0 0 30px 0;
  }
}

@media (max-width: 767px) {

  .signin-left,
  .signin-left .form-content,
  .signin-section .signin-right,
  .signin-section .signin-right .swiper-container {
    min-height: auto;
    padding: 20px 16px;
  }

  .signin-left .signin-divider,
  .signin-left .forgot-link {
    margin: 30px 0px;
  }

  .signin-right {
    margin-top: 30px;
    min-height: 760px !important;
  }
}

@media (max-width: 576px) {
  .signin-section .signin-left .navbar-brand {
    margin: 0 0 20px 0;
  }

  .hero-img {
    margin-left: calc(100% - 95%);
  }

  .signin-left {
    padding: 35px 20px;
    min-height: 100%;
  }

  .signin-left .form-content {
    min-height: auto;
  }

  .signin-section .signin-right {
    padding: 35px 20px;
    margin-top: 0;
    min-height: auto !important;
  }

  .signin-section .signin-right img {
    width: 68%;
    height: auto;
  }

  .signin-section .signin-right::after {
    width: 200px;
    height: 200px;
  }

  .signin-section .signin-right h5 {
    font-size: 24px;
    margin: 0 24px 20px 24px;
  }

  .signin-section .signin-right p {
    margin: 0 24px 20px 24px;
  }

  .signin-left .form-content {
    padding: 0;
  }

  .signin-left .signin-sub {
    font-size: 16px;
  }
}

/*authentication screen css close*/

@media (max-width: 1199px) {
  .navbar {
    padding: 16px;
  }

  .navbar .logo {
    font-size: 32px;
  }

  .navbar .navbar-nav {
    margin-right: 0px;
  }

  .navbar .navbar-nav .nav-link {
    padding: 5px 10px;
  }

  .hero-section h1.title {
    font-size: 30px;
    line-height: 40px;
  }

  .hero-section p.des {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-section .subscription {
    max-width: 100%;
  }

  .about-us-section .section-heading .heading {
    margin-bottom: 60px;
  }

  .about-us-section .content-box h3 {
    font-size: 32px;
  }

  .about-us-section .content-box,
  .about-us-section .choose-us-section .content-box {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }

  .navbar {
    padding: 16px;
  }

  .navbar .navbar-nav {
    margin-right: 0px;
  }

  .navbar .navbar-nav .nav-link {
    padding: 5px 0px;
  }

  .esign-feature-section .get-legally {
    padding: 30px;
    margin-top: 80px;
  }

  .esign-feature-section .get-legally .font-bold {
    font-size: 26px;
    line-height: normal;
    max-width: 100%;
  }

  .esign-feature-section .get-legally img {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-bottom: 60px;
  }

  .about-us-section .choose-us-section {
    padding-top: 60px;
  }

  .about-us-section img {
    margin-bottom: 30px;
  }

  .hero-section {
    padding: 20px 0 90px 0;
  }

  .video-section .card.card-1,
  .video-section .card.card-2 {
    padding: 20px;
    margin-bottom: 26px;
  }

  .video-section .card.card-1 .card-title,
  .video-section .card.card-2 .card-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .features-section .feature-card {
    margin-bottom: 30px;
  }

  .how-it-works .content-box,
  .how-it-works .step-2 .content-box {
    margin-left: 29px;
  }

  .cta-section h2.title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 24px;
  }

  .how-it-works .section-heading h2.heading {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .video-section .heading {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .esign-feature-section .esign-content {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 60px 0px;
  }

  .cta-section h2.title {
    font-size: 32px;
    line-height: 40px;
  }

  .video-section .card.card-1,
  .video-section .card.card-2 {
    height: auto;
  }

  .signature-section .list-card {
    margin-bottom: 30px;
    height: auto;
  }

  .how-it-works .content-box,
  .how-it-works .step-2 .content-box {
    margin-left: 40px;
    margin-bottom: 20px;
  }

  .signature-section .heading {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {

  .faq-section,
  .how-it-works,
  .hero-section,
  .features-section,
  .signature-section,
  .testimonial-section,
  .esign-feature-section {
    padding: 60px 0;
  }

  .hero-section h1.title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
  }

  .hero-section p.des {
    font-size: 14px;
    line-height: 24px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .cta-section h2.title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
  }

  .cta-section p.description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
  }

  .about-us-section {
    padding: 60px 0;
  }

  .how-it-works .content-box,
  .how-it-works .step-2 .content-box {
    margin-left: 30px;
  }

  .how-it-works .content-box p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 16px;
  }

  .about-us-section .section-heading .heading {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .about-us-section .content-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .how-it-works .section-heading h2.heading {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .how-it-works .content-box p.step {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .video-section {
    padding: 60px 0;
  }

  .video-section .heading {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .video-section .card.card-1 .card-text,
  .video-section .card.card-2 .card-text {
    font-size: 16px;
    line-height: 22px;
  }

  .features-section .section-heading .heading {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .features-section .section-heading .des-text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }

  .features-section .feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .features-section .feature-card p {
    font-size: 14px;
  }

  .faq-section .faq-item .faq-question {
    font-size: 16px;
    line-height: normal;
  }

  .esign-feature-section .get-legally {
    text-align: center;
  }

  .esign-feature-section .get-legally .btn-primary {
    width: 100%;
  }

  .signature-section .heading {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .signature-section .section-heading {
    padding: 0;
  }

  .signature-section .description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .esign-feature-section .esign-content .font-bold {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .esign-feature-section .esign-content .text {
    margin-bottom: 24px;
  }

  .testimonial-section .testimonial-card {
    padding: 24px 20px;
  }

  .faq-section .section-heading .heading {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .faq-section .section-heading .description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .faq-section .faq-item .faq-answer {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 16px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .footer .footer-items {
    margin-bottom: 20px;
  }

  .footer .sent-email-box {
    padding: 26px;
  }
}

/* Hero Section Responsive Styles */
@media (max-width: 992px) {
  .hero-section h1.title {
    font-size: 36px;
  }

  .hero-section .subtitle {
    font-size: 18px;
  }

  .floating-card {
    display: none;
  }

  .hero-img-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }

  .hero-section h1.title {
    font-size: 32px;
  }

  .hero-section .subtitle {
    font-size: 16px;
  }

  .hero-section p.des {
    font-size: 15px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-get-started,
  .btn-outline-primary {
    width: 100%;
    text-align: center;
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .hero-section h1.title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .btn-get-started,
  .btn-outline-primary {
    padding: 14px 28px;
    font-size: 15px;
  }
}