@import url("https://fonts.cdnfonts.com/css/sf-pro-display");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --primary: #337eff;
  --primary-light: #0093dd;
  --secondary: #2c3e50;
  --success: #2ecc71;
  --warning: #f1c40f;
  --danger: #e74c3c;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f8f9fa;
  --dark: #071d44;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-900: #212529;
  --bs-navbar-active-color: #0b7dfe;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --mobile: 576px;
  --tablet: 768px;
  --desktop: 992px;
  --large: 1200px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: var(--gray-900);
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", sans-serif;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 500;
}

h5 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
}

h6 {
  font-size: clamp(0.9rem, 1.5vw, 1.25rem);
  font-weight: 500;
}

p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    margin-bottom: 0.75rem;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  background-color: white;
}

.container {
  width: 100%;
  padding-right: var(--spacing-md);
  padding-left: var(--spacing-md);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}

.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 3rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 17px;
}

.btn-primary {
  background-color: #0c7dff;
  color: var(--white);
  border: solid 0.1575rem #0c7dff;
}

.btn-primary:hover {
  border: solid 0.1575rem #0c7dff;
  color: #0c7dff;
  background-color: #fff0;
}

.text-center {
  text-align: center;
}
.mt-1 {
  margin-top: var(--spacing-sm);
}
.mt-2 {
  margin-top: var(--spacing-md);
}
.mt-3 {
  margin-top: var(--spacing-lg);
}
.mb-1 {
  margin-bottom: var(--spacing-sm);
}
.mb-2 {
  margin-bottom: var(--spacing-md);
}
.mb-3 {
  margin-bottom: var(--spacing-lg);
}
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.justify-center {
  justify-content: center;
}
.align-center {
  align-items: center;
}
.gap-1 {
  gap: var(--spacing-sm);
}
.gap-2 {
  gap: var(--spacing-md);
}

a:hover {
  color: var(--primary);
  text-decoration: none;
}
.modal-title{
  color: var(--dark);
}
.navbar {
  position: fixed;
  width: 100%;
  height: auto;
  min-height: 70px;
  z-index: 100;
  display: flex;
  -webkit-backdrop-filter: blur(25px) contrast(100%);
  backdrop-filter: blur(15px) brightness(1);
  background: #fff;
  box-shadow: rgb(12 125 255 / 15%) 0px 4px 83px 0px;
  top: 0;
  transition: all 0.3s ease-in-out;
}

.navbar-container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
  padding: 0.5rem 1rem !important;
}

.nav-item .dropdown-toggle::after {
  margin-left: 0.5rem;
}

a {
  text-decoration: none !important;
}
.card-icon img {
  width: 30px; /* Increased size */
  height: 30px; /* Increased size */
  object-fit: contain;
  /* filter: invert(1); Inverts the image */
  transition: filter 0.3s ease-in-out; /* Smooth transition */
}

.allserv-sec .card-icon img:hover {
  filter: invert(0) !important; /* Restores the natural image on hover */
}
.downloadBtn {
  cursor: pointer;
}


.btn-login {
  font-weight: 600;
  border: none;
  background: none;
  transition: color 0.3s ease;
  font-size: 20px;
}

.btn-signup {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border: solid 0.1575rem var(--primary) !important;
  border-radius: 25px;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-signup:hover {
  border: solid 0.1575rem var(--primary) !important;
  color: var(--primary);
  background-color: #fff0;
}

.collapse ul li a:hover,
.nav-link:hover,
.btn-login:hover {
  color: var(--primary) !important;
}

@media (max-width: 768px) {
  .navbar {
    height: auto;
    padding: 0.5rem;
  }

  .BKMK {
    padding: 0 0.5rem;
  }

  .nav-link {
    padding: 0.25rem 0.5rem !important;
  }

  .btn-login,
  .btn-signup {
    padding: 0.25rem 1rem;
    margin: 0.5rem 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    justify-content: space-around;
  }
}

.sidebar {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: rgba(1, 22, 32, 0.9);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.8rem;
  border-radius: 1.56rem;
  color: #ffffff;
  gap: 1rem;
  z-index: 100;
}

.sidebar-img {
  background-color: #ffffff;
  border-radius: 7px;
  width: 41px;
  height: 41px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 0.5rem;
}
.sidebar-image {
  background-color: #ffffff;
  border-radius: 8px;
  object-fit: contain;
  height: 31px;
  width: 31px;
}
.sidebar-p {
  font-weight: 700;
  margin: 0;
  font-size: 18px;
  color: white;
}
.sidebar-p1 {
  font-size: 0.75rem;
  margin: 0;
  color: white;
}

@media (max-width: 600px) {
  .css-1464cli {
    bottom: 4rem;
    right: 50%;
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }
}

.footer {
  background-color: #021730;
  color: #ffffff;
  padding: 4rem 0px 0px 0px;
  position: relative;
}

.footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #0d7dff;
}

.footer-section h6 {
  color: #ffffff;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #ffffff;
  background-color: #0d7dff;
  border: solid 0.1575rem #0d7dff !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: transparent;
  border: solid 0.1575rem #0d7dff !important;
}

.subscription-form {
  background: #061f3e;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.subscription-form input {
  background-color: #fff;
  border: none;
  color: #ffffff;
  padding: 0.8rem;
}

.subscription-form input::placeholder {
  color: var(--dark);
}

.footer-bottom {
  background-color: #0d7dff;
  padding: 20px 0px 20px 0px;
  overflow: hidden;
}

.footer-bottom p {
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1rem 0;
  }

  .footer-section {
    margin-bottom: 2rem;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }
}

section {
  padding: 3rem 1rem;
}

header {
  padding: 2.125rem 0;
}

@media (max-width: 992px) {
  header {
    padding: 3rem 0 1rem 0;
  }
}

.faq-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--dark);
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 1.8rem;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .faq-title {
    font-size: 2rem;
  }
}
@media (max-width: 1200px) {
  .faq-title {
    font-size: 2.2rem;
  }
}

.accordion-button {
  font-size: 1.1rem;
  font-weight: 500;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 0 15px rgb(0 0 0 / 0.1) !important;
}
.accordion-button {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgb(0 0 0 / 0.1) !important;
  color: var(--dark);
}
.accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: #fff;
}
.accordion-body {
  color: var(--dark);
}
.hero h3 {
  font-weight: 400;
  font-size: 34px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", sans-serif;
  color: #337eff;
  margin-bottom: 1rem;
}

main {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.play-store {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-top: 1.25rem;
}

.play-store img {
  width: 100%;
  max-width: 8.5rem;
  max-height: 2.5rem;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.hero .section-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .hero .section-title {
    font-size: 2.8rem;
    text-align: center;
  }
}

.hero .section-text {
  font-size: 20px;
  line-height: 36px;
  color: #333;
  margin-bottom: 1.5rem;
  text-wrap-style: pretty;
}

.hero .play-store button {
  background-color: var(--primary);
  color: #fff;
  border: solid 0.1575rem var(--primary) !important;
  padding: 0.5rem 3rem;
  border-radius: 6px;

  border: none;
}

.hero .play-store button:hover {
  border: solid 0.1575rem var(--primary) !important;
  color: var(--primary);
  background-color: #fff0;
}

.btn-signup1:hover span svg path {
  fill: #337eff;
}
@media (max-width: 1200px) {
  .hero .section-title {
    font-size: 2.2rem;
  }
  .hero .section-text {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .hero .section-title {
    font-size: 2rem;
  }
  .hero .play-store button {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .hero .section-text {
    text-align: center;
  }
  .hero .play-store button {
    font-size: 16px;
    padding: 0.4rem 1.2rem;
  }
}

@media (max-width: 1200px) {
  .hero-image {
    max-width: 300px;
  }
}

@media (max-width: 992px) {
  .hero-image {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .hero-image {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .play-store {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .lead {
    font-size: 1rem;
    font-weight: 300;
  }
}

.text-gradient {
  color: white;
}

.Key-Features-card {
  border-radius: 16px;
  background: white;
  position: relative;
  padding: 20px;
  box-shadow: 0px 4px 154px 0px #0c73ea17;
}

.Key-Features-card h5 {
  color: var(--dark);
  font-weight: 600;
  margin-top: 50px;
  font-size: 22px;
}

.feature-icon {
  background-color: #0c7dff;
  top: -15%;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  overflow: hidden;
}

.feature-icon i {
  font-size: 2rem !important;
  align-items: center;
}

.Key-Features-card p {
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #2b3440;
  font-weight: 300;
  font-size: 14px;
  line-height: 27px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.modern-card {
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow: 0px 4px 154px 0px #0c73ea17;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  transform-style: preserve-3d;
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  min-height: 400px;
}

.allserv-sec .card-title {
  color: var(--dark);
  line-height: 1.6;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
  transform: translateZ(20px);
}

@media (max-width: 768px) {
  .allserv-sec .card-title {
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
  }
}

@media (max-width: 576px) {
  .allserv-sec .card-title {
    text-align: center;
  }
}

.allserv-sec .card-text {
  color: #2b3440;
  text-align: center;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transform: translateZ(15px);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.allserv-sec .card-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(30px);
  box-shadow: 0px 4px 83px 0px #0c7dff94;

  position: relative;
  overflow: hidden;
}
.allserv-sec .card-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.allserv-sec .modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--xPos, 50%) var(--yPos, 50%),
    rgba(255, 255, 255, 0.1) 0,
    rgba(255, 255, 255, 0) 50%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.allserv-sec .modern-card:hover::before {
  opacity: 1;
}

.allserv-sec .modern-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0px 4px 154px 0px #0c73ea17;
  background-color: #0c7dff;
}

.allserv-sec .modern-card:hover .card-title {
  color: white;
}

.allserv-sec .modern-card:hover p {
  color: white;
}

.allserv-sec .modern-card:hover .card-icon {
  background-color: white;
}

.allserv-sec .modern-card:hover .card-icon i {
  color: #0c7dff;
}

.terms-container {
  max-width: 800px;
  margin: 50px auto;
  padding: var(--spacing-lg);
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgb(0 0 0 / 0.1) !important;
}
.terms-title {
  color: var(--primary);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--spacing-md);
}
.terms-section {
  margin-bottom: var(--spacing-lg);
}
.terms-section h3 {
  color: var(--secondary);
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.terms-section h3 i {
  margin-right: var(--spacing-sm);
  color: var(--primary-light);
}
.terms-btns {
  text-align: center;
}
.terms-btn {
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 5px;
  font-weight: 500;
}

.pricing-card-style2,
.profile-setting .profile-edit-list > li {
  padding: 25px;
}

.card-box {
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 28px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 154px 0px #0c73ea17;
}

.pricing-card-style2 .pricing-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 15px;
}

.pricing-card-style2 .pricing-card-header h5 {
  color: #051f3e;
  font-size: 24px;
  font-weight: 400;
}

.pricing-card-style2 .pricing-card-header p,
.pricing-points ul li {
  font-weight: 600;
  margin-bottom: 0;
  color: #051f3e;
  font-weight: 600;
  text-align: center;
  font-size: 24px;
}

.pricing-price {
  font-weight: 600;
  color: #051f3e;
  font-size: 60px;
}

.pricing-price-span {
  color: #0c7dff;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 1rem;
}

.pricing-card-style2 .pricing-card-body {
  padding-top: 30px;
  padding-bottom: 10px;
}
.subscription-points ul {
  list-style: none;
  padding: 0;
}
.subscription-points ul li {
  display: flex;
  justify-content: space-between;
}

.subscription-points ul li {
  color: #2b3440;
  position: relative;
  font-size: 14px;
  font-weight: 400;
}

.subscription-points ul li .check_active {
  font-weight: bold;
  color: #0c7dff;
  font-size: 25px;
}
.subscription-points ul li .check_inactive {
  font-weight: bold;
  color: #f1373d;
  font-size: 20px;
}
.pricing-card-style2 .cta {
  padding-top: 10px;
  padding-bottom: 20px;
}

.hero {
  background-image: url(../images/Group\ 1000013126.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.subscription-section {
  background-image: url(../images/Group\ 1000013126.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 992px) {
  .Key-Features-card p,
  .pricing-card-style2 .pricing-card-header p,
  .pricing-points ul li,
  .accordion-body {
    font-size: 16px;
  }
}

.goole-sidbar-image {
  width: 100%;
  max-width: 8.5rem;
}

footer .ft-widget h6:after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background-image: url(../images/sap.png);
  background-repeat: no-repeat;
  background-position: left;
  border-radius: 2px;
  margin-top: 10px;
  margin-bottom: 15px;
}

@keyframes gradientBG {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.title-gradient {
  background: linear-gradient(90deg, #071d44, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.terms-container {
  background-color: white;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.terms-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 22px;
  z-index: -1;
  animation: borderGlow 8s linear infinite;
}

@keyframes borderGlow {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 0.3;
  }
}

.terms-nav {
  background: var(--dark);
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.terms-nav-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  font-size: 1.2rem;
}

.terms-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-nav-list li {
  margin-bottom: 10px;
}

.terms-nav-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: block;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.terms-nav-list a:hover,
.terms-nav-list a.active {
  background-color: rgba(108, 99, 255, 0.2);
  color: #f8f9fa;
  transform: translateX(5px);
}

.terms-nav-list a i {
  margin-right: 8px;
  color: #fff;
}

.terms-content h2 {
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.6rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-content h3 {
  color: var(--primary-light);
  margin-top: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.4rem;
}

.terms-content p,
.terms-content li {
  color: #212529;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.terms-content ul,
.terms-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.terms-content li {
  margin-bottom: 0.5rem;
}

.highlight-box {
  background: url(../images/Group\ 1000013126.png);
  border-left: 4px solid#071d44;
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.highlight-box h4 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.highlight-box p {
  margin-bottom: 0;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, #071d44, #00d4ff);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  color: white;
}

/* Responsive fixes */
@media (max-width: 991px) {
  .terms-nav {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }

  .title-gradient {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .terms-container {
    padding: 25px;
    border-radius: 15px;
  }

  .title-gradient {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .hero-section-term {
    padding: 50px 0;
  }

  .terms-content h2 {
    font-size: 1.5rem;
  }

  .terms-content h3 {
    font-size: 1.2rem;
  }
}

.glowing-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ff6b6b;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
  }
}
.terms-container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: white;
  color: #f8f9fa;
}
.terms-main {
  background-color: #121212;
}

.term-bg-blue {
  background-color: white;
}

.upper-sec {
  background: #0e7dfe;
  align-items: center;
  display: flex;
  justify-content: center;
  height: 46px;
}

.upper-sec h1 {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}

.boder-sec-midel {
  border: 2px solid #0e7dff;
}
.downlode-banner .container {
  background: linear-gradient(269.82deg, #74b4ff -0.67%, #0c73ea 89.08%);
  border-radius: 20px;
  padding: 2.125rem;
}

.downlode-banner h2 {
  font-weight: 600;
  font-size: 2.625rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.downlode-banner p {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.6;
  text-wrap-style: pretty;
}

@media (max-width: 1200px) {
  .downlode-banner h2 {
    font-size: 2.25rem;
  }

  .downlode-banner p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .downlode-banner h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .downlode-banner p {
    font-size: 0.95rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .downlode-banner h2 {
    font-size: 1.5rem;
  }

  .downlode-banner p {
    font-size: 0.9rem;
  }
}

.card-btn-grp {
  margin-top: 10px;
  margin-bottom: 20px;
  column-gap: 18px;
  display: flex;
}

.Download-text-side {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 768px) {
  .back-to-top {
    display: none;
  }
  .sidebar {
    display: none;
  }
  footer .ft-widget h6:after {
    display: none;
  }
  .social-links {
    justify-content: center !important;
  }
  .pricing-card-style2 {
    padding: 10px;
  }
  .subscription-points ul li {
    text-wrap-style: pretty;
  }
  .footer-section {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .downlode-banner .container {
    padding: 2.125rem 1rem;
  }
}

.google-img-side {
  height: 40px;
  width: 100%;
  max-width: 8.5rem;
  max-height: 2.5rem;
  object-fit: contain;
}

.spacing-sec {
  padding-bottom: 3rem;
}

.hero-terms-sec {
  background-image: url(../images/Group%201000013126.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 363px;
}

.hero-terms-sec h1 {
  color: var(--dark);
}

.Downloads-btn {
  cursor: pointer;
}

.Downloads-btn span {
  font-size: 1rem;
  color: var(--dark);
  font-weight: bolder;
}
.Downloads-btn:hover span {
  color: var(--primary);
}

.about-Section .contentBox ul li {
  line-height: 1.2;
  list-style: none;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0px;
  display: flex;
  min-height: 20px;
  align-items: center;
  text-align: start;
}

.about-Section .contentBox ul li::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
  background-image: url(../images/arrow-li.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: -1rem;
  top: 0;
  bottom: 0;
  margin-top: 0;
  margin-bottom: auto;
}
.about-Section h5 {
  margin-top: 0;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about-Section .contentBox ul {
  padding-left: 1rem;
}

.about-Section p {
  font-size: 15px;

}

.section-heading h2 {
  font-size: 32px;
  padding-left: 2rem;
}

@media (min-width: 992px) {
  .section-heading h2,
  .colToAction h2 {
    font-size: 32px;
    padding-left: 2rem;
  }
}

@media (min-width: 1200px) {
  .section-heading h2,
  .colToAction h2 {
    font-size: 36px;
    padding-left: 2rem;
  }
}

@media (min-width: 1400px) {
  .section-heading h2,
  .colToAction h2 {
    font-size: 48px;
    padding-left: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .about-Section p {
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 992px) {
  .about-Section p {
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (min-width: 1200px) {
  .padding-right-lg{
    padding-right: 40px;
  }
}
.navbar-brand{
  margin-right: 0px !important;
  
  max-width: 150px;
  max-height: 150px;
}
.navbar-brand img{
  margin-right: 0px !important;
  
  width: 150px !important;
  height: 60px !important;
}
.logoclass{
width: 150px !important;
  height: 60px !important;
}
@media (max-width: 1260px) {
.btn {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;

}
}