@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --accent: #091435;
  --muted: #6b6b6b;
  --logo-gap: 32px; /* gap between logos */
  --logo-min-width: 180px;
  --logo-max-width: 280px;
}
body {
  font-family: "DM Sans", sans-serif;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.hero-heading {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 48.75px;
  line-height: 59px;

  color: #202020;
}
.subtext {
  color: var(--muted);
  max-width: 640px;
}

/* image card on right */
.phone-card {
  width: 253px;
  border-radius: 16px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  overflow: hidden;
  transform: translateX(-40px);
  right: auto !important;
  left: 97px !important;
}

.hero-visual {
  position: relative;
}
.hero-photo {
  width: 380px;
  border-radius: 18px;
  overflow: hidden;
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); */
}

.rating .star {
  color: #f6c21a;
}
.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}
.logo-img{
  width: 200px;
}
.nav-link {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14.4px;
  line-height: 17px;

  color: #000000;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;

  color: #000000;
}
@media (max-width: 991px) {
  .hero {
    min-height: unset;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .hero-photo {
    width: 320px;
  }
  .phone-card {
    display: none;
  }
  .hero-heading {
    font-size: 2.6rem;
  }
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  width: calc(150px * 12); /* (item width × duplicated count) */
  animation: slide 25s linear infinite;
}

.slider {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  padding: 18px 12px;
}

/* the moving track (positioned absolute so we can animate left) */
.track-wrap {
  position: relative;
  width: 100%;
  height: 64px; /* adjust to taste; keeps consistent visual height */
}

.track {
  position: absolute;
  top: 0;
  left: 0; /* will be manipulated by jQuery */
  display: flex;
  align-items: center;
  /* keep items on a single line */
  white-space: nowrap;
  will-change: transform, left;
}

.item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  margin-right: var(--logo-gap);
  box-sizing: border-box;
  min-width: var(--logo-min-width);
  max-width: var(--logo-max-width);
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 18px);
  color: #111;
}

.item img {
  display: block;
  width: 122px;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(100) brightness(1);
}

/* small screens: reduce height */
@media (max-width: 600px) {
  .track-wrap {
    height: 52px;
  }
  .item img {
    width: 28px;
    height: 28px;
  }
}

/* subtle pause indicator if user hovers */
.slider:hover .track {
  opacity: 0.95;
}

/* ------------------- */

.card-custom {
  border: 0;
  border-radius: 14px;
  /* box-shadow: 0 6px 20px rgba(10,10,10,0.06); */
  overflow: hidden;
  height: 220px;
  background: #f8f8f8;
}

/* first card - image fits, keep rounded corners */
.first-card img {
  width: 100%;

  object-fit: cover;
  display: block;
}

/* carousel card styling */
.carousel-card {
  /* padding: 18px; */
}
.carousel-inner {
  border-radius: 14px;
  overflow: hidden;
}
.carousel-item {
  height: 250px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #fff;
  padding: 28px;
}
.slide-content {
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slide-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14.4202px;
  line-height: 20px;

  color: #ebebeb;
}
.slide-body {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14.4202px;
  line-height: 20px;
  padding-bottom: 17px;
  color: #ebebeb;
}

/* three different slide backgrounds (gradient) */
.bg-slide-1 {
  /* background: url(../img/bg-1.png); */
  background: #091435;
  background-size: cover;
}
.bg-slide-2 {
  background: linear-gradient(135deg, #203a7a 0%, #5fa0ff 100%);
}
.bg-slide-3 {
  background: linear-gradient(135deg, #7b3b9d 0%, #f08fb6 100%);
}

/* dark card (third) */
.dark-card {
  background: #000 url(/img/sytra-bg.svg) no-repeat;
  background-position: right top;
  color: #fff;
  padding: 26px;
  border-radius: 14px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.logo-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #7fe0c1;
}
.stat {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 30.0421px;
  line-height: 36px;
  margin-top: 104px;
  color: #ebebeb;
}
.stat-sub {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14.4202px;
  line-height: 17px;

  color: #ebebeb;
}
.btn-outline-light.custom {
  background: #fff;
  color: #111;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  /* Read the story */

  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 14.4202px;
  line-height: 18px;
  /* or 125% */
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;

  color: #202020;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* responsive tweaks */
@media (max-width: 991px) {
  .section-title {
    margin-top: 36px;
  }
  .card-custom {
    min-height: 220px;
  }
  .carousel-item {
    padding: 18px;
    min-height: 220px;
  }
  .dark-card {
    min-height: 220px;
    padding: 18px;
  }
}

.section-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 36.0506px;
  line-height: 44px;
  text-align: center;
  color: #202020;
  margin-bottom: 38px;
}
.help-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 100px;
  border: unset;
}
.carousel-indicators {
  position: absolute;
  right: auto;
  bottom: 16px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 0;
  left: 25px;
}

/* ___________________ */

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

.heading {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  margin-bottom: 12px;
}

.subtext {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 14.4px;
  line-height: 20px;

  color: #6b6b6b;
}

/* Accordion custom look */
.accordion-button {
  background: #fbfbfb;
  border: 0;
  padding: 22px 20px;
  font-weight: 600;
  color: #111;
  box-shadow: none;
  border-radius: 6px;
}
.accordion-item + .accordion-item {
  margin-top: 12px; /* space between items */
}
.accordion-button::after {
  /* keep default chevron but darker */
  filter: none;
}

.explore-btn {
  margin-top: 28px;
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(225, 86, 68, 0.12);
  text-decoration: none;
  align-self: flex-start;
  display: inline-flex;
      align-items: center;
    gap: 6px;
}

/* Right image card */
.image-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(0, 0, 0, 0.02)
  );
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 767.98px) {
  .image-card {
    min-height: 260px;
    margin-top: 20px;
  }
}

/* Remove default icon */
.accordion-button::after {
  display: none !important;
}

/* Add custom + icon */
.accordion-button {
  position: relative;
  padding-right: 45px;
}
.accordion-button::before {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}

/* Show minus when expanded */
.accordion-button:not(.collapsed)::before {
  content: "−";
  font-size: 28px;
}
.helping-mordern-tech-wrap {
  padding:60px 0 60px 0;
      /* margin-bottom: 70px; */
}
.companies-wrap {
  padding: 40px 0 0px 0;
}
.unlimited-feature-wrap {
  display: flex;
}
.unlimited-feature-wrap {
  display: flex;
  background: #f0f0f5;
  padding: 27px;
  border-radius: 20px;
}
.ufw-1 {
  display: flex;
  flex-direction: column;
  padding-right: 30px;
  justify-content: space-between;
}
.ufw-1 .ufw-1-inner {
  flex-direction: column;
}
.ufw-1 > div {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.auto {
    display: flex;
    flex-direction: column;
    width: 48%;
}
.auto img{
 
  margin-bottom: 6px;
}
.ufw-1 h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18.0253px;
  line-height: 22px;
  /* identical to box height */

  color: #202020;
}
.ufw-1 p {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 14.4202px;
  line-height: 20px;
  color: #6b6b6b;
}
.section-title-desc {
  width: 40%;
  text-align: center;
}
.section-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.section-title-wrap .section-title {
  margin-bottom: 10px;
}

.task-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 16px;
}
/* .task-marquee:before {
  content: "";
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  z-index: 9;
}
.task-marquee:after {
  content: "";
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  z-index: 9;
} */
/* COMMON STYLES */
.task-marquee-slide {
  display: flex;
  align-items: center;
  gap: 10px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.task-marquee-slide:hover {
  animation-play-state: paused;
}

@keyframes slide-right-to-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes slide-left-to-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Assign directions */
.right-to-left {
  animation-name: slide-right-to-left;
  animation-duration: 30s;
}

.left-to-right {
  animation-name: slide-left-to-right;
  animation-duration: 30s;
}

/* BOX DESIGN */
.mar-box {
  background: #343434;
  color: #bfbfbf;
  font-size: 14px;
  border-radius: 6px;
  padding: 7px 12px;
  width: 230px;
  /* white-space: normal; */
  line-height: 16px;
}
.task-assignement-wrap {
  background: #202020;
  border-radius: 15px;
  height: 362px;
}
.task-assignement-wrap h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18.0253px;
  line-height: 22px;
  /* identical to box height */

  color: #ffffff;
}
.task-assignement-wrap h4 {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 14.4202px;
  line-height: 19px;
  /* identical to box height */

  color: #bfbfbf;
}
.task-assignement-wrap span {
  padding: 37px 20px 32px;
  display: block;
}
.launch-calendar-img-cont img {
  border-radius: 16px;
  width: 100%;
  height: 412px;
}
li,
ul {
  list-style: none;
  padding: 0;
}
.launch-calendar-wrap ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.launch-calendar-wrap ul li p {
  margin: 0;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 14.4202px;
  line-height: 19px;
  /* identical to box height */
  color: #6b6b6b;
}
.launch-calendar-wrap ul li span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 10.6406px;
  line-height: 13px;
  /* identical to box height */

  color: #6b6b6b;
}
.launch-calendar-wrap p {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 14.4202px;
  line-height: 20px;

  color: #6b6b6b;
}
.centralized-launch-calendar {
  background: #f5f3f0;
  border-radius: 16px;
  padding: 20px;
  height: 415px;
  margin-left: 0;
}
.track-status {
  display: flex;
  flex-direction: column;
}
.jose-luis-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.centralized-launch-calendar ul {
  margin-bottom: 0;
}

.for-fast-moving-info h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 36.4819px;
  line-height: 44px;

  color: #202020;
}
.for-fast-moving-info p {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 14.5928px;
  line-height: 19px;
  margin-bottom: 28px;
  color: #6b6b6b;
}
.automated-vendor h4 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18.241px;
  line-height: 22px;

  color: #202020;
}
.automated-vendor p {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 14.5928px;
  line-height: 19px;
  letter-spacing: -0.02em;

  color: #6b6b6b;
  margin: 0;
}
.automated-vendor {
  width: 50%;
  flex-direction: column;
  display: flex;
  gap: 12px;
}
.automated-vendor img {
  width: 30px;
}
.automated-vendor-wrapper {
  display: flex;
  background: #f8f8f8;
  border-radius: 15px;
  padding: 20px;
  width: 85%;
}
.for-fast-moving-info {
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}
.for-fast-moving-wrap {
    padding: 69px 0;
}
.discover-why-box {
  background: url(../img/why-bg.png);
  border-radius: 20px;
  padding: 30px;
}
.discover-why-wrap h2 {
 font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 36.4819px;
    line-height: normal;
    color: #202020;
    padding-bottom: 14px;
}
.discover-why-box h4 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 36.4819px;
  line-height: 44px;

  color: #202020;
}
.discover-why-box p {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 14.5928px;
  line-height: 21px;

  color: #6b6b6b;
}
.org-bt {
  background: #e96450;
}

.pricing-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  flex: 1;
  border-radius: 18px;
  padding: 32px;
  background: #fff;
  /* border: 1px solid #eee; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card p.desc {
  color: #555;
  font-size: 15px;
  margin-bottom: 20px;
}

.price {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  background: #f3f3f3;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

ul.features {
  list-style: none;
  margin-bottom: 30px;
}

ul.features li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #222;
}

ul.features li::before {
  content: "★";
  color: #111;
  font-size: 14px;
  margin-top: 2px;
}

.btn {
  text-decoration: none;
  text-align: center;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-dark {
  background: #0b1533;
}

.btn-dark:hover {
  background: #020817;
}

.btn-orange {
  background: #f06449;
}

.btn-orange:hover {
  background: #e0533a;
}

/* Popular Card */
.popular {
  background: url(../img/growth-plan-bg.png) no-repeat;
  border: none;
  position: relative;
  transform: scale(1.05);
  background-size: cover;
}

.badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #0b1533;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .pricing-wrapper {
    flex-direction: column;
  }

  .popular {
    transform: scale(1);
  }
}
.price.white {
  background: #fff;
}

.article-card img {
  border-radius: 20px;
  object-fit: cover;
  height: 320px;
  width: 100%;
}

.meta {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 10.6406px;
  line-height: 13px;
  /* identical to box height */
  padding: 15px 0 15px;
  color: #6b6b6b;
}

.article-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18.241px;
  line-height: 22px;
  margin-bottom: 15px;
  color: #202020;
   text-decoration: none;
   display: block;
}

.article-desc {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 14.5928px;
  line-height: 21px;
  letter-spacing: -0.02em;
  color: #6b6b6b;
}
.news-wrapper {
  padding: 30px 0 60px 0;
}
.news-wrapper h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 36.4819px;
  line-height: 44px;

  color: #202020;
  margin-bottom: 20px;
}

.demo-wrapper {
  background: #091435;
  border-radius: 18px;
  overflow: hidden;

  margin: 50px auto;
  padding: 20px;
}

.demo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.demo-form {
  padding: 0 50px;
  color: #fff;
}

.demo-form h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.demo-form p {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 14.5928px;
  line-height: 21px;

  color: #bfbfbf;
}

.demo-form .form-control {
  height: 28.88px;
  background: #303440;
  border-radius: 7.6004px;
  border: none;
  font-size: 10px;
}
.demo-form textarea.form-control {
  height: 45px;
}
.form-control::placeholder {
  color: #9aa0c4;
}

.form-control:focus {
  background: #2a314d;
  color: #fff;
  box-shadow: none;
  border: 1px solid #f16450;
}

.btn-demo {
  background: #f16450;
  color: #fff;
  padding: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  height: 35px;
}

.btn-demo:hover {
  background: #e45542;
}

.form-check-label {
  font-size: 13px;
  color: #b6bbd6;
}

@media (max-width: 768px) {
  .demo-form {
    padding: 15px;
  }
}
.demo-form h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 36.4819px;
  line-height: 44px;
  color: #ffffff;
}
.demo-form label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 10.6406px;
  line-height: 13px;
  /* identical to box height */
  color: #ffffff;
  margin-bottom: 10px;
}
.demo-form label.terms {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 9.12048px;
  line-height: 12px;
  /* identical to box height */

  color: #bfbfbf;
  margin: 0;
  position: relative;
  top: -2px;
}

.footer {
  background: #ffffff;
  padding: 0 0 30px;
}

.footer-logo {
  font-size: 32px;
  font-weight: 700;
  color: #f16450;
  letter-spacing: 1px;
}

.footer-desc {
  margin-top: 20px;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 14.5928px;
  line-height: 21px;
  width: 70%;
  color: #6b6b6b;
}

.social-icons a {
  color: #0a0f2c;
  font-size: 20px;
  margin-right: 18px;
  text-decoration: none;
}

.footer h6 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12.1606px;
  line-height: 209%;
  /* or 25px */

  color: #202020;
}

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

.footer ul li {
  margin-bottom: 5px;
}

.footer ul li a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 12.1606px;
  /* or 25px */
  text-decoration: none;
  color: #6b6b6b;
}

.footer ul li a:hover {
  color: #000;
}

.footer-bottom {
  border-top: 1px solid #e5e5e5;
  margin-top: 60px;
  padding-top: 20px;
  font-size: 14px;
  color: #6b6b6b;
}

.footer-bottom a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 12.1606px;
  line-height: 15px;
  text-decoration: none;
  color: #6b6b6b;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-bottom {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 13.6807px;
  line-height: 14px;
  /* identical to box height, or 100% */
  letter-spacing: -0.01em;

  /* Neutral/600 */
  color: #7a7d9c;
}
.footer-logo img {
  height: 40px;
}

.automate {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;

  color: #202020;
}

.booking-p-bt,
.booking-p-bt:hover {
  /* Juicy ones 4 */

  /* Auto layout */
  display: flex;
  align-items: flex-start;
  padding: 8.25px 10.5px;
  gap: 7.5px;
  width: 252px;
  height: 44px;

  background: #e96450;
  border-radius: 4.5px;

  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 14.4px;
  line-height: 18px;
  /* identical to box height, or 125% */
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;

  color: #ffffff;
}

.container {
  max-width: 90%;}


.centralized-launch-calendar {
    background: #f5f3f0;
    border-radius: 16px;
    padding: 20px;
    height: 412px;
    margin-left: 0;
}
.for-fast-moving-img img{
  width: 100%;
}

.dropdown-toggle::after {
       background: url(../img/drop-arrow.svg);
    border: none;
    content: "";
    width: 12px;
    height: 6px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 5px;
    position: relative;
    top: 3px;
}
.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: #F8F8F8;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-item{
  background-color: #F8F8F8;
          border-radius: 6px;

}
.accordion-button:not(.collapsed){
  box-shadow: none;
}
.accordion-body{
      padding-top: 0;
      border-radius: 6px;
      font-size: 14px;
}
.accordion-button:focus{
  box-shadow: none;

}
.accordion-button{
background: #F8F8F8;
font-size: 18px;
}
.navbar-collapse {
    padding-left: 74px;
}
.helping-mordern-tech-wrap .carousel-indicators{
display: none;
}



 .recoup-calculator .container {
    width: 100%;
    max-width: 520px;
    background: var(--card-bg);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    padding: 22px 20px 20px;
}
 .recoup-calculator .header {
      margin-bottom: 16px;
      text-align: center;
      position: relative; /* so we can absolutely-position the language switch inside */
    }
    .recoup-calculator .logo {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 10px;
    }

    /* Compact language switcher in top-right, overlayed so it doesn't affect centering/layout */
    .recoup-calculator .language-switch {
      position: absolute;
      top: 0;
      right: 0;
      text-align: right;
      font-size: 11px;
    }
    /* Visually hidden label for accessibility */
    .recoup-calculator .language-switch label {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .recoup-calculator .language-switch select {
      padding: 3px 8px;
      font-size: 11px;
      border-radius: 999px;
      border: 1px solid #e5e7eb;
      outline: none;
      width: auto;
      min-width: 72px;
      background-color: rgba(255, 255, 255, 0.9);
      cursor: pointer;
    }
    .recoup-calculator .language-switch select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(17,24,39,0.08);
    }

    .recoup-calculator h1 {
      font-size: 20px;
      margin: 0 0 4px;
    }
    .recoup-calculator .subtitle {
      font-size: 13px;
      color: var(--text-muted);
      margin: 0;
    }
    .recoup-calculator .form-section {
      margin-top: 16px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
    }
    .recoup-calculator label {
      display: block;
      font-size: 12px;
      margin-bottom: 4px;
    }
    .recoup-calculator input, .recoup-calculator select {
      width: 100%;
      padding: 8px 10px;
      font-size: 14px;
      border-radius: 8px;
      border: 1px solid #d1d5db;
      margin-bottom: 10px;
      outline: none;
    }
    .recoup-calculator input:focus, .recoup-calculator select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(17,24,39,0.08);
    }
    .ecoup-calculator.row {
      display: flex;
      gap: 10px;
    }
    .row .field { flex: 1; }
    .recoup-calculator .btn {
      width: 100%;
      padding: 10px 14px;
      font-size: 14px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      background: var(--accent);
      color: #ffffff;
      font-weight: 500;
      margin-top: 4px;
    }
    .recoup-calculator .btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
.recoup-calculator .results {
      margin-top: 18px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
      font-size: 14px;
    }
   .recoup-calculator .results h2 {
      font-size: 15px;
      margin: 0 0 8px;
    }
    .recoup-calculator .metric {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 6px;
      column-gap: 8px;
    }
    .recoup-calculator .metric-label {
      font-size: 13px;
      color: var(--text-muted);
    }
    .recoup-calculator .metric-value {
      font-weight: 600;
      text-align: right;
    }
    .recoup-calculator .cta {
      margin-top: 14px;
      text-align: center;
    }
    .recoup-calculator .cta a {
      display: inline-block;
      padding: 9px 16px;
      border-radius: 999px;
      background: #111827;
      color: #ffffff;
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
      transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    }
    .recoup-calculator .cta a:hover {
      opacity: 0.95;
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
    }

    /* Green background for recovery section */
    .recoup-calculator .results.recovery {
      background: rgba(182, 245, 168, 0.75);
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.05);
      margin-top: 20px;
      margin-left: -12px;
      margin-right: -12px;
      padding: 20px 12px 20px 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    }
    .recoup-calculator .results.recovery h2 {
      font-size: 16px;
      margin-bottom: 10px;
    }

    @media (max-width: 480px) {
      .recoup-calculator .language-switch {
        top: 4px;
        right: 4px;
      }
    }

    .article-desc a {
    color: #E96450;
}
.blog-title {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-main img{
  border-radius: 12px;
}
.one-j-blog-content{
  padding-top: 40px;
}
.one-j-blog-content p{
     font-family: "Inter";

    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
   
    color: #6B6B6B;
}
.one-j-blog-content h2{
     font-family: "Inter";

    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 23px;
   
       margin-bottom: 20px;
    margin-top: 20px;
}
.one-j-blog-content li{
  list-style: disc;
     font-family: "Inter";

    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
   margin-bottom: 13px;
    color: #6B7280;
}
.one-j-blog-content ul{
      margin-left: 50px;
}
.main-nav {
  transition: all 0.35s ease;
}

.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #fff;
  transform: translateY(0);
}
.blog-details-wrapper {
    padding-top: 40px;
}

 .mega-box {
      display: none;
         position: fixed;
    inset: 0;
    background: #fff;
    z-index: 999;
    width: 90%;
    margin: 0 auto;
    top: 6px;

    height: 690px;

background: #FFFFFF;
box-shadow: 0px 6px 44px rgba(45, 33, 122, 0.1), 0px 2px 6px rgba(23, 15, 73, 0.16);
border-radius: 37px;

    }
.for-mob{
display: none;
}
    .mega-content {
  
    /* border-radius: 20px; */
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 40px;
    position: relative;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: none;
      background: #000;
      color: #fff;
      font-size: 20px;
      line-height: 1;
    }


    /* ===== MEGA MENU ===== */
.mega-menu{
  position:fixed;
  inset:0;
  background:#fff;
  z-index:1050;
  overflow-y:auto;
}

.mega-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  padding:32px 48px;
}

.logo{
  font-size:32px;
  font-weight:700;
  color:var(--brand);
}

.logo small{
  display:block;
  font-size:12px;
  color:#9ca3af;
  margin-top:4px;
  letter-spacing:.04em;
}

.close-btn{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#111;
  color:#fff;
  border:none;
  font-size:20px;
}

/* ===== MENU GRID ===== */
.mega-content{
  padding:0 64px 48px;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:80px;
}

.menu-title{
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 15.0353px;
line-height: 15px;
/* or 100% */
letter-spacing: 0.08em;
text-transform: uppercase;

color: #E96450;
margin-bottom: 30px;
}

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

.menu-list li{
  margin-bottom:14px;
}
.menu-list a{

font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 14.4339px;
line-height: 15px;
/* or 104% */
text-decoration: none;
color: #202020;

}

.menu-list strong{
  color:#1f3a5f;
}

/* ===== QUICK LINKS ===== */
.quick-links{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.quick-card{
  background:#F7F9FB;
  border-radius:var(--radius);
  padding:8px 24px;
  display:flex;
  gap:16px;
  align-items:center;
    border-radius: 12px;
    
}

.quick-icon{
  width:48px;
  height:48px;
  border-radius:12px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.quick-card h6{
  margin:0;
  font-weight:600;
}

.quick-card span{
  font-size:14px;
  color:var(--muted);
}
.quick-card a{
  font-size:14px;
  color:var(--muted);
  text-decoration: none;
}
/* ===== CTA ===== */
.demo-box{
  margin-top:64px;
  padding:48px 0;
  border-top:1px solid #e5e7eb;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.demo-box h4{

font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 22.553px;
line-height: 27px;
text-transform: uppercase;

color: #E96450;


}

.demo-box p{
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 14.4339px;
line-height: 141.59%;
/* or 20px */

color: #6B6B6B;


}

.demo-btn{
  background:var(--brand);
  color:#fff;
  padding:14px 32px;
  border-radius:8px;
  border:none;
  font-weight:600;
}
.open-mega{
  padding: 20px;
  border: none;
  background: none;
}
.unlimited-feature-wrap > img{
  width:399px
}

.pricing-link{
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 14.4px;
    line-height: 17px;
    color: #000000;
    flex: none;
    order: 0;
    flex-grow: 0;
    color: #000000;
    text-decoration: none;
    padding: 0 12px;
}
.live-walk{
  cursor: pointer;
}