@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #070709;
  --white-color: #fff;
  --gray-color: #303030;
  --bg-light-gary: #eeeff4;
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  --shadow-sm: 0 2px 4px rgba(37, 99, 235, 0.1);
  --shadow-md: 0 4px 6px rgba(37, 99, 235, 0.15);
  --shadow-lg: 0 10px 25px rgba(37, 99, 235, 0.2);
  --shadow-xl: 0 20px 40px rgba(37, 99, 235, 0.25);
}

/* --- Selection Colors --- */

::-webkit-selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.defualt-padding {
  padding: 100px 0px;
  position: relative;
}

@media (max-width: 768px) {
  .defualt-padding {
    padding: 60px 0px;
  }
  
  .banner-section {
    padding: 60px 0;
  }
  
  .defualt-heading {
    margin-bottom: 35px;
  }
  
  .timeline-item {
    margin-bottom: 40px;
  }
}

.defualt-heading {
  position: relative;
  margin-bottom: 50px;
}

.defualt-heading .theme_title {
  font-size: .95rem;
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px 20px;
}

.defualt-heading .theme_subtitle {
  font-weight: 700;
  color: #09090b;
  line-height: 1.3;
  font-size: 42px;
  margin: 0px 0px 16px 0px;
  text-transform: capitalize;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .defualt-heading .theme_subtitle {
    font-size: 28px;
    line-height: 1.2;
  }
}

.defualt-heading.text-white .theme_subtitle {
  color: var(--white-color);
}

.abt-mb-10 {
  margin-bottom: 2.5rem;
}

.lite-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8edff 50%, #f0f9ff 100%);
}

.page-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ------------------------------
  button
---------------------------------*/
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth section transitions */
section {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:focus,
button:focus {
  outline-width: 1px;
  outline-offset: -3px;
  outline-style: dotted;
  text-decoration: none;
  outline-color: inherit;
}

.btn_block {
  display: inline-block;
  position: relative;
  width: max-content;
}

.ast-theme-btn {
  display: inline-block;
  background: var(--primary-gradient);
  border-radius: 30px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 40px;
  position: relative;
  -webkit-transform: translate3d(-3px, -4px, 0);
  transform: translate3d(-3px, -4px, 0);
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
  border: none;
}

.btn_bottom {
  border: 1px solid var(--primary-color);
  border-radius: 100px;
  height: 100%;
  left: 8px;
  position: absolute;
  right: -12px;
  top: -8px;
  -webkit-transform: translate(-.52em, .52em);
  transform: translate(-.52em, .52em);
  width: 100%;
  z-index: 1;
}

.ast-theme-btn span {
  padding: 0;
  transform: skewX(12deg);
  display: inline-block;
}

.btn-second {
  background: #0a0a0a;
  color: #ffffff;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.ast-theme-btn.btn-outline {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.ast-theme-btn.btn-outline:hover,
.ast-theme-btn.btn-outline:focus {
  background: var(--primary-gradient);
  color: var(--white-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.ast-theme-btn.btn-outline .btn_bottom {
  display: none;
}

.ast-theme-btn.btn-white {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.ast-theme-btn.btn-white:hover {
  background: #f8faff;
  color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.ast-theme-btn.btn-white i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.ast-theme-btn.btn-white:hover i {
  transform: translateX(4px);
}

.btn_block .ast-theme-btn.btn-white + .btn_bottom {
  border-color: var(--primary-color);
}

.ast-theme-btn:hover,
.ast-theme-btn:focus {
  color: var(--white-color);
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}


/* ------------------------------
  navbar
---------------------------------*/
.main-header {
  padding: 12px 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  text-align: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.08);
  transition: all 0.3s ease;
}

.box-header {
  display: flex;
  position: relative;
  width: 100%;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.main-header .logo {
  height: 80px;
  line-height: 80px;
}

.main-header .logo .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  display: inline-block;
}

.main-header .navbar-brand img {
  width: 165px;
  height: 100%;
}

.main-header .navbar-brand:hover {
  color: #0a0a0a;
}

.main-header .navbar-toggler {
  padding: 0;
}

.main-header .navbar-toggler:focus {
  box-shadow: none;
}

.main-header .navbar-collapse {
  position: relative;
  flex-grow: 0;
  justify-content: center;
}

.main-header .navbar-nav li {
  padding: 0 10px;
}

.main-header .navbar-nav li a {
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
}

.main-header .navbar-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-header .navbar-nav li a:hover {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.05);
}

.main-header .navbar-nav li a:hover::after,
.main-header .navbar-nav li a.active::after {
  width: 80%;
}

.main-header .navbar-nav li .button {
  color: #fff;
  margin-top: -3px;
  display: inline-block;
  margin-right: -15px;
}

.main-header .button-navbar {
  float: right;
  margin: 0;
  padding: 0;
  text-align: right;
  display: flex;
}

.main-header .button-navbar li {
  display: inline-block;
  margin-left: 15px;
}

.main-header .ast-theme-btn,
.main-footer .ast-theme-btn {
  background-color: var(--primary-color);
  color: #fff;
}

.navbar-fixed {
  padding: 8px 0px;
  position: fixed !important;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-animation: 1s ease-in-out 0s normal none 1 running fadeInDown;
  animation: 1s ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.12);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-fixed .box-header:after {
  box-shadow: none;
}

#helpdesk_ticket_submit {
  background-color: #fd8405;
  border: none;
  padding: 10px 12px;
}


/* ------------------------------
  intro
---------------------------------*/
.banner-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 20%, #eff6ff 40%, #e0f2fe 60%, #dbeafe 80%, #bfdbfe 100%);
  position: relative;
  text-align: left;
  overflow: hidden;
  z-index: 0;
}

.banner-section::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0.06) 30%, rgba(37, 99, 235, 0.02) 50%, transparent 75%);
  top: -350px;
  right: -250px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

.banner-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 30%, rgba(59, 130, 246, 0.02) 50%, transparent 75%);
  bottom: -250px;
  left: -200px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

.banner-section .banner-pattern {
  background-image: url(../images/hero/blue_dotes.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  height: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.banner-section .content {
  position: relative;
  z-index: 1;
}

.banner-section .content .type-wrap span {
  color: var(--primary-color);
  font-weight: 500;
}

.index-module_type__E-SaG::after {
  content: '|';
  animation: index-module_cursor__PQg0P 1.1s infinite step-start;
}

@keyframes index-module_cursor__PQg0P {
  50% {
    opacity: 0;
  }
}

.hero-img img {
  width: 100%;
  height: auto;
}

.intro p {
  color: #4b5563;
  font-weight: 400;
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.7;
}

.intro-image {
  padding: 0 16%;
  margin: -215px 0 0 0;
}

.intro-image img {
  padding: 0 5px;
}

.intro h2 {
  font-size: 50px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .intro h2 {
    font-size: 32px;
    line-height: 1.2;
  }
}

.intro h2 .primary-color {
  color: var(--primary-color);
}

.content h2 .animate-one {
  color: transparent;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #1e40af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* App Download Buttons */
.app_btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
  list-style: none;
  padding: 0;
}

.app_btn li {
  display: inline-block;
}

.app_btn li a {
  display: block;
  padding: 12px 30px;
  background-color: var(--secondary-color);
  border: none;
  position: relative;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.app_btn li a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background-color: #1a1a1c;
}

.app_btn li a img {
  transition: 0.4s all;
  height: 30px;
}

.banner-section .main-content {
  position: relative;
  z-index: 1;
}

.banner-section .hero-img-banner {
  display: flex;
  position: relative;
  z-index: 1;
}

.banner-section .hero-img-banner:before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(30, 64, 175, 0.12) 50%, rgba(59, 130, 246, 0.08) 100%);
  border: 2px solid rgba(37, 99, 235, 0.15);
  border-radius: 32px;
  content: "";
  height: 440px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-8deg);
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 440px;
  z-index: -5;
  opacity: 0.65;
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15), 
              inset 0 1px 2px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.banner-section .hero-img-banner:hover:before {
  opacity: 0.7;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.banner-section .hero-img-banner .left_icon {
  bottom: -20px;
  left: -20px;
  position: absolute;
  z-index: 9999;
  -webkit-animation: zoom-one 8s infinite ease-in-out;
  -moz-animation: zoom-one 8s infinite ease-in-out;
  animation: zoom-one 8s infinite ease-in-out;
}

.banner-section .hero-img-banner .right_icon {
  position: absolute;
  right: -20px;
  top: -20px;
  z-index: 9999;
  -webkit-animation: zoom-one 8s infinite ease-in-out;
  -moz-animation: zoom-one 8s infinite ease-in-out;
  animation: zoom-one 8s infinite ease-in-out;
}

.banner-section .hero-img-banner .mobile_img {
  left: 50%;
  position: relative;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
}

.banner-section .hero-img-banner .mobile_img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 24px;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 
              0 0 0 3px rgba(255, 255, 255, 0.8), 
              0 0 0 4px rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}

.banner-section .hero-img-banner .mobile_img img:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 
              0 0 0 3px rgba(255, 255, 255, 0.9), 
              0 0 0 4px rgba(37, 99, 235, 0.12);
}

@keyframes zoom-one {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

.main-mobile-wrapper {
  z-index: 1 !important;
}

/*Service Section*/

.grid-column {
  position: relative;
  padding: 2.5rem;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  background: #ffffff;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
}

.grid-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
  background: #f8faff;
}

.grid-column .grid-logo i,
.grid-column .grid-logo img {
  width: 3rem;
  height: 3rem;
  color: var(--primary-color);
  position: relative;
  font-size: 3rem;
  margin: auto;
  transition: all 0.3s ease;
  display: inline-block;
}

.grid-column:hover .grid-logo i {
  transform: scale(1.05);
  color: var(--primary-dark);
}

.grid-column-content {
  padding-top: 25px;
}

.text-4xl {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: #09090b;
}

.text-2xl {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: #3f3f46;
}

.sub-content {
  font-size: 18px;
  font-weight: 500;
}

.text-base {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #3f3f46;
  font-weight: 400;
}

.read-more-btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #09090b;
}

.read-more-btn:hover,
.read-more-btn:focus {
  color: var(--primary-color);
}

.grid-column .text-base {
  margin-bottom: 0px;
}

.text-base span {
  font-weight: 700;
}

.grid-column:hover .grid-logo i {
  color: var(--primary-color);
}

/*Benefits Section*/

.benefit-img {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 0px 20px;
  align-items: center;
}

.benefit-img img {
  position: relative;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
  background: #f8faff;
}

.benefit-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.benefit-card:hover .benefit-number {
  color: var(--primary-dark);
}

.benefit-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 12px;
  line-height: 1.4;
}

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: #09090b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-description {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.abt_flex {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 20px;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
  margin: 0;
  color: #09090b;
}

.abt-icon-box i {
  font-size: 30px;
}

.abt-button {
  padding: 0.8rem 1.5rem;
  border: 1px solid #e4e4e7;
  border-radius: .375rem;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  line-height: 1.2;
  color: #3f3f46;
}

.abt-button:hover,
.abt-button:focus {
  color: var(--white-color);
  background-color: var(--primary-color);
}


/*FAQ Section*/

.faq-img img {
  position: relative;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.wrapper {
  width: 100%;
}

.faq-item {
  background: #f8faff;
  color: var(--secondary-color);
  border-radius: 12px;
  margin: 0 0 20px 0;
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
  background: #ffffff;
}

.question {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5rem;
  padding: 1rem 15px;
  position: relative;
  padding-right: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question::after {
  content: "\002B";
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  position: absolute;
  right: 15px;
  transition: 0.2s;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  font-size: .875rem;
  line-height: 1.25rem;
}

.question.active+.answercont {
  max-height: 1000px;
}

/*TimeLine Section*/

.timeline {
  margin-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 0;
}

.timeline-item {
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.badge-pill {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  background-color: #ffede4;
  border: 1px solid var(--primary-color);
  z-index: 1;
  position: relative;
}

.timeline-featured-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.timeline-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.timeline-featured-image:hover img {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.feature-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  height: 100%;
  border: 1px solid rgba(37, 99, 235, 0.1);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
  background: #f8faff;
}

.feature-card .card-body {
  padding: 0px;
}

.feature-card .card-body .card-title {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.feature-card .card-body p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #3f3f46;
  font-weight: 400;
}

.timeline-list {
  margin: 0;
  padding: 0;
  margin-bottom: 0;
  box-sizing: border-box;
}

.timeline-list li {
  display: block;
  line-height: 26px;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  text-align: left;
  color: #3f3f46;
  padding-left: 24px;
}

.timeline-list li:not(:last-child) {
  margin-bottom: 12px;
}

.timeline-list li:before {
  content: "\f14a";
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--primary-color);
  font: normal normal normal 14px / 1 FontAwesome;
  font-size: 1rem;
}

/* ------------------------------
footer
---------------------------------*/

.main-footer {
  position: relative;
  border-top: 1px solid #e4e4e7;
  background: #fafafa;
  color: var(--gray-color);
  padding: 80px 0px 60px;
}

.footer-widget {
  position: relative;
  margin-bottom: 20px;
}

.main-footer img {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
  transition: opacity 0.3s ease;
}

.main-footer img:hover {
  opacity: 0.8;
}

.main-footer h2 {
  color: #344767;
}

.main-footer .footer-widget .title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: 600;
}

.main-footer .footer-widget p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 0;
}

.main-footer ul {
  margin: 0px;
  padding: 0;
  box-sizing: border-box;
}

.main-footer ul li {
  padding: 8px 0;
  list-style: none;
}

.main-footer ul li a,
.main-footer ul li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ast_app_link {
  display: flex;
  gap: 30px;
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.flex_group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: start;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.flex_group i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 8px;
  color: var(--primary-color);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4e4e7;
  background: #f8fafc;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.flex_group span {
  font-weight: 500;
  color: #4b5563;
  line-height: 1.6;
  flex: 1;
}

.main-footer ul li a:hover,
.main-footer ul li a:focus {
  color: var(--primary-color);
  text-decoration: none;
}

.flex_group:hover i,
.flex_group:focus i {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.ast_app_link a img {
  width: 100%;
  max-width: 170px;
  height: 60px;
  margin-right: 20px;
}

.footer-row {
  justify-content: space-between;
}

.mobile-btn {
  display: none;
}

.space-y-2 {
  margin-top: 1.6rem;
}

.relative-w-full {
  position: relative;
  width: 100%;
}

.relative-w-full .footer-secarch {
  position: relative;
  width: 100%;
  outline: none;
  border: 1px solid #e4e4e7;
  border-radius: .5rem;
  padding: 1rem 5rem 1rem 1rem;
  height: 3.5rem;
}

.relative-w-full .submit-btn {
  position: absolute;
  color: var(--primary-color);
  font-size: 18px;
  border-radius: .375rem;
  top: 10px;
  height: 2.25rem;
  padding: 0 1.5rem;
  right: 10px;
  outline: none;
  border: none;
  background-color: #ea580c33;
}

.ast_fb_copyright-area {
  position: relative;
  padding: 24px 0;
  border-top: 1px solid #e4e4e7;
  background: #ffffff;
}

.ast_fb_copyright-area .ast_copyRight-text {
  text-align: center;
}

.ast_fb_copyright-area .ast_copyRight-text p {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

/*Mobile View Section*/

.ast_mobile_section {
  position: relative;
  background-image: url(../images/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.ast_mobile_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.65) 0%, rgba(37, 99, 235, 0.7) 50%, rgba(30, 64, 175, 0.75) 100%);
  z-index: 0;
}

.ast_mobile_section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.12) 100%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.ast_mobile_section .container {
  position: relative;
  z-index: 1;
}

.ast_mobile_section .ast_mobile-view-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
  padding: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ast_mobile_section .ast_mobile-view-content .ast_app_title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
  margin-top: 0;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.25);
  letter-spacing: -0.6px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.ast_mobile_section .ast_mobile-view-content .ast_app_subtitle {
  font-size: 22px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 60px;
  margin-top: 0;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25), 0 1px 4px rgba(0, 0, 0, 0.18);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.ast_mobile_section .ast_mobile-view-content .hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.ast_mobile_section .ast_mobile-view-content .ast-theme-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.ast_mobile_section .ast_mobile-view-content .ast-theme-btn:hover i {
  transform: translateX(4px);
}

.ast_mobile_section .ast_mobile-view-content .ast-theme-btn {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3), 0 2px 8px rgba(37, 99, 235, 0.2);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 48px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.ast_mobile_section .ast_mobile-view-content .ast-theme-btn:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4), 0 3px 10px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.ast_mobile_section .ast_mobile-view-content .ast-theme-btn .btn_bottom {
  border: 1px solid var(--primary-color);
  border-radius: 100px;
  height: 100%;
  left: 8px;
  position: absolute;
  right: -12px;
  top: -8px;
  -webkit-transform: translate(-.52em, .52em);
  transform: translate(-.52em, .52em);
  width: 100%;
  z-index: 1;
}

.ast_mobile_section .ast_mobile-view-content .ast-theme-btn.btn-outline {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15), 0 1px 4px rgba(37, 99, 235, 0.1);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 48px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.ast_mobile_section .ast_mobile-view-content .ast-theme-btn.btn-outline:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.ast_mobile_section .ast_mobile-view-content .ast-theme-btn.btn-outline .btn_bottom {
  display: none;
}

@media (max-width: 992px) {
  .ast_mobile_section {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .ast_mobile_section {
    min-height: 450px;
  }

  .ast_mobile_section .ast_mobile-view-content {
    padding: 55px 20px;
  }

  .ast_mobile_section .ast_mobile-view-content .ast_app_title {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .ast_mobile_section .ast_mobile-view-content .ast_app_subtitle {
    font-size: 17px;
    margin-bottom: 35px;
    line-height: 1.6;
  }

  .ast_mobile_section .ast_mobile-view-content .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .ast_mobile_section .ast_mobile-view-content .hero-buttons .btn_block {
    width: 100%;
  }

  .ast_mobile_section .ast_mobile-view-content .hero-buttons .ast-theme-btn {
    width: 100%;
    text-align: center;
    padding: 14px 32px;
  }
}

@media (max-width: 576px) {
  .ast_mobile_section .ast_mobile-view-content .ast_app_title {
    font-size: 28px;
  }

  .ast_mobile_section .ast_mobile-view-content .ast_app_subtitle {
    font-size: 16px;
  }
}

.ast_mobile-view-content .ast_app_link a img {
  width: 100%;
  max-width: 165px;
  height: 50px;
  margin-right: 20px;
  margin-bottom: 12px;
}

.ast_app_link a:last-child img {
  margin-right: 0px;
}

.ast_mobile_view_img {
  text-align: center;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ast_mobile_view_img .mobile_img,
.faq-img img {
  position: relative;
  max-width: 500px;
  width: 100%;
  height: auto;
  -webkit-animation: jumpping 5s infinite linear;
  animation: jumpping 5s infinite linear;
}

@-webkit-keyframes jumpping {

  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  40% {
    -webkit-transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
    transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0))
  }
}

@keyframes jumpping {

  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  40% {
    -webkit-transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
    transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0))
  }
}



/*Breadcrumb-section Start*/

.breadcrumb-area {
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: 180px;
  display: block;
  background-image: url(../images/hero/blue_dotes.png);
  background-color: #14151c;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  min-height: 400px;
}

.breadcrumb-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
}

.breadcrumb-list {
  flex-shrink: 0;
  list-style: none;
  width: 100%;
  text-align: center;
  max-width: max-content;
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 0px;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--white-color);
  word-break: break-word;
  font-weight: 500;
  font-size: 1.125rem;
}

.breadcrumb-list li a {
  color: var(--white-color);
  -webkit-transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.breadcrumb-list li+li {
  margin-left: 8px;
}

.breadcrumb-list li+li::before {
  content: "\f105";
  padding-right: 8px;
  color: var(--white-color);
  font-family: FontAwesome;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.breadcrumb-heading h2 {
  color: var(--white-color);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Work section start*/
.dark-section {
  background-color: #14151c;
  margin: 0 auto;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}

.dark-section .dotes_blue {
  left: 50%;
  position: absolute;
  top: -65%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.steps-item {
  position: relative;
  border-radius: 20px;
  text-align: center;
}

.steps-item .steps-inner {
  padding-top: 30px;
  border-radius: 18px;
  z-index: 10;
  position: relative;
}

.steps-item .steps-number {
  position: absolute;
  z-index: -1;
  line-height: 170px;
  left: 0;
  top: unset;
  bottom: 0px;
  right: 0;
  font-size: 170px;
  opacity: 0.1;
  color: var(--primary-color);
  font-weight: 600;
}

.steps-item .steps-icon {
  position: relative;
  align-items: center;
  background-color: #e8edff;
  border-radius: 20px;
  display: flex;
  height: 90px;
  justify-content: center;
  margin: 0 auto;
  width: 90px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
}

.steps-item:hover .steps-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
  background-color: #dbeafe;
}

.steps-item .steps-icon img,
.steps-item .steps-icon i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 50px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.steps-item:hover .steps-icon i {
  color: var(--primary-dark);
}

.steps-item h2 {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin-top: 40px;
  margin-bottom: 20px;
}

.steps-item p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.steps-item p b {
  color: #09090b;
}

/* Work section end*/


/*New Pricing Section Start*/

.pricing-section .price_cards_container {
  margin-top: 50px;
}

.pricing-section .price_cards .p_card {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border-radius: 24px;
  padding: 48px 32px 40px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-section .price_cards .p_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-section .price_cards .p_card:hover::before {
  opacity: 1;
}

.pricing-section .price_cards .p_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.pricing-section .price_cards .p_card .card_head {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 0;
  color: #6b7280;
  text-transform: uppercase;
  padding-bottom: 12px;
  position: relative;
}

.pricing-section .price_cards .p_card .card_head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.3) 50%, transparent 100%);
  opacity: 0.5;
}

.pricing-section .price_cards .p_card .price {
  letter-spacing: -1.5px;
  margin: 20px 0 8px 0;
  font-size: 56px;
  text-align: center;
  font-weight: 800;
  line-height: 1.1;
  color: #09090b;
  background: linear-gradient(135deg, #09090b 0%, #1e293b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-section .price_cards .p_card .price span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  color: #6b7280;
  margin-left: 4px;
}

.pricing-section .price_cards .p_card .price s {
  margin: 0 0 0 5px;
  font-family: var(--body_font);
  text-decoration: underline #0000007a 2px;
  text-underline-offset: -9px;
  text-decoration-skip-ink: none;
  font-size: 23px;
  font-weight: 400;
  color: #0000007a;
}

.pricing-section .price_cards .p_card.p_card_highlight .price s {
  text-decoration: underline #ffffffbd 2px;
  color: #ffffffbd;
}

.pricing-section .price_cards .p_card p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.pricing-section .price_cards .p_card .btn_block {
  width: 100%;
  margin-top: auto;
  text-align: center;
  display: inline-block;
  position: relative;
}

.pricing-section .price_cards .p_card .ast-theme-btn {
  width: 100%;
  text-align: center;
}

.pricing-section .price_cards .p_card .features_list {
  margin: 32px 0 32px 0;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.pricing-section .price_cards .p_card .features_list li {
  margin: 16px 0 0;
  padding: 0 0 0 36px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #4b5563;
  position: relative;
  transition: color 0.3s ease;
}

.pricing-section .price_cards .p_card .features_list li:hover {
  color: var(--primary-color);
}

.pricing-section .price_cards .p_card.p_card_highlight .features_list li {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-section .price_cards .p_card.p_card_highlight .features_list li:hover {
  color: #ffffff;
}

.pricing-section .price_cards .p_card .features_list li span {
  font-weight: 600;
}

.pricing-section .price_cards .p_card .features_list li.checked::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.pricing-section .price_cards .p_card .features_list li.unchecked::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.pricing-section .price_cards .p_card .features_list li a {
  border-bottom: #333333 2px dotted;
}

.pricing-section .price_cards .p_card.p_card_highlight {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  color: #FFFFFF;
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
  position: relative;
}

.pricing-section .price_cards .p_card.p_card_highlight::after {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 6px 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-section .price_cards .p_card.p_card_highlight .card_head {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-section .price_cards .p_card.p_card_highlight .card_head::after {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}

.pricing-section .price_cards .p_card.p_card_highlight .price {
  color: #FFFFFF;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-section .price_cards .p_card.p_card_highlight .price span {
  color: rgba(255, 255, 255, 0.85);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
}

.pricing-section .price_cards .p_card.p_card_highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.4);
  border-color: rgba(37, 99, 235, 0.4);
}

.pricing-section .price_cards .p_card.p_card_highlight .features_list li.checked::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.pricing-section .price_cards .p_card.p_card_highlight .features_list li.unchecked::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
}

.pricing-footer-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

/* Pricing Section with Lite Section Background */
.lite-section.pricing-section {
  position: relative;
}

.lite-section.pricing-section .defualt-heading .theme_subtitle {
  color: #09090b;
}

.lite-section.pricing-section .price_cards .p_card {
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.12);
}

.lite-section.pricing-section .price_cards .p_card:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
}

/* For Tablet View */
@media screen and (max-width: 992px) {
  .pricing-section .price_cards .p_card {
    min-width: 356px;
  }

  .pricing-section .price_cards .p_card.p_card_highlight {
    order: 3;
  }
}

/* For Mobile View */
@media screen and (max-width: 768px) {
  .pricing-section .price_cards .p_card {
    min-width: 100%;
  }

  .pricing-section .price_cards .p_card.p_card_3 {
    order: 3;
  }
}

/* For Small Mobile View */
@media screen and (max-width: 576px) {
  .pricing-section .price_cards .p_card {
    min-width: 100%;
  }

  .pricing-section .price_cards .p_card.p_card_3 {
    order: 3;
  }

  .pricing-section .price_cards .p_card .features_list li {
    margin: 14px 0 0;
    font-size: 16px;
  }

  .pricing-section .price_cards .p_card .features_list li.checked::before {
    width: 20px;
    height: 20px;
    font-size: 12px;
    top: 3px;
  }

  .pricing-section .price_cards .p_card .features_list li.unchecked::before {
    width: 20px;
    height: 20px;
    font-size: 10px;
    top: 3px;
  }
}

/*Form Css Start*/
.form-flex-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #e0f2fe 100%);
  width: 100%;
  min-height: 100vh;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.form-flex-box::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  top: -250px;
  right: -250px;
  border-radius: 50%;
}

.form-flex-box::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
  border-radius: 50%;
}

.mobile-form-wrapper {
  position: relative;
  border-radius: 24px;
  background: #ffffff;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15), 0 0 0 1px rgba(37, 99, 235, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-form-wrapper:hover {
  box-shadow: 0 25px 70px rgba(37, 99, 235, 0.2), 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.mobile-form-wrapper:after,
.mobile-form-wrapper:before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

.mobile-form-wrapper:after {
  top: -25px;
  left: -40px;
  background-color: #fff;
}

.mobile-form-wrapper:before {
  bottom: -25px;
  right: -40px;
  background-color: #5d86fd;
}

.mobile-form-wrapper .left-box {
  width: 100%;
  height: 100%;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px 0 0 24px;
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}

.mobile-form-wrapper .left-box::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.mobile-form-wrapper .left-box::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
}

.mobile-form-wrapper .right-box {
  width: 100%;
  height: 100%;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px 24px 24px 0px;
  background-color: #fff;
}

.mobile-form-wrapper .right-box .box-title {
  text-align: left;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

.mobile-form-wrapper .right-box .box-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
  margin-top: 12px;
  margin-bottom: 24px;
}

.mobile-form .input-group {
  position: relative;
  margin-bottom: 24px;
}

.mobile-form .input-group-text {
  background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
  border: 2px solid #e7e7e7;
  border-right: none;
  color: var(--primary-color);
  width: 50px;
  justify-content: center;
  border-radius: 12px 0 0 12px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 18px;
}

.mobile-form .form-control {
  padding: 14px 18px;
  border: 2px solid #e7e7e7;
  border-left: none;
  box-shadow: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--secondary-color);
  background-color: #fff;
  border-radius: 0 12px 12px 0;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-form .form-control::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.mobile-form .form-check {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-form .form-check-input {
  width: 20px;
  height: 20px;
  box-shadow: none;
  border: 2px solid #d1d5db;
  cursor: pointer;
  margin-top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.mobile-form .form-check-input:checked {
  background: var(--primary-gradient);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.mobile-form .form-check-label {
  font-size: 15px;
  color: #4b5563;
  cursor: pointer;
  user-select: none;
  font-weight: 400;
}

.mobile-form .text-acc {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.mobile-form .text-acc:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.mobile-form .form-btn {
  position: relative;
  width: 100%;
  border-radius: 12px;
  border: none;
  padding: 16px 24px;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  margin-top: 8px;
}

.mobile-form .form-btn:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.mobile-form .form-btn:active {
  transform: translateY(0);
}

.mobile-form-wrapper .left-box .form-image .form-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}

.mobile-form-wrapper .right-box .mobile-form {
  width: 100%;
}

.form-image {
  border-radius: 20px;
  width: 100%;
  height: auto;
  padding: 25px 30px 0px 30px;
  background-color: rgb(171 193 255 / 55%);
}

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.mobile-form .form-control:hover,
.mobile-form .form-control:focus {
  border-color: var(--primary-color);
  border-left-color: #e7e7e7;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.mobile-form .input-group:hover .input-group-text,
.mobile-form .input-group:focus-within .input-group-text {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--primary-dark);
}

.mobile-form .input-group:focus-within .form-control {
  border-color: var(--primary-color);
}

/*--------------------
 Back to Top Button
---------------------*/
.scrollToTopBtn {
  background-color: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: var(--white-color);
  cursor: pointer;
  font-size: 20px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  opacity: 0;
  transform: translateY(100px);
  transition: all .5s ease
}

.showBtn {
  opacity: 1;
  transform: translateY(0)
}

/*Privacy Policy*/
.privacy-section {
  background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 50%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
}

.tr-pr_content {
  position: relative;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.main-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 24px;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 20px;
}

.main-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.tr-pr_content .tr-pr-title-sm {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--secondary-color);
  padding-left: 20px;
  border-left: 4px solid var(--primary-color);
  position: relative;
}

.tr-pr_content .tr-pr-title-sm:first-of-type {
  margin-top: 0;
}

.tr-pr_content .tr-pr-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.tr-pr_content .tr-pr-title-lg {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.tr-pr_content .tr-pr-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  text-align: left;
  color: #4b5563;
  margin-bottom: 20px;
}

.tr-pr_content .tr-pr-point {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  display: block;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--primary-color);
  position: relative;
  padding-left: 24px;
}

.tr-pr_content .tr-pr-point::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 20px;
}

.tr-pr_content .tr-pr-subtitle a {
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
}

.tr-pr_content ul.tr-list {
  padding-left: 0;
  list-style: none;
  margin: 16px 0 24px;
}

.tr-pr_content .tr-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.3s;
}

.tr-pr_content .tr-list li:last-child {
  border-bottom: none;
}

.tr-pr_content .tr-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.tr-pr_content .tr-list li+li {
  margin-top: 0;
}

.tr-pr_content .tr-list li .tr-list-text {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: #4b5563;
}

.bold_text {
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.tr-pr_content .tr-pr-subtitle .bold_text {
  color: var(--primary-dark);
  font-weight: 700;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
  background: #f8faff;
}

.testimonial-rating {
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 18px;
}

.testimonial-content {
  flex-grow: 1;
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.author-avatar {
  flex-shrink: 0;
}

.avatar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover .avatar-img {
  border-color: rgba(37, 99, 235, 0.4);
  transform: scale(1.05);
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #09090b;
  margin: 0 0 4px 0;
}

.author-role {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}