:root {
  --purple: #5a1851;
  --purple2: #8a2c7c;
  --green: #6fa22f;
  --lime: #9ad65a;
  --ink: #0b1220;
  --body: #435066;
  --muted: #768196;
  --line: #e6eaf0;
  --soft: #f7f8fa;
  --navy: #08111f;
  --shadow: 0 28px 90px rgba(15, 23, 42, 0.11);
  --radius: 30px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI,
    sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
.wrap {
  width: min(1260px, calc(100% - 64px));
  margin: auto;
}
section {
  padding: 116px 0;
}
.kicker {
  font-size: 18px;
  letter-spacing: 1.55px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 900;
  display: block;
  margin-bottom: 20px;
}
h1 {
  font-size: clamp(39px, 4.47vw, 68px);
  letter-spacing: -4px;
  line-height: 0.94;
  font-weight: 900;
}
h2 {
  font-size: clamp(32px, 3.68vw, 58px);
/*  letter-spacing: -2.4px;
  line-height: 1.02;*/
  font-weight: 900;
}
h3 {
  font-size: 24px;
  letter-spacing: -0.7px;
  font-weight: 900;
}
.lead {
  font-size: 19px;
  line-height: 1.75;
  color: var(--body);
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 234, 240, 0.8);
  z-index: 99;
}
.nav .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  display: flex;
  align-items: center;
  min-width: 255px;
}
.brand-logo img {
  width: 245px;
  height: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 27px;
  align-items: center;
  font-size: 15px;
  font-weight: 800;
  color: #59667a;
}
.nav-links a:hover {
  color: var(--purple);
}
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(90, 24, 81, 0.18);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.25s;
}
.btn.primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 16px 36px rgba(90, 24, 81, 0.22);
}
.btn.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn:hover {
  transform: translateY(-2px);
}
.hero {
  min-height: 100vh;
  padding: 168px 0 72px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 84px 0 0 0;
  background: url("../images/backgrounds/hero.webp") 62% center/cover
    no-repeat;
  z-index: 0;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 84px 0 0 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.94) 30%,
    rgba(255, 255, 255, 0.68) 43%,
    rgba(255, 255, 255, 0.2) 58%,
    rgba(255, 255, 255, 0) 78%
  );
  z-index: 1;
  pointer-events: none;
}
.hero > .wrap {
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: block;
  max-width: 780px;
}
.eyebar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(230, 234, 240, 0.75);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 8px 15px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: #647084;
}
.eyebar span {
  color: var(--green);
}
.hero .lead {
  max-width: 690px;
  margin-top: 28px;
  color: rgba(11, 18, 32, 0.76);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  max-width: 820px;
  border: 1px solid rgba(11, 18, 32, 0.1);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
}
.proof-card {
  border: 0;
  border-right: 1px solid rgba(11, 18, 32, 0.1);
  border-radius: 0;
  padding: 18px 28px;
  background: transparent;
}
.proof-card:last-child {
  border-right: 0;
}
.proof-card b {
  display: block;
  font-size: 30px;
  color: var(--purple);
  letter-spacing: -1px;
}
.proof-card span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-visual {
  display: none;
}
.visual-title,
.dashboard {
  display: none;
}
.trusted {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}
.trusted-title {
  text-align: center;
  color: #8792a5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 6px 0 12px;
}
.logo-marquee:before,
.logo-marquee:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee:before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}
.logo-marquee:after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: logoScroll 48s linear infinite;
  will-change: transform;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.client-logo {
  height: 96px;
  min-width: 190px;
  border: 1px solid #eef2f6;
  border-radius: 22px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  position: relative;
  transition: 0.25s;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.02);
  flex: 0 0 auto;
}
.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}
.client-logo img {
  max-height: 66px;
  max-width: 170px;
  width: auto;
  object-fit: contain;
}
.client-logo span {
  display: none;
}
.section-head {
  display: block;
  text-align: center;
  /*grid-template-columns: 0.82fr 1fr;
  gap: 72px;
  align-items: end;*/
  margin-bottom: 58px;
}
.section-head h2{
  margin-bottom: 24px;
}

.about {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
}
.about-card {
  border-radius: 34px;
  background: linear-gradient(135deg, #fff, #f9fafb);
  border: 1px solid var(--line);
  padding: 44px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}
.about-card p {
  margin-top: 20px;
  color: var(--body);
  line-height: 1.78;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.about-stat {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  transition: all ease 0.4s;
  background: #fff;
}
.about-stat b {
  font-size: 34px;
  color: var(--purple);
}
.about-stat span {
  display: block;
  color: #6c768a;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 6px;
}
.solutions {
  background: var(--soft);
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.solution-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  min-height: 358px;
  transition: 0.28s;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.solution-media {
  height: 128px;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(90, 24, 81, 0.16),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(111, 162, 47, 0.16),
      transparent 32%
    ),
    linear-gradient(135deg, #fff, #f2f5f8);
  padding: 24px;
  position: relative;
}
.ui-chip {
  display: inline-flex;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.mini-ui {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 7px;
}
.mini-ui span {
  height: 7px;
  border-radius: 999px;
  background: #e7ecf3;
}
.mini-ui span:nth-child(2) {
  width: 80%;
  background: linear-gradient(90deg, var(--purple), var(--green));
}
.mini-ui span:nth-child(3) {
  width: 58%;
}
.solution-copy {
  padding: 30px;
}
.solution-copy p {
  color: var(--body);
  line-height: 1.65;
  margin-top: 12px;
  font-size: 14px;
}
.process-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  align-items: center;
}
.process-panel {
  border-radius: 36px;
  background: linear-gradient(135deg, var(--navy), #28122b);
  color: #fff;
  padding: 46px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.process-panel p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-top: 18px;
}
.process-panel h2{
  font-size: 30px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  min-height: 150px;
  position: relative;
  box-shadow: 0 10px 40px rgba(17, 24, 39, 0.04);
  transition: all ease 0.4s;
}
.step:hover{
  border-color: var(--green);
  transition: all ease 0.4s;
}
.step b {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #f2e7f0;
  color: var(--purple);
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 18px;
}
.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 8px;
}
.industries {
  background: #fff;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry-card {
  min-height: 390px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background: #111;
  box-shadow: var(--shadow);
}
.industry-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(8, 17, 31, 0.66)
  );
  z-index: 1;
}
.industry-card.health {
  background: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1000&q=90")
    center/cover;
}
.industry-card.retail {
  background: url("https://images.unsplash.com/photo-1604719312566-8912e9227c6a?auto=format&fit=crop&w=1000&q=90")
    center/cover;
}
.industry-card.insurance {
  background: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1000&q=90")
    center/cover;
}
.industry-card.fmcg {
  background: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1000&q=90")
    center/cover;
}
.industry-card.hospitality {
  background: url("https://image.pollinations.ai/prompt/photorealistic%20luxury%20hospitality%20sector%20image%2C%20bright%20five%20star%20hotel%20lobby%20interior%2C%20elegant%20reception%20area%2C%20marble%20floors%2C%20warm%20natural%20daylight%2C%20premium%20lounge%20seating%2C%20modern%20luxury%20resort%20aesthetic%2C%20clean%20light%20theme%2C%20no%20dark%20lighting%2C%20no%20neon%2C%20corporate%20Fortune%20500%20website%20photography%2C%20ultra%20realistic?width=1000&height=900&seed=44112&nologo=true&enhance=true")
    center/cover;
}
.industry-card.group {
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1000&q=90")
    center/cover;
}
.industry-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #fff;
  z-index: 2;
}
.industry-content small {
  color: var(--lime);
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.industry-content h3 {
  font-size: 28px;
  color: #fff;
  margin-top: 12px;
}
.industry-content p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-top: 10px;
}
.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.pill-row span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  font-weight: 800;
  transition: all ease 0.4s;
}
.pill-row span:hover{
  background: var(--green);
  transition: all ease 0.4s;
}
.stories {
  background: var(--soft);
}
.story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 32px;
}
.story:nth-child(even) {
  grid-template-columns: 1.05fr 0.95fr;
}
.story:nth-child(even) .story-img {
  order: 2;
}
.story-img {
  min-height: 410px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.story.nesto .story-img {
  background: url("https://images.unsplash.com/photo-1578916171728-46686eac8d58?auto=format&fit=crop&w=1100&q=85")
    center/cover;
}
.story.lulu .story-img {
  background: url("https://image.pollinations.ai/prompt/photorealistic%20clean%20light%20themed%20enterprise%20document%20digitization%20center%2C%20large%20volume%20paper%20documents%2C%20organized%20archive%20boxes%2C%20high%20speed%20production%20scanners%2C%20stacks%20of%20invoices%20and%20files%2C%20operators%20not%20visible%20or%20minimal%20blurred%20background%2C%20bright%20white%20office%20lighting%2C%20modern%20document%20processing%20room%2C%20premium%20corporate%20style%2C%20no%20clutter%2C%20no%20dark%20lighting%2C%20Fortune%20500%20enterprise%20operations%2C%20sharp%20focus%2C%20ultra%20realistic%20photography?width=1100&height=780&seed=77142&nologo=true&enhance=true")
    center/cover;
}
.story.galadari .story-img {
  background: url("https://image.pollinations.ai/prompt/photorealistic%20diversified%20conglomerate%20corporate%20headquarters%20image%2C%20modern%20multi%20tower%20business%20campus%2C%20premium%20glass%20office%20buildings%2C%20executive%20corporate%20district%2C%20centralized%20enterprise%20operations%2C%20bright%20daylight%2C%20clean%20light%20theme%2C%20Fortune%20500%20conglomerate%20aesthetic%2C%20no%20neon%2C%20no%20dark%20lighting%2C%20ultra%20realistic%20corporate%20photography?width=1100&height=850&seed=61209&nologo=true&enhance=true")
    center/cover;
}
.story-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-copy small {
  color: var(--green);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.story-copy h3 {
  font-size: 38px;
  line-height: 1.08;
  margin-top: 16px;
}
.story-copy p {
  color: var(--body);
  line-height: 1.75;
  margin-top: 18px;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.story-stats div {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  transition: all ease 0.4s;
}
.story-stats div:hover{
  border-color: var(--green);
  transition: all ease 0.4s;
}
.story-stats b {
  font-size: 26px;
  color: var(--purple);
}
.story-stats span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #6d778a;
  font-weight: 900;
  letter-spacing: 0.7px;
  margin-top: 4px;
}
.healthcare {
  background: #fff;
}
.health-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.health-photo {
  min-height: 600px;
  border-radius: 38px;
  background: linear-gradient(
      180deg,
      rgba(7, 17, 32, 0.05),
      rgba(7, 17, 32, 0.62)
    ),
    url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1200&q=85")
      center/cover;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.health-photo div {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  color: #fff;
}
.health-photo h3 {
  font-size: 40px;
  line-height: 1.05;
  color: #fff;
}
.health-photo p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-top: 14px;
}
.health-list {
  display: grid;
  gap: 14px;
}
.q {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 24px;
  padding: 22px;
}
.q b {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #f2e7f0;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
}
.q h3 {
  font-size: 18px;
}
.q p {
  color: var(--body);
  line-height: 1.6;
  margin-top: 7px;
}
.architecture {
  background: linear-gradient(135deg, var(--navy), #120817);
  color: #fff;
}
.architecture .lead {
  color: rgba(255, 255, 255, 0.66);
}
.architecture h2 {
  color: #fff;
}
.arch-flow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.arch {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  transition: all ease 0.4s;
}
.arch:hover{
  border-color: var(--green);
  transition: all ease 0.4s;
}
.arch b {
  display: block;
  color: var(--lime);
  font-size: 13px;
}
.arch span {
  display: block;
  margin-top: 18px;
  font-weight: 900;
  color: #fff;
}
.timeline-sec {
  background: #fff;
}
.journey {
  border: 1px solid var(--line);
  border-radius: 42px;
  padding: 58px;
  background: radial-gradient(
      circle at 8% 12%,
      rgba(90, 24, 81, 0.07),
      transparent 28%
    ),
    radial-gradient(circle at 90% 8%, rgba(111, 162, 47, 0.1), transparent 26%),
    linear-gradient(135deg, #fff, #fafbfc);
  box-shadow: 0 26px 88px rgba(17, 24, 39, 0.07);
}
.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}
.journey-line:before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 44px;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--green));
  border-radius: 999px;
  opacity: 0.72;
}
.journey-step {
  position: relative;
  text-align: center;
  padding-top: 94px;
  z-index: 1;
}
.flag-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 88px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(230, 234, 240, 0.92);
  box-shadow: 0 18px 54px rgba(17, 24, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  line-height: 1;
  z-index: 2;
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.flag-badge:after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 23px;
  border: 1px solid rgba(90, 24, 81, 0.08);
  pointer-events: none;
}
.flag-badge img {
  width: 58px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  display: block;
}
.journey-step:nth-child(2n) .flag-badge:after {
  border-color: rgba(111, 162, 47, 0.16);
}
.journey-step:hover .flag-badge {
  transform: translateX(-50%) translateY(-6px);
  box-shadow: 0 24px 70px rgba(90, 24, 81, 0.14);
  border-color: rgba(90, 24, 81, 0.2);
}
.journey-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px 14px 18px;
  min-height: 158px;
  box-shadow: 0 14px 44px rgba(17, 24, 39, 0.045);
  transition: all ease 0.4s;

}
.journey-card:hover{
  border-color: var(--green);
  transition: all ease 0.4s;
}
.year {
  font-size: 31px;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: -1px;
}
.country {
  font-size: 16px;
  font-weight: 900;
  margin-top: 5px;
  color: var(--ink);
}
.journey-step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  margin: 9px auto 0;
  max-width: 132px;
}
.why {
  background: var(--soft);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  min-height: 250px;
  transition: all ease 0.4s;
}
.why-card:hover{
  border-color: var(--green) !important;
  transition: all ease 0.4s;
}
.why-card b {
  font-size: 46px;
  color: var(--purple);
  letter-spacing: -1.6px;
}
.why-card h3 {
  margin-top: 22px;
}
.why-card p {
  color: var(--body);
  line-height: 1.65;
  margin-top: 10px;
}

.roi {
  background: linear-gradient(180deg, #fff, #f7f8fa);
  padding: 116px 0;
}
.roi-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}
.roi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 50px rgba(17, 24, 39, 0.05);
  min-height: 178px;
  position: relative;
  overflow: hidden;
}
.roi-card:before {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(90, 24, 81, 0.1),
    rgba(111, 162, 47, 0.14)
  );
}
.roi-card b {
  display: block;
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -2px;
  color: var(--purple);
  line-height: 0.9;
}
.roi-card span {
  display: block;
  margin-top: 16px;
  color: var(--body);
  font-weight: 800;
  line-height: 1.45;
}
.roi-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(17, 24, 39, 0.06);
}
.roi-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-bottom: 1px solid var(--line);
}
.roi-row:last-child {
  border-bottom: 0;
}
.roi-cell {
  padding: 24px 28px;
  line-height: 1.62;
  color: var(--body);
}
.roi-cell strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.roi-row .roi-cell:nth-child(2) {
  background: linear-gradient(
    90deg,
    rgba(111, 162, 47, 0.06),
    rgba(90, 24, 81, 0.04)
  );
}
.roi-row .roi-cell:nth-child(2) strong {
  color: var(--green);
}

.cta {
  padding: 96px 0;
  background: #fff;
}
.cta-box {
  border-radius: 42px;
  background: linear-gradient(135deg, var(--purple), #180918);
  color: #fff;
  padding: 62px;
  display: flex;
  align-items: center;
/*  justify-content: space-between;*/
  gap: 42px;
  box-shadow: var(--shadow);
}
.cta-box h2 {
  color: #fff;
  max-width: 600px;
  font-size: 30px;
}
.cta-box p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 680px;
}
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 54px;
}
.footer-logo img {
  width: 310px;
  height: auto;
}
.footer p {
  color: var(--body);
  line-height: 1.65;
  margin-top: 18px;
}
.footer h4 {
  margin: 0 0 18px;
  color: var(--ink);
}
.footer a,
.footer span {
  display: block;
  color: #637086;
  font-size: 13px;
  margin: 10px 0;
  font-weight: 700;
}
.copyright {
  margin-top: 48px;
  padding-top: 22px;
  margin-bottom: 25px;
  padding-bottom: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8390a3;
  font-size: 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}

/* =========================
   Version 7 visual refinement
   ========================= */
:root {
  --shadow-soft: 0 20px 70px rgba(15, 23, 42, 0.08);
  --shadow-premium: 0 34px 100px rgba(15, 23, 42, 0.13);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.wrap {
  width: min(1200px, calc(100% - 72px));
}
section {
  padding: 108px 0;
}
.section-head {
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  margin-bottom: 52px;
}
.section-head .lead {
  font-size: 18px;
  line-height: 1.72;
}
.kicker {
  letter-spacing: 1.8px;
}
.nav {
  height: 76px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 45px rgba(15, 23, 42, 0.05);
}
.brand-logo img {
  width: 226px;
}
.nav-links {
  gap: 30px;
  font-size: 14.5px;
}
.nav-cta {
  padding: 10px 17px;
  box-shadow: 0 14px 34px rgba(90, 24, 81, 0.18);
}
.hero {
  min-height: 100vh;
  padding: 134px 0 54px;
  align-items: center;
  background: #fff;
}
.hero:before {
  inset: 76px 0 0 0;
  background-size: cover;
  background-position: 62% center;
  filter: saturate(0.98) contrast(1.02);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 76px 0 0 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.93) 30%,
    rgba(255, 255, 255, 0.62) 44%,
    rgba(255, 255, 255, 0.08) 64%,
    rgba(255, 255, 255, 0) 100%
  );
}
.hero .wrap {
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: block;
}
.hero-copy {
  max-width: 570px;
  padding: 28px 0;
}
.eyebar {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.06);
}
.hero h1 {
  max-width: 540px;
  letter-spacing: -2.7px;
}
.hero .lead {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.65;
  margin-top: 24px;
}
.hero-actions {
  margin-top: 32px;
}
.btn {
  min-height: 52px;
  padding: 16px 24px;
}
.btn.primary {
  box-shadow: 0 18px 42px rgba(90, 24, 81, 0.23);
}
.btn.secondary {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}
.hero-proof {
  display: none;
}
.hero-visual {
  display: none;
}
.executive-stats {
  padding: 34px 0 92px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.exec-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.exec-stat-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(230, 234, 240, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.exec-stat-grid article:before {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(90, 24, 81, 0.12),
    rgba(111, 162, 47, 0.12)
  );
}
.exec-stat-grid article span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: #f5eef4;
  color: var(--purple);
  font-weight: 900;
  font-size: 12px;
}
.exec-stat-grid article b {
  display: block;
  margin-top: 22px;
  font-size: 24px;
  letter-spacing: -0.8px;
}
.exec-stat-grid article p {
  margin-top: 10px;
  color: var(--body);
  line-height: 1.6;
  font-size: 14px;
}
.exec-stat-grid article:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(90, 24, 81, 0.18);
}
.about-card,
.solution-card,
.step,
.story-copy,
.health-list .q,
.why-card,
.roi-card,
.roi-table,
.journey,
.cta-box {
  box-shadow: var(--shadow-soft);
}
.about-card,
.solution-card,
.story-copy,
.why-card,
.roi-card {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.about-card:hover,
.solution-card:hover,
.story-copy:hover,
.why-card:hover,
.roi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(90, 24, 81, 0.16);
}
.solution-grid {
  gap: 22px;
}
.solution-card {
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #fbfcfe);
  min-height: 372px;
}
.solution-media {
  height: 138px;
}
.solution-copy {
  padding: 32px;
}
.solution-copy h3 {
  font-size: 23px;
}
.solution-copy p {
  font-size: 14.5px;
}
.solution-card .ui-chip:before{
  margin-right: 5px;
}
.solution-card:nth-child(1) .ui-chip:before {
  content: "◼ ";
  color: var(--purple);
}

.solution-card:nth-child(2) .ui-chip:before {
  content: "◉ ";
  color: var(--green);
}
.solution-card:nth-child(3) .ui-chip:before {
  content: "↗ ";
  color: var(--purple);
}
.solution-card:nth-child(4) .ui-chip:before {
  content: "◇ ";
  color: var(--green);
}
.solution-card:nth-child(5) .ui-chip:before {
  content: "↺";
  color: var(--green);
}
.solution-card:nth-child(6) .ui-chip:before {
  content: "✎";
  color: var(--purple);
}
.solution-card:nth-child(7) .ui-chip:before {
  content: "$";
  color: var(--green);
}
.solution-card:nth-child(8) .ui-chip:before {
  content: "✔";
  color: var(--purple);
}
.industry-grid {
  gap: 24px;
}
.industry-card {
  min-height: 410px;
  border-radius: 36px;
}
.industry-card:before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(8, 17, 31, 0.9)
  );
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}
.industry-card {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.industry-content {
  left: 30px;
  right: 30px;
  bottom: 30px;
}
.industry-content h3 {
  font-size: 30px;
}
.stories {
  background: linear-gradient(180deg, var(--soft), #fff);
}
.story {
  gap: 32px;
  margin-bottom: 38px;
}
.story-img {
  min-height: 440px;
  border-radius: 38px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  background-size: cover !important;
}
.story:hover .story-img {
  transform: scale(1.012);
  box-shadow: var(--shadow-premium);
}
.story-copy {
  border-radius: 38px;
  padding: 50px;
}
.story-copy h3 {
  font-size: 36px;
}
.story-stats div {
  background: #fff;
  border-radius: 18px;
/*  transition: transform 0.3s var(--ease);*/
  transition: all ease 0.4s;
}
.story-stats div:hover {
  transform: translateY(-3px);
}
.roi {
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.roi-metrics {
  gap: 18px;
}
.roi-card {
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #fbfcfd);
  padding: 28px;
}
.roi-card:hover{
  border-color: var(--green);
  transition: all ease 0.4s;
}
.roi-card b {
  letter-spacing: -1.4px;
}
.roi-card:before {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #f4eef3;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}
.roi-card:nth-child(1):before {
  content: "⏱";
}
.roi-card:nth-child(2):before {
  content: "▣";
}
.roi-card:nth-child(3):before {
  content: "↟";
}
.roi-card:nth-child(4):before {
  content: "⇄";
}
.roi-card:nth-child(5):before {
  content: "×";
}
.roi-card:nth-child(6):before {
  content: "◷";
}
.roi-table {
  border-radius: 34px;
  overflow: hidden;
}
.roi-row {
  transition: background 0.25s var(--ease);
}
.roi-row:hover {
  background: #fbfcfe;
}
.roi-cell strong {
  font-size: 12px;
}
.timeline-sec {
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.journey {
  border-radius: 44px;
  padding: 62px;
  background: radial-gradient(
      circle at 12% 8%,
      rgba(90, 24, 81, 0.075),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 14%,
      rgba(111, 162, 47, 0.09),
      transparent 30%
    ),
    rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}
.journey-line {
  align-items: start;
  gap: 8px;
}
.journey-line:before {
  left: 7%;
  right: 7%;
  top: 42px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(90, 24, 81, 0.75),
    rgba(111, 162, 47, 0.75)
  );
}
.journey-step {
  padding-top: 94px;
}
.flag-badge {
  top: 2px;
  width: 78px;
  height: 78px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(230, 234, 240, 0.9);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.flag-badge img {
  width: 54px;
  height: 36px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}
.journey-card {
  min-height: 160px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(230, 234, 240, 0.9);
  padding: 20px 14px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.journey-step:hover .flag-badge {
  transform: translateX(-50%) translateY(-7px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}
.journey-step:hover .journey-card {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.year {
  font-size: 26px;
}
.country {
  font-size: 15px;
}
.journey-step p {
  font-size: 11.5px;
}
.why {
  background: linear-gradient(180deg, #f8fafc, #fff);
}
.why-grid {
  gap: 22px;
}
.why-card {
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #fbfcfe);
  min-height: 245px;
}
.why-card b {
  font-size: 28px;
  display: inline-flex;
  min-width: 64px;
  height: 54px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #f4eef3;
  color: var(--purple);
  letter-spacing: -0.6px;
}
.why-card:nth-child(2n) b {
  background: #f0f7ea;
  color: var(--green);
}
.why-card h3 {
  font-size: 22px;
  margin-top: 24px;
}
.why-card p {
  font-size: 14.5px;
}
.cta {
  background: linear-gradient(180deg, #fff, #fafbfc);
  padding: 92px 0;
}
.cta-box {
  border-radius: 46px;
  background: radial-gradient(
      circle at 88% 0%,
      rgba(111, 162, 47, 0.22),
      transparent 32%
    ),
    linear-gradient(135deg, #5a1851, #140716);
  padding: 66px;
}
.cta-box .btn {
  background: #fff;
  color: var(--ink);
}
.footer {
  background: #08111f;
  color: #fff;
  border-top: 0;
  padding: 70px 0 32px;
}
.footer-grid {
  grid-template-columns: 1.25fr 0.8fr 2.2fr;
  gap: 58px;
}
.footer-logo {
  display: inline-flex;
  background: #fff;
  border-radius: 18px;
  padding: 14px 16px;
}
.footer-logo img {
  width: 250px;
}
.footer p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}
.footer h4 {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.3px;
}
.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}
.footer a:hover {
  color: #fff;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
}
.reveal {
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.hero-content {
  max-width: 560px !important;
  position: relative;
  z-index: 2;
}
.hero h1 {
  max-width: 520px !important;
  line-height: 0.95 !important;
}
.hero .lead {
  max-width: 500px !important;
}
.hero-overlay {
  width: 38% !important;
}

.footer-industries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}
.footer-industries-grid a {
  margin: 0;
  color: #c9d2e0;
  font-size: 14px;
  line-height: 1.45;
}
.footer-industries-grid a:hover {
  color: #fff;
}







.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  align-content: center;
  height: auto;
  padding-top: 0.5rem;
}
@media only screen and (min-width: 567px) {
  .navbar {
/*    grid-template-columns: repeat(3, minmax(0, 1fr));*/
    width: 100%;
/*    height: 4.25rem;*/
    padding: 10px 0;
    margin: 0 auto;
    
  }
}

.brand {
  justify-self: start;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-red-500);
}


.menu {
  position: fixed;
  top: -125%;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-block: 3rem 2rem;
  background: #fff;
/*  box-shadow: var(--shadow-medium);*/
  transition: all 0.45s ease-in-out;
}
.menu.is-active {
  top: 0;
  width: 100%;
  height: inherit;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.25rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: inherit;
  text-transform: uppercase;
  color: #000;
  transition: all 0.35s ease-in-out;
}
.menu-link.active {
  color: #6fa22f;
}
.menu-link:hover {
  outline: none;
  color: #6fa22f;
}
@media only screen and (min-width: 62rem) {
  .menu {
    position: relative;
    justify-self: end;
    top: 0;
    left: inherit;
    width: auto;
    height: auto;
    padding-block: 0;
    background: none;
    box-shadow: none;
    transition: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 1.25rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
}

.burger {
  position: relative;
  justify-self: end;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
@media only screen and (min-width: 62rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
ul.menu-inner li{
  list-style: none;
}
.brand img{
  max-width: 226px;
}
.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.1px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: #000;
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}






.space-area {
  height:850px;
  background:#009a11;
  padding:100px 0;
  position: relative;
}
.space-area h1 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
}
.count-area {
    position: relative;
    background:#009aaa;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}
.count-area-content {
    margin-top: 30px;
}
.count-area i {
    font-size: 48px;
}
.count-digit {
    margin: 20px 0px;
    color: #fff;
    font-weight: 700;
    font-size: 50px;
}
.count-title {
    font-size: 20px;
}
.hero-actions .btn.primary:hover{
  background: var(--green);
  transition: all ease 0.4s;
}
.hero-actions .btn.secondary:hover{
  color: #fff;
  background: var(--green);
  transition: all ease 0.4s;
}
.about-stat:hover{
  border-color: var(--green);
  transition: all ease 0.4s;
}
.process-panel .btn.secondary:hover{
  color: #fff;
  background: var(--green);
  transition: all ease 0.4s;
}
.cta-box .btn:hover{
  color: #fff;
  background: var(--green);
  transition: all ease 0.4s;
}
.cnt-details h4{
  font-size: 30px;
  margin-bottom: 20px;
}
.cnt-details h4{
  color: var(--green);
  font-size: 20px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: 1px;
}
.cnt-details h4:before{
  content: '';
  width: 60px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--green);
}
.cnt-details ul li  a:hover{
  color: var(--green);
}
.cnt-details {
  background: #360f33;
  padding: 20px 40px;
  border-radius: 20px;
}
.cnt-details ul{
  padding: 0;
  margin: 0;
}
.cnt-details ul li{
  list-style: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #333;
}
.cnt-details ul li:last-child{
  border-bottom: none;
}
.cnt-details ul li img{
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.cnt-details ul li span {
  min-width: 60px;
  display: inline-block;
}




/*scroll to top*/

.scrolltop-wrap {
  box-sizing: border-box;
  position: absolute;
  top: 12rem;
  right: 2rem;
  bottom: 0;
  pointer-events: none;
  z-index: 999;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.scrolltop-wrap #scrolltop-bg {
  fill: #6fa22f;
}
.scrolltop-wrap #scrolltop-arrow {
  fill: white;
}
.scrolltop-wrap a:hover #scrolltop-bg {
  fill: #8bcd38;
}
.scrolltop-wrap a:hover #scrolltop-arrow {
  fill: white;
}
@supports (-moz-appearance: meterbar) {
  .scrolltop-wrap {
    clip: rect(0, 3rem, auto, 0);
  }
}
.scrolltop-wrap a {
  position: fixed;
  position: sticky;
  top: -5rem;
  width: 3rem;
  height: 3rem;
  margin-bottom: -5rem;
  transform: translateY(100vh);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: inline-block;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: all;
  outline: none;
  overflow: hidden;
}
.scrolltop-wrap a svg {
  display: block;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.scrolltop-wrap a svg path {
  transition: all 0.1s;
}
.scrolltop-wrap a #scrolltop-arrow {
  transform: scale(0.66);
  transform-origin: center;
}
@media print {
  .scrolltop-wrap {
    display: none !important;
  }
}
.cst {
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}
.cst a{
  display: inline-block;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  font-size: 13px;
  transition: all ease 0.4s;
}
.cst a:hover{
  color:  var(--green);
  transition: all ease 0.4s;
}



@media (min-width:1199px){
  .cnt-details{
    min-width: 380px;
    border: 1px solid var(--green);
  }
}
@media (min-width:991px){
  .navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width:767px){
  .cnt-details {
    background: none;
    padding: 20px 0;
  }
  .scrolltop-wrap{
    right: 10px;
  }
}