:root {
  --color-accent: #561790;
  --color-form: #350665;
  --color-success: #00c853;
  --color-white: #ffffff;
  --color-gray: #263238;
  --text-dark: #0b2545;
  --text-light: #6c757d;
  --bc-color: #e0e6fe;
  --color-section-white: #f9f9f9;
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
  --border-radius: 50px;
  --font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-family);
  overflow-x: hidden;
  line-height: 1.5;
  background-color: var(--color-section-white);
}
a:focus-visible,
button:focus-visible {
  outline: 0.2rem solid #00c853;
  outline-offset: 0.25rem;
  border-radius: 0.5rem;
}
.btn:focus-visible {
  outline: 0.2rem solid #561790;
  outline-offset: 0.25rem;
}
.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.sr-only {
  position: absolute;
  width: 0.063rem;
  height: 0.063rem;
  padding: 0;
  margin: -0.063rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: var(--border-radius);
  transition: var(--transition);
  text-align: center;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  position: relative;
  max-width: 150rem;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  z-index: 90;
}
.logopart2 {
  z-index: 90;
}
.logo-circle {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.125rem;
  color: var(--color-white);
  font-weight: 700;
  background-color: #0cba3a;
}
.logopart2 {
  color: #0cba3a;
  color: var(--color-accent);
}
.logopart3 {
  color: #0cba3a;
}
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 1.875rem;
}
nav a {
  text-decoration: none;
  font-weight: 500;
  opacity: 0.8;
  transition: var(--transition);
  color: var(--color-form);
  padding: 0.313rem;
}
nav a:hover,
nav a:focus {
  opacity: 1;
  outline: none;
  font-size: 1.3rem;
}
nav a[aria-current="page"] {
  opacity: 1;
  font-weight: 600;
}
.get-started {
  background: #fff0;
  border: 1px solid var(--color-primary);
  padding: 0.625rem 1.25rem;
  font-weight: 700;
  background-color: var(--color-accent);
  color: #fff;
}
.hamburger-menu {
  display: none;
  cursor: pointer;
  z-index: 200;
  background: #fff0;
  border: none;
  padding: 0.625rem;
}
.bar1,
.bar2,
.bar3 {
  width: 1.875rem;
  height: 3px;
  background-color: var(--color-accent);
  margin: 6px 0;
  transition: 0.4s;
  border-radius: 2px;
  display: block;
}
.hamburger-menu.open .bar1 {
  transform: rotate(-45deg) translate(-6px, 6px);
}
.hamburger-menu.open .bar2 {
  opacity: 0;
}
.hamburger-menu.open .bar3 {
  transform: rotate(45deg) translate(-6px, -6px);
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 25rem;
  height: 100vh;
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(10px);
  z-index: 99;
  transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  display: flex;
  align-items: center;
  box-shadow: -5px 0 15px rgb(0 0 0 / 0.1);
  display: none;
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav ul {
  list-style: none;
  padding: 3.125rem 0;
  width: 100%;
}
.mobile-nav li {
  opacity: 0;
  transform: translateX(3.125rem);
  transition: all 0.5s ease;
  text-align: center;
}
.mobile-nav.open li {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-nav li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-nav li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-nav li:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-nav li:nth-child(5) {
  transition-delay: 0.5s;
}
.mobile-nav li:nth-child(6) {
  transition-delay: 0.6s;
}
.mobile-nav a {
  display: block;
  padding: 0.938rem 1.25rem;
  font-size: 1.125rem;
}
.mobile-cta {
  margin-top: 1.25rem;
}
.mobile-cta .get-started {
  display: inline-block;
  width: auto;
  margin: 0 1.25rem;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.5);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none;
}
.overlay.visible {
  opacity: 1;
  visibility: visible;
}
.heroContainer {
  margin: 0 auto;
  padding: 0 1.25rem;
  background: linear-gradient(180deg, rgb(255 255 255) 0%, #d2d7fe 100%);
}
.hero {
  max-width: 87.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  min-height: 95vh;
  margin: 0 auto;
}
.hero-content {
  max-width: 50rem;
}
.hero h1 {
  font-size: 4.688rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.875rem;
  color: #0b2545;
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 37.5rem;
  color: #0b2545;
}
.get-started-hero {
  background-color: var(--color-accent);
  border: none;
  padding: 0.938rem 1.875rem;
  font-size: 1rem;
  box-shadow: rgb(99 99 99 / 0.2) 0 2px 8px 0;
  color: #fff;
  border-radius: 2rem;
}
.get-started-hero:hover,
.get-started-hero:focus {
  background-color: #6d1fb6;
  transform: translateY(-2px);
  outline: none;
  color: #fff;
}
.get-started:hover {
  background-color: #6d1fb6;
}
.hero-img {
  position: relative;
  width: 100%;
}
.person-img {
  position: relative;
  z-index: 1;
  width: 90%;
  height: auto;
}
.hero-img {
  position: relative;
  display: inline-block;
}
.hero-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: 80%;
  height: 50%;
  background: linear-gradient(180deg, #e0e6fe 0%, #c2cdf7 100%);
  z-index: 1;
  border-radius: 2rem;
}
.person-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 2;
}
.stat-card {
  background: var(--color-white);
  padding: 0.938rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  position: absolute;
  animation: float 6s ease-in-out infinite;
  z-index: 10;
}
.stat-card.revenue {
  top: 5rem;
  right: -1rem;
  animation-delay: 0.5s;
}
.stat-card.growth {
  bottom: 6.25rem;
  left: -3.125rem;
  animation-delay: 1s;
}
.stat-title {
  font-size: 0.85rem;
  color: #263238;
  font-weight: 600;
  margin-bottom: 5px;
}
.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 5px;
}
.stat-percent {
  color: #0cba3a;
  font-size: 0.875rem;
}
.herop {
  color: #0b2545;
}
.klientu {
  color: #0cba3a;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.btn-secondary {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 3.125rem;
  text-decoration: none;
  transition: var(--transition);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgb(108 60 233 / 0.2);
  background-color: #6d1fb6;
}
.services-header {
  background: linear-gradient(
      to right,
      rgb(108 60 233 / 0.95),
      rgb(108 60 233 / 0.85)
    ),
    url(/api/placeholder/1200/400) center/cover no-repeat;
  color: var(--color-white);
  padding: 3.75rem 0;
  text-align: center;
}
.services-header p {
  max-width: 37.5rem;
  margin: 0 auto 1.25rem;
  font-size: 1.1rem;
}
.services-tabs-container {
  background-color: #f0f4f8;
  margin-top: -1.875rem;
}
.services-tabs {
  display: flex;
  justify-content: center;
  align-items: top;
  flex-wrap: wrap;
  gap: 0.938rem;
}
.service-tab {
  flex: 1;
  min-width: 7.5rem;
  max-width: 11.25rem;
  background-color: var(--color-white);
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  padding: 2rem 0.625rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: none;
  margin-top: -2rem;
}
.service-tab:hover {
  transform: translateY(-5px);
}
.service-tab:focus {
  box-shadow: 0 0 0 3px rgb(108 60 233 / 0.3);
}
.service-tab svg {
  width: 3.125rem;
  height: 3.125rem;
  margin-bottom: 0.75rem;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
  stroke: var(--color-accent);
}
.service-tab h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  transition: var(--transition);
}
.service-tab h3 {
  color: #0b2545;
}
.service-tab.active h3 {
  color: #fff;
}
.service-tab.active {
  background: var(--color-accent);
  color: var(--color-white);
  color: #fff;
}
.service-tab.active svg {
  stroke: var(--color-white);
}
.service-tab svg path {
  fill: #561790;
}
.service-tab.active svg path {
  fill: #fff;
}
.service-tab svg {
  color: #561790;
}
.service-tab.active svg {
  color: #fff;
}
#Capa_1 * {
  stroke: #561790 !important;
  transition: stroke 0.3s ease;
}
.service-tab.active #Capa_1 * {
  stroke: #ffffff !important;
}
.services-content-wrapper {
  background-color: #f0f4f8;
}
.service-panel {
  display: none;
}
.service-panel.active {
  display: block;
}
.service-content {
  display: flex;
  align-items: center;
}
.service-text {
  flex: 1;
  min-width: 18.75rem;
  max-width: 37.5rem;
  margin-left: 2rem;
}
.service-subtitle {
  color: #09832a;
  font-weight: 600;
  margin-bottom: 0.625rem;
  position: relative;
  padding-left: 0.75rem;
}
.service-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1.125rem;
  background-color: #09832a;
  border-radius: 2px;
}
.service-text h2 {
  font-size: 2rem;
  color: #0b2545;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.service-description {
  margin-bottom: 1.875rem;
  max-width: 90%;
}
.service-features {
  display: flex;
  gap: 1.875rem;
  margin-bottom: 1.875rem;
}
.feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.feature svg {
  width: 1.563rem;
  height: 1.563rem;
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature span {
  font-weight: 500;
  color: var(--text-dark);
}
.service-actions {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  flex-wrap: wrap;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}
.phone-link svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-image {
  flex: 1;
  min-width: 18.75rem;
  max-width: 28.125rem;
  position: relative;
}
.smarterFlex {
  display: flex;
  max-width: 81.25rem;
  margin-inline: auto;
  justify-content: space-between;
  align-items: center;
}
.rotate {
  display: inline-block;
  transform: rotate(20deg);
  margin-left: 0.2rem;
  color: #0cba3a;
}
.smarterImg {
  max-width: 100%;
  height: auto;
  margin: 1rem;
}
.smarter {
  padding: 3rem;
  background: linear-gradient(180deg, #f0f4f8 0%, #dde7f2 100%);
}
.smarter h2 {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #0b2545;
}
.smarterFlex p {
  max-width: 37.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 1rem;
  margin-bottom: 3rem;
}
.smarterui li {
  display: flex;
  text-decoration: none;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
}
.smarterui img {
  width: 2rem;
  margin-right: 0.5rem;
}
.smartertext {
  max-width: 37.5rem;
}
.smarterImg {
  width: 37.5rem;
  max-width: 100%;
  height: auto;
}
.portfolio-section {
  --shadow-light: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.15);
  --border-radius: 1rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 3rem 1rem;
  margin: auto;
  background-color: #f0f4f8;
  width: 100%;
}
.portfolio-section .section-header {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
}
.portfolio-section .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  color: #0b2545;
}
.portfolio-section .section-subtitle {
  max-width: 40rem;
  margin: 0 auto;
  font-weight: 400;
}
.portfolio-section .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  margin: 0 auto 3rem auto;
  max-width: 75rem;
  justify-content: center;
}
.portfolio-section .portfolio-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.portfolio-section .portfolio-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-heavy);
}
.portfolio-section .card-image-container {
  position: relative;
  height: 15rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-bottom: 0.025rem solid #000;
}
.portfolio-section .card-image {
  width: 100%;
  transition: var(--transition);
  padding: 0.5rem;
}
.portfolio-section .card-image:hover {
  transform: scale(1.05);
}
.portfolio-section .image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}
.portfolio-section .card-content {
  padding: 1.5rem;
}
.portfolio-section .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.portfolio-section .card-description {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.portfolio-section .card-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.card-features img {
  width: 2rem;
}
.portfolio-section .feature-icon {
  width: 2rem;
  height: 2rem;
  fill: var(--primary-color);
  transition: var(--transition);
}
.portfolio-section .feature-icon:hover {
  fill: var(--primary-dark);
  transform: scale(1.1);
}
.portfolio-section .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0b2545;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}
.portfolio-section .card-link:hover {
  color: var(--primary-dark);
  gap: 0.75rem;
}
.portfolio-section .card-link:focus {
  outline: 0.125rem solid var(--primary-color);
  outline-offset: 0.125rem;
  border-radius: 0.25rem;
}
.portfolio-section .link-arrow {
  width: 1rem;
  height: 1rem;
  transition: var(--transition);
}
.portfolio-section .cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}
.portfolio-section .cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.portfolio-section .cta-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.portfolio-section .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: #fff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
}
.portfolio-section .cta-button:hover {
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-heavy);
}
.portfolio-section .cta-button:focus {
  outline: 0.125rem solid var(--primary-color);
  outline-offset: 0.125rem;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .portfolio-section .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .portfolio-section .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@keyframes portfolioFadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.portfolio-section .portfolio-card {
  animation: portfolioFadeInUp 0.6s ease-out;
}
.portfolio-section .portfolio-card:nth-child(1) {
  animation-delay: 0.1s;
}
.portfolio-section .portfolio-card:nth-child(2) {
  animation-delay: 0.2s;
}
.portfolio-section .portfolio-card:nth-child(3) {
  animation-delay: 0.3s;
}
@media (prefers-contrast: high) {
  .portfolio-section {
    --shadow-light: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
    --shadow-heavy: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.5);
  }
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-section * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}
.image-placeholder img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .service-content {
    gap: 1.875rem;
  }
  .service-image::before {
    width: 2.5rem;
    height: 7.5rem;
    left: -0.9386rem;
  }
  .service-text h2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .services-tabs {
    gap: 10px;
  }
  .service-tab {
    min-width: 6.875rem;
    padding: 15px 8px;
  }
  .service-tab svg {
    width: 1.75rem;
    height: 1.75rem;
  }
  .service-tab h3 {
    font-size: 0.8rem;
  }
  .service-content {
    flex-direction: column;
  }
  .service-image {
    margin: 0 auto;
  }
  .service-image::before {
    left: -0.625rem;
    top: 1.875rem;
  }
  .service-text h2 {
    font-size: 1.6rem;
  }
}
.flow-chart-bg {
  font-family: "Inter", sans-serif;
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  color: #0b2545;
}
.section-header p {
  font-size: 1.1rem;
  color: #6b7280;
  font-weight: 500;
}
.section-header .divider {
  width: 6rem;
  height: 0.25rem;
  background-color: #2a5ca8;
  margin: 1rem auto 0;
  border-radius: 9999px;
}
.flow-chart-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 900px) {
  .flow-chart-container {
    flex-direction: row;
    align-items: stretch;
  }
}
.step-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 0.5rem 0.75rem;
  text-align: center;
  position: relative;
  width: 12.5rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
  box-shadow: rgb(0 0 0 / 0.24) 0 3px 8px;
}
.step-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 10px 10px -5px rgb(0 0 0 / 0.04);
}
.step-card.animate-in,
.arrow-icon.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.step-card .step-number-tab {
  background-color: #0b2545;
  background: var(--color-accent);
  color: #fff;
  border-radius: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
}
.step-card .icon-wrapper {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.step-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-accent);
  margin-top: 0.5rem;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.step-card p {
  color: #4b5563;
  line-height: 1.625;
  font-size: 1rem;
}
.arrow-icon {
  display: flex;
  align-items: center;
  width: 3rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}
.arrow-icon svg {
  width: 3rem;
  height: auto;
  transform: rotate(90deg);
  color: #0b2545;
}
@media (min-width: 900px) {
  .arrow-icon svg {
    transform: rotate(0deg);
  }
}
.flow-chart-bg {
  padding: 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #e6f0fa 100%);
}
form {
  max-width: 25rem;
  margin: auto;
  background: #fff;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  max-height: 37.5rem;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
  font-size: 1rem;
  transition: border-color 0.3s ease-in-out;
  border: none;
  background: #e9ecef;
  border-radius: 1rem;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  box-shadow: rgb(53 6 101 / 0.2) 0 0 0 3px;
}
textarea {
  resize: vertical;
  min-height: 7.5rem;
}
button[type="submit"] {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--color-form);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
button[type="submit"]:hover {
  background-color: #5c0d83;
}
.contactflex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-white);
  max-width: 68.75rem;
  margin: 0 2rem;
  border-radius: 1rem;
  justify-self: center;
}
.contact.container {
  width: 100%;
  max-width: unset;
  padding: 10rem 0;
  background: linear-gradient(#ffffff 0%, #d2d7fe 100%);
}
.svgtext {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  background-color: #00a6ff;
  align-items: center;
}
.svgtext p {
  font-size: 1.25rem;
}
.contact h2 {
  margin-top: 3rem;
}
.svgtext svg {
  margin-right: 1rem;
  background-color: blue;
  border: 0.15rem solid blue;
  border-radius: 0.5rem;
  color: #fff;
}
.contactext {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-main-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
}
.contact-section-wrapper {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 2.5rem rgb(0 0 0 / 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 62.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 37.5rem;
}
.contact-info-panel {
  color: #fff;
  background-color: var(--color-form);
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  padding: 5rem 3.125rem;
}
.contact-heading {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1.875rem 0;
  z-index: 1;
}
.contact-description {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 2.5rem 0;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.563rem;
  position: relative;
  z-index: 1;
}
.contact-detail-item:last-child {
  margin-bottom: 0;
}
.contact-icon-wrapper {
  width: 3.125rem;
  height: 3.125rem;
  background: rgb(255 255 255 / 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  flex-shrink: 0;
}
.contact-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #fff;
}
.contact-text-content {
  flex: 1;
}
.contact-detail-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}
.contact-detail-text {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}
.contact-form-panel {
  padding: 3.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form-element {
  width: 100%;
  max-width: 25rem;
}
.contact-form-group {
  margin-bottom: 1.563rem;
}
.contact-form-input {
  width: 100%;
  padding: 1.125rem 1.25rem;
  border: none;
  border-radius: 10px;
  background: #f8f9fa;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
  border: 1rem purple solid;
  transition: border-color 0.3s ease-in-out;
}
.contact-form-input:focus {
  background: #e9ecef;
  box-shadow: 0 0 0 3px rgb(91 44 135 / 0.1);
}
.contact-form-input::placeholder {
  color: #6c757d;
}
.footerlogo {
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 1rem;
  width: 50%;
}
.contact-form-textarea {
  resize: vertical;
  min-height: 7.5rem;
  font-family: inherit;
}
.contact-submit-btn {
  width: 100%;
  padding: 1.125rem 1.875rem;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}
.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgb(238 90 36 / 0.3);
}
.contact-submit-btn:active {
  transform: translateY(0);
}
.contact-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-height: 500px) and (orientation: landscape) {
  .contact-main-wrapper {
    padding: 10px;
  }
  .contact-section-wrapper {
    grid-template-columns: 1fr 1fr;
    max-width: 56.25rem;
  }
  .contact-info-panel {
    padding: 1.875rem 1.563rem;
  }
  .contact-heading {
    font-size: 1.5rem;
    margin-bottom: 0.938rem;
  }
  .contact-description {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }
  .contact-detail-item {
    margin-bottom: 0.938rem;
  }
  .contact-form-panel {
    padding: 1.875rem 1.563rem;
  }
  .contact-form-group {
    margin-bottom: 0.938rem;
  }
  .contact-form-input {
    padding: 0.75rem 0.938rem;
  }
  .contact-form-textarea {
    min-height: 5rem;
  }
  .contact-submit-btn {
    padding: 0.75rem 1.875rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-section-wrapper {
    max-width: 50rem;
  }
  .contact-info-panel {
    padding: 3.125rem 2.188rem;
  }
  .contact-form-panel {
    padding: 3.125rem 2.188rem;
  }
}
@media (min-width: 1200px) {
  .contact-section-wrapper {
    max-width: 75rem;
  }
  .contact-form-panel {
    padding: 5rem 3.125rem;
  }
}
.site-footer-wrapper * {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  line-height: 1;
}
.site-footer-wrapper {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.site-footer-wrapper .site-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  background-attachment: scroll;
  background-clip: border-box;
  background-origin: padding-box;
  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-size: auto;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-style: normal;
  font-variant: normal;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  word-spacing: normal;
  text-align: left;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  backdrop-filter: none;
  background-image: unset;
  background-color: #1b012e;
}
.site-footer-wrapper .site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.0625rem;
  animation: site-footer-shimmer 3s infinite;
  z-index: 1;
}
@keyframes site-footer-shimmer {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
.site-footer-wrapper .footer-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 3rem 1rem 1rem;
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.site-footer-wrapper .footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
  box-sizing: border-box;
}
.site-footer-wrapper .footer-section {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.site-footer-wrapper .footer-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.site-footer-wrapper .footer-section .footer-heading {
  color: #fff;
  margin: 0 0 1rem 0;
  padding: 0 0 0.625rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.4;
  text-align: left;
  font-style: normal;
  font-variant: normal;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  word-spacing: normal;
}
.site-footer-wrapper .footer-section .footer-heading-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.875rem;
  height: 0.125rem;
  background-color: #fff;
  border-radius: 0.0625rem;
  display: block;
  content: "";
}
.site-footer-wrapper .footer-description {
  color: #b0bec5;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  padding: 0;
  font-size: 1rem;
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  font-style: normal;
  font-variant: normal;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  word-spacing: normal;
}
.footer-section {
  color: #b0bec5;
}
.site-footer-wrapper .footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.site-footer-wrapper .footer-nav li {
  margin: 0 0 0.5rem 0;
  padding: 0;
  display: block;
  width: 100%;
  box-sizing: border-box;
  list-style: none;
}
.footer-nav li {
  margin-bottom: 1rem;
}
.site-footer-wrapper .footer-nav a {
  color: #b0bec5;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  display: inline-block;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background: #fff0;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  letter-spacing: normal;
  word-spacing: normal;
  line-height: 1.4;
}
.site-footer-wrapper .footer-nav a:hover,
.site-footer-wrapper .footer-nav a:focus {
  color: #fff;
  transform: translateX(0.3125rem);
  outline: none;
  text-decoration: none;
}
.site-footer-wrapper .footer-nav a:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.125rem;
  border-radius: 0.1875rem;
}
.site-footer-wrapper .social-links {
  display: flex;
  gap: 1rem;
  margin: 1rem 0 0 0;
  padding: 0;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
  box-sizing: border-box;
}
.site-footer-wrapper .social-links li {
  margin: 0;
  padding: 0;
  display: block;
  list-style: none;
}
.site-footer-wrapper .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgb(255 255 255 / 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 0.0625rem solid rgb(255 255 255 / 0.2);
  font-size: 1.125rem;
  margin: 0;
  padding: 0;
  outline: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  letter-spacing: normal;
  word-spacing: normal;
  line-height: 1;
}
.site-footer-wrapper .social-link:hover,
.site-footer-wrapper .social-link:focus {
  background: rgb(255 255 255 / 0.2);
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.5rem 1.25rem rgb(255 255 255 / 0.3);
  outline: none;
  text-decoration: none;
}
.site-footer-wrapper .social-link:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.125rem;
}
.site-footer-wrapper .visually-hidden {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-footer-wrapper .footer-bottom {
  border-top: 0.0625rem solid rgb(255 255 255 / 0.1);
  padding: 1.5rem 0;
  margin: 0;
  text-align: center;
  color: #b0bec5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}
.site-footer-wrapper .footer-copyright {
  font-size: 0.9375rem;
  margin: 0;
  padding: 0;
  display: block;
  color: #b0bec5;
  line-height: 1.4;
  text-align: center;
  font-style: normal;
  font-variant: normal;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  word-spacing: normal;
}
.site-footer-wrapper .footer-legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer-wrapper .footer-legal li {
  margin: 0;
  padding: 0;
  display: block;
  list-style: none;
}
.site-footer-wrapper .footer-legal a {
  color: #b0bec5;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  display: inline-block;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: #fff0;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  letter-spacing: normal;
  word-spacing: normal;
  line-height: 1.4;
}
.site-footer-wrapper .footer-legal a:hover,
.site-footer-wrapper .footer-legal a:focus {
  color: #fff;
  outline: none;
  text-decoration: none;
}
.site-footer-wrapper .footer-legal a:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.125rem;
  border-radius: 0.1875rem;
}
.site-footer-wrapper .floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  top: 0;
  left: 0;
}
.site-footer-wrapper .floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgb(100 255 218 / 0.1);
  animation: site-footer-float 6s ease-in-out infinite;
}
.site-footer-wrapper .floating-circle:nth-child(1) {
  width: 5rem;
  height: 5rem;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.site-footer-wrapper .floating-circle:nth-child(2) {
  width: 3.75rem;
  height: 3.75rem;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}
.site-footer-wrapper .floating-circle:nth-child(3) {
  width: 2.5rem;
  height: 2.5rem;
  top: 80%;
  left: 70%;
  animation-delay: 4s;
}
@keyframes site-footer-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-1.25rem) rotate(180deg);
    opacity: 0.7;
  }
}
@media screen and (max-width: 375px) {
  .site-footer-wrapper .footer-container {
    padding: 2rem 0.75rem 1rem;
  }
  .site-footer-wrapper .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .site-footer-wrapper .social-links {
    justify-content: center;
    gap: 0.75rem;
  }
  .site-footer-wrapper .social-link {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }
  .site-footer-wrapper .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
  }
  .site-footer-wrapper .footer-legal {
    gap: 1rem;
    justify-content: center;
  }
}
@media screen and (min-width: 376px) and (max-width: 414px) {
  .site-footer-wrapper .footer-container {
    padding: 2.5rem 1rem 1rem;
  }
  .site-footer-wrapper .footer-main {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .site-footer-wrapper .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .site-footer-wrapper .footer-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .site-footer-wrapper .footer-container {
    padding: 3rem 2rem 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer-wrapper .footer-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
@media screen and (orientation: landscape) and (max-height: 480px) {
  .site-footer-wrapper .footer-container {
    padding: 2rem 1rem 1rem;
  }
  .site-footer-wrapper .footer-main {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .site-footer-wrapper .floating-circle {
    display: none;
  }
}
@media (prefers-contrast: high) {
  .site-footer-wrapper .site-footer {
    background: #000;
    border-top: 0.125rem solid #fff;
  }
  .site-footer-wrapper .footer-section .footer-heading {
    color: #fff;
  }
  .site-footer-wrapper .footer-section .footer-heading-underline {
    background: #fff;
  }
  .site-footer-wrapper .social-link {
    background: #fff;
    color: #000;
    border-color: #fff;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer-wrapper .site-footer::before,
  .site-footer-wrapper .floating-circle {
    animation: none;
  }
  .site-footer-wrapper .footer-nav a,
  .site-footer-wrapper .social-link,
  .site-footer-wrapper .footer-section {
    transition: none;
  }
  .site-footer-wrapper .footer-section {
    opacity: 1;
    transform: none;
  }
}
#footerlists li {
  margin-bottom: 0.75rem;
}
@media (max-width: 1300px) and (max-height: 900px) and (min-width: 750px) {
  .person-img {
    width: 70%;
  }
  .hero-img::before {
    width: 60%;
  }
  .stat-card.revenue {
    right: 5rem;
  }
}
@media (min-width: 1300px) and (max-width: 1700px) {
  .hero-img {
    width: 35%;
  }
  .service-tab {
    padding: 1.3rem 0.625rem;
  }
}
@media (max-width: 1150px) {
  .lottieanime {
    width: 25rem !important;
    height: auto !important;
  }
  .step-card h3 {
    font-size: 0.9rem;
  }
  .step-card p {
    font-size: 0.7rem;
  }
  .flow-chart-bg {
    padding: 5rem 1rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .stat-card.revenue {
    right: -0.625rem;
  }
  .stat-card.growth {
    left: -1.875rem;
  }
}
@media (max-width: 1000px) {
  .desktop-nav,
  .desktop-only {
    display: none;
  }
  .mobile-nav {
    display: flex;
  }
  .hamburger-menu {
    display: block;
  }
  .overlay {
    display: block;
  }
  .stat-title {
    font-size: 0.6rem;
  }
  .stat-value {
    font-size: 0.938rem;
  }
  .stat-card {
    width: auto;
    height: auto;
    padding: 10px;
  }
  .service-tab {
    min-width: unset;
    max-width: unset;
    flex: none;
    width: 9.375rem;
  }
  .service-tab h3 {
    font-size: 0.7rem;
  }
  .service-tab svg {
    width: 1.875rem;
    height: 1.875rem;
  }
}
@media (max-width: 900px) {
  .service-content {
    flex-direction: column;
  }
  lottie-player,
  dotlottie-wc {
    display: block;
    max-width: 100%;
  }
  .lottieanime {
    width: 100% !important;
    height: auto !important;
    max-width: 20rem !important;
  }
  .step-card {
    width: 18.75rem !important;
    height: 11.25rem;
  }
  .step-card svg {
    width: 3rem;
    height: 3rem;
  }
  .arrow-icon svg {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .service-text {
    margin-top: 5rem;
  }
  .lottieanime {
    width: 100% !important;
    height: auto !important;
  }
  .serviceanimation dotlottie-wc {
    width: 100% !important;
    max-width: 10rem !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
  }
  .serviceanimation {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
  }
  .footerlogo {
    width: 70%;
  }
  .contact-heading {
    font-size: 1.5rem;
  }
  .smarterFlex {
    flex-direction: column;
  }
  .smarterimgdiv {
    order: 1;
  }
  .smartertext {
    order: 0;
    margin-top: 3rem;
  }
  .lottieanime {
    width: 37.5rem !important;
  }
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 90%;
    margin: 6rem auto;
  }
  .hero h1 {
    font-size: 2.25rem;
    max-width: 37.5rem;
  }
  .hero p {
    max-width: 37.5rem;
  }
  .hero-img {
    margin-top: 1.875rem;
    margin-bottom: 8rem;
  }
  .person-img {
    max-width: 25rem;
    justify-self: center;
  }
  .hero-img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20rem;
    height: 50%;
    background: linear-gradient(180deg, #e0e6fe 0%, #c2cdf7 100%);
    z-index: 1;
    border-radius: 2rem;
  }
  .stat-card {
    width: 9.375rem;
  }
  .stat-card.revenue {
    top: 3rem;
    right: auto;
    left: 70%;
  }
  .stat-card.growth {
    bottom: 5rem;
    left: auto;
    right: 70%;
  }
  .service-tab {
    margin-bottom: 2rem !important;
    z-index: 104 !important;
  }
}
@media (max-width: 850px) {
  .service-tab {
    padding: 1.25rem 5px;
    max-width: 7.5rem !important;
  }
}
@media (max-width: 770px) {
  .portfolio-section .card-image-container {
    height: auto;
  }
  .portfolio-grid {
    max-width: 80% !important;
  }
  .logo {
    font-size: 1.125rem;
  }
  .contact-info-panel {
    padding: 2.5rem 0.625rem;
  }
}
@media (max-width: 768px) {
  .contact-section-wrapper {
    grid-template-columns: 1fr;
    max-width: 31.25rem;
  }
  .contact-info-panel {
    padding: 2.5rem 1.875rem;
    text-align: center;
  }
  .contact-heading {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
  }
  .contact-description {
    font-size: 0.95rem;
    margin-bottom: 1.875rem;
  }
  .contact-detail-item {
    justify-content: center;
    text-align: left;
  }
  .contact-form-panel {
    padding: 2.5rem 1.875rem;
  }
}
@media (max-width: 752px) {
  .step-card {
    width: 18.75rem !important;
    height: 11.25rem;
  }
}
@media (max-width: 700px) {
  .service-text {
    padding: 1rem;
    padding-left: 2rem;
    padding-top: 3rem;
    margin-left: 0;
  }
}
@media (max-width: 680px) {
  .service-text {
    margin-top: 0 !important;
  }
}
@media (max-width: 600px) {
  .contactflex {
    grid-template-columns: 1fr;
    margin: 0 1rem;
  }
  .contact-info-panel {
    border-radius: 1rem 1rem 0 0;
  }
  form {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .contact-detail-item {
    margin-left: 1rem;
  }
  .contact.container {
    padding-top: 5rem;
  }
}
@media (max-width: 505px) {
  .lottieanime {
    width: 25rem !important;
    height: auto !important;
  }
  .portfolio-grid {
    max-width: 90% !important;
  }
  .serviceanimation {
    height: 12.5rem;
  }
  .step-card h3 {
    font-size: 1.1rem;
  }
  .step-card p {
    font-size: 0.9rem;
    padding: 0.5rem;
    padding-bottom: 1rem;
  }
  .step-card {
    width: auto !important;
    width: 90% !important;
    height: unset;
    min-height: 11.25rem;
    padding: 0;
  }
  .step-card svg {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .contact-main-wrapper {
    padding: 0.938rem;
  }
  .contact-section-wrapper {
    border-radius: 0.938rem;
  }
  .contact-info-panel {
    padding: 1.875rem 1.25rem;
  }
  .contact-heading {
    font-size: 1.6rem;
  }
  .contact-description {
    font-size: 0.9rem;
  }
  .contact-form-panel {
    padding: 1.875rem 1.25rem;
  }
  .contact-form-input {
    padding: 1rem 1.125rem;
    font-size: 0.95rem;
  }
  .contact-submit-btn {
    padding: 1rem 1.875rem;
    font-size: 0.95rem;
  }
  .portfolio-section .card-image-container {
    height: 10rem;
  }
  .portfolio-section .card-content {
    padding: 1rem;
  }
  .portfolio-section .feature-tag {
    font-size: 0.6875rem;
    padding: 0.25rem 0.5rem;
  }
  .hero h1 {
    font-size: 1.875rem;
  }
  .person-img {
    max-width: 18.75rem;
  }
  .hero-img::before {
    width: 17rem;
    left: 45%;
  }
  .stat-card {
    padding: 0.625rem;
    width: 6rem;
  }
  .stat-value {
    font-size: 1rem;
  }
  .stat-card.revenue {
    top: 2rem;
    right: auto;
    left: 68%;
  }
  .stat-card.growth {
    bottom: 5rem;
    left: auto;
    right: 75%;
  }
  .stat-title {
    margin: 0;
  }
  .stat-value {
    font-size: 0.625rem !important;
  }
  .stat-percent {
    font-size: 0.625rem !important;
  }
}
@media (max-width: 450px) {
  .smarter h2 {
    font-size: 1.5rem;
  }
  .smarterFlex p {
    margin: 0;
    margin-bottom: 3rem;
  }
  .smarterFlex {
    width: 100%;
  }
  .smarter {
    padding: 3rem 2rem;
  }
  .smarterImg {
    max-width: 100%;
  }
  .lottieanime {
    width: 43.75rem !important;
  }
  .person-img {
    width: 100%;
    max-width: 100%;
  }
  .service-tab {
    padding: 0.938rem 0.625rem;
    width: 6.25rem;
  }
  .hero p {
    margin-bottom: 4rem;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 400px) {
  .lottieanime {
    width: 18.75 !important;
    height: auto !important;
  }
  .service-description {
    max-width: 100%;
  }
  .service-text {
    padding-right: 0;
    padding-left: 0.5rem;
  }
}
@media (max-width: 325px) {
  .smartertext h2 {
    display: inline;
  }
  .smartertext p {
    margin-top: 2rem;
  }
}
.service-actions .btn-secondary {
  z-index: 2000;
}
