@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  color-scheme: light;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #17233d;
  background: #f7f9fd;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
 background-color: #fcfcfc;
}
.site-header {
  background: transparent;
  padding: 1.2rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgb(255 255 255 / 50%);
}
.site-header.header-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}
.navbar-collapse.show {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
  position: absolute;
  top: 93px;
  background: #fff;
  left: 0;
  right: 0;
}
.navbar-toggler:focus {
  border: none;
  box-shadow: none;
}
.custom-toggler {
  width: 45px;
  height: 45px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
  box-shadow: none !important;
}

.custom-toggler .toggler-line {
  width: 28px;
  height: 2px;
  background: #000;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.custom-toggler.active .toggler-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.custom-toggler.active .toggler-line:nth-child(2) {
  opacity: 0;
}

.custom-toggler.active .toggler-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.about-disc {
  color: #383838;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}
@media (max-width: 991px) {
  .site-header .container {
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
  }
  .navbar-toggler {
    order: 2;
    margin-left: auto;
    margin-right: 0.5rem;
  }
  .btn-outline-light {
    order: 3;
    margin-left: 0;
  }
  .navbar-collapse {
    order: 4;
    width: 100%;
  }
  .navbar-collapse.show {
    top: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  }
  .navbar-nav {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1rem 1.5rem;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .nav-link {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.brand-text {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  letter-spacing: -0.03em;
  font-weight: 700;
}
.hero-section {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  background: url("../img/hero-bg-img.png") center right / cover no-repeat;
  position: relative;
  display: flex;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    270deg,
    rgb(248 248 248 / 0%) 0%,
    rgba(248, 248, 248, 0.9) 66.81%,
    #f8f8f8 100%
  );
  z-index: 1;
}
.eyebrow {
  color: #07103d;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(3rem, 4vw, 4.6rem);
  max-width: 770px;
  color: #010205;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -2.16px;
  font-family: "Poppins", sans-serif;
}
.text-highlight {
  color: #f7252c;
}
.hero-copy {
  max-width: 580px;
  color: #383838;
  font-size: clamp(0.95rem, 1.1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.hero-image-wrapper {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 4rem;
}
.hero-image-wrapper img {
  border-radius: 1.8rem;
  box-shadow: 0 40px 80px rgba(7, 22, 61, 0.12);
}
.navbar-dark .navbar-nav .nav-link {
  color: #020407;
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: #f7252c;
}
.hero-title,
.hero-copy,
.hero-section a img,
.service-card,
.about-section img,
.work-image img,
.info-card,
.benefit-card,
.benefits-panel-large,
.testimonial-card,
.service-shap {
  will-change: transform;
}
.btn-outline-light {
  border-radius: 50px;
  border: 1px solid #fff;
  padding: 13px 16px;
  color: #fff;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.32px;
}
.header-scrolled .btn-outline-light {
  background: #22659c;
}
.btn-outline-light:hover {
  color: #fff;
  background: #f7252c;
}
.btn-dark {
  background: #07103d;
  border: none;
}
.btn-dark:hover {
  background: #0f2662;
}
.services-card {
  border-radius: 35px;
  background: #daf4ff;
  position: relative;
  padding: 76px;
}
.service-shap {
  position: absolute;
  top: -74px;
  z-index: 99;
}

.service-step-section {
  padding-bottom: 80px;
  margin-top: -30px;
  position: relative;
  z-index: 9;
}
.services-wrapper {
  background: #daf4ff;
  border-radius: 35px;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.section-title {
  font-size: clamp(1.2rem, 3.4vw, 3rem);
  color: #010205;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
  font-family: Poppins;
}
.service-card-dark {
  background: linear-gradient(135deg, #1e5a96 0%, #2a7ab8 100%);
  border: none;
  border-radius: 2rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(30, 90, 150, 0.2);
}
.service-card-dark:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(30, 90, 150, 0.3);
}
.service-icon {
  filter: brightness(0) invert(1);
}
.service-shape-bg {
  position: absolute;
  top: -20px;
  right: 30px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
.service-shape-bg img {
  max-width: 400px;
  width: 100%;
  height: auto;
}
.info-card {
  border-radius: 20px;
  background: #fff;
  padding: 32px;
}
.service-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.6rem;
}
.service-card h3 {
  color: #fff;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.info-card h3 {
  color: #010205;
  font-family: Poppins;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.78px;
}
.info-card p {
  overflow: hidden;
  color: #4a4a4a;
  text-overflow: ellipsis;
  font-family: Poppins;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
.benefit-card h3 {
  font-family: Poppins;
  font-size: clamp(1.7rem, 2.2vw, 2rem);
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.32px;
}

.benefits-panel-large .section-title {
  color: #13679f;
  font-family: Poppins;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
.benefits-panel-large p {
  color: #13679f;
  font-family: Poppins;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.benefits-panel-large {
  border-radius: 40px;
  background: #daf4ff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.benefits-panel-bg {
  position: absolute;
  bottom: 30%;
  left: 12%;
}
.benefits-panel-bg img {
  width: 320px;
  height: auto;
}
.benefits-panel-large .section-title,
.benefits-panel-large p {
  position: relative;
  z-index: 1;
}
.benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
}
.benefit-card p {
  color: #13679f;
  font-family: Poppins;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.benefit-card-white {
  background: #ffffff;
}
.benefit-card-blue {
  background: #13679f;
}
.benefit-card-light {
  background: #d0effd;
}
.benefit-card-white h3,
.benefit-card-light h3 {
  color: #083f73;
}
.benefit-card-blue h3,
.benefit-card-blue p {
  color: #ffffff;
}
.benefit-card img {
  margin-bottom: 1rem;
}
.service-card p,
.info-card p,
.benefits-panel p {
  color: #536081;
}
.service-card {
  min-height: 280px;
  border-radius: 30px;
  background: #13679f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-section {
  padding-top: 0px;
  padding-bottom: 80px;
}

.work-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.benefits-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.benefits-panel {
  min-height: 320px;
}
.benefit-card {
  min-height: 165px;
}
.testimonial-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f4f6f8;
}
.service-card img {
    width: 80px;
}
.testimonial-card {
  margin: 0 auto;
}
.testimonial-quote {
  margin: 0 auto;
  color: #010205;
  font-family: Poppins;
  font-size: clamp(1rem, 3vw, 2.4rem);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.testimonial-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-start;
}
.author-avatar img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
    border-radius: 70px;
    border: 2px solid rgba(255, 255, 255, 0.50);
}

.author-info strong {
  display: block;
  color: #010205;
  font-family: Poppins;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
}
.author-info p {
  margin: 0;
  font-family: Poppins;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: none;
}
.btn-test-slider {
  width: 88px;
  height: 56px;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 2vw, 1.3rem);
  transition: all 0.2s ease;
  border-radius: 70px;
  border: 1px solid #010205;
  background: transparent;
}
.btn-test-slider:hover {
  background: #010205;
  color: #ffffff;
  border-color: #010205;
}
.btn-test-slider:hover svg path {
  stroke: #fff;
}

.testimonial-count {
  min-width: 62px;
  text-align: center;
  color: #010205;
  font-family: "Plus Jakarta Sans";
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  text-decoration-line: underline;
  text-underline-offset: auto;
}

@media (max-width: 991px) {
  .testimonial-row {
    flex-direction: column;
    align-items: self-start;
  }
  .testimonial-controls {
    width: 100%;
  }
}
.footer-cta-section {
  background: linear-gradient(135deg, #0f3571 0%, #102d5d 100%);
}
.site-footer {
  background: #f8f8f8;
}
.footer-inner {
  border-radius: 40px;
  border: 0 solid rgba(13, 12, 12, 0.15);
  background: #f2f2f2;
  padding: 48px;
}
.footer-logo {
  max-width: 190px;
  height: auto;
}
.footer-label {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d0c0c;
  font-family: Poppins;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.footer-support-link {
  display: block;
  margin-top: 0;
  text-decoration: none;
  color: #0d0c0c;
  font-family: Poppins;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration-line: none;
}
.footer-support-link:hover {
  color: #13679f;
}
.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
}
.footer-links-grid a {
  display: inline-block;
  text-decoration: none;
  color: #0d0c0c;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.footer-links-grid a:hover {
  color: #13679f;
}
.footer-app-btn {
  width: 100%;
  max-width: 220px;
  display: block;
}
.footer-bottom {
  border-color: rgba(15, 23, 42, 0.08);
}
.footer-bottom-links a {
  text-decoration: none;
  color: #0d0c0c;
  font-family: Poppins;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  text-decoration-line: underline;
}
.footer-bottom-links a:hover {
  color: #0f172a;
}
.footer-bottom p {
  color: #0d0c0c;
  font-family: Poppins;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.legal-page-hero {
  min-height: 42vh;
  padding: 140px 0 72px;
  background:
    linear-gradient(135deg, rgba(7, 16, 61, 0.94) 0%, rgba(18, 101, 156, 0.92) 100%),
    url("../img/hero-bg-img.png") center right / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.legal-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(247, 37, 44, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.16), transparent 30%);
  pointer-events: none;
}
.legal-page-shell {
  position: relative;
  z-index: 1;
}
.legal-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
}
.legal-page-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #f7252c;
  border-radius: 999px;
}
.legal-page-title {
  margin-top: 1rem;
  max-width: 820px;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.legal-page-copy {
  max-width: 720px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.8;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.legal-meta-item {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
  font-size: 0.95rem;
  font-weight: 600;
}
.legal-content-section {
  padding: 72px 0 88px;
  background:
    linear-gradient(180deg, #f7f9fd 0%, #f3f7fb 100%);
}
.legal-card {
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 16, 61, 0.08);
  border: 1px solid rgba(18, 101, 156, 0.08);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
}
.legal-section {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.legal-section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}
.legal-section h2 {
  color: #010205;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.legal-section h3 {
  color: #010205;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.legal-section p,
.legal-section li {
  color: #334155;
  font-size: 1rem;
  line-height: 1.85;
}
.legal-section ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}
.legal-sidebar {
  position: sticky;
  top: 112px;
}
.legal-nav {
  display: grid;
  gap: 0.75rem;
}
.legal-nav a {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: #f7f9fd;
  color: #0d0c0c;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(18, 101, 156, 0.08);
}
.legal-nav a:hover {
  background: #eef7fc;
  color: #13679f;
}
.legal-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #fff7f7;
  border: 1px solid rgba(247, 37, 44, 0.12);
  color: #7a1c20;
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .footer-inner {
    padding: 3rem 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .footer-inner {
    padding: 2rem 1.5rem;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
  .footer-app-btn {
    max-width: 100%;
  }

}
@media (max-width: 991px) {
  .legal-page-hero {
    min-height: auto;
    padding: 120px 0 56px;
  }
  .legal-content-section {
    padding: 56px 0 72px;
  }
  .legal-sidebar {
    position: static;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 575px) {
  .legal-meta-item {
    width: 100%;
  }
}
.work-section,
.testimonial-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url("../img/bg-noise.png") center right / cover no-repeat;
}
.work-dics {
  color: #737373;
  font-family: Poppins;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-style: normal;
  font-weight: 300;
  line-height: 200%;
}
.work-image img {
  border-radius: 35px;
}

.app-dawld-section img {
  height: 54px;
}
@media (max-width: 991px) {
  .hero-section {
    padding-top: 140px;
  }
  .service-shap {
    display: none;
  }
 
  .hero-section::before {
    width: 100%;
    top: 0;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(2.2rem, 6vw, 2.7rem);
  }
  .hero-image-wrapper {
    padding-left: 0;
  }
  .services-card {
    position: relative;
    padding: 30px;
  }
  .hero-section {
    padding-top: 140px;
    min-height: 70vh;
  }
  .hero-card {
    padding: 1.5rem;
  }
  .about-section .rounded-circle {
    width: 140px;
    height: 140px;
  }
  .section-title {
    line-height: 1.4;
  }
  .section-title br {
    display: none;
  }
  .service-card h3 {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
  }
  .service-card {
    min-height: auto;
  }
  .service-card {
    min-height: auto;
  }
  .benefits-section {
    overflow-x: hidden;
  }
  .benefits-section .row.g-5,
  .about-section .row.g-5 {
    margin-left: 0;
    margin-right: 0;
  }
  .benefits-section .row.g-5 > [class*="col-"],
  .about-section .row.g-5 > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  img#headerLogo {
    width: 80px;
  }
  .site-header {
    padding: 0.7rem 0 !important;
  }
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }
  .btn-outline-light {
    background: #22659c;
  }
    .benefits-panel-bg { 
    bottom: 8%;
    left: 22%;
}
.benefits-panel-bg img {
    width: 240px; 
}
.btn-test-slider {
    width: 88px;
    height: 40px; 
}
.service-card img {
    width: 40px;
}
}
